Class: Aws::CognitoIdentityProvider::Types::DeleteUserAttributesRequest

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

Overview

Represents the request to delete user attributes.

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 user whose attributes you want to delete.

Returns:

  • (String)


3838
3839
3840
3841
3842
3843
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 3838

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

#user_attribute_namesArray<String>

An array of strings representing the user attribute names you want to delete.

For custom attributes, you must prependattach the custom: prefix to the front of the attribute name.

Returns:

  • (Array<String>)


3838
3839
3840
3841
3842
3843
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 3838

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