Class: Aws::CognitoIdentityProvider::Types::DeleteUserPoolClientSecretRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentityProvider::Types::DeleteUserPoolClientSecretRequest
- 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
-
#client_id ⇒ String
The ID of the app client from which you want to delete the secret.
-
#client_secret_id ⇒ String
The unique identifier of the client secret you want to delete.
-
#user_pool_id ⇒ String
The ID of the user pool that contains the app client.
Instance Attribute Details
#client_id ⇒ String
The ID of the app client from which you want to delete the secret.
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_id ⇒ String
The unique identifier of the client secret you want to delete.
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_id ⇒ String
The ID of the user pool that contains the app client.
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 |