Class: Aws::CognitoIdentityProvider::Types::DeleteUserAttributesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentityProvider::Types::DeleteUserAttributesRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cognitoidentityprovider/types.rb
Overview
Represents the request to delete user attributes.
Constant Summary collapse
- SENSITIVE =
[:access_token]
Instance Attribute Summary collapse
-
#access_token ⇒ String
A valid access token that Amazon Cognito issued to the user whose attributes you want to delete.
-
#user_attribute_names ⇒ Array<String>
An array of strings representing the user attribute names you want to delete.
Instance Attribute Details
#access_token ⇒ String
A valid access token that Amazon Cognito issued to the user whose attributes you want to delete.
3896 3897 3898 3899 3900 3901 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 3896 class DeleteUserAttributesRequest < Struct.new( :user_attribute_names, :access_token) SENSITIVE = [:access_token] include Aws::Structure end |
#user_attribute_names ⇒ Array<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.
3896 3897 3898 3899 3900 3901 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 3896 class DeleteUserAttributesRequest < Struct.new( :user_attribute_names, :access_token) SENSITIVE = [:access_token] include Aws::Structure end |