Class: Aws::CognitoIdentityProvider::Types::AddUserPoolClientSecretRequest

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#client_idString

The ID of the app client for which you want to create a new secret.

Returns:

  • (String)


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_secretString

The client secret value you want to use. If you don't provide this parameter, Amazon Cognito generates a secure secret for you.

Returns:

  • (String)


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_idString

The ID of the user pool that contains the app client.

Returns:

  • (String)


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