Uses of Class
com.amazonaws.services.s3.model.CORSRule.AllowedMethods
-
Packages that use CORSRule.AllowedMethods Package Description com.amazonaws.services.s3.model Classes modeling the various types represented by Amazon S3. -
-
Uses of CORSRule.AllowedMethods in com.amazonaws.services.s3.model
Methods in com.amazonaws.services.s3.model that return CORSRule.AllowedMethods Modifier and Type Method Description static CORSRule.AllowedMethods
CORSRule.AllowedMethods. fromValue(String allowedMethod)
static CORSRule.AllowedMethods
CORSRule.AllowedMethods. valueOf(String name)
Returns the enum constant of this type with the specified name.static CORSRule.AllowedMethods[]
CORSRule.AllowedMethods. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.amazonaws.services.s3.model that return types with arguments of type CORSRule.AllowedMethods Modifier and Type Method Description List<CORSRule.AllowedMethods>
CORSRule. getAllowedMethods()
Returns the allowed methods of this rule.Methods in com.amazonaws.services.s3.model with parameters of type CORSRule.AllowedMethods Modifier and Type Method Description void
CORSRule. setAllowedMethods(CORSRule.AllowedMethods... allowedMethods)
Convenience array style method forCORSRule.setAllowedMethods(List)
Method parameters in com.amazonaws.services.s3.model with type arguments of type CORSRule.AllowedMethods Modifier and Type Method Description void
CORSRule. setAllowedMethods(List<CORSRule.AllowedMethods> allowedMethods)
Sets the allowed methods of the rule.CORSRule
CORSRule. withAllowedMethods(List<CORSRule.AllowedMethods> allowedMethods)
Sets the allowed methods of this rule and returns a reference to this object for method chaining.
-