Class: Aws::Pinpoint::Types::PutEventStreamRequest

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

{
  application_id: "__string", # required
  write_event_stream: { # required
    destination_stream_arn: "__string",
    role_arn: "__string",
  },
}

Instance Attribute Summary collapse

Instance Attribute Details

#application_idString

Application Id.

Returns:

  • (String)


5713
5714
5715
5716
5717
# File 'lib/aws-sdk-pinpoint/types.rb', line 5713

class PutEventStreamRequest < Struct.new(
  :application_id,
  :write_event_stream)
  include Aws::Structure
end

#write_event_streamTypes::WriteEventStream

Write event stream wrapper.



5713
5714
5715
5716
5717
# File 'lib/aws-sdk-pinpoint/types.rb', line 5713

class PutEventStreamRequest < Struct.new(
  :application_id,
  :write_event_stream)
  include Aws::Structure
end