Class: Aws::CognitoIdentityProvider::Types::DeleteUserPoolClientRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentityProvider::Types::DeleteUserPoolClientRequest
- 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
-
#client_id ⇒ String
The ID of the user pool app client that you want to delete.
-
#user_pool_id ⇒ String
The ID of the user pool where you want to delete the client.
Instance Attribute Details
#client_id ⇒ String
The ID of the user pool app client that you want to delete.
4929 4930 4931 4932 4933 4934 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 4929 class DeleteUserPoolClientRequest < Struct.new( :user_pool_id, :client_id) SENSITIVE = [:client_id] include Aws::Structure end |
#user_pool_id ⇒ String
The ID of the user pool where you want to delete the client.
4929 4930 4931 4932 4933 4934 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 4929 class DeleteUserPoolClientRequest < Struct.new( :user_pool_id, :client_id) SENSITIVE = [:client_id] include Aws::Structure end |