Class: Aws::CognitoIdentityProvider::Types::AssociateSoftwareTokenResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentityProvider::Types::AssociateSoftwareTokenResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cognitoidentityprovider/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:secret_code, :session]
Instance Attribute Summary collapse
-
#secret_code ⇒ String
A unique generated shared secret code that is used in the TOTP algorithm to generate a one-time code.
-
#session ⇒ String
The session that should be passed both ways in challenge-response calls to the service.
Instance Attribute Details
#secret_code ⇒ String
A unique generated shared secret code that is used in the TOTP algorithm to generate a one-time code.
2140 2141 2142 2143 2144 2145 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 2140 class AssociateSoftwareTokenResponse < Struct.new( :secret_code, :session) SENSITIVE = [:secret_code, :session] include Aws::Structure end |
#session ⇒ String
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.
2140 2141 2142 2143 2144 2145 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 2140 class AssociateSoftwareTokenResponse < Struct.new( :secret_code, :session) SENSITIVE = [:secret_code, :session] include Aws::Structure end |