@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum State extends Enum<State>
Describes the condition of the SFTP server with respect to its ability to perform file operations. There are six
possible states: OFFLINE
, ONLINE
, STARTING
, STOPPING
,
START_FAILED
, and STOP_FAILED
.
OFFLINE
indicates that the SFTP server exists, but that it is not available for file operations.
ONLINE
indicates that the SFTP server is available to perform file operations. STARTING
indicates that the SFTP server's was instantiated, but the server is not yet available to perform file operations.
Under normal conditions, it can take a couple of minutes for an SFTP server to be completely operational. Both
START_FAILED
and STOP_FAILED
are error conditions.
Enum Constant and Description |
---|
OFFLINE |
ONLINE |
START_FAILED |
STARTING |
STOP_FAILED |
STOPPING |
Modifier and Type | Method and Description |
---|---|
static State |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final State OFFLINE
public static final State ONLINE
public static final State STARTING
public static final State STOPPING
public static final State START_FAILED
public static final State STOP_FAILED
public static State[] values()
for (State c : State.values()) System.out.println(c);
public static State 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 State fromValue(String value)
value
- real valueIllegalArgumentException
- If the specified value does not map to one of the known values in this enum.Copyright © 2013 Amazon Web Services, Inc. All Rights Reserved.