Class: Aws::CognitoIdentityProvider::Types::DeleteUserRequest

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

Overview

Represents the request to delete a user.

Constant Summary collapse

SENSITIVE =
[:access_token]

Instance Attribute Summary collapse

Instance Attribute Details

#access_tokenString

A valid access token that Amazon Cognito issued to the currently signed-in user. Must include a scope claim for ‘aws.cognito.signin.user.admin`.

Returns:

  • (String)


4903
4904
4905
4906
4907
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 4903

class DeleteUserRequest < Struct.new(
  :access_token)
  SENSITIVE = [:access_token]
  include Aws::Structure
end