Class: Aws::CognitoIdentityProvider::Types::DeleteUserPoolClientSecretRequest

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

Overview

The request to delete a specific client secret from a user pool app client.

Constant Summary collapse

SENSITIVE =
[:client_id]

Instance Attribute Summary collapse

Instance Attribute Details

#client_idString

The ID of the app client from which you want to delete the secret.

Returns:

  • (String)


5099
5100
5101
5102
5103
5104
5105
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 5099

class DeleteUserPoolClientSecretRequest < Struct.new(
  :user_pool_id,
  :client_id,
  :client_secret_id)
  SENSITIVE = [:client_id]
  include Aws::Structure
end

#client_secret_idString

The unique identifier of the client secret you want to delete.

Returns:

  • (String)


5099
5100
5101
5102
5103
5104
5105
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 5099

class DeleteUserPoolClientSecretRequest < Struct.new(
  :user_pool_id,
  :client_id,
  :client_secret_id)
  SENSITIVE = [:client_id]
  include Aws::Structure
end

#user_pool_idString

The ID of the user pool that contains the app client.

Returns:

  • (String)


5099
5100
5101
5102
5103
5104
5105
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 5099

class DeleteUserPoolClientSecretRequest < Struct.new(
  :user_pool_id,
  :client_id,
  :client_secret_id)
  SENSITIVE = [:client_id]
  include Aws::Structure
end