Class: Aws::CognitoIdentityProvider::Types::DescribeUserPoolClientRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-cognitoidentityprovider/types.rb

Overview

Represents the request to describe a user pool client.

Constant Summary collapse

SENSITIVE =
[:client_id]

Instance Attribute Summary collapse

Instance Attribute Details

#client_idString

The app client ID of the app associated with the user pool.

Returns:

  • (String)


4067
4068
4069
4070
4071
4072
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 4067

class DescribeUserPoolClientRequest < Struct.new(
  :user_pool_id,
  :client_id)
  SENSITIVE = [:client_id]
  include Aws::Structure
end

#user_pool_idString

The user pool ID for the user pool you want to describe.

Returns:

  • (String)


4067
4068
4069
4070
4071
4072
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 4067

class DescribeUserPoolClientRequest < Struct.new(
  :user_pool_id,
  :client_id)
  SENSITIVE = [:client_id]
  include Aws::Structure
end