Enum AutoscalingActions
- All Implemented Interfaces:
Action
,Serializable
,Comparable<AutoscalingActions>
,java.lang.constant.Constable
The available AWS access control policy actions for Application Auto Scaling.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionRepresents any action executed on Application Auto Scaling.Action for the DeleteScalingPolicy operation.Action for the DeregisterScalableTarget operation.Action for the DescribeScalableTargets operation.Action for the DescribeScalingActivities operation.Action for the DescribeScalingPolicies operation.Action for the PutScalingPolicy operation.Action for the RegisterScalableTarget operation. -
Method Summary
Modifier and TypeMethodDescriptionReturns the name of this action.static AutoscalingActions
Returns the enum constant of this type with the specified name.static AutoscalingActions[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
AllAutoscalingActions
Represents any action executed on Application Auto Scaling. -
DeleteScalingPolicy
Action for the DeleteScalingPolicy operation. -
DeregisterScalableTarget
Action for the DeregisterScalableTarget operation. -
DescribeScalableTargets
Action for the DescribeScalableTargets operation. -
DescribeScalingActivities
Action for the DescribeScalingActivities operation. -
DescribeScalingPolicies
Action for the DescribeScalingPolicies operation. -
PutScalingPolicy
Action for the PutScalingPolicy operation. -
RegisterScalableTarget
Action for the RegisterScalableTarget operation.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-
getActionName
Description copied from interface:Action
Returns the name of this action. For example, 'sqs:SendMessage' is the name corresponding to the SQS action that enables users to send a message to an SQS queue.- Specified by:
getActionName
in interfaceAction
- Returns:
- The name of this action.
-