interface ReplicationRegionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SSMIncidents.CfnReplicationSet.ReplicationRegionProperty |
Java | software.amazon.awscdk.services.ssmincidents.CfnReplicationSet.ReplicationRegionProperty |
Python | aws_cdk.aws_ssmincidents.CfnReplicationSet.ReplicationRegionProperty |
TypeScript | @aws-cdk/aws-ssmincidents » CfnReplicationSet » ReplicationRegionProperty |
The ReplicationRegion property type specifies the Region and KMS 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 * as ssmincidents from '@aws-cdk/aws-ssmincidents';
const replicationRegionProperty: ssmincidents.CfnReplicationSet.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
Java
Python
TypeScript