Class: Aws::CognitoIdentityProvider::Types::ForgetDeviceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentityProvider::Types::ForgetDeviceRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cognitoidentityprovider/types.rb
Overview
Represents the request to forget the device.
Constant Summary collapse
- SENSITIVE =
[:access_token]
Instance Attribute Summary collapse
-
#access_token ⇒ String
A valid access token that Amazon Cognito issued to the currently signed-in user.
-
#device_key ⇒ String
The unique identifier, or device key, of the device that the user wants to forget.
Instance Attribute Details
#access_token ⇒ String
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`.
5842 5843 5844 5845 5846 5847 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 5842 class ForgetDeviceRequest < Struct.new( :access_token, :device_key) SENSITIVE = [:access_token] include Aws::Structure end |
#device_key ⇒ String
The unique identifier, or device key, of the device that the user wants to forget.
5842 5843 5844 5845 5846 5847 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 5842 class ForgetDeviceRequest < Struct.new( :access_token, :device_key) SENSITIVE = [:access_token] include Aws::Structure end |