@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum DeliverabilityDashboardAccountStatus extends Enum<DeliverabilityDashboardAccountStatus>
The current status of your Deliverability dashboard subscription. If this value is PENDING_EXPIRATION,
your subscription is scheduled to expire at the end of the current calendar month.
| Enum Constant and Description |
|---|
ACTIVE |
DISABLED |
PENDING_EXPIRATION |
| Modifier and Type | Method and Description |
|---|---|
static DeliverabilityDashboardAccountStatus |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static DeliverabilityDashboardAccountStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DeliverabilityDashboardAccountStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeliverabilityDashboardAccountStatus ACTIVE
public static final DeliverabilityDashboardAccountStatus PENDING_EXPIRATION
public static final DeliverabilityDashboardAccountStatus DISABLED
public static DeliverabilityDashboardAccountStatus[] values()
for (DeliverabilityDashboardAccountStatus c : DeliverabilityDashboardAccountStatus.values()) System.out.println(c);
public static DeliverabilityDashboardAccountStatus 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<DeliverabilityDashboardAccountStatus>public static DeliverabilityDashboardAccountStatus fromValue(String value)
value - real valueIllegalArgumentException - If the specified value does not map to one of the known values in this enum.