Class: Aws::AutoScaling::Types::DescribeScalingActivitiesType

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-autoscaling/types.rb

Overview

Note:

When making an API call, you may pass DescribeScalingActivitiesType data as a hash:

{
  activity_ids: ["XmlString"],
  auto_scaling_group_name: "ResourceName",
  max_records: 1,
  next_token: "XmlString",
}

Instance Attribute Summary collapse

Instance Attribute Details

#activity_idsArray<String>

The activity IDs of the desired scaling activities. You can specify up to 50 IDs. If you omit this parameter, 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.

Returns:

  • (Array<String>)


1854
1855
1856
1857
1858
1859
1860
# File 'lib/aws-sdk-autoscaling/types.rb', line 1854

class DescribeScalingActivitiesType < Struct.new(
  :activity_ids,
  :auto_scaling_group_name,
  :max_records,
  :next_token)
  include Aws::Structure
end

#auto_scaling_group_nameString

The name of the Auto Scaling group.

Returns:

  • (String)


1854
1855
1856
1857
1858
1859
1860
# File 'lib/aws-sdk-autoscaling/types.rb', line 1854

class DescribeScalingActivitiesType < Struct.new(
  :activity_ids,
  :auto_scaling_group_name,
  :max_records,
  :next_token)
  include Aws::Structure
end

#max_recordsInteger

The maximum number of items to return with this call. The default value is 100 and the maximum value is 100.

Returns:

  • (Integer)


1854
1855
1856
1857
1858
1859
1860
# File 'lib/aws-sdk-autoscaling/types.rb', line 1854

class DescribeScalingActivitiesType < Struct.new(
  :activity_ids,
  :auto_scaling_group_name,
  :max_records,
  :next_token)
  include Aws::Structure
end

#next_tokenString

The token for the next set of items to return. (You received this token from a previous call.)

Returns:

  • (String)


1854
1855
1856
1857
1858
1859
1860
# File 'lib/aws-sdk-autoscaling/types.rb', line 1854

class DescribeScalingActivitiesType < Struct.new(
  :activity_ids,
  :auto_scaling_group_name,
  :max_records,
  :next_token)
  include Aws::Structure
end