Class: Aws::CognitoIdentityProvider::Types::UserPoolClientDescription
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentityProvider::Types::UserPoolClientDescription
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cognitoidentityprovider/types.rb
Overview
The description of the user pool client.
Constant Summary collapse
- SENSITIVE =
[:client_id]
Instance Attribute Summary collapse
-
#client_id ⇒ String
The ID of the client associated with the user pool.
-
#client_name ⇒ String
The client name from the user pool client description.
-
#user_pool_id ⇒ String
The user pool ID for the user pool where you want to describe the user pool client.
Instance Attribute Details
#client_id ⇒ String
The ID of the client associated with the user pool.
10065 10066 10067 10068 10069 10070 10071 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 10065 class UserPoolClientDescription < Struct.new( :client_id, :user_pool_id, :client_name) SENSITIVE = [:client_id] include Aws::Structure end |
#client_name ⇒ String
The client name from the user pool client description.
10065 10066 10067 10068 10069 10070 10071 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 10065 class UserPoolClientDescription < Struct.new( :client_id, :user_pool_id, :client_name) SENSITIVE = [:client_id] include Aws::Structure end |
#user_pool_id ⇒ String
The user pool ID for the user pool where you want to describe the user pool client.
10065 10066 10067 10068 10069 10070 10071 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 10065 class UserPoolClientDescription < Struct.new( :client_id, :user_pool_id, :client_name) SENSITIVE = [:client_id] include Aws::Structure end |