@pulumi/aws-native
Version:
The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)
53 lines (52 loc) • 2.29 kB
TypeScript
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<GetManagedLoginBrandingResult>;
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.
*
* 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<GetManagedLoginBrandingResult>;
export interface GetManagedLoginBrandingOutputArgs {
/**
* The ID of the managed login branding style.
*/
managedLoginBrandingId: pulumi.Input<string>;
/**
* The user pool where the branding style is assigned.
*/
userPoolId: pulumi.Input<string>;
}