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 user whose registered device you want to forget.
-
#device_key ⇒ String
The device key.
Instance Attribute Details
#access_token ⇒ String
A valid access token that Amazon Cognito issued to the user whose registered device you want to forget.
4761 4762 4763 4764 4765 4766 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 4761 class ForgetDeviceRequest < Struct.new( :access_token, :device_key) SENSITIVE = [:access_token] include Aws::Structure end |
#device_key ⇒ String
The device key.
4761 4762 4763 4764 4765 4766 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 4761 class ForgetDeviceRequest < Struct.new( :access_token, :device_key) SENSITIVE = [:access_token] include Aws::Structure end |