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.
      95 96 97 98 99 100 101  | 
    
      # File 'gems/aws-sdk-freetier/lib/aws-sdk-freetier/types.rb', line 95 class DimensionValues < Struct.new( :key, :values, :match_options) 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.
      95 96 97 98 99 100 101  | 
    
      # File 'gems/aws-sdk-freetier/lib/aws-sdk-freetier/types.rb', line 95 class DimensionValues < Struct.new( :key, :values, :match_options) 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.
      95 96 97 98 99 100 101  | 
    
      # File 'gems/aws-sdk-freetier/lib/aws-sdk-freetier/types.rb', line 95 class DimensionValues < Struct.new( :key, :values, :match_options) SENSITIVE = [] include Aws::Structure end  |