Class: Aws::CognitoIdentityProvider::Types::GetDeviceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentityProvider::Types::GetDeviceRequest
- Defined in:
- gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb
Overview
Represents the request to get 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 key of the device that you want to get information about.
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
.
6015 6016 6017 6018 6019 6020 |
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 6015 class GetDeviceRequest < Struct.new( :device_key, :access_token) SENSITIVE = [:access_token] include Aws::Structure end |
#device_key ⇒ String
The key of the device that you want to get information about.
6015 6016 6017 6018 6019 6020 |
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 6015 class GetDeviceRequest < Struct.new( :device_key, :access_token) SENSITIVE = [:access_token] include Aws::Structure end |