Class: Aws::Pinpoint::Types::EndpointSendConfiguration

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

{
  body_override: "__string",
  context: {
    "__string" => "__string",
  },
  raw_content: "__string",
  substitutions: {
    "__string" => ["__string"],
  },
  title_override: "__string",
}

Endpoint send configuration.

Instance Attribute Summary collapse

Instance Attribute Details

#body_overrideString

Body override. If specified will override default body.

Returns:

  • (String)


3514
3515
3516
3517
3518
3519
3520
3521
# File 'lib/aws-sdk-pinpoint/types.rb', line 3514

class EndpointSendConfiguration < Struct.new(
  :body_override,
  :context,
  :raw_content,
  :substitutions,
  :title_override)
  include Aws::Structure
end

#contextHash<String,String>

A map of custom attributes to attributes to be attached to the message for this address. This payload is added to the push notification’s ‘data.pinpoint’ object or added to the email/sms delivery receipt event attributes.

Returns:

  • (Hash<String,String>)


3514
3515
3516
3517
3518
3519
3520
3521
# File 'lib/aws-sdk-pinpoint/types.rb', line 3514

class EndpointSendConfiguration < Struct.new(
  :body_override,
  :context,
  :raw_content,
  :substitutions,
  :title_override)
  include Aws::Structure
end

#raw_contentString

The Raw JSON formatted string to be used as the payload. This value overrides the message.

Returns:

  • (String)


3514
3515
3516
3517
3518
3519
3520
3521
# File 'lib/aws-sdk-pinpoint/types.rb', line 3514

class EndpointSendConfiguration < Struct.new(
  :body_override,
  :context,
  :raw_content,
  :substitutions,
  :title_override)
  include Aws::Structure
end

#substitutionsHash<String,Array<String>>

Returns:

  • (Hash<String,Array<String>>)


3514
3515
3516
3517
3518
3519
3520
3521
# File 'lib/aws-sdk-pinpoint/types.rb', line 3514

class EndpointSendConfiguration < Struct.new(
  :body_override,
  :context,
  :raw_content,
  :substitutions,
  :title_override)
  include Aws::Structure
end

#title_overrideString

Title override. If specified will override default title if applicable.

Returns:

  • (String)


3514
3515
3516
3517
3518
3519
3520
3521
# File 'lib/aws-sdk-pinpoint/types.rb', line 3514

class EndpointSendConfiguration < Struct.new(
  :body_override,
  :context,
  :raw_content,
  :substitutions,
  :title_override)
  include Aws::Structure
end