Interface CfnManagedLoginBranding.AssetTypeProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnManagedLoginBranding.AssetTypeProperty.Jsii$Proxy
Enclosing class:
CfnManagedLoginBranding

@Stability(Stable) public static interface CfnManagedLoginBranding.AssetTypeProperty extends software.amazon.jsii.JsiiSerializable
An image file from a managed login branding style in a user pool.

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.*;
 AssetTypeProperty assetTypeProperty = AssetTypeProperty.builder()
         .category("category")
         .colorMode("colorMode")
         .extension("extension")
         // the properties below are optional
         .bytes("bytes")
         .resourceId("resourceId")
         .build();
 

See Also: