Class: Aws::CognitoIdentityProvider::Types::ConfirmDeviceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentityProvider::Types::ConfirmDeviceRequest
- Defined in:
- gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb
Overview
The confirm-device request.
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 you want to update the status for.
-
#device_name ⇒ String
A friendly name for the device, for example
MyMobilePhone
. -
#device_secret_verifier_config ⇒ Types::DeviceSecretVerifierConfigType
The configuration of the device secret verifier.
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
.
3125 3126 3127 3128 3129 3130 3131 3132 |
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 3125 class ConfirmDeviceRequest < Struct.new( :access_token, :device_key, :device_secret_verifier_config, :device_name) SENSITIVE = [:access_token] include Aws::Structure end |
#device_key ⇒ String
The unique identifier, or device key, of the device that you want to update the status for.
3125 3126 3127 3128 3129 3130 3131 3132 |
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 3125 class ConfirmDeviceRequest < Struct.new( :access_token, :device_key, :device_secret_verifier_config, :device_name) SENSITIVE = [:access_token] include Aws::Structure end |
#device_name ⇒ String
A friendly name for the device, for example MyMobilePhone
.
3125 3126 3127 3128 3129 3130 3131 3132 |
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 3125 class ConfirmDeviceRequest < Struct.new( :access_token, :device_key, :device_secret_verifier_config, :device_name) SENSITIVE = [:access_token] include Aws::Structure end |
#device_secret_verifier_config ⇒ Types::DeviceSecretVerifierConfigType
The configuration of the device secret verifier.
3125 3126 3127 3128 3129 3130 3131 3132 |
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 3125 class ConfirmDeviceRequest < Struct.new( :access_token, :device_key, :device_secret_verifier_config, :device_name) SENSITIVE = [:access_token] include Aws::Structure end |