Class: Aws::FreeTier::Types::DimensionValues
- Inherits:
-
Struct
- Object
- Struct
- Aws::FreeTier::Types::DimensionValues
- Defined in:
- gems/aws-sdk-freetier/lib/aws-sdk-freetier/types.rb
Overview
Contains the specifications for the filters to use for your request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key ⇒ String
The name of the dimension that you want to filter on.
-
#match_options ⇒ Array<String>
The match options that you can use to filter your results.
-
#values ⇒ Array<String>
The metadata values you can specify to filter upon, so that the results all match at least one of the specified values.
Instance Attribute Details
#key ⇒ String
The name of the dimension that you want to filter on.
31 32 33 34 35 36 37 |
# File 'gems/aws-sdk-freetier/lib/aws-sdk-freetier/types.rb', line 31 class DimensionValues < Struct.new( :key, :match_options, :values) SENSITIVE = [] include Aws::Structure end |
#match_options ⇒ Array<String>
The match options that you can use to filter your results. You can specify only one of these values in the array.
31 32 33 34 35 36 37 |
# File 'gems/aws-sdk-freetier/lib/aws-sdk-freetier/types.rb', line 31 class DimensionValues < Struct.new( :key, :match_options, :values) SENSITIVE = [] include Aws::Structure end |
#values ⇒ Array<String>
The metadata values you can specify to filter upon, so that the results all match at least one of the specified values.
31 32 33 34 35 36 37 |
# File 'gems/aws-sdk-freetier/lib/aws-sdk-freetier/types.rb', line 31 class DimensionValues < Struct.new( :key, :match_options, :values) SENSITIVE = [] include Aws::Structure end |