public enum ResourceType extends Enum<ResourceType>
| Enum Constant and Description |
|---|
CLOUDWATCH_RULE |
DYNAMODB_TABLE |
LAMBDA |
LAMBDA_LAYER |
S3_BUCKET |
SNS_TOPIC |
SQS_QUEUE |
| Modifier and Type | Method and Description |
|---|---|
String |
getName() |
String |
toString() |
static ResourceType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ResourceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResourceType CLOUDWATCH_RULE
public static final ResourceType LAMBDA
public static final ResourceType DYNAMODB_TABLE
public static final ResourceType S3_BUCKET
public static final ResourceType SNS_TOPIC
public static final ResourceType SQS_QUEUE
public static final ResourceType LAMBDA_LAYER
public static ResourceType[] values()
for (ResourceType c : ResourceType.values()) System.out.println(c);
public static ResourceType 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 getName()
public String toString()
toString in class Enum<ResourceType>Copyright © 2020. All rights reserved.