Class: Aws::Pinpoint::Types::AttributeDimension
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::AttributeDimension
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pinpoint/types.rb
Overview
Note:
When making an API call, you may pass AttributeDimension data as a hash:
{
attribute_type: "INCLUSIVE", # accepts INCLUSIVE, EXCLUSIVE
values: ["__string"],
}
Custom attibute dimension
Instance Attribute Summary collapse
-
#attribute_type ⇒ String
The type of dimension: INCLUSIVE - Endpoints that match the criteria are included in the segment.
- #values ⇒ Array<String>
Instance Attribute Details
#attribute_type ⇒ String
The type of dimension: INCLUSIVE - Endpoints that match the criteria are included in the segment. EXCLUSIVE - Endpoints that match the criteria are excluded from the segment.
511 512 513 514 515 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 511 class AttributeDimension < Struct.new( :attribute_type, :values) include Aws::Structure end |
#values ⇒ Array<String>
511 512 513 514 515 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 511 class AttributeDimension < Struct.new( :attribute_type, :values) include Aws::Structure end |