interface RdsSwitchoverReadReplicaConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ARCRegionSwitch.CfnPlanPropsMixin.RdsSwitchoverReadReplicaConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsarcregionswitch#CfnPlanPropsMixin_RdsSwitchoverReadReplicaConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.arcregionswitch.CfnPlanPropsMixin.RdsSwitchoverReadReplicaConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_arcregionswitch.CfnPlanPropsMixin.RdsSwitchoverReadReplicaConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_arcregionswitch » CfnPlanPropsMixin » RdsSwitchoverReadReplicaConfigurationProperty |
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 rdsSwitchoverReadReplicaConfigurationProperty: arcregionswitch.CfnPlanPropsMixin.RdsSwitchoverReadReplicaConfigurationProperty = {
crossAccountRole: 'crossAccountRole',
dbInstanceArnMap: {
dbInstanceArnMapKey: 'dbInstanceArnMap',
},
externalId: 'externalId',
timeoutMinutes: 123,
ungraceful: {
ungraceful: 'ungraceful',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| cross | string | |
| db | IResolvable | { [string]: string } | |
| external | string | |
| timeout | number | |
| ungraceful? | IResolvable | Rds |
crossAccountRole?
Type:
string
(optional)
dbInstanceArnMap?
Type:
IResolvable | { [string]: string }
(optional)
externalId?
Type:
string
(optional)
timeoutMinutes?
Type:
number
(optional, default: 60)
ungraceful?
Type:
IResolvable | Rds
(optional)

.NET
Go
Java
Python
TypeScript