Enum DataReplicationErrorString
- java.lang.Object
-
- java.lang.Enum<DataReplicationErrorString>
-
- software.amazon.awssdk.services.drs.model.DataReplicationErrorString
-
- All Implemented Interfaces:
Serializable,Comparable<DataReplicationErrorString>
@Generated("software.amazon.awssdk:codegen") public enum DataReplicationErrorString extends Enum<DataReplicationErrorString>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DataReplicationErrorStringfromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<DataReplicationErrorString>knownValues()StringtoString()static DataReplicationErrorStringvalueOf(String name)Returns the enum constant of this type with the specified name.static DataReplicationErrorString[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AGENT_NOT_SEEN
public static final DataReplicationErrorString AGENT_NOT_SEEN
-
SNAPSHOTS_FAILURE
public static final DataReplicationErrorString SNAPSHOTS_FAILURE
-
NOT_CONVERGING
public static final DataReplicationErrorString NOT_CONVERGING
-
UNSTABLE_NETWORK
public static final DataReplicationErrorString UNSTABLE_NETWORK
-
FAILED_TO_CREATE_SECURITY_GROUP
public static final DataReplicationErrorString FAILED_TO_CREATE_SECURITY_GROUP
-
FAILED_TO_LAUNCH_REPLICATION_SERVER
public static final DataReplicationErrorString FAILED_TO_LAUNCH_REPLICATION_SERVER
-
FAILED_TO_BOOT_REPLICATION_SERVER
public static final DataReplicationErrorString FAILED_TO_BOOT_REPLICATION_SERVER
-
FAILED_TO_AUTHENTICATE_WITH_SERVICE
public static final DataReplicationErrorString FAILED_TO_AUTHENTICATE_WITH_SERVICE
-
FAILED_TO_DOWNLOAD_REPLICATION_SOFTWARE
public static final DataReplicationErrorString FAILED_TO_DOWNLOAD_REPLICATION_SOFTWARE
-
FAILED_TO_CREATE_STAGING_DISKS
public static final DataReplicationErrorString FAILED_TO_CREATE_STAGING_DISKS
-
FAILED_TO_ATTACH_STAGING_DISKS
public static final DataReplicationErrorString FAILED_TO_ATTACH_STAGING_DISKS
-
FAILED_TO_PAIR_REPLICATION_SERVER_WITH_AGENT
public static final DataReplicationErrorString FAILED_TO_PAIR_REPLICATION_SERVER_WITH_AGENT
-
FAILED_TO_CONNECT_AGENT_TO_REPLICATION_SERVER
public static final DataReplicationErrorString FAILED_TO_CONNECT_AGENT_TO_REPLICATION_SERVER
-
FAILED_TO_START_DATA_TRANSFER
public static final DataReplicationErrorString FAILED_TO_START_DATA_TRANSFER
-
UNKNOWN_TO_SDK_VERSION
public static final DataReplicationErrorString UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static DataReplicationErrorString[] 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 (DataReplicationErrorString c : DataReplicationErrorString.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DataReplicationErrorString 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
-
toString
public String toString()
- Overrides:
toStringin classEnum<DataReplicationErrorString>
-
fromValue
public static DataReplicationErrorString fromValue(String value)
Use this in place of valueOf to convert the raw string returned by the service into the enum value.- Parameters:
value- real value- Returns:
- DataReplicationErrorString corresponding to the value
-
knownValues
public static Set<DataReplicationErrorString> knownValues()
Use this in place ofvalues()to return aSetof all values known to the SDK. This will return all known enum values exceptUNKNOWN_TO_SDK_VERSION.- Returns:
- a
Setof knownDataReplicationErrorStrings
-
-