ControlPanel

class ControlPanel : KotlinCustomResource

Provides an AWS Route 53 Recovery Control Config Control Panel.

Example Usage

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()
.clusterArn("arn:aws:route53-recovery-control::123456789012:cluster/8d47920e-d789-437d-803a-2dcc4b204393")
.build());
}
}

Import

Route53 Recovery Control Config Control Panel can be imported via the control panel arn, e.g.,

$ 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>