Enum AggregationRequest.Type
- java.lang.Object
-
- java.lang.Enum<AggregationRequest.Type>
-
- software.amazon.awssdk.services.inspector2.model.AggregationRequest.Type
-
- All Implemented Interfaces:
Serializable,Comparable<AggregationRequest.Type>
- Enclosing class:
- AggregationRequest
public static enum AggregationRequest.Type extends Enum<AggregationRequest.Type>
- See Also:
AggregationRequest.type()
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AggregationRequest.TypevalueOf(String name)Returns the enum constant of this type with the specified name.static AggregationRequest.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACCOUNT_AGGREGATION
public static final AggregationRequest.Type ACCOUNT_AGGREGATION
-
AMI_AGGREGATION
public static final AggregationRequest.Type AMI_AGGREGATION
-
AWS_ECR_CONTAINER_AGGREGATION
public static final AggregationRequest.Type AWS_ECR_CONTAINER_AGGREGATION
-
EC2_INSTANCE_AGGREGATION
public static final AggregationRequest.Type EC2_INSTANCE_AGGREGATION
-
FINDING_TYPE_AGGREGATION
public static final AggregationRequest.Type FINDING_TYPE_AGGREGATION
-
IMAGE_LAYER_AGGREGATION
public static final AggregationRequest.Type IMAGE_LAYER_AGGREGATION
-
LAMBDA_FUNCTION_AGGREGATION
public static final AggregationRequest.Type LAMBDA_FUNCTION_AGGREGATION
-
LAMBDA_LAYER_AGGREGATION
public static final AggregationRequest.Type LAMBDA_LAYER_AGGREGATION
-
PACKAGE_AGGREGATION
public static final AggregationRequest.Type PACKAGE_AGGREGATION
-
REPOSITORY_AGGREGATION
public static final AggregationRequest.Type REPOSITORY_AGGREGATION
-
TITLE_AGGREGATION
public static final AggregationRequest.Type TITLE_AGGREGATION
-
UNKNOWN_TO_SDK_VERSION
public static final AggregationRequest.Type UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static AggregationRequest.Type[] 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 (AggregationRequest.Type c : AggregationRequest.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AggregationRequest.Type 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
-
-