aws-cdk-lib.aws_ssmincidents.CfnReplicationSetProps

interface CfnReplicationSetProps

LanguageType name
.NETAmazon.CDK.AWS.SSMIncidents.CfnReplicationSetProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsssmincidents#CfnReplicationSetProps
Javasoftware.amazon.awscdk.services.ssmincidents.CfnReplicationSetProps
Pythonaws_cdk.aws_ssmincidents.CfnReplicationSetProps
TypeScript aws-cdk-lib » aws_ssmincidents » CfnReplicationSetProps

Properties for defining a CfnReplicationSet.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ssmincidents as ssmincidents } from 'aws-cdk-lib';
const cfnReplicationSetProps: ssmincidents.CfnReplicationSetProps = {
  regions: [{
    regionConfiguration: {
      sseKmsKeyId: 'sseKmsKeyId',
    },
    regionName: 'regionName',
  }],

  // the properties below are optional
  deletionProtected: false,
  tags: [{
    key: 'key',
    value: 'value',
  }],
};

Properties

NameTypeDescription
regionsIResolvable | IResolvable | ReplicationRegionProperty[]Specifies the Regions of the replication set.
deletionProtected?boolean | IResolvableDetermines if the replication set deletion protection is enabled or not.
tags?CfnTag[]A list of tags to add to the replication set.

regions

Type: IResolvable | IResolvable | ReplicationRegionProperty[]

Specifies the Regions of the replication set.


deletionProtected?

Type: boolean | IResolvable (optional)

Determines if the replication set deletion protection is enabled or not.

If deletion protection is enabled, you can't delete the last Region in the replication set.


tags?

Type: CfnTag[] (optional)

A list of tags to add to the replication set.