interface CfnOdbPeeringConnectionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ODB.CfnOdbPeeringConnectionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsodb#CfnOdbPeeringConnectionMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.odb.CfnOdbPeeringConnectionMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_odb.CfnOdbPeeringConnectionMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_odb » 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 { aws_odb as odb } from '@aws-cdk/cfn-property-mixins';
const cfnOdbPeeringConnectionMixinProps: odb.CfnOdbPeeringConnectionMixinProps = {
additionalPeerNetworkCidrs: ['additionalPeerNetworkCidrs'],
displayName: 'displayName',
odbNetworkId: 'odbNetworkId',
peerNetworkId: 'peerNetworkId',
peerNetworkRouteTableIds: ['peerNetworkRouteTableIds'],
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. |
| peer | string[] | The unique identifier of the VPC route table for which a route to the ODB network is automatically created during peering connection establishment. |
| 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.
peerNetworkRouteTableIds?
Type:
string[]
(optional)
The unique identifier of the VPC route table for which a route to the ODB network is automatically created during peering connection establishment.
tags?
Type:
Cfn[]
(optional)
Tags to assign to the Odb peering connection.

.NET
Go
Java
Python
TypeScript