Interface CfnManagedLoginBrandingProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnManagedLoginBrandingProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.112.0 (build de1bc80)",
date="2025-05-19T18:25:46.459Z")
@Stability(Stable)
public interface CfnManagedLoginBrandingProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnManagedLoginBranding
.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.cognito.*; Object settings; CfnManagedLoginBrandingProps cfnManagedLoginBrandingProps = CfnManagedLoginBrandingProps.builder() .userPoolId("userPoolId") // the properties below are optional .assets(List.of(AssetTypeProperty.builder() .category("category") .colorMode("colorMode") .extension("extension") // the properties below are optional .bytes("bytes") .resourceId("resourceId") .build())) .clientId("clientId") .returnMergedResources(false) .settings(settings) .useCognitoProvidedValues(false) .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnManagedLoginBrandingProps
static final class
An implementation forCfnManagedLoginBrandingProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
An array of image files that you want to apply to roles like backgrounds, logos, and icons.default String
The app client that you want to assign the branding style to.default Object
Whentrue
, returns values for branding options that are unchanged from Amazon Cognito defaults.default Object
A JSON file, encoded as aDocument
type, with the the settings that you want to apply to your style.default Object
When true, applies the default branding style options.The user pool where the branding style is assigned.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getUserPoolId
The user pool where the branding style is assigned.- See Also:
-
getAssets
An 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.
- See Also:
-
getClientId
The app client that you want to assign the branding style to.Each style is linked to an app client until you delete it.
- See Also:
-
getReturnMergedResources
Whentrue
, returns values for branding options that are unchanged from Amazon Cognito defaults.When
false
or when you omit this parameter, returns only values that you customized in your branding style.- See Also:
-
getSettings
A JSON file, encoded as aDocument
type, with the the settings that you want to apply to your style.- See Also:
-
getUseCognitoProvidedValues
When 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 forSettings
andAssets
in the request.- See Also:
-
builder
-