Class: Aws::AutoScaling::Types::DescribePoliciesType

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

{
  auto_scaling_group_name: "ResourceName",
  policy_names: ["ResourceName"],
  policy_types: ["XmlStringMaxLen64"],
  next_token: "XmlString",
  max_records: 1,
}

Instance Attribute Summary collapse

Instance Attribute Details

#auto_scaling_group_nameString

The name of the Auto Scaling group.

Returns:

  • (String)


1811
1812
1813
1814
1815
1816
1817
1818
# File 'lib/aws-sdk-autoscaling/types.rb', line 1811

class DescribePoliciesType < Struct.new(
  :auto_scaling_group_name,
  :policy_names,
  :policy_types,
  :next_token,
  :max_records)
  include Aws::Structure
end

#max_recordsInteger

The maximum number of items to be returned with each call. The default value is 50 and the maximum value is 100.

Returns:

  • (Integer)


1811
1812
1813
1814
1815
1816
1817
1818
# File 'lib/aws-sdk-autoscaling/types.rb', line 1811

class DescribePoliciesType < Struct.new(
  :auto_scaling_group_name,
  :policy_names,
  :policy_types,
  :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)


1811
1812
1813
1814
1815
1816
1817
1818
# File 'lib/aws-sdk-autoscaling/types.rb', line 1811

class DescribePoliciesType < Struct.new(
  :auto_scaling_group_name,
  :policy_names,
  :policy_types,
  :next_token,
  :max_records)
  include Aws::Structure
end

#policy_namesArray<String>

The names of one or more policies. If you omit this parameter, all policies are described. If a group name is provided, the results are limited to that group. This list is limited to 50 items. If you specify an unknown policy name, it is ignored with no error.

Returns:

  • (Array<String>)


1811
1812
1813
1814
1815
1816
1817
1818
# File 'lib/aws-sdk-autoscaling/types.rb', line 1811

class DescribePoliciesType < Struct.new(
  :auto_scaling_group_name,
  :policy_names,
  :policy_types,
  :next_token,
  :max_records)
  include Aws::Structure
end

#policy_typesArray<String>

One or more policy types. Valid values are ‘SimpleScaling` and `StepScaling`.

Returns:

  • (Array<String>)


1811
1812
1813
1814
1815
1816
1817
1818
# File 'lib/aws-sdk-autoscaling/types.rb', line 1811

class DescribePoliciesType < Struct.new(
  :auto_scaling_group_name,
  :policy_names,
  :policy_types,
  :next_token,
  :max_records)
  include Aws::Structure
end