Class: Aws::CognitoIdentityProvider::Types::RevokeTokenRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-cognitoidentityprovider/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[:token, :client_id, :client_secret]

Instance Attribute Summary collapse

Instance Attribute Details

#client_idString

The client ID for the token that you want to revoke.

Returns:

  • (String)


7439
7440
7441
7442
7443
7444
7445
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 7439

class RevokeTokenRequest < Struct.new(
  :token,
  :client_id,
  :client_secret)
  SENSITIVE = [:token, :client_id, :client_secret]
  include Aws::Structure
end

#client_secretString

The secret for the client ID. This is required only if the client ID has a secret.

Returns:

  • (String)


7439
7440
7441
7442
7443
7444
7445
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 7439

class RevokeTokenRequest < Struct.new(
  :token,
  :client_id,
  :client_secret)
  SENSITIVE = [:token, :client_id, :client_secret]
  include Aws::Structure
end

#tokenString

The refresh token that you want to revoke.

Returns:

  • (String)


7439
7440
7441
7442
7443
7444
7445
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 7439

class RevokeTokenRequest < Struct.new(
  :token,
  :client_id,
  :client_secret)
  SENSITIVE = [:token, :client_id, :client_secret]
  include Aws::Structure
end