Class: Aws::Pinpoint::Types::ResultRow
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::ResultRow
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pinpoint/types.rb
Overview
Provides the results of a query that retrieved the data for a standard metric that applies to an application, campaign, or journey.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#grouped_bys ⇒ Array<Types::ResultRowValue>
An array of objects that defines the field and field values that were used to group data in a result set that contains multiple results.
-
#values ⇒ Array<Types::ResultRowValue>
An array of objects that provides pre-aggregated values for a standard metric that applies to an application, campaign, or journey.
Instance Attribute Details
#grouped_bys ⇒ Array<Types::ResultRowValue>
An array of objects that defines the field and field values that were used to group data in a result set that contains multiple results. This value is null if the data in a result set isn’t grouped.
10544 10545 10546 10547 10548 10549 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 10544 class ResultRow < Struct.new( :grouped_bys, :values) SENSITIVE = [] include Aws::Structure end |
#values ⇒ Array<Types::ResultRowValue>
An array of objects that provides pre-aggregated values for a standard metric that applies to an application, campaign, or journey.
10544 10545 10546 10547 10548 10549 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 10544 class ResultRow < Struct.new( :grouped_bys, :values) SENSITIVE = [] include Aws::Structure end |