@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum Type extends Enum<Type>
Modifier and Type | Method and Description |
---|---|
static Type |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Type IMPORT_ASSETS_FROM_S3
public static final Type IMPORT_ASSET_FROM_SIGNED_URL
public static final Type EXPORT_ASSETS_TO_S3
public static final Type EXPORT_ASSET_TO_SIGNED_URL
public static final Type EXPORT_REVISIONS_TO_S3
public static final Type IMPORT_ASSETS_FROM_REDSHIFT_DATA_SHARES
public static final Type IMPORT_ASSET_FROM_API_GATEWAY_API
public static final Type CREATE_S3_DATA_ACCESS_FROM_S3_BUCKET
public static final Type IMPORT_ASSETS_FROM_LAKE_FORMATION_TAG_POLICY
public static Type[] values()
for (Type c : Type.values()) System.out.println(c);
public static Type valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static Type fromValue(String value)
value
- real valueIllegalArgumentException
- If the specified value does not map to one of the known values in this enum.