Class: Aws::Ivschat::Types::DisconnectUserRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-ivschat/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[:user_id]

Instance Attribute Summary collapse

Instance Attribute Details

#reasonString

Reason for disconnecting the user.

Returns:

  • (String)


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_identifierString

Identifier of the room from which the user’s clients should be disconnected. Currently this must be an ARN.

Returns:

  • (String)


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_idString

ID of the user (connection) to disconnect from the room.

Returns:

  • (String)


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