Enum DataDestinationConfig.Type
- java.lang.Object
-
- java.lang.Enum<DataDestinationConfig.Type>
-
- software.amazon.awssdk.services.iotfleetwise.model.DataDestinationConfig.Type
-
- All Implemented Interfaces:
Serializable,Comparable<DataDestinationConfig.Type>
- Enclosing class:
- DataDestinationConfig
public static enum DataDestinationConfig.Type extends Enum<DataDestinationConfig.Type>
- See Also:
DataDestinationConfig.type()
-
-
Enum Constant Summary
Enum Constants Enum Constant Description S3_CONFIGTIMESTREAM_CONFIGUNKNOWN_TO_SDK_VERSION
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DataDestinationConfig.TypevalueOf(String name)Returns the enum constant of this type with the specified name.static DataDestinationConfig.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
S3_CONFIG
public static final DataDestinationConfig.Type S3_CONFIG
-
TIMESTREAM_CONFIG
public static final DataDestinationConfig.Type TIMESTREAM_CONFIG
-
UNKNOWN_TO_SDK_VERSION
public static final DataDestinationConfig.Type UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static DataDestinationConfig.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 (DataDestinationConfig.Type c : DataDestinationConfig.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 DataDestinationConfig.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
-
-