Class: Aws::CognitoIdentityProvider::Types::ForgetDeviceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentityProvider::Types::ForgetDeviceRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cognitoidentityprovider/types.rb
Overview
Note:
When making an API call, you may pass ForgetDeviceRequest data as a hash:
{
access_token: "TokenModelType",
device_key: "DeviceKeyType", # required
}
Represents the request to forget the device.
Constant Summary collapse
- SENSITIVE =
[:access_token]
Instance Attribute Summary collapse
-
#access_token ⇒ String
The access token for the forgotten device request.
-
#device_key ⇒ String
The device key.
Instance Attribute Details
#access_token ⇒ String
The access token for the forgotten device request.
4947 4948 4949 4950 4951 4952 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 4947 class ForgetDeviceRequest < Struct.new( :access_token, :device_key) SENSITIVE = [:access_token] include Aws::Structure end |
#device_key ⇒ String
The device key.
4947 4948 4949 4950 4951 4952 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 4947 class ForgetDeviceRequest < Struct.new( :access_token, :device_key) SENSITIVE = [:access_token] include Aws::Structure end |