Class: Aws::Ivschat::Types::UpdateRoomRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Ivschat::Types::UpdateRoomRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ivschat/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#identifier ⇒ String
Identifier of the room to be updated.
-
#logging_configuration_identifiers ⇒ Array<String>
Array of logging-configuration identifiers attached to the room.
-
#maximum_message_length ⇒ Integer
The maximum number of characters in a single message.
-
#maximum_message_rate_per_second ⇒ Integer
Maximum number of messages per second that can be sent to the room (by all clients).
-
#message_review_handler ⇒ Types::MessageReviewHandler
Configuration information for optional review of messages.
-
#name ⇒ String
Room name.
Instance Attribute Details
#identifier ⇒ String
Identifier of the room to be updated. Currently this must be an ARN.
1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 |
# File 'lib/aws-sdk-ivschat/types.rb', line 1199 class UpdateRoomRequest < Struct.new( :identifier, :name, :maximum_message_rate_per_second, :maximum_message_length, :message_review_handler, :logging_configuration_identifiers) SENSITIVE = [] include Aws::Structure end |
#logging_configuration_identifiers ⇒ Array<String>
Array of logging-configuration identifiers attached to the room.
1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 |
# File 'lib/aws-sdk-ivschat/types.rb', line 1199 class UpdateRoomRequest < Struct.new( :identifier, :name, :maximum_message_rate_per_second, :maximum_message_length, :message_review_handler, :logging_configuration_identifiers) SENSITIVE = [] include Aws::Structure end |
#maximum_message_length ⇒ Integer
The maximum number of characters in a single message. Messages are expected to be UTF-8 encoded and this limit applies specifically to rune/code-point count, not number of bytes. Default: 500.
1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 |
# File 'lib/aws-sdk-ivschat/types.rb', line 1199 class UpdateRoomRequest < Struct.new( :identifier, :name, :maximum_message_rate_per_second, :maximum_message_length, :message_review_handler, :logging_configuration_identifiers) SENSITIVE = [] include Aws::Structure end |
#maximum_message_rate_per_second ⇒ Integer
Maximum number of messages per second that can be sent to the room (by all clients). Default: 10.
1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 |
# File 'lib/aws-sdk-ivschat/types.rb', line 1199 class UpdateRoomRequest < Struct.new( :identifier, :name, :maximum_message_rate_per_second, :maximum_message_length, :message_review_handler, :logging_configuration_identifiers) SENSITIVE = [] include Aws::Structure end |
#message_review_handler ⇒ Types::MessageReviewHandler
Configuration information for optional review of messages. Specify an empty ‘uri` string to disassociate a message review handler from the specified room.
1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 |
# File 'lib/aws-sdk-ivschat/types.rb', line 1199 class UpdateRoomRequest < Struct.new( :identifier, :name, :maximum_message_rate_per_second, :maximum_message_length, :message_review_handler, :logging_configuration_identifiers) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
Room name. The value does not need to be unique.
1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 |
# File 'lib/aws-sdk-ivschat/types.rb', line 1199 class UpdateRoomRequest < Struct.new( :identifier, :name, :maximum_message_rate_per_second, :maximum_message_length, :message_review_handler, :logging_configuration_identifiers) SENSITIVE = [] include Aws::Structure end |