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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-ivschat/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)


443
444
445
446
447
448
449
# File 'gems/aws-sdk-ivschat/lib/aws-sdk-ivschat/types.rb', line 443

class DisconnectUserRequest < Struct.new(
  :reason,
  :room_identifier,
  :user_id)
  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)


443
444
445
446
447
448
449
# File 'gems/aws-sdk-ivschat/lib/aws-sdk-ivschat/types.rb', line 443

class DisconnectUserRequest < Struct.new(
  :reason,
  :room_identifier,
  :user_id)
  SENSITIVE = [:user_id]
  include Aws::Structure
end

#user_idString

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

Returns:

  • (String)


443
444
445
446
447
448
449
# File 'gems/aws-sdk-ivschat/lib/aws-sdk-ivschat/types.rb', line 443

class DisconnectUserRequest < Struct.new(
  :reason,
  :room_identifier,
  :user_id)
  SENSITIVE = [:user_id]
  include Aws::Structure
end