@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum LagState extends Enum<LagState>
The state of the LAG.
Requested: The initial state of a LAG. The LAG stays in the requested state until the Letter of Authorization (LOA) is available.
Pending: The LAG has been approved, and is being initialized.
Available: The network link is established, and the LAG is ready for use.
Down: The network link is down.
Deleting: The LAG is in the process of being deleted.
Deleted: The LAG has been deleted.
Enum Constant and Description |
---|
Available |
Deleted |
Deleting |
Down |
Pending |
Requested |
Modifier and Type | Method and Description |
---|---|
static LagState |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static LagState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LagState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LagState Requested
public static final LagState Pending
public static final LagState Available
public static final LagState Down
public static final LagState Deleting
public static final LagState Deleted
public static LagState[] values()
for (LagState c : LagState.values()) System.out.println(c);
public static LagState 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 LagState 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.