public static enum KinesisAnalyticsOutputDeliveryResponse.Result extends Enum<KinesisAnalyticsOutputDeliveryResponse.Result>
Enum Constant and Description |
---|
DeliveryFailed
Indicates that the delivery of the record failed.
|
Ok
Indicates that record has been delivered successfully.
|
Modifier and Type | Method and Description |
---|---|
static KinesisAnalyticsOutputDeliveryResponse.Result |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KinesisAnalyticsOutputDeliveryResponse.Result[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KinesisAnalyticsOutputDeliveryResponse.Result Ok
public static final KinesisAnalyticsOutputDeliveryResponse.Result DeliveryFailed
public static KinesisAnalyticsOutputDeliveryResponse.Result[] values()
for (KinesisAnalyticsOutputDeliveryResponse.Result c : KinesisAnalyticsOutputDeliveryResponse.Result.values()) System.out.println(c);
public static KinesisAnalyticsOutputDeliveryResponse.Result 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 © 2024. All rights reserved.