Class: Aws::CognitoIdentityProvider::Types::DeleteWebAuthnCredentialRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentityProvider::Types::DeleteWebAuthnCredentialRequest
- Defined in:
- gems/aws-sdk-cognitoidentityprovider/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 currently signed-in user.
-
#credential_id ⇒ String
The unique identifier of the passkey that you want to delete.
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
.
4921 4922 4923 4924 4925 4926 |
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 4921 class DeleteWebAuthnCredentialRequest < Struct.new( :access_token, :credential_id) SENSITIVE = [:access_token] include Aws::Structure end |
#credential_id ⇒ String
The unique identifier of the passkey that you want to delete.
4921 4922 4923 4924 4925 4926 |
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 4921 class DeleteWebAuthnCredentialRequest < Struct.new( :access_token, :credential_id) SENSITIVE = [:access_token] include Aws::Structure end |