interface CfnVPCPeeringConnectionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnVPCPeeringConnectionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnVPCPeeringConnectionMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnVPCPeeringConnectionMixinProps |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnVPCPeeringConnectionMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » CfnVPCPeeringConnectionMixinProps |
Properties for CfnVPCPeeringConnectionPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as ec2_mixins } from '@aws-cdk/mixins-preview/aws-ec2';
const cfnVPCPeeringConnectionMixinProps: ec2_mixins.CfnVPCPeeringConnectionMixinProps = {
peerOwnerId: 'peerOwnerId',
peerRegion: 'peerRegion',
peerRoleArn: 'peerRoleArn',
peerVpcId: 'peerVpcId',
tags: [{
key: 'key',
value: 'value',
}],
vpcId: 'vpcId',
};
Properties
| Name | Type | Description |
|---|---|---|
| peer | string | The AWS account ID of the owner of the accepter VPC. |
| peer | string | The Region code for the accepter VPC, if the accepter VPC is located in a Region other than the Region in which you make the request. |
| peer | string | The Amazon Resource Name (ARN) of the VPC peer role for the peering connection in another AWS account. |
| peer | string | The ID of the VPC with which you are creating the VPC peering connection. |
| tags? | Cfn[] | Any tags assigned to the resource. |
| vpc | string | The ID of the VPC. |
peerOwnerId?
Type:
string
(optional)
The AWS account ID of the owner of the accepter VPC.
Default: Your AWS account ID
peerRegion?
Type:
string
(optional)
The Region code for the accepter VPC, if the accepter VPC is located in a Region other than the Region in which you make the request.
Default: The Region in which you make the request.
peerRoleArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the VPC peer role for the peering connection in another AWS account.
This is required when you are peering a VPC in a different AWS account.
peerVpcId?
Type:
string
(optional)
The ID of the VPC with which you are creating the VPC peering connection.
You must specify this parameter in the request.
tags?
Type:
Cfn[]
(optional)
Any tags assigned to the resource.
vpcId?
Type:
string
(optional)
The ID of the VPC.

.NET
Go
Java
Python
TypeScript