Class: Aws::Pinpoint::Types::ResultRowValue
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Pinpoint::Types::ResultRowValue
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-pinpoint/types.rb
 
Overview
Provides a single value and metadata about that value as part of an array of query results for a standard metric that applies to an application, campaign, or journey.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #key  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The friendly name of the metric whose value is specified by the Value property.
 - 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The data type of the value specified by the Value property.
 - 
  
    
      #value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
In a Values object, the value for the metric that the query retrieved data for.
 
Instance Attribute Details
#key ⇒ String
The friendly name of the metric whose value is specified by the Value property.
      10573 10574 10575 10576 10577 10578 10579  | 
    
      # File 'lib/aws-sdk-pinpoint/types.rb', line 10573 class ResultRowValue < Struct.new( :key, :type, :value) SENSITIVE = [] include Aws::Structure end  | 
  
#type ⇒ String
The data type of the value specified by the Value property.
      10573 10574 10575 10576 10577 10578 10579  | 
    
      # File 'lib/aws-sdk-pinpoint/types.rb', line 10573 class ResultRowValue < Struct.new( :key, :type, :value) SENSITIVE = [] include Aws::Structure end  | 
  
#value ⇒ String
In a Values object, the value for the metric that the query retrieved data for. In a GroupedBys object, the value for the field that was used to group data in a result set that contains multiple results (Values objects).
      10573 10574 10575 10576 10577 10578 10579  | 
    
      # File 'lib/aws-sdk-pinpoint/types.rb', line 10573 class ResultRowValue < Struct.new( :key, :type, :value) SENSITIVE = [] include Aws::Structure end  |