Class: Aws::Ivschat::Types::SendEventRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Ivschat::Types::SendEventRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ivschat/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#attributes ⇒ Hash<String,String>
Application-defined metadata to attach to the event sent to clients.
-
#event_name ⇒ String
Application-defined name of the event to send to clients.
-
#room_identifier ⇒ String
Identifier of the room to which the event will be sent.
Instance Attribute Details
#attributes ⇒ Hash<String,String>
Application-defined metadata to attach to the event sent to clients. The maximum length of the metadata is 1 KB total.
958 959 960 961 962 963 964 |
# File 'lib/aws-sdk-ivschat/types.rb', line 958 class SendEventRequest < Struct.new( :room_identifier, :event_name, :attributes) SENSITIVE = [] include Aws::Structure end |
#event_name ⇒ String
Application-defined name of the event to send to clients.
958 959 960 961 962 963 964 |
# File 'lib/aws-sdk-ivschat/types.rb', line 958 class SendEventRequest < Struct.new( :room_identifier, :event_name, :attributes) SENSITIVE = [] include Aws::Structure end |
#room_identifier ⇒ String
Identifier of the room to which the event will be sent. Currently this must be an ARN.
958 959 960 961 962 963 964 |
# File 'lib/aws-sdk-ivschat/types.rb', line 958 class SendEventRequest < Struct.new( :room_identifier, :event_name, :attributes) SENSITIVE = [] include Aws::Structure end |