Enum ResourceTypeFilter
- java.lang.Object
-
- java.lang.Enum<ResourceTypeFilter>
-
- software.amazon.awssdk.services.devopsguru.model.ResourceTypeFilter
-
- All Implemented Interfaces:
Serializable,Comparable<ResourceTypeFilter>
@Generated("software.amazon.awssdk:codegen") public enum ResourceTypeFilter extends Enum<ResourceTypeFilter>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ResourceTypeFilterfromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<ResourceTypeFilter>knownValues()StringtoString()static ResourceTypeFiltervalueOf(String name)Returns the enum constant of this type with the specified name.static ResourceTypeFilter[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LOG_GROUPS
public static final ResourceTypeFilter LOG_GROUPS
-
CLOUDFRONT_DISTRIBUTION
public static final ResourceTypeFilter CLOUDFRONT_DISTRIBUTION
-
DYNAMODB_TABLE
public static final ResourceTypeFilter DYNAMODB_TABLE
-
EC2_NAT_GATEWAY
public static final ResourceTypeFilter EC2_NAT_GATEWAY
-
ECS_CLUSTER
public static final ResourceTypeFilter ECS_CLUSTER
-
ECS_SERVICE
public static final ResourceTypeFilter ECS_SERVICE
-
EKS_CLUSTER
public static final ResourceTypeFilter EKS_CLUSTER
-
ELASTIC_BEANSTALK_ENVIRONMENT
public static final ResourceTypeFilter ELASTIC_BEANSTALK_ENVIRONMENT
-
ELASTIC_LOAD_BALANCER_LOAD_BALANCER
public static final ResourceTypeFilter ELASTIC_LOAD_BALANCER_LOAD_BALANCER
-
ELASTIC_LOAD_BALANCING_V2_LOAD_BALANCER
public static final ResourceTypeFilter ELASTIC_LOAD_BALANCING_V2_LOAD_BALANCER
-
ELASTIC_LOAD_BALANCING_V2_TARGET_GROUP
public static final ResourceTypeFilter ELASTIC_LOAD_BALANCING_V2_TARGET_GROUP
-
ELASTICACHE_CACHE_CLUSTER
public static final ResourceTypeFilter ELASTICACHE_CACHE_CLUSTER
-
ELASTICSEARCH_DOMAIN
public static final ResourceTypeFilter ELASTICSEARCH_DOMAIN
-
KINESIS_STREAM
public static final ResourceTypeFilter KINESIS_STREAM
-
LAMBDA_FUNCTION
public static final ResourceTypeFilter LAMBDA_FUNCTION
-
OPEN_SEARCH_SERVICE_DOMAIN
public static final ResourceTypeFilter OPEN_SEARCH_SERVICE_DOMAIN
-
RDS_DB_INSTANCE
public static final ResourceTypeFilter RDS_DB_INSTANCE
-
RDS_DB_CLUSTER
public static final ResourceTypeFilter RDS_DB_CLUSTER
-
REDSHIFT_CLUSTER
public static final ResourceTypeFilter REDSHIFT_CLUSTER
-
ROUTE53_HOSTED_ZONE
public static final ResourceTypeFilter ROUTE53_HOSTED_ZONE
-
ROUTE53_HEALTH_CHECK
public static final ResourceTypeFilter ROUTE53_HEALTH_CHECK
-
S3_BUCKET
public static final ResourceTypeFilter S3_BUCKET
-
SAGEMAKER_ENDPOINT
public static final ResourceTypeFilter SAGEMAKER_ENDPOINT
-
SNS_TOPIC
public static final ResourceTypeFilter SNS_TOPIC
-
SQS_QUEUE
public static final ResourceTypeFilter SQS_QUEUE
-
STEP_FUNCTIONS_ACTIVITY
public static final ResourceTypeFilter STEP_FUNCTIONS_ACTIVITY
-
STEP_FUNCTIONS_STATE_MACHINE
public static final ResourceTypeFilter STEP_FUNCTIONS_STATE_MACHINE
-
UNKNOWN_TO_SDK_VERSION
public static final ResourceTypeFilter UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static ResourceTypeFilter[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ResourceTypeFilter c : ResourceTypeFilter.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ResourceTypeFilter valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
toString
public String toString()
- Overrides:
toStringin classEnum<ResourceTypeFilter>
-
fromValue
public static ResourceTypeFilter fromValue(String value)
Use this in place of valueOf to convert the raw string returned by the service into the enum value.- Parameters:
value- real value- Returns:
- ResourceTypeFilter corresponding to the value
-
knownValues
public static Set<ResourceTypeFilter> knownValues()
Use this in place ofvalues()to return aSetof all values known to the SDK. This will return all known enum values exceptUNKNOWN_TO_SDK_VERSION.- Returns:
- a
Setof knownResourceTypeFilters
-
-