interface CfnOdbPeeringConnectionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ODB.Mixins.CfnOdbPeeringConnectionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsodb/mixins#CfnOdbPeeringConnectionMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.odb.mixins.CfnOdbPeeringConnectionMixinProps |
Python | aws_cdk.mixins_preview.aws_odb.mixins.CfnOdbPeeringConnectionMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_odb » mixins » CfnOdbPeeringConnectionMixinProps |
Properties for CfnOdbPeeringConnectionPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as odb_mixins } from '@aws-cdk/mixins-preview/aws-odb';
const cfnOdbPeeringConnectionMixinProps: odb_mixins.CfnOdbPeeringConnectionMixinProps = {
additionalPeerNetworkCidrs: ['additionalPeerNetworkCidrs'],
displayName: 'displayName',
odbNetworkId: 'odbNetworkId',
peerNetworkId: 'peerNetworkId',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| additional | string[] | The additional CIDR blocks for the ODB peering connection. |
| display | string | The display name of the ODB peering connection. |
| odb | string | The unique identifier of the ODB network. |
| peer | string | The unique identifier of the peer network. |
| tags? | Cfn[] | Tags to assign to the Odb peering connection. |
additionalPeerNetworkCidrs?
Type:
string[]
(optional)
The additional CIDR blocks for the ODB peering connection.
displayName?
Type:
string
(optional)
The display name of the ODB peering connection.
odbNetworkId?
Type:
string
(optional)
The unique identifier of the ODB network.
peerNetworkId?
Type:
string
(optional)
The unique identifier of the peer network.
tags?
Type:
Cfn[]
(optional)
Tags to assign to the Odb peering connection.

.NET
Go
Java
Python
TypeScript