@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum SecondaryStatus extends Enum<SecondaryStatus>
Enum Constant and Description |
---|
Completed |
Downloading |
DownloadingTrainingImage |
Failed |
Interrupted |
LaunchingMLInstances |
MaxRuntimeExceeded |
MaxWaitTimeExceeded |
Pending |
PreparingTrainingStack |
Restarting |
Starting |
Stopped |
Stopping |
Training |
Updating |
Uploading |
Modifier and Type | Method and Description |
---|---|
static SecondaryStatus |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static SecondaryStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SecondaryStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SecondaryStatus Starting
public static final SecondaryStatus LaunchingMLInstances
public static final SecondaryStatus PreparingTrainingStack
public static final SecondaryStatus Downloading
public static final SecondaryStatus DownloadingTrainingImage
public static final SecondaryStatus Training
public static final SecondaryStatus Uploading
public static final SecondaryStatus Stopping
public static final SecondaryStatus Stopped
public static final SecondaryStatus MaxRuntimeExceeded
public static final SecondaryStatus Completed
public static final SecondaryStatus Failed
public static final SecondaryStatus Interrupted
public static final SecondaryStatus MaxWaitTimeExceeded
public static final SecondaryStatus Updating
public static final SecondaryStatus Restarting
public static final SecondaryStatus Pending
public static SecondaryStatus[] values()
for (SecondaryStatus c : SecondaryStatus.values()) System.out.println(c);
public static SecondaryStatus 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 String toString()
toString
in class Enum<SecondaryStatus>
public static SecondaryStatus fromValue(String value)
value
- real valueIllegalArgumentException
- If the specified value does not map to one of the known values in this enum.