interface RdsCreateCrossRegionReplicaConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ARCRegionSwitch.CfnPlanPropsMixin.RdsCreateCrossRegionReplicaConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsarcregionswitch#CfnPlanPropsMixin_RdsCreateCrossRegionReplicaConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.arcregionswitch.CfnPlanPropsMixin.RdsCreateCrossRegionReplicaConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_arcregionswitch.CfnPlanPropsMixin.RdsCreateCrossRegionReplicaConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_arcregionswitch » CfnPlanPropsMixin » RdsCreateCrossRegionReplicaConfigurationProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_arcregionswitch as arcregionswitch } from '@aws-cdk/cfn-property-mixins';
const rdsCreateCrossRegionReplicaConfigurationProperty: arcregionswitch.CfnPlanPropsMixin.RdsCreateCrossRegionReplicaConfigurationProperty = {
crossAccountRole: 'crossAccountRole',
dbInstanceArnMap: {
dbInstanceArnMapKey: 'dbInstanceArnMap',
},
externalId: 'externalId',
timeoutMinutes: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| cross | string | |
| db | { [string]: string } | IResolvable | |
| external | string | |
| timeout | number |
crossAccountRole?
Type:
string
(optional)
dbInstanceArnMap?
Type:
{ [string]: string } | IResolvable
(optional)
externalId?
Type:
string
(optional)
timeoutMinutes?
Type:
number
(optional, default: 60)

.NET
Go
Java
Python
TypeScript