UNPKG

@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)

36 lines (35 loc) 1.91 kB
import * as pulumi from "@pulumi/pulumi"; /** * Resource Type definition for AWS::Cognito::UserPoolUICustomizationAttachment */ export declare function getUserPoolUiCustomizationAttachment(args: GetUserPoolUiCustomizationAttachmentArgs, opts?: pulumi.InvokeOptions): Promise<GetUserPoolUiCustomizationAttachmentResult>; export interface GetUserPoolUiCustomizationAttachmentArgs { /** * The app client ID for your UI customization. When this value isn't present, the customization applies to all user pool app clients that don't have client-level settings.. */ clientId: string; /** * The ID of the user pool where you want to apply branding to the classic hosted UI. */ userPoolId: string; } export interface GetUserPoolUiCustomizationAttachmentResult { /** * A plaintext CSS file that contains the custom fields that you want to apply to your user pool or app client. To download a template, go to the Amazon Cognito console. Navigate to your user pool *App clients* tab, select *Login pages* , edit *Hosted UI (classic) style* , and select the link to `CSS template.css` . */ readonly css?: string; } /** * Resource Type definition for AWS::Cognito::UserPoolUICustomizationAttachment */ export declare function getUserPoolUiCustomizationAttachmentOutput(args: GetUserPoolUiCustomizationAttachmentOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetUserPoolUiCustomizationAttachmentResult>; export interface GetUserPoolUiCustomizationAttachmentOutputArgs { /** * The app client ID for your UI customization. When this value isn't present, the customization applies to all user pool app clients that don't have client-level settings.. */ clientId: pulumi.Input<string>; /** * The ID of the user pool where you want to apply branding to the classic hosted UI. */ userPoolId: pulumi.Input<string>; }