Class: Aws::AutoScalingPlans::Types::DescribeScalingPlansRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AutoScalingPlans::Types::DescribeScalingPlansRequest
- Defined in:
- gems/aws-sdk-autoscalingplans/lib/aws-sdk-autoscalingplans/types.rb
Overview
When making an API call, you may pass DescribeScalingPlansRequest data as a hash:
{
scaling_plan_names: ["ScalingPlanName"],
scaling_plan_version: 1,
application_sources: [
{
cloud_formation_stack_arn: "XmlString",
tag_filters: [
{
key: "XmlStringMaxLen128",
values: ["XmlStringMaxLen256"],
},
],
},
],
max_results: 1,
next_token: "NextToken",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#application_sources ⇒ Array<Types::ApplicationSource>
The sources for the applications (up to 10).
-
#max_results ⇒ Integer
The maximum number of scalable resources to return.
-
#next_token ⇒ String
The token for the next set of results.
-
#scaling_plan_names ⇒ Array<String>
The names of the scaling plans (up to 10).
-
#scaling_plan_version ⇒ Integer
The version number of the scaling plan.
Instance Attribute Details
#application_sources ⇒ Array<Types::ApplicationSource>
The sources for the applications (up to 10). If you specify scaling plan names, you cannot specify application sources.
508 509 510 511 512 513 514 515 516 |
# File 'gems/aws-sdk-autoscalingplans/lib/aws-sdk-autoscalingplans/types.rb', line 508 class DescribeScalingPlansRequest < Struct.new( :scaling_plan_names, :scaling_plan_version, :application_sources, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of scalable resources to return. This value can be between 1 and 50. The default value is 50.
508 509 510 511 512 513 514 515 516 |
# File 'gems/aws-sdk-autoscalingplans/lib/aws-sdk-autoscalingplans/types.rb', line 508 class DescribeScalingPlansRequest < Struct.new( :scaling_plan_names, :scaling_plan_version, :application_sources, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The token for the next set of results.
508 509 510 511 512 513 514 515 516 |
# File 'gems/aws-sdk-autoscalingplans/lib/aws-sdk-autoscalingplans/types.rb', line 508 class DescribeScalingPlansRequest < Struct.new( :scaling_plan_names, :scaling_plan_version, :application_sources, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#scaling_plan_names ⇒ Array<String>
The names of the scaling plans (up to 10). If you specify application sources, you cannot specify scaling plan names.
508 509 510 511 512 513 514 515 516 |
# File 'gems/aws-sdk-autoscalingplans/lib/aws-sdk-autoscalingplans/types.rb', line 508 class DescribeScalingPlansRequest < Struct.new( :scaling_plan_names, :scaling_plan_version, :application_sources, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#scaling_plan_version ⇒ Integer
The version number of the scaling plan. Currently, the only valid
value is 1
.
508 509 510 511 512 513 514 515 516 |
# File 'gems/aws-sdk-autoscalingplans/lib/aws-sdk-autoscalingplans/types.rb', line 508 class DescribeScalingPlansRequest < Struct.new( :scaling_plan_names, :scaling_plan_version, :application_sources, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |