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 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.
9091 9092 9093 9094 9095 9096 9097 |
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 9091 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.
9091 9092 9093 9094 9095 9096 9097 |
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 9091 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.
9091 9092 9093 9094 9095 9096 9097 |
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 9091 class RevokeTokenRequest < Struct.new( :token, :client_id, :client_secret) SENSITIVE = [:token, :client_id, :client_secret] include Aws::Structure end |