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

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#client_idString

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

Returns:

  • (String)


7327
7328
7329
7330
7331
7332
7333
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 7327

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)


7327
7328
7329
7330
7331
7332
7333
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 7327

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)


7327
7328
7329
7330
7331
7332
7333
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 7327

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