Cell

class Cell : KotlinCustomResource

Provides an AWS Route 53 Recovery Readiness Cell.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.route53recoveryreadiness.Cell("example", {cellName: "us-west-2-failover-cell"});
import pulumi
import pulumi_aws as aws
example = aws.route53recoveryreadiness.Cell("example", cell_name="us-west-2-failover-cell")
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.Route53RecoveryReadiness.Cell("example", new()
{
CellName = "us-west-2-failover-cell",
});
});
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/route53recoveryreadiness"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := route53recoveryreadiness.NewCell(ctx, "example", &route53recoveryreadiness.CellArgs{
CellName: pulumi.String("us-west-2-failover-cell"),
})
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.route53recoveryreadiness.Cell;
import com.pulumi.aws.route53recoveryreadiness.CellArgs;
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 Cell("example", CellArgs.builder()
.cellName("us-west-2-failover-cell")
.build());
}
}
resources:
example:
type: aws:route53recoveryreadiness:Cell
properties:
cellName: us-west-2-failover-cell

Import

Using pulumi import, import Route53 Recovery Readiness cells using the cell name. For example:

$ pulumi import aws:route53recoveryreadiness/cell:Cell us-west-2-failover-cell us-west-2-failover-cell

Properties

Link copied to clipboard
val arn: Output<String>

ARN of the cell

Link copied to clipboard
val cellName: Output<String>

Unique name describing the cell. The following arguments are optional:

Link copied to clipboard
val cells: Output<List<String>>?

List of cell arns to add as nested fault domains within this cell.

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

List of readiness scopes (recovery groups or cells) that contain this cell.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val tags: Output<Map<String, String>>?

Key-value mapping of resource tags. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level

Link copied to clipboard
val tagsAll: Output<Map<String, String>>

Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Link copied to clipboard
val urn: Output<String>