1. Packages
  2. AWS
  3. API Docs
  4. ssmincidents
  5. ReplicationSet
AWS v6.66.3 published on Monday, Jan 13, 2025 by Pulumi

aws.ssmincidents.ReplicationSet

Explore with Pulumi AI

Provides a resource for managing a replication set in AWS Systems Manager Incident Manager.

NOTE: Deleting a replication set also deletes all Incident Manager related data including response plans, incident records, contacts and escalation plans.

Example Usage

Basic Usage

Create a replication set.

import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";

const replicationSetName = new aws.ssmincidents.ReplicationSet("replicationSetName", {
    regions: [{
        name: "us-west-2",
    }],
    tags: {
        exampleTag: "exampleValue",
    },
});
Copy
import pulumi
import pulumi_aws as aws

replication_set_name = aws.ssmincidents.ReplicationSet("replicationSetName",
    regions=[{
        "name": "us-west-2",
    }],
    tags={
        "exampleTag": "exampleValue",
    })
Copy
package main

import (
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ssmincidents"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := ssmincidents.NewReplicationSet(ctx, "replicationSetName", &ssmincidents.ReplicationSetArgs{
			Regions: ssmincidents.ReplicationSetRegionArray{
				&ssmincidents.ReplicationSetRegionArgs{
					Name: pulumi.String("us-west-2"),
				},
			},
			Tags: pulumi.StringMap{
				"exampleTag": pulumi.String("exampleValue"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;

return await Deployment.RunAsync(() => 
{
    var replicationSetName = new Aws.SsmIncidents.ReplicationSet("replicationSetName", new()
    {
        Regions = new[]
        {
            new Aws.SsmIncidents.Inputs.ReplicationSetRegionArgs
            {
                Name = "us-west-2",
            },
        },
        Tags = 
        {
            { "exampleTag", "exampleValue" },
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.ssmincidents.ReplicationSet;
import com.pulumi.aws.ssmincidents.ReplicationSetArgs;
import com.pulumi.aws.ssmincidents.inputs.ReplicationSetRegionArgs;
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 replicationSetName = new ReplicationSet("replicationSetName", ReplicationSetArgs.builder()
            .regions(ReplicationSetRegionArgs.builder()
                .name("us-west-2")
                .build())
            .tags(Map.of("exampleTag", "exampleValue"))
            .build());

    }
}
Copy
resources:
  replicationSetName:
    type: aws:ssmincidents:ReplicationSet
    properties:
      regions:
        - name: us-west-2
      tags:
        exampleTag: exampleValue
Copy

Add a Region to a replication set. (You can add only one Region at a time.)

import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";

const replicationSetName = new aws.ssmincidents.ReplicationSet("replicationSetName", {regions: [
    {
        name: "us-west-2",
    },
    {
        name: "ap-southeast-2",
    },
]});
Copy
import pulumi
import pulumi_aws as aws

replication_set_name = aws.ssmincidents.ReplicationSet("replicationSetName", regions=[
    {
        "name": "us-west-2",
    },
    {
        "name": "ap-southeast-2",
    },
])
Copy
package main

import (
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ssmincidents"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := ssmincidents.NewReplicationSet(ctx, "replicationSetName", &ssmincidents.ReplicationSetArgs{
			Regions: ssmincidents.ReplicationSetRegionArray{
				&ssmincidents.ReplicationSetRegionArgs{
					Name: pulumi.String("us-west-2"),
				},
				&ssmincidents.ReplicationSetRegionArgs{
					Name: pulumi.String("ap-southeast-2"),
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;

return await Deployment.RunAsync(() => 
{
    var replicationSetName = new Aws.SsmIncidents.ReplicationSet("replicationSetName", new()
    {
        Regions = new[]
        {
            new Aws.SsmIncidents.Inputs.ReplicationSetRegionArgs
            {
                Name = "us-west-2",
            },
            new Aws.SsmIncidents.Inputs.ReplicationSetRegionArgs
            {
                Name = "ap-southeast-2",
            },
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.ssmincidents.ReplicationSet;
import com.pulumi.aws.ssmincidents.ReplicationSetArgs;
import com.pulumi.aws.ssmincidents.inputs.ReplicationSetRegionArgs;
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 replicationSetName = new ReplicationSet("replicationSetName", ReplicationSetArgs.builder()
            .regions(            
                ReplicationSetRegionArgs.builder()
                    .name("us-west-2")
                    .build(),
                ReplicationSetRegionArgs.builder()
                    .name("ap-southeast-2")
                    .build())
            .build());

    }
}
Copy
resources:
  replicationSetName:
    type: aws:ssmincidents:ReplicationSet
    properties:
      regions:
        - name: us-west-2
        - name: ap-southeast-2
Copy

Delete a Region from a replication set. (You can delete only one Region at a time.)

import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";

const replicationSetName = new aws.ssmincidents.ReplicationSet("replicationSetName", {regions: [{
    name: "us-west-2",
}]});
Copy
import pulumi
import pulumi_aws as aws

replication_set_name = aws.ssmincidents.ReplicationSet("replicationSetName", regions=[{
    "name": "us-west-2",
}])
Copy
package main

import (
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ssmincidents"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := ssmincidents.NewReplicationSet(ctx, "replicationSetName", &ssmincidents.ReplicationSetArgs{
			Regions: ssmincidents.ReplicationSetRegionArray{
				&ssmincidents.ReplicationSetRegionArgs{
					Name: pulumi.String("us-west-2"),
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;

return await Deployment.RunAsync(() => 
{
    var replicationSetName = new Aws.SsmIncidents.ReplicationSet("replicationSetName", new()
    {
        Regions = new[]
        {
            new Aws.SsmIncidents.Inputs.ReplicationSetRegionArgs
            {
                Name = "us-west-2",
            },
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.ssmincidents.ReplicationSet;
import com.pulumi.aws.ssmincidents.ReplicationSetArgs;
import com.pulumi.aws.ssmincidents.inputs.ReplicationSetRegionArgs;
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 replicationSetName = new ReplicationSet("replicationSetName", ReplicationSetArgs.builder()
            .regions(ReplicationSetRegionArgs.builder()
                .name("us-west-2")
                .build())
            .build());

    }
}
Copy
resources:
  replicationSetName:
    type: aws:ssmincidents:ReplicationSet
    properties:
      regions:
        - name: us-west-2
Copy

Basic Usage with an AWS Customer Managed Key

Create a replication set with an AWS Key Management Service (AWS KMS) customer manager key:

import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";

const exampleKey = new aws.kms.Key("example_key", {});
const replicationSetName = new aws.ssmincidents.ReplicationSet("replicationSetName", {
    regions: [{
        name: "us-west-2",
        kmsKeyArn: exampleKey.arn,
    }],
    tags: {
        exampleTag: "exampleValue",
    },
});
Copy
import pulumi
import pulumi_aws as aws

example_key = aws.kms.Key("example_key")
replication_set_name = aws.ssmincidents.ReplicationSet("replicationSetName",
    regions=[{
        "name": "us-west-2",
        "kms_key_arn": example_key.arn,
    }],
    tags={
        "exampleTag": "exampleValue",
    })
Copy
package main

import (
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/kms"
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ssmincidents"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		exampleKey, err := kms.NewKey(ctx, "example_key", nil)
		if err != nil {
			return err
		}
		_, err = ssmincidents.NewReplicationSet(ctx, "replicationSetName", &ssmincidents.ReplicationSetArgs{
			Regions: ssmincidents.ReplicationSetRegionArray{
				&ssmincidents.ReplicationSetRegionArgs{
					Name:      pulumi.String("us-west-2"),
					KmsKeyArn: exampleKey.Arn,
				},
			},
			Tags: pulumi.StringMap{
				"exampleTag": pulumi.String("exampleValue"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;

return await Deployment.RunAsync(() => 
{
    var exampleKey = new Aws.Kms.Key("example_key");

    var replicationSetName = new Aws.SsmIncidents.ReplicationSet("replicationSetName", new()
    {
        Regions = new[]
        {
            new Aws.SsmIncidents.Inputs.ReplicationSetRegionArgs
            {
                Name = "us-west-2",
                KmsKeyArn = exampleKey.Arn,
            },
        },
        Tags = 
        {
            { "exampleTag", "exampleValue" },
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.kms.Key;
import com.pulumi.aws.ssmincidents.ReplicationSet;
import com.pulumi.aws.ssmincidents.ReplicationSetArgs;
import com.pulumi.aws.ssmincidents.inputs.ReplicationSetRegionArgs;
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 exampleKey = new Key("exampleKey");

        var replicationSetName = new ReplicationSet("replicationSetName", ReplicationSetArgs.builder()
            .regions(ReplicationSetRegionArgs.builder()
                .name("us-west-2")
                .kmsKeyArn(exampleKey.arn())
                .build())
            .tags(Map.of("exampleTag", "exampleValue"))
            .build());

    }
}
Copy
resources:
  exampleKey:
    type: aws:kms:Key
    name: example_key
  replicationSetName:
    type: aws:ssmincidents:ReplicationSet
    properties:
      regions:
        - name: us-west-2
          kmsKeyArn: ${exampleKey.arn}
      tags:
        exampleTag: exampleValue
Copy

Create ReplicationSet Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new ReplicationSet(name: string, args: ReplicationSetArgs, opts?: CustomResourceOptions);
@overload
def ReplicationSet(resource_name: str,
                   args: ReplicationSetArgs,
                   opts: Optional[ResourceOptions] = None)

@overload
def ReplicationSet(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   regions: Optional[Sequence[ReplicationSetRegionArgs]] = None,
                   tags: Optional[Mapping[str, str]] = None)
func NewReplicationSet(ctx *Context, name string, args ReplicationSetArgs, opts ...ResourceOption) (*ReplicationSet, error)
public ReplicationSet(string name, ReplicationSetArgs args, CustomResourceOptions? opts = null)
public ReplicationSet(String name, ReplicationSetArgs args)
public ReplicationSet(String name, ReplicationSetArgs args, CustomResourceOptions options)
type: aws:ssmincidents:ReplicationSet
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. ReplicationSetArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. ReplicationSetArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. ReplicationSetArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. ReplicationSetArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ReplicationSetArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var replicationSetResource = new Aws.SsmIncidents.ReplicationSet("replicationSetResource", new()
{
    Regions = new[]
    {
        new Aws.SsmIncidents.Inputs.ReplicationSetRegionArgs
        {
            Name = "string",
            KmsKeyArn = "string",
            Status = "string",
            StatusMessage = "string",
        },
    },
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := ssmincidents.NewReplicationSet(ctx, "replicationSetResource", &ssmincidents.ReplicationSetArgs{
	Regions: ssmincidents.ReplicationSetRegionArray{
		&ssmincidents.ReplicationSetRegionArgs{
			Name:          pulumi.String("string"),
			KmsKeyArn:     pulumi.String("string"),
			Status:        pulumi.String("string"),
			StatusMessage: pulumi.String("string"),
		},
	},
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
Copy
var replicationSetResource = new ReplicationSet("replicationSetResource", ReplicationSetArgs.builder()
    .regions(ReplicationSetRegionArgs.builder()
        .name("string")
        .kmsKeyArn("string")
        .status("string")
        .statusMessage("string")
        .build())
    .tags(Map.of("string", "string"))
    .build());
Copy
replication_set_resource = aws.ssmincidents.ReplicationSet("replicationSetResource",
    regions=[{
        "name": "string",
        "kms_key_arn": "string",
        "status": "string",
        "status_message": "string",
    }],
    tags={
        "string": "string",
    })
Copy
const replicationSetResource = new aws.ssmincidents.ReplicationSet("replicationSetResource", {
    regions: [{
        name: "string",
        kmsKeyArn: "string",
        status: "string",
        statusMessage: "string",
    }],
    tags: {
        string: "string",
    },
});
Copy
type: aws:ssmincidents:ReplicationSet
properties:
    regions:
        - kmsKeyArn: string
          name: string
          status: string
          statusMessage: string
    tags:
        string: string
Copy

ReplicationSet Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The ReplicationSet resource accepts the following input properties:

Regions This property is required. List<ReplicationSetRegion>
Tags Dictionary<string, string>
Regions This property is required. []ReplicationSetRegionArgs
Tags map[string]string
regions This property is required. List<ReplicationSetRegion>
tags Map<String,String>
regions This property is required. ReplicationSetRegion[]
tags {[key: string]: string}
regions This property is required. Sequence[ReplicationSetRegionArgs]
tags Mapping[str, str]
regions This property is required. List<Property Map>
tags Map<String>

Outputs

All input properties are implicitly available as output properties. Additionally, the ReplicationSet resource produces the following output properties:

Arn string
The ARN of the replication set.
CreatedBy string
The ARN of the user who created the replication set.
DeletionProtected bool
If true, the last region in a replication set cannot be deleted.
Id string
The provider-assigned unique ID for this managed resource.
LastModifiedBy string
A timestamp showing when the replication set was last modified.
Status string
The current status of the Region.

  • Valid Values: ACTIVE | CREATING | UPDATING | DELETING | FAILED
TagsAll Dictionary<string, string>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

Arn string
The ARN of the replication set.
CreatedBy string
The ARN of the user who created the replication set.
DeletionProtected bool
If true, the last region in a replication set cannot be deleted.
Id string
The provider-assigned unique ID for this managed resource.
LastModifiedBy string
A timestamp showing when the replication set was last modified.
Status string
The current status of the Region.

  • Valid Values: ACTIVE | CREATING | UPDATING | DELETING | FAILED
TagsAll map[string]string
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn String
The ARN of the replication set.
createdBy String
The ARN of the user who created the replication set.
deletionProtected Boolean
If true, the last region in a replication set cannot be deleted.
id String
The provider-assigned unique ID for this managed resource.
lastModifiedBy String
A timestamp showing when the replication set was last modified.
status String
The current status of the Region.

  • Valid Values: ACTIVE | CREATING | UPDATING | DELETING | FAILED
tagsAll Map<String,String>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn string
The ARN of the replication set.
createdBy string
The ARN of the user who created the replication set.
deletionProtected boolean
If true, the last region in a replication set cannot be deleted.
id string
The provider-assigned unique ID for this managed resource.
lastModifiedBy string
A timestamp showing when the replication set was last modified.
status string
The current status of the Region.

  • Valid Values: ACTIVE | CREATING | UPDATING | DELETING | FAILED
tagsAll {[key: string]: string}
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn str
The ARN of the replication set.
created_by str
The ARN of the user who created the replication set.
deletion_protected bool
If true, the last region in a replication set cannot be deleted.
id str
The provider-assigned unique ID for this managed resource.
last_modified_by str
A timestamp showing when the replication set was last modified.
status str
The current status of the Region.

  • Valid Values: ACTIVE | CREATING | UPDATING | DELETING | FAILED
tags_all Mapping[str, str]
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn String
The ARN of the replication set.
createdBy String
The ARN of the user who created the replication set.
deletionProtected Boolean
If true, the last region in a replication set cannot be deleted.
id String
The provider-assigned unique ID for this managed resource.
lastModifiedBy String
A timestamp showing when the replication set was last modified.
status String
The current status of the Region.

  • Valid Values: ACTIVE | CREATING | UPDATING | DELETING | FAILED
tagsAll Map<String>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

Look up Existing ReplicationSet Resource

Get an existing ReplicationSet resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: ReplicationSetState, opts?: CustomResourceOptions): ReplicationSet
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        arn: Optional[str] = None,
        created_by: Optional[str] = None,
        deletion_protected: Optional[bool] = None,
        last_modified_by: Optional[str] = None,
        regions: Optional[Sequence[ReplicationSetRegionArgs]] = None,
        status: Optional[str] = None,
        tags: Optional[Mapping[str, str]] = None,
        tags_all: Optional[Mapping[str, str]] = None) -> ReplicationSet
func GetReplicationSet(ctx *Context, name string, id IDInput, state *ReplicationSetState, opts ...ResourceOption) (*ReplicationSet, error)
public static ReplicationSet Get(string name, Input<string> id, ReplicationSetState? state, CustomResourceOptions? opts = null)
public static ReplicationSet get(String name, Output<String> id, ReplicationSetState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
Arn string
The ARN of the replication set.
CreatedBy string
The ARN of the user who created the replication set.
DeletionProtected bool
If true, the last region in a replication set cannot be deleted.
LastModifiedBy string
A timestamp showing when the replication set was last modified.
Regions List<ReplicationSetRegion>
Status string
The current status of the Region.

  • Valid Values: ACTIVE | CREATING | UPDATING | DELETING | FAILED
Tags Dictionary<string, string>
TagsAll Dictionary<string, string>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

Arn string
The ARN of the replication set.
CreatedBy string
The ARN of the user who created the replication set.
DeletionProtected bool
If true, the last region in a replication set cannot be deleted.
LastModifiedBy string
A timestamp showing when the replication set was last modified.
Regions []ReplicationSetRegionArgs
Status string
The current status of the Region.

  • Valid Values: ACTIVE | CREATING | UPDATING | DELETING | FAILED
Tags map[string]string
TagsAll map[string]string
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn String
The ARN of the replication set.
createdBy String
The ARN of the user who created the replication set.
deletionProtected Boolean
If true, the last region in a replication set cannot be deleted.
lastModifiedBy String
A timestamp showing when the replication set was last modified.
regions List<ReplicationSetRegion>
status String
The current status of the Region.

  • Valid Values: ACTIVE | CREATING | UPDATING | DELETING | FAILED
tags Map<String,String>
tagsAll Map<String,String>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn string
The ARN of the replication set.
createdBy string
The ARN of the user who created the replication set.
deletionProtected boolean
If true, the last region in a replication set cannot be deleted.
lastModifiedBy string
A timestamp showing when the replication set was last modified.
regions ReplicationSetRegion[]
status string
The current status of the Region.

  • Valid Values: ACTIVE | CREATING | UPDATING | DELETING | FAILED
tags {[key: string]: string}
tagsAll {[key: string]: string}
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn str
The ARN of the replication set.
created_by str
The ARN of the user who created the replication set.
deletion_protected bool
If true, the last region in a replication set cannot be deleted.
last_modified_by str
A timestamp showing when the replication set was last modified.
regions Sequence[ReplicationSetRegionArgs]
status str
The current status of the Region.

  • Valid Values: ACTIVE | CREATING | UPDATING | DELETING | FAILED
tags Mapping[str, str]
tags_all Mapping[str, str]
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn String
The ARN of the replication set.
createdBy String
The ARN of the user who created the replication set.
deletionProtected Boolean
If true, the last region in a replication set cannot be deleted.
lastModifiedBy String
A timestamp showing when the replication set was last modified.
regions List<Property Map>
status String
The current status of the Region.

  • Valid Values: ACTIVE | CREATING | UPDATING | DELETING | FAILED
tags Map<String>
tagsAll Map<String>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

Supporting Types

ReplicationSetRegion
, ReplicationSetRegionArgs

Name This property is required. string
The name of the Region, such as ap-southeast-2.
KmsKeyArn string

The Amazon Resource name (ARN) of the customer managed key. If omitted, AWS manages the AWS KMS keys for you, using an AWS owned key, as indicated by a default value of DefaultKey.

The following arguments are optional:

Status string
The current status of the Region.

  • Valid Values: ACTIVE | CREATING | UPDATING | DELETING | FAILED
StatusMessage string
More information about the status of a Region.
Name This property is required. string
The name of the Region, such as ap-southeast-2.
KmsKeyArn string

The Amazon Resource name (ARN) of the customer managed key. If omitted, AWS manages the AWS KMS keys for you, using an AWS owned key, as indicated by a default value of DefaultKey.

The following arguments are optional:

Status string
The current status of the Region.

  • Valid Values: ACTIVE | CREATING | UPDATING | DELETING | FAILED
StatusMessage string
More information about the status of a Region.
name This property is required. String
The name of the Region, such as ap-southeast-2.
kmsKeyArn String

The Amazon Resource name (ARN) of the customer managed key. If omitted, AWS manages the AWS KMS keys for you, using an AWS owned key, as indicated by a default value of DefaultKey.

The following arguments are optional:

status String
The current status of the Region.

  • Valid Values: ACTIVE | CREATING | UPDATING | DELETING | FAILED
statusMessage String
More information about the status of a Region.
name This property is required. string
The name of the Region, such as ap-southeast-2.
kmsKeyArn string

The Amazon Resource name (ARN) of the customer managed key. If omitted, AWS manages the AWS KMS keys for you, using an AWS owned key, as indicated by a default value of DefaultKey.

The following arguments are optional:

status string
The current status of the Region.

  • Valid Values: ACTIVE | CREATING | UPDATING | DELETING | FAILED
statusMessage string
More information about the status of a Region.
name This property is required. str
The name of the Region, such as ap-southeast-2.
kms_key_arn str

The Amazon Resource name (ARN) of the customer managed key. If omitted, AWS manages the AWS KMS keys for you, using an AWS owned key, as indicated by a default value of DefaultKey.

The following arguments are optional:

status str
The current status of the Region.

  • Valid Values: ACTIVE | CREATING | UPDATING | DELETING | FAILED
status_message str
More information about the status of a Region.
name This property is required. String
The name of the Region, such as ap-southeast-2.
kmsKeyArn String

The Amazon Resource name (ARN) of the customer managed key. If omitted, AWS manages the AWS KMS keys for you, using an AWS owned key, as indicated by a default value of DefaultKey.

The following arguments are optional:

status String
The current status of the Region.

  • Valid Values: ACTIVE | CREATING | UPDATING | DELETING | FAILED
statusMessage String
More information about the status of a Region.

Import

Using pulumi import, import an Incident Manager replication. For example:

$ pulumi import aws:ssmincidents/replicationSet:ReplicationSet replicationSetName import
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
AWS Classic pulumi/pulumi-aws
License
Apache-2.0
Notes
This Pulumi package is based on the aws Terraform Provider.