Class: Aws::CognitoIdentityProvider::Types::RevokeTokenRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentityProvider::Types::RevokeTokenRequest
- Defined in:
- gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:token, :client_id, :client_secret]
Instance Attribute Summary collapse
-
#client_id ⇒ String
The ID of the app client where the token that you want to revoke was issued.
-
#client_secret ⇒ String
The client secret of the requested app client, if the client has a secret.
-
#token ⇒ String
The refresh token that you want to revoke.
Instance Attribute Details
#client_id ⇒ String
The ID of the app client where the token that you want to revoke was issued.
9371 9372 9373 9374 9375 9376 9377 |
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 9371 class RevokeTokenRequest < Struct.new( :token, :client_id, :client_secret) SENSITIVE = [:token, :client_id, :client_secret] include Aws::Structure end |
#client_secret ⇒ String
The client secret of the requested app client, if the client has a secret.
9371 9372 9373 9374 9375 9376 9377 |
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 9371 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.
9371 9372 9373 9374 9375 9376 9377 |
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 9371 class RevokeTokenRequest < Struct.new( :token, :client_id, :client_secret) SENSITIVE = [:token, :client_id, :client_secret] include Aws::Structure end |