Class: Aws::Pinpoint::Types::WriteEventStream
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::WriteEventStream
- 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
-
#destination_stream_arn ⇒ String
The Amazon Resource Name (ARN) of the Amazon Kinesis stream or Firehose delivery stream to which you want to publish events.
-
#role_arn ⇒ String
The IAM role that authorizes Amazon Pinpoint to publish events to the stream in your account.
Instance Attribute Details
#destination_stream_arn ⇒ String
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
5274 5275 5276 5277 5278 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 5274 class WriteEventStream < Struct.new( :destination_stream_arn, :role_arn) include Aws::Structure end |
#role_arn ⇒ String
The IAM role that authorizes Amazon Pinpoint to publish events to the stream in your account.
5274 5275 5276 5277 5278 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 5274 class WriteEventStream < Struct.new( :destination_stream_arn, :role_arn) include Aws::Structure end |