Class: Aws::CognitoIdentityProvider::Types::CompleteWebAuthnRegistrationRequest
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::CognitoIdentityProvider::Types::CompleteWebAuthnRegistrationRequest
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cognitoidentityprovider/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
- [:access_token] 
Instance Attribute Summary collapse
- 
  
    
      #access_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A valid access token that Amazon Cognito issued to the user whose passkey registration you want to complete. 
- 
  
    
      #credential  ⇒ Hash, ... 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A [RegistrationResponseJSON] public-key credential response from the user’s passkey provider. 
Instance Attribute Details
#access_token ⇒ String
A valid access token that Amazon Cognito issued to the user whose passkey registration you want to complete.
| 3050 3051 3052 3053 3054 3055 | # File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 3050 class CompleteWebAuthnRegistrationRequest < Struct.new( :access_token, :credential) SENSITIVE = [:access_token] include Aws::Structure end | 
#credential ⇒ Hash, ...
A [RegistrationResponseJSON] public-key credential response from the user’s passkey provider.
[1]: www.w3.org/TR/webauthn-3/#dictdef-registrationresponsejson
| 3050 3051 3052 3053 3054 3055 | # File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 3050 class CompleteWebAuthnRegistrationRequest < Struct.new( :access_token, :credential) SENSITIVE = [:access_token] include Aws::Structure end |