interface CfnReplicationSetProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SSMIncidents.CfnReplicationSetProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsssmincidents#CfnReplicationSetProps |
Java | software.amazon.awscdk.services.ssmincidents.CfnReplicationSetProps |
Python | aws_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
| Name | Type | Description |
|---|---|---|
| regions | IResolvable | (IResolvable | Replication)[] | Specifies the Regions of the replication set. |
| deletion | boolean | IResolvable | Determines if the replication set deletion protection is enabled or not. |
| tags? | Cfn[] | A list of tags to add to the replication set. |
regions
Type:
IResolvable | (IResolvable | Replication)[]
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:
Cfn[]
(optional)
A list of tags to add to the replication set.

.NET
Go
Java
Python
TypeScript