interface AuroraServerlessScalingConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ARCRegionSwitch.CfnPlan.AuroraServerlessScalingConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsarcregionswitch#CfnPlan_AuroraServerlessScalingConfigurationProperty |
Java | software.amazon.awscdk.services.arcregionswitch.CfnPlan.AuroraServerlessScalingConfigurationProperty |
Python | aws_cdk.aws_arcregionswitch.CfnPlan.AuroraServerlessScalingConfigurationProperty |
TypeScript | aws-cdk-lib » aws_arcregionswitch » CfnPlan » AuroraServerlessScalingConfigurationProperty |
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-lib';
const auroraServerlessScalingConfigurationProperty: arcregionswitch.CfnPlan.AuroraServerlessScalingConfigurationProperty = {
globalClusterIdentifier: 'globalClusterIdentifier',
regionDatabaseClusterArns: {
regionDatabaseClusterArnsKey: 'regionDatabaseClusterArns',
},
// the properties below are optional
crossAccountRole: 'crossAccountRole',
externalId: 'externalId',
targetPercent: 123,
timeoutMinutes: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| global | string | |
| region | IResolvable | { [string]: string } | |
| cross | string | |
| external | string | |
| target | number | |
| timeout | number |
globalClusterIdentifier
Type:
string
regionDatabaseClusterArns
Type:
IResolvable | { [string]: string }
crossAccountRole?
Type:
string
(optional)
externalId?
Type:
string
(optional)
targetPercent?
Type:
number
(optional, default: 100)
timeoutMinutes?
Type:
number
(optional, default: 60)

.NET
Go
Java
Python
TypeScript