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

.NET
Go
Java
Python
TypeScript