public static enum ECSEndpointBuilderFactory.ECSOperations extends Enum<ECSEndpointBuilderFactory.ECSOperations>
org.apache.camel.component.aws.ecs.ECSOperations enum.| Enum Constant and Description |
|---|
createCluster |
deleteCluster |
describeCluster |
listClusters |
| Modifier and Type | Method and Description |
|---|---|
static ECSEndpointBuilderFactory.ECSOperations |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ECSEndpointBuilderFactory.ECSOperations[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ECSEndpointBuilderFactory.ECSOperations listClusters
public static final ECSEndpointBuilderFactory.ECSOperations describeCluster
public static final ECSEndpointBuilderFactory.ECSOperations createCluster
public static final ECSEndpointBuilderFactory.ECSOperations deleteCluster
public static ECSEndpointBuilderFactory.ECSOperations[] values()
for (ECSEndpointBuilderFactory.ECSOperations c : ECSEndpointBuilderFactory.ECSOperations.values()) System.out.println(c);
public static ECSEndpointBuilderFactory.ECSOperations 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 nullApache Camel