Class: Aws::Chime::Types::LogoutUserRequest

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

Overview

Note:

When making an API call, you may pass LogoutUserRequest data as a hash:

{
  account_id: "NonEmptyString", # required
  user_id: "NonEmptyString", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#account_idString

The Amazon Chime account ID.

Returns:

  • (String)


550
551
552
553
554
# File 'lib/aws-sdk-chime/types.rb', line 550

class LogoutUserRequest < Struct.new(
  :account_id,
  :user_id)
  include Aws::Structure
end

#user_idString

The user ID.

Returns:

  • (String)


550
551
552
553
554
# File 'lib/aws-sdk-chime/types.rb', line 550

class LogoutUserRequest < Struct.new(
  :account_id,
  :user_id)
  include Aws::Structure
end