interface CfnReplicationSetMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SSMIncidents.CfnReplicationSetMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsssmincidents#CfnReplicationSetMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.ssmincidents.CfnReplicationSetMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_ssmincidents.CfnReplicationSetMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ssmincidents » CfnReplicationSetMixinProps |
Properties for CfnReplicationSetPropsMixin.
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/cfn-property-mixins';
const cfnReplicationSetMixinProps: ssmincidents.CfnReplicationSetMixinProps = {
deletionProtected: false,
regions: [{
regionConfiguration: {
sseKmsKeyId: 'sseKmsKeyId',
},
regionName: 'regionName',
}],
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| deletion | boolean | IResolvable | Determines if the replication set deletion protection is enabled or not. |
| regions? | IResolvable | (IResolvable | Replication)[] | Specifies the Regions of the replication set. |
| tags? | Cfn[] | A list of tags to add to 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.
regions?
Type:
IResolvable | (IResolvable | Replication)[]
(optional)
Specifies the Regions of the replication set.
tags?
Type:
Cfn[]
(optional)
A list of tags to add to the replication set.

.NET
Go
Java
Python
TypeScript