ControlPanel

class ControlPanel : KotlinCustomResource

Provides an AWS Route 53 Recovery Control Config Control Panel.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.route53recoverycontrol.ControlPanel("example", {
name: "balmorhea",
clusterArn: "arn:aws:route53-recovery-control::123456789012:cluster/8d47920e-d789-437d-803a-2dcc4b204393",
});
import pulumi
import pulumi_aws as aws
example = aws.route53recoverycontrol.ControlPanel("example",
name="balmorhea",
cluster_arn="arn:aws:route53-recovery-control::123456789012:cluster/8d47920e-d789-437d-803a-2dcc4b204393")
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.Route53RecoveryControl.ControlPanel("example", new()
{
Name = "balmorhea",
ClusterArn = "arn:aws:route53-recovery-control::123456789012:cluster/8d47920e-d789-437d-803a-2dcc4b204393",
});
});
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/route53recoverycontrol"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := route53recoverycontrol.NewControlPanel(ctx, "example", &route53recoverycontrol.ControlPanelArgs{
Name: pulumi.String("balmorhea"),
ClusterArn: pulumi.String("arn:aws:route53-recovery-control::123456789012:cluster/8d47920e-d789-437d-803a-2dcc4b204393"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.route53recoverycontrol.ControlPanel;
import com.pulumi.aws.route53recoverycontrol.ControlPanelArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new ControlPanel("example", ControlPanelArgs.builder()
.name("balmorhea")
.clusterArn("arn:aws:route53-recovery-control::123456789012:cluster/8d47920e-d789-437d-803a-2dcc4b204393")
.build());
}
}
resources:
example:
type: aws:route53recoverycontrol:ControlPanel
properties:
name: balmorhea
clusterArn: arn:aws:route53-recovery-control::123456789012:cluster/8d47920e-d789-437d-803a-2dcc4b204393

Import

Using pulumi import, import Route53 Recovery Control Config Control Panel using the control panel arn. For example:

$ pulumi import aws:route53recoverycontrol/controlPanel:ControlPanel mypanel arn:aws:route53-recovery-control::313517334327:controlpanel/1bfba17df8684f5dab0467b71424f7e8

Properties

Link copied to clipboard
val arn: Output<String>

ARN of the control panel.

Link copied to clipboard
val clusterArn: Output<String>

ARN of the cluster in which this control panel will reside.

Link copied to clipboard

Whether a control panel is default.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val name: Output<String>

Name describing the control panel.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Number routing controls in a control panel.

Link copied to clipboard
val status: Output<String>

Status of control panel: PENDING when it is being created/updated, PENDING_DELETION when it is being deleted, and DEPLOYED otherwise.

Link copied to clipboard
val urn: Output<String>