Skip to main content

managed_login_branding_by_clients

Creates, updates, deletes, gets or lists a managed_login_branding_by_clients resource.

Overview

Namemanaged_login_branding_by_clients
TypeResource
Idaws.cognito_idp.managed_login_branding_by_clients

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
assetsarrayAn array of image files that you want to apply to roles like backgrounds, logos, and icons. Each object must also indicate whether it is for dark mode, light mode, or browser-adaptive mode.
creation_datestring (date-time)The date and time when the item was created. Amazon Cognito returns this timestamp in UNIX epoch time format. Your SDK might render the output in a human-readable format like ISO 8601 or a Java Date object.
last_modified_datestring (date-time)The date and time when the item was modified. Amazon Cognito returns this timestamp in UNIX epoch time format. Your SDK might render the output in a human-readable format like ISO 8601 or a Java Date object.
managed_login_branding_idstringThe ID of the managed login branding style. (pattern: <code>^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[4][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$</code>)
settingsobjectA JSON file, encoded as a Document type, with the the settings that you want to apply to your style. The following components are not currently implemented and reserved for future use: signUp instructions sessionTimerDisplay languageSelector (for localization, see Managed login localization)
use_cognito_provided_valuesbooleanWhen true, applies the default branding style options. This option reverts to default style options that are managed by Amazon Cognito. You can modify them later in the branding editor. When you specify true for this option, you must also omit values for Settings and Assets in the request.
user_pool_idstringThe user pool where the branding style is assigned. (pattern: <code>[\w-]+_[0-9a-zA-Z]+</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_managed_login_branding_by_clientselectregionGiven the ID of a user pool app client, returns detailed information about the style assigned to the app client.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Given the ID of a user pool app client, returns detailed information about the style assigned to the app client.

SELECT
assets,
creation_date,
last_modified_date,
managed_login_branding_id,
settings,
use_cognito_provided_values,
user_pool_id
FROM aws.cognito_idp.managed_login_branding_by_clients
WHERE region = '{{ region }}' -- required
;