Class: Aws::CognitoIdentityProvider::Types::AssociateSoftwareTokenRequest

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[:access_token, :session]

Instance Attribute Summary collapse

Instance Attribute Details

#access_tokenString

A valid access token that Amazon Cognito issued to the user whose software token you want to generate.

Returns:

  • (String)


2071
2072
2073
2074
2075
2076
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 2071

class AssociateSoftwareTokenRequest < Struct.new(
  :access_token,
  :session)
  SENSITIVE = [:access_token, :session]
  include Aws::Structure
end

#sessionString

The session that should be passed both ways in challenge-response calls to the service. This allows authentication of the user as part of the MFA setup process.

Returns:

  • (String)


2071
2072
2073
2074
2075
2076
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 2071

class AssociateSoftwareTokenRequest < Struct.new(
  :access_token,
  :session)
  SENSITIVE = [:access_token, :session]
  include Aws::Structure
end