public static enum CloudWatchFacadeException.ReasonCode extends Enum<CloudWatchFacadeException.ReasonCode>
| Enum Constant and Description |
|---|
ABORTED
The API call was aborted; according to the Interwebs, this is caused by
thread interruption.
|
ALREADY_PROCESSED
CloudWatch already received these events.
|
INVALID_CONFIGURATION
An invalid configuration value (these shouldn't happen if you validate
your configuration!).
|
INVALID_SEQUENCE_TOKEN
Sequence token passed to PutLogEvents is invalid; retrieve another one and
retry.
|
MISSING_LOG_GROUP
The log group was not found, in a call where it should have existed.
|
MISSING_LOG_STREAM
The log stream was not found, in a call where it should have existed.
|
THROTTLING
The API call was throttled; caller should retry.
|
UNEXPECTED_EXCEPTION
An exception that isn't expected to be corrected by the caller (just
throw it on up).
|
| Modifier and Type | Method and Description |
|---|---|
static CloudWatchFacadeException.ReasonCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CloudWatchFacadeException.ReasonCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CloudWatchFacadeException.ReasonCode UNEXPECTED_EXCEPTION
public static final CloudWatchFacadeException.ReasonCode INVALID_CONFIGURATION
public static final CloudWatchFacadeException.ReasonCode MISSING_LOG_GROUP
public static final CloudWatchFacadeException.ReasonCode MISSING_LOG_STREAM
public static final CloudWatchFacadeException.ReasonCode ABORTED
public static final CloudWatchFacadeException.ReasonCode THROTTLING
public static final CloudWatchFacadeException.ReasonCode INVALID_SEQUENCE_TOKEN
public static final CloudWatchFacadeException.ReasonCode ALREADY_PROCESSED
public static CloudWatchFacadeException.ReasonCode[] values()
for (CloudWatchFacadeException.ReasonCode c : CloudWatchFacadeException.ReasonCode.values()) System.out.println(c);
public static CloudWatchFacadeException.ReasonCode 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 nullCopyright © 2023. All rights reserved.