Class: Aws::EC2::Types::DimensionCondition
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::DimensionCondition
- Defined in:
- gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb
Overview
Specifies a condition for filtering capacity data based on dimension values. Used to create precise filters for metric queries and dimension lookups.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#comparison ⇒ String
The comparison operator to use for the filter.
-
#dimension ⇒ String
The name of the dimension to filter by.
-
#values ⇒ Array<String>
The list of values to match against the specified dimension.
Instance Attribute Details
#comparison ⇒ String
The comparison operator to use for the filter.
33779 33780 33781 33782 33783 33784 33785 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 33779 class DimensionCondition < Struct.new( :dimension, :comparison, :values) SENSITIVE = [] include Aws::Structure end |
#dimension ⇒ String
The name of the dimension to filter by.
33779 33780 33781 33782 33783 33784 33785 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 33779 class DimensionCondition < Struct.new( :dimension, :comparison, :values) SENSITIVE = [] include Aws::Structure end |
#values ⇒ Array<String>
The list of values to match against the specified dimension. For 'equals' comparison, only the first value is used. For 'in' comparison, any matching value will satisfy the condition.
33779 33780 33781 33782 33783 33784 33785 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 33779 class DimensionCondition < Struct.new( :dimension, :comparison, :values) SENSITIVE = [] include Aws::Structure end |