Class: Aws::AutoScaling::Types::DescribeScalingActivitiesType
- Inherits:
-
Struct
- Object
- Struct
- Aws::AutoScaling::Types::DescribeScalingActivitiesType
- Defined in:
- gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/types.rb
Overview
When making an API call, you may pass DescribeScalingActivitiesType data as a hash:
{
activity_ids: ["XmlString"],
auto_scaling_group_name: "XmlStringMaxLen255",
include_deleted_groups: false,
max_records: 1,
next_token: "XmlString",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#activity_ids ⇒ Array<String>
The activity IDs of the desired scaling activities.
-
#auto_scaling_group_name ⇒ String
The name of the Auto Scaling group.
-
#include_deleted_groups ⇒ Boolean
Indicates whether to include scaling activity from deleted Auto Scaling groups.
-
#max_records ⇒ Integer
The maximum number of items to return with this call.
-
#next_token ⇒ String
The token for the next set of items to return.
Instance Attribute Details
#activity_ids ⇒ Array<String>
The activity IDs of the desired scaling activities. If you omit this property, all activities for the past six weeks are described. If unknown activities are requested, they are ignored with no error. If you specify an Auto Scaling group, the results are limited to that group.
Array Members: Maximum number of 50 IDs.
2592 2593 2594 2595 2596 2597 2598 2599 2600 |
# File 'gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/types.rb', line 2592 class DescribeScalingActivitiesType < Struct.new( :activity_ids, :auto_scaling_group_name, :include_deleted_groups, :max_records, :next_token) SENSITIVE = [] include Aws::Structure end |
#auto_scaling_group_name ⇒ String
The name of the Auto Scaling group.
2592 2593 2594 2595 2596 2597 2598 2599 2600 |
# File 'gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/types.rb', line 2592 class DescribeScalingActivitiesType < Struct.new( :activity_ids, :auto_scaling_group_name, :include_deleted_groups, :max_records, :next_token) SENSITIVE = [] include Aws::Structure end |
#include_deleted_groups ⇒ Boolean
Indicates whether to include scaling activity from deleted Auto Scaling groups.
2592 2593 2594 2595 2596 2597 2598 2599 2600 |
# File 'gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/types.rb', line 2592 class DescribeScalingActivitiesType < Struct.new( :activity_ids, :auto_scaling_group_name, :include_deleted_groups, :max_records, :next_token) SENSITIVE = [] include Aws::Structure end |
#max_records ⇒ Integer
The maximum number of items to return with this call. The default
value is 100
and the maximum value is 100
.
2592 2593 2594 2595 2596 2597 2598 2599 2600 |
# File 'gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/types.rb', line 2592 class DescribeScalingActivitiesType < Struct.new( :activity_ids, :auto_scaling_group_name, :include_deleted_groups, :max_records, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The token for the next set of items to return. (You received this token from a previous call.)
2592 2593 2594 2595 2596 2597 2598 2599 2600 |
# File 'gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/types.rb', line 2592 class DescribeScalingActivitiesType < Struct.new( :activity_ids, :auto_scaling_group_name, :include_deleted_groups, :max_records, :next_token) SENSITIVE = [] include Aws::Structure end |