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.
      9411 9412 9413 9414 9415 9416 9417  | 
    
      # File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 9411 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.
      9411 9412 9413 9414 9415 9416 9417  | 
    
      # File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 9411 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.
      9411 9412 9413 9414 9415 9416 9417  | 
    
      # File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 9411 class RevokeTokenRequest < Struct.new( :token, :client_id, :client_secret) SENSITIVE = [:token, :client_id, :client_secret] include Aws::Structure end  |