Class: Aws::AutoScaling::Types::DescribeTagsType

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

{
  filters: [
    {
      name: "XmlString",
      values: ["XmlString"],
    },
  ],
  next_token: "XmlString",
  max_records: 1,
}

Instance Attribute Summary collapse

Instance Attribute Details

#filtersArray<Types::Filter>

One or more filters to scope the tags to return. The maximum number of filters per filter type (for example, ‘auto-scaling-group`) is 1000.

Returns:



1949
1950
1951
1952
1953
1954
# File 'lib/aws-sdk-autoscaling/types.rb', line 1949

class DescribeTagsType < Struct.new(
  :filters,
  :next_token,
  :max_records)
  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 100.

Returns:

  • (Integer)


1949
1950
1951
1952
1953
1954
# File 'lib/aws-sdk-autoscaling/types.rb', line 1949

class DescribeTagsType < Struct.new(
  :filters,
  :next_token,
  :max_records)
  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)


1949
1950
1951
1952
1953
1954
# File 'lib/aws-sdk-autoscaling/types.rb', line 1949

class DescribeTagsType < Struct.new(
  :filters,
  :next_token,
  :max_records)
  include Aws::Structure
end