1. Packages
  2. AWS Classic
  3. API Docs
  4. ssmincidents
  5. ReplicationSet

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.32.0 published on Friday, Apr 19, 2024 by Pulumi

aws.ssmincidents.ReplicationSet

Explore with Pulumi AI

aws logo

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.32.0 published on Friday, Apr 19, 2024 by Pulumi

    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",
        },
    });
    
    import pulumi
    import pulumi_aws as aws
    
    replication_set_name = aws.ssmincidents.ReplicationSet("replicationSetName",
        regions=[aws.ssmincidents.ReplicationSetRegionArgs(
            name="us-west-2",
        )],
        tags={
            "exampleTag": "exampleValue",
        })
    
    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
    	})
    }
    
    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" },
            },
        });
    
    });
    
    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());
    
        }
    }
    
    resources:
      replicationSetName:
        type: aws:ssmincidents:ReplicationSet
        properties:
          regions:
            - name: us-west-2
          tags:
            exampleTag: exampleValue
    

    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",
        },
    ]});
    
    import pulumi
    import pulumi_aws as aws
    
    replication_set_name = aws.ssmincidents.ReplicationSet("replicationSetName", regions=[
        aws.ssmincidents.ReplicationSetRegionArgs(
            name="us-west-2",
        ),
        aws.ssmincidents.ReplicationSetRegionArgs(
            name="ap-southeast-2",
        ),
    ])
    
    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
    	})
    }
    
    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",
                },
            },
        });
    
    });
    
    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());
    
        }
    }
    
    resources:
      replicationSetName:
        type: aws:ssmincidents:ReplicationSet
        properties:
          regions:
            - name: us-west-2
            - name: ap-southeast-2
    

    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",
    }]});
    
    import pulumi
    import pulumi_aws as aws
    
    replication_set_name = aws.ssmincidents.ReplicationSet("replicationSetName", regions=[aws.ssmincidents.ReplicationSetRegionArgs(
        name="us-west-2",
    )])
    
    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
    	})
    }
    
    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",
                },
            },
        });
    
    });
    
    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());
    
        }
    }
    
    resources:
      replicationSetName:
        type: aws:ssmincidents:ReplicationSet
        properties:
          regions:
            - name: us-west-2
    

    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",
        },
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example_key = aws.kms.Key("example_key")
    replication_set_name = aws.ssmincidents.ReplicationSet("replicationSetName",
        regions=[aws.ssmincidents.ReplicationSetRegionArgs(
            name="us-west-2",
            kms_key_arn=example_key.arn,
        )],
        tags={
            "exampleTag": "exampleValue",
        })
    
    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
    	})
    }
    
    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" },
            },
        });
    
    });
    
    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());
    
        }
    }
    
    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
    

    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 string
    The unique name of the resource.
    args ReplicationSetArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args 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 string
    The unique name of the resource.
    args ReplicationSetArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ReplicationSetArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ReplicationSetArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    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" },
        },
    });
    
    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"),
    	},
    })
    
    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());
    
    replication_set_resource = aws.ssmincidents.ReplicationSet("replicationSetResource",
        regions=[aws.ssmincidents.ReplicationSetRegionArgs(
            name="string",
            kms_key_arn="string",
            status="string",
            status_message="string",
        )],
        tags={
            "string": "string",
        })
    
    const replicationSetResource = new aws.ssmincidents.ReplicationSet("replicationSetResource", {
        regions: [{
            name: "string",
            kmsKeyArn: "string",
            status: "string",
            statusMessage: "string",
        }],
        tags: {
            string: "string",
        },
    });
    
    type: aws:ssmincidents:ReplicationSet
    properties:
        regions:
            - kmsKeyArn: string
              name: string
              status: string
              statusMessage: string
        tags:
            string: string
    

    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

    The ReplicationSet resource accepts the following input properties:

    Regions List<ReplicationSetRegion>
    Tags Dictionary<string, string>

    Tags applied to the replication set.

    For information about the maximum allowed number of Regions and tag value constraints, see CreateReplicationSet in the AWS Systems Manager Incident Manager API Reference.

    Regions []ReplicationSetRegionArgs
    Tags map[string]string

    Tags applied to the replication set.

    For information about the maximum allowed number of Regions and tag value constraints, see CreateReplicationSet in the AWS Systems Manager Incident Manager API Reference.

    regions List<ReplicationSetRegion>
    tags Map<String,String>

    Tags applied to the replication set.

    For information about the maximum allowed number of Regions and tag value constraints, see CreateReplicationSet in the AWS Systems Manager Incident Manager API Reference.

    regions ReplicationSetRegion[]
    tags {[key: string]: string}

    Tags applied to the replication set.

    For information about the maximum allowed number of Regions and tag value constraints, see CreateReplicationSet in the AWS Systems Manager Incident Manager API Reference.

    regions Sequence[ReplicationSetRegionArgs]
    tags Mapping[str, str]

    Tags applied to the replication set.

    For information about the maximum allowed number of Regions and tag value constraints, see CreateReplicationSet in the AWS Systems Manager Incident Manager API Reference.

    regions List<Property Map>
    tags Map<String>

    Tags applied to the replication set.

    For information about the maximum allowed number of Regions and tag value constraints, see CreateReplicationSet in the AWS Systems Manager Incident Manager API Reference.

    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
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    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>

    Tags applied to the replication set.

    For information about the maximum allowed number of Regions and tag value constraints, see CreateReplicationSet in the AWS Systems Manager Incident Manager API Reference.

    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

    Tags applied to the replication set.

    For information about the maximum allowed number of Regions and tag value constraints, see CreateReplicationSet in the AWS Systems Manager Incident Manager API Reference.

    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>

    Tags applied to the replication set.

    For information about the maximum allowed number of Regions and tag value constraints, see CreateReplicationSet in the AWS Systems Manager Incident Manager API Reference.

    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}

    Tags applied to the replication set.

    For information about the maximum allowed number of Regions and tag value constraints, see CreateReplicationSet in the AWS Systems Manager Incident Manager API Reference.

    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 applied to the replication set.

    For information about the maximum allowed number of Regions and tag value constraints, see CreateReplicationSet in the AWS Systems Manager Incident Manager API Reference.

    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>

    Tags applied to the replication set.

    For information about the maximum allowed number of Regions and tag value constraints, see CreateReplicationSet in the AWS Systems Manager Incident Manager API Reference.

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

    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.
    aws logo

    Try AWS Native preview for resources not in the classic version.

    AWS Classic v6.32.0 published on Friday, Apr 19, 2024 by Pulumi