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

.NET
Go
Java
Python
TypeScript