Class: Aws::Pinpoint::Types::PutEventStreamRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::PutEventStreamRequest
- 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", # required
role_arn: "__string", # required
},
}
Instance Attribute Summary collapse
- #application_id ⇒ String
-
#write_event_stream ⇒ Types::WriteEventStream
Specifies the Amazon Resource Name (ARN) of an event stream to publish events to and the AWS Identity and Access Management (IAM) role to use when publishing those events.
Instance Attribute Details
#application_id ⇒ String
11972 11973 11974 11975 11976 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 11972 class PutEventStreamRequest < Struct.new( :application_id, :write_event_stream) include Aws::Structure end |
#write_event_stream ⇒ Types::WriteEventStream
Specifies the Amazon Resource Name (ARN) of an event stream to publish events to and the AWS Identity and Access Management (IAM) role to use when publishing those events.
11972 11973 11974 11975 11976 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 11972 class PutEventStreamRequest < Struct.new( :application_id, :write_event_stream) include Aws::Structure end |