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 app client ID of the app associated with the user pool.
-
#user_pool_id ⇒ String
The user pool ID for the user pool where you want to delete the client.
Instance Attribute Details
#client_id ⇒ String
The app client ID of the app associated with the user pool.
3922 3923 3924 3925 3926 3927 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 3922 class DeleteUserPoolClientRequest < Struct.new( :user_pool_id, :client_id) SENSITIVE = [:client_id] include Aws::Structure end |
#user_pool_id ⇒ String
The user pool ID for the user pool where you want to delete the client.
3922 3923 3924 3925 3926 3927 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 3922 class DeleteUserPoolClientRequest < Struct.new( :user_pool_id, :client_id) SENSITIVE = [:client_id] include Aws::Structure end |