Class: Aws::AutoScaling::Types::Filter

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

{
  name: "XmlString",
  values: ["XmlString"],
}

Describes a filter.

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the filter. The valid values are: ‘“auto-scaling-group”`, `“key”`, `“value”`, and `“propagate-at-launch”`.

Returns:

  • (String)


2462
2463
2464
2465
2466
# File 'lib/aws-sdk-autoscaling/types.rb', line 2462

class Filter < Struct.new(
  :name,
  :values)
  include Aws::Structure
end

#valuesArray<String>

The value of the filter.

Returns:

  • (Array<String>)


2462
2463
2464
2465
2466
# File 'lib/aws-sdk-autoscaling/types.rb', line 2462

class Filter < Struct.new(
  :name,
  :values)
  include Aws::Structure
end