Class: Aws::AutoScalingPlans::Types::DeleteScalingPlanRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AutoScalingPlans::Types::DeleteScalingPlanRequest
- Defined in:
- gems/aws-sdk-autoscalingplans/lib/aws-sdk-autoscalingplans/types.rb
Overview
Note:
When making an API call, you may pass DeleteScalingPlanRequest data as a hash:
{
scaling_plan_name: "ScalingPlanName", # required
scaling_plan_version: 1, # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#scaling_plan_name ⇒ String
The name of the scaling plan.
-
#scaling_plan_version ⇒ Integer
The version number of the scaling plan.
Instance Attribute Details
#scaling_plan_name ⇒ String
The name of the scaling plan.
388 389 390 391 392 393 |
# File 'gems/aws-sdk-autoscalingplans/lib/aws-sdk-autoscalingplans/types.rb', line 388 class DeleteScalingPlanRequest < Struct.new( :scaling_plan_name, :scaling_plan_version) SENSITIVE = [] include Aws::Structure end |
#scaling_plan_version ⇒ Integer
The version number of the scaling plan. Currently, the only valid
value is 1
.
388 389 390 391 392 393 |
# File 'gems/aws-sdk-autoscalingplans/lib/aws-sdk-autoscalingplans/types.rb', line 388 class DeleteScalingPlanRequest < Struct.new( :scaling_plan_name, :scaling_plan_version) SENSITIVE = [] include Aws::Structure end |