Class VpcLinkAttributes
Attributes when importing a new VpcLink.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.Apigatewayv2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class VpcLinkAttributes : Object, IVpcLinkAttributes
Syntax (vb)
Public Class VpcLinkAttributes
Inherits Object
Implements IVpcLinkAttributes
Remarks
ExampleMetadata: infused
Examples
using Amazon.CDK.AWS.EC2;
Vpc vpc;
var awesomeLink = VpcLink.FromVpcLinkAttributes(this, "awesome-vpc-link", new VpcLinkAttributes {
VpcLinkId = "us-east-1_oiuR12Abd",
Vpc = vpc
});
Synopsis
Constructors
Vpc |
Properties
Vpc | The VPC to which this VPC link is associated with. |
Vpc |
The VPC Link id. |
Constructors
VpcLinkAttributes()
public VpcLinkAttributes()
Properties
Vpc
The VPC to which this VPC link is associated with.
public IVpc Vpc { get; set; }
Property Value
VpcLinkId
The VPC Link id.
public string VpcLinkId { get; set; }
Property Value
System.