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.
9794 9795 9796 9797 9798 9799 9800 |
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 9794 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.
9794 9795 9796 9797 9798 9799 9800 |
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 9794 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.
9794 9795 9796 9797 9798 9799 9800 |
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 9794 class RevokeTokenRequest < Struct.new( :token, :client_id, :client_secret) SENSITIVE = [:token, :client_id, :client_secret] include Aws::Structure end |