Class: Aws::CognitoIdentityProvider::Types::RevokeTokenRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentityProvider::Types::RevokeTokenRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cognitoidentityprovider/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:token, :client_id, :client_secret]
Instance Attribute Summary collapse
-
#client_id ⇒ String
The client ID for the token that you want to revoke.
-
#client_secret ⇒ String
The secret for the client ID.
-
#token ⇒ String
The refresh token that you want to revoke.
Instance Attribute Details
#client_id ⇒ String
The client ID for the token that you want to revoke.
7556 7557 7558 7559 7560 7561 7562 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 7556 class RevokeTokenRequest < Struct.new( :token, :client_id, :client_secret) SENSITIVE = [:token, :client_id, :client_secret] include Aws::Structure end |
#client_secret ⇒ String
The secret for the client ID. This is required only if the client ID has a secret.
7556 7557 7558 7559 7560 7561 7562 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 7556 class RevokeTokenRequest < Struct.new( :token, :client_id, :client_secret) SENSITIVE = [:token, :client_id, :client_secret] include Aws::Structure end |
#token ⇒ String
The refresh token that you want to revoke.
7556 7557 7558 7559 7560 7561 7562 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 7556 class RevokeTokenRequest < Struct.new( :token, :client_id, :client_secret) SENSITIVE = [:token, :client_id, :client_secret] include Aws::Structure end |