import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Resource Type definition for AWS::Cognito::ManagedLoginBranding */ export declare function getManagedLoginBranding(args: GetManagedLoginBrandingArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetManagedLoginBrandingArgs { /** * The ID of the managed login branding style. */ managedLoginBrandingId: string; /** * The user pool where the branding style is assigned. */ userPoolId: string; } export interface GetManagedLoginBrandingResult { /** * 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. */ readonly assets?: outputs.cognito.ManagedLoginBrandingAssetType[]; /** * The ID of the managed login branding style. */ readonly managedLoginBrandingId?: string; /** * A 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)](https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-user-pools-managed-login.html#managed-login-localization) * * Search the [CloudFormation User Guide](https://docs.aws.amazon.com/cloudformation/) for `AWS::Cognito::ManagedLoginBranding` for more information about the expected schema for this property. */ readonly settings?: any; /** * 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 for `Settings` and `Assets` in the request. */ readonly useCognitoProvidedValues?: boolean; } /** * Resource Type definition for AWS::Cognito::ManagedLoginBranding */ export declare function getManagedLoginBrandingOutput(args: GetManagedLoginBrandingOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetManagedLoginBrandingOutputArgs { /** * The ID of the managed login branding style. */ managedLoginBrandingId: pulumi.Input; /** * The user pool where the branding style is assigned. */ userPoolId: pulumi.Input; }