Class: Aws::CognitoIdentityProvider::Types::AddUserPoolClientSecretRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentityProvider::Types::AddUserPoolClientSecretRequest
- Defined in:
- gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb
Overview
The request to create a new client secret for a user pool app client.
Constant Summary collapse
- SENSITIVE =
[:client_id, :client_secret]
Instance Attribute Summary collapse
-
#client_id ⇒ String
The ID of the app client for which you want to create a new secret.
-
#client_secret ⇒ String
The client secret value you want to use.
-
#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 for which you want to create a new secret.
220 221 222 223 224 225 226 |
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 220 class AddUserPoolClientSecretRequest < Struct.new( :user_pool_id, :client_id, :client_secret) SENSITIVE = [:client_id, :client_secret] include Aws::Structure end |
#client_secret ⇒ String
The client secret value you want to use. If you don't provide this parameter, Amazon Cognito generates a secure secret for you.
220 221 222 223 224 225 226 |
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 220 class AddUserPoolClientSecretRequest < Struct.new( :user_pool_id, :client_id, :client_secret) SENSITIVE = [:client_id, :client_secret] include Aws::Structure end |
#user_pool_id ⇒ String
The ID of the user pool that contains the app client.
220 221 222 223 224 225 226 |
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 220 class AddUserPoolClientSecretRequest < Struct.new( :user_pool_id, :client_id, :client_secret) SENSITIVE = [:client_id, :client_secret] include Aws::Structure end |