Class: Aws::CognitoIdentityProvider::Types::DescribeUserPoolClientRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CognitoIdentityProvider::Types::DescribeUserPoolClientRequest
 
 
- 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
- 
  
    
      #client_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ID of the app client that you want to describe.
 - 
  
    
      #user_pool_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ID of the user pool that contains the app client you want to describe.
 
Instance Attribute Details
#client_id ⇒ String
The ID of the app client that you want to describe.
      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_id ⇒ String
The ID of the user pool that contains the app client you want to describe.
      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  |