interface CfnReplicationSetMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SSMIncidents.Mixins.CfnReplicationSetMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsssmincidents/mixins#CfnReplicationSetMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ssmincidents.mixins.CfnReplicationSetMixinProps |
Python | aws_cdk.mixins_preview.aws_ssmincidents.mixins.CfnReplicationSetMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ssmincidents » mixins » 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 { mixins as ssmincidents_mixins } from '@aws-cdk/mixins-preview/aws-ssmincidents';
const cfnReplicationSetMixinProps: ssmincidents_mixins.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