Class: Aws::CognitoIdentityProvider::Types::DeleteUserPoolClientRequest

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

Overview

Represents the request to delete a user pool client.

Constant Summary collapse

SENSITIVE =
[:client_id]

Instance Attribute Summary collapse

Instance Attribute Details

#client_idString

The app client ID of the app associated with the user pool.

Returns:

  • (String)


3864
3865
3866
3867
3868
3869
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 3864

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

#user_pool_idString

The user pool ID for the user pool where you want to delete the client.

Returns:

  • (String)


3864
3865
3866
3867
3868
3869
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 3864

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