public enum AwsService extends java.lang.Enum<AwsService>
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
prefix()
Returns the common prefix for this AWS Service
|
java.lang.String |
toString() |
static AwsService |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AwsService[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AwsService EC2
public static final AwsService S3
public static final AwsService ECR
public static final AwsService ECS
public static final AwsService ES
public static final AwsService HOST
public static AwsService[] values()
for (AwsService c : AwsService.values()) System.out.println(c);
public static AwsService valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String prefix()
public java.lang.String toString()
toString in class java.lang.Enum<AwsService>