Class: Aws::Ivschat::Types::DisconnectUserRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Ivschat::Types::DisconnectUserRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ivschat/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:user_id]
Instance Attribute Summary collapse
-
#reason ⇒ String
Reason for disconnecting the user.
-
#room_identifier ⇒ String
Identifier of the room from which the user’s clients should be disconnected.
-
#user_id ⇒ String
ID of the user (connection) to disconnect from the room.
Instance Attribute Details
#reason ⇒ String
Reason for disconnecting the user.
445 446 447 448 449 450 451 |
# File 'lib/aws-sdk-ivschat/types.rb', line 445 class DisconnectUserRequest < Struct.new( :room_identifier, :user_id, :reason) SENSITIVE = [:user_id] include Aws::Structure end |
#room_identifier ⇒ String
Identifier of the room from which the user’s clients should be disconnected. Currently this must be an ARN.
445 446 447 448 449 450 451 |
# File 'lib/aws-sdk-ivschat/types.rb', line 445 class DisconnectUserRequest < Struct.new( :room_identifier, :user_id, :reason) SENSITIVE = [:user_id] include Aws::Structure end |
#user_id ⇒ String
ID of the user (connection) to disconnect from the room.
445 446 447 448 449 450 451 |
# File 'lib/aws-sdk-ivschat/types.rb', line 445 class DisconnectUserRequest < Struct.new( :room_identifier, :user_id, :reason) SENSITIVE = [:user_id] include Aws::Structure end |