Enum OutpostResourceType
java.lang.Object
java.lang.Enum<OutpostResourceType>
software.amazon.awssdk.services.s3.internal.resource.OutpostResourceType
- All Implemented Interfaces:
Serializable,Comparable<OutpostResourceType>
An enum representing the types of resources supported by S3 outpost. Each resource type below will have a
concrete implementation of
S3OutpostResource.-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAn outpost access pointA specific S3 outpost bucket. -
Method Summary
Modifier and TypeMethodDescriptionstatic OutpostResourceTypeUse this in place of valueOf.toString()static OutpostResourceTypeReturns the enum constant of this type with the specified name.static OutpostResourceType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
OUTPOST_BUCKET
A specific S3 outpost bucket. -
OUTPOST_ACCESS_POINT
An outpost access point
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
toString
- Overrides:
toStringin classEnum<OutpostResourceType>- Returns:
- The canonical string value of this resource type.
-
fromValue
Use this in place of valueOf.- Parameters:
value- real value- Returns:
- S3ResourceType corresponding to the value
- Throws:
IllegalArgumentException- If the specified value does not map to one of the known values in this enum.
-