Class: Aws::Pinpoint::Types::EventDimensions

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-pinpoint/types.rb

Overview

Note:

When making an API call, you may pass EventDimensions data as a hash:

{
  attributes: {
    "__string" => {
      attribute_type: "INCLUSIVE", # accepts INCLUSIVE, EXCLUSIVE
      values: ["__string"],
    },
  },
  event_type: {
    dimension_type: "INCLUSIVE", # accepts INCLUSIVE, EXCLUSIVE
    values: ["__string"],
  },
  metrics: {
    "__string" => {
      comparison_operator: "__string",
      value: 1.0,
    },
  },
}

Event dimensions.

Instance Attribute Summary collapse

Instance Attribute Details

#attributesHash<String,Types::AttributeDimension>

Custom attributes that your app reports to Amazon Pinpoint. You can use these attributes as selection criteria when you create an event filter.

Returns:



4342
4343
4344
4345
4346
4347
# File 'lib/aws-sdk-pinpoint/types.rb', line 4342

class EventDimensions < Struct.new(
  :attributes,
  :event_type,
  :metrics)
  include Aws::Structure
end

#event_typeTypes::SetDimension

The name of the event that causes the campaign to be sent. This can be a standard event type that Amazon Pinpoint generates, such as _session.start, or a custom event that’s specific to your app.

Returns:



4342
4343
4344
4345
4346
4347
# File 'lib/aws-sdk-pinpoint/types.rb', line 4342

class EventDimensions < Struct.new(
  :attributes,
  :event_type,
  :metrics)
  include Aws::Structure
end

#metricsHash<String,Types::MetricDimension>

Custom metrics that your app reports to Amazon Pinpoint. You can use these attributes as selection criteria when you create an event filter.

Returns:



4342
4343
4344
4345
4346
4347
# File 'lib/aws-sdk-pinpoint/types.rb', line 4342

class EventDimensions < Struct.new(
  :attributes,
  :event_type,
  :metrics)
  include Aws::Structure
end