Class: Aws::Pinpoint::Types::WriteEventStream

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

{
  destination_stream_arn: "__string",
  role_arn: "__string",
}

Request to save an EventStream.

Instance Attribute Summary collapse

Instance Attribute Details

#destination_stream_arnString

The Amazon Resource Name (ARN) of the Amazon Kinesis stream or Firehose delivery stream to which you want to publish events. Firehose ARN: arn:aws:firehose:REGION:ACCOUNT_ID:deliverystream/STREAM_NAME Kinesis ARN: arn:aws:kinesis:REGION:ACCOUNT_ID:stream/STREAM_NAME

Returns:

  • (String)


10852
10853
10854
10855
10856
# File 'lib/aws-sdk-pinpoint/types.rb', line 10852

class WriteEventStream < Struct.new(
  :destination_stream_arn,
  :role_arn)
  include Aws::Structure
end

#role_arnString

The IAM role that authorizes Amazon Pinpoint to publish events to the stream in your account.

Returns:

  • (String)


10852
10853
10854
10855
10856
# File 'lib/aws-sdk-pinpoint/types.rb', line 10852

class WriteEventStream < Struct.new(
  :destination_stream_arn,
  :role_arn)
  include Aws::Structure
end