Class: Aws::WorkDocs::Types::DeleteUserRequest

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

Overview

Note:

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

{
  authentication_token: "AuthenticationHeaderType",
  user_id: "IdType", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#authentication_tokenString

Amazon WorkDocs authentication token. Do not set this field when using administrative API actions, as in accessing the API using AWS credentials.

Returns:

  • (String)


900
901
902
903
904
# File 'lib/aws-sdk-workdocs/types.rb', line 900

class DeleteUserRequest < Struct.new(
  :authentication_token,
  :user_id)
  include Aws::Structure
end

#user_idString

The ID of the user.

Returns:

  • (String)


900
901
902
903
904
# File 'lib/aws-sdk-workdocs/types.rb', line 900

class DeleteUserRequest < Struct.new(
  :authentication_token,
  :user_id)
  include Aws::Structure
end