interface ReplicationRegionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SSMIncidents.Mixins.CfnReplicationSetPropsMixin.ReplicationRegionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsssmincidents/mixins#CfnReplicationSetPropsMixin_ReplicationRegionProperty |
Java | software.amazon.awscdk.mixins.preview.services.ssmincidents.mixins.CfnReplicationSetPropsMixin.ReplicationRegionProperty |
Python | aws_cdk.mixins_preview.aws_ssmincidents.mixins.CfnReplicationSetPropsMixin.ReplicationRegionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ssmincidents » mixins » CfnReplicationSetPropsMixin » ReplicationRegionProperty |
The ReplicationRegion property type specifies the Region and AWS Key Management Service key to add to the replication set.
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 replicationRegionProperty: ssmincidents_mixins.CfnReplicationSetPropsMixin.ReplicationRegionProperty = {
regionConfiguration: {
sseKmsKeyId: 'sseKmsKeyId',
},
regionName: 'regionName',
};
Properties
| Name | Type | Description |
|---|---|---|
| region | IResolvable | Region | Specifies the Region configuration. |
| region | string | Specifies the region name to add to the replication set. |
regionConfiguration?
Type:
IResolvable | Region
(optional)
Specifies the Region configuration.
regionName?
Type:
string
(optional)
Specifies the region name to add to the replication set.

.NET
Go
Java
Python
TypeScript