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 ID of the app client that you want to describe.

Returns:

  • (String)


5242
5243
5244
5245
5246
5247
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 5242

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

#user_pool_idString

The ID of the user pool that contains the app client you want to describe.

Returns:

  • (String)


5242
5243
5244
5245
5246
5247
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 5242

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