interface GlobalAuroraConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ARCRegionSwitch.Mixins.CfnPlanPropsMixin.GlobalAuroraConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsarcregionswitch/mixins#CfnPlanPropsMixin_GlobalAuroraConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.arcregionswitch.mixins.CfnPlanPropsMixin.GlobalAuroraConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_arcregionswitch.mixins.CfnPlanPropsMixin.GlobalAuroraConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_arcregionswitch » mixins » CfnPlanPropsMixin » GlobalAuroraConfigurationProperty |
Configuration for Amazon Aurora global databases used in a Region switch plan.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as arcregionswitch_mixins } from '@aws-cdk/mixins-preview/aws-arcregionswitch';
const globalAuroraConfigurationProperty: arcregionswitch_mixins.CfnPlanPropsMixin.GlobalAuroraConfigurationProperty = {
behavior: 'behavior',
crossAccountRole: 'crossAccountRole',
databaseClusterArns: ['databaseClusterArns'],
externalId: 'externalId',
globalClusterIdentifier: 'globalClusterIdentifier',
timeoutMinutes: 123,
ungraceful: {
ungraceful: 'ungraceful',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| behavior? | string | The behavior for a global database, that is, only allow switchover or also allow failover. |
| cross | string | The cross account role for the configuration. |
| database | string[] | The database cluster Amazon Resource Names (ARNs) for a global database. |
| external | string | The external ID (secret key) for the configuration. |
| global | string | The global cluster identifier for a global database. |
| timeout | number | The timeout value specified for the configuration. |
| ungraceful? | IResolvable | Global | The settings for ungraceful execution. |
behavior?
Type:
string
(optional)
The behavior for a global database, that is, only allow switchover or also allow failover.
crossAccountRole?
Type:
string
(optional)
The cross account role for the configuration.
databaseClusterArns?
Type:
string[]
(optional)
The database cluster Amazon Resource Names (ARNs) for a global database.
externalId?
Type:
string
(optional)
The external ID (secret key) for the configuration.
globalClusterIdentifier?
Type:
string
(optional)
The global cluster identifier for a global database.
timeoutMinutes?
Type:
number
(optional, default: 60)
The timeout value specified for the configuration.
ungraceful?
Type:
IResolvable | Global
(optional)
The settings for ungraceful execution.

.NET
Go
Java
Python
TypeScript