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)

45 lines (44 loc) 1.81 kB
import * as pulumi from "@pulumi/pulumi"; import * as enums from "../types/enums"; /** * AWS Route53 Recovery Control Control Panel resource schema . */ export declare function getControlPanel(args: GetControlPanelArgs, opts?: pulumi.InvokeOptions): Promise<GetControlPanelResult>; export interface GetControlPanelArgs { /** * The Amazon Resource Name (ARN) of the cluster. */ controlPanelArn: string; } export interface GetControlPanelResult { /** * The Amazon Resource Name (ARN) of the cluster. */ readonly controlPanelArn?: string; /** * A flag that Amazon Route 53 Application Recovery Controller sets to true to designate the default control panel for a cluster. When you create a cluster, Amazon Route 53 Application Recovery Controller creates a control panel, and sets this flag for that control panel. If you create a control panel yourself, this flag is set to false. */ readonly defaultControlPanel?: boolean; /** * The name of the control panel. You can use any non-white space character in the name. */ readonly name?: string; /** * Count of associated routing controls */ readonly routingControlCount?: number; /** * The deployment status of control panel. Status can be one of the following: PENDING, DEPLOYED, PENDING_DELETION. */ readonly status?: enums.route53recoverycontrol.ControlPanelStatus; } /** * AWS Route53 Recovery Control Control Panel resource schema . */ export declare function getControlPanelOutput(args: GetControlPanelOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetControlPanelResult>; export interface GetControlPanelOutputArgs { /** * The Amazon Resource Name (ARN) of the cluster. */ controlPanelArn: pulumi.Input<string>; }