Class: Aws::Pinpoint::Types::UpdateSegmentRequest

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 UpdateSegmentRequest data as a hash:

{
  application_id: "__string", # required
  segment_id: "__string", # required
  write_segment_request: { # required
    dimensions: {
      attributes: {
        "__string" => {
          attribute_type: "INCLUSIVE", # accepts INCLUSIVE, EXCLUSIVE
          values: ["__string"],
        },
      },
      behavior: {
        recency: {
          duration: "HR_24", # accepts HR_24, DAY_7, DAY_14, DAY_30
          recency_type: "ACTIVE", # accepts ACTIVE, INACTIVE
        },
      },
      demographic: {
        app_version: {
          dimension_type: "INCLUSIVE", # accepts INCLUSIVE, EXCLUSIVE
          values: ["__string"],
        },
        channel: {
          dimension_type: "INCLUSIVE", # accepts INCLUSIVE, EXCLUSIVE
          values: ["__string"],
        },
        device_type: {
          dimension_type: "INCLUSIVE", # accepts INCLUSIVE, EXCLUSIVE
          values: ["__string"],
        },
        make: {
          dimension_type: "INCLUSIVE", # accepts INCLUSIVE, EXCLUSIVE
          values: ["__string"],
        },
        model: {
          dimension_type: "INCLUSIVE", # accepts INCLUSIVE, EXCLUSIVE
          values: ["__string"],
        },
        platform: {
          dimension_type: "INCLUSIVE", # accepts INCLUSIVE, EXCLUSIVE
          values: ["__string"],
        },
      },
      location: {
        country: {
          dimension_type: "INCLUSIVE", # accepts INCLUSIVE, EXCLUSIVE
          values: ["__string"],
        },
      },
      user_attributes: {
        "__string" => {
          attribute_type: "INCLUSIVE", # accepts INCLUSIVE, EXCLUSIVE
          values: ["__string"],
        },
      },
    },
    name: "__string",
  },
}

Instance Attribute Summary collapse

Instance Attribute Details

#application_idString

Returns:

  • (String)


7778
7779
7780
7781
7782
7783
# File 'lib/aws-sdk-pinpoint/types.rb', line 7778

class UpdateSegmentRequest < Struct.new(
  :application_id,
  :segment_id,
  :write_segment_request)
  include Aws::Structure
end

#segment_idString

Returns:

  • (String)


7778
7779
7780
7781
7782
7783
# File 'lib/aws-sdk-pinpoint/types.rb', line 7778

class UpdateSegmentRequest < Struct.new(
  :application_id,
  :segment_id,
  :write_segment_request)
  include Aws::Structure
end

#write_segment_requestTypes::WriteSegmentRequest

Segment definition.



7778
7779
7780
7781
7782
7783
# File 'lib/aws-sdk-pinpoint/types.rb', line 7778

class UpdateSegmentRequest < Struct.new(
  :application_id,
  :segment_id,
  :write_segment_request)
  include Aws::Structure
end