Class: Aws::CognitoIdentityProvider::Types::GetUICustomizationRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentityProvider::Types::GetUICustomizationRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cognitoidentityprovider/types.rb
Overview
Note:
When making an API call, you may pass GetUICustomizationRequest data as a hash:
{
user_pool_id: "UserPoolIdType", # required
client_id: "ClientIdType",
}
Constant Summary collapse
- SENSITIVE =
[:client_id]
Instance Attribute Summary collapse
-
#client_id ⇒ String
The client ID for the client app.
-
#user_pool_id ⇒ String
The user pool ID for the user pool.
Instance Attribute Details
#client_id ⇒ String
The client ID for the client app.
5493 5494 5495 5496 5497 5498 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 5493 class GetUICustomizationRequest < Struct.new( :user_pool_id, :client_id) SENSITIVE = [:client_id] include Aws::Structure end |
#user_pool_id ⇒ String
The user pool ID for the user pool.
5493 5494 5495 5496 5497 5498 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 5493 class GetUICustomizationRequest < Struct.new( :user_pool_id, :client_id) SENSITIVE = [:client_id] include Aws::Structure end |