Enum DestinationConfiguration.Type
- java.lang.Object
-
- java.lang.Enum<DestinationConfiguration.Type>
-
- software.amazon.awssdk.services.ivschat.model.DestinationConfiguration.Type
-
- All Implemented Interfaces:
Serializable,Comparable<DestinationConfiguration.Type>
- Enclosing class:
- DestinationConfiguration
public static enum DestinationConfiguration.Type extends Enum<DestinationConfiguration.Type>
- See Also:
DestinationConfiguration.type()
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CLOUD_WATCH_LOGSFIREHOSES3UNKNOWN_TO_SDK_VERSION
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DestinationConfiguration.TypevalueOf(String name)Returns the enum constant of this type with the specified name.static DestinationConfiguration.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
S3
public static final DestinationConfiguration.Type S3
-
CLOUD_WATCH_LOGS
public static final DestinationConfiguration.Type CLOUD_WATCH_LOGS
-
FIREHOSE
public static final DestinationConfiguration.Type FIREHOSE
-
UNKNOWN_TO_SDK_VERSION
public static final DestinationConfiguration.Type UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static DestinationConfiguration.Type[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (DestinationConfiguration.Type c : DestinationConfiguration.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DestinationConfiguration.Type valueOf(String name)
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
-
-