Class: Aws::CognitoIdentityProvider::Types::AddUserPoolClientSecretResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentityProvider::Types::AddUserPoolClientSecretResponse
- Defined in:
- gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb
Overview
The response from creating a new client secret.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#client_secret_descriptor ⇒ Types::ClientSecretDescriptorType
The details of the newly created client secret, including its unique identifier and creation timestamp.
Instance Attribute Details
#client_secret_descriptor ⇒ Types::ClientSecretDescriptorType
The details of the newly created client secret, including its unique identifier and creation timestamp. The ClientSecretValue is only returned when Amazon Cognito generates the secret. For custom secrets that you provide, the ClientSecretValue is not included in the response.
240 241 242 243 244 |
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 240 class AddUserPoolClientSecretResponse < Struct.new( :client_secret_descriptor) SENSITIVE = [] include Aws::Structure end |