Class: Aws::CognitoIdentityProvider::Types::AssociateSoftwareTokenResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentityProvider::Types::AssociateSoftwareTokenResponse
- Defined in:
- gems/aws-sdk-cognitoidentityprovider/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 by the TOTP algorithm to generate a one-time code.
-
#session ⇒ String
The session identifier that maintains the state of authentication requests and challenge responses.
Instance Attribute Details
#secret_code ⇒ String
A unique generated shared secret code that is used by the TOTP algorithm to generate a one-time code.
2608 2609 2610 2611 2612 2613 |
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 2608 class AssociateSoftwareTokenResponse < Struct.new( :secret_code, :session) SENSITIVE = [:secret_code, :session] include Aws::Structure end |
#session ⇒ String
The session identifier that maintains the state of authentication requests and challenge responses.
2608 2609 2610 2611 2612 2613 |
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 2608 class AssociateSoftwareTokenResponse < Struct.new( :secret_code, :session) SENSITIVE = [:secret_code, :session] include Aws::Structure end |