Class: Aws::AutoScaling::Types::DescribeAutoScalingInstancesType

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 DescribeAutoScalingInstancesType data as a hash:

{
  instance_ids: ["XmlStringMaxLen19"],
  max_records: 1,
  next_token: "XmlString",
}

Instance Attribute Summary collapse

Instance Attribute Details

#instance_idsArray<String>

The IDs of the instances. You can specify up to ‘MaxRecords` IDs. If you omit this parameter, all Auto Scaling instances are described. If you specify an ID that does not exist, it is ignored with no error.

Returns:

  • (Array<String>)


1544
1545
1546
1547
1548
1549
# File 'lib/aws-sdk-autoscaling/types.rb', line 1544

class DescribeAutoScalingInstancesType < Struct.new(
  :instance_ids,
  :max_records,
  :next_token)
  include Aws::Structure
end

#max_recordsInteger

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

Returns:

  • (Integer)


1544
1545
1546
1547
1548
1549
# File 'lib/aws-sdk-autoscaling/types.rb', line 1544

class DescribeAutoScalingInstancesType < Struct.new(
  :instance_ids,
  :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)


1544
1545
1546
1547
1548
1549
# File 'lib/aws-sdk-autoscaling/types.rb', line 1544

class DescribeAutoScalingInstancesType < Struct.new(
  :instance_ids,
  :max_records,
  :next_token)
  include Aws::Structure
end