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: