Interface CfnManagedLoginBrandingProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnManagedLoginBrandingProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2025-01-10T21:56:48.825Z")
@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
Modifier 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's assigned to the branding style that you want more information about.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's assigned to the branding style that you want more information about.- 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 designer.
When you specify
true
for this option, you must also omit values forSettings
andAssets
in the request.- See Also:
-
builder
-