Show / Hide Table of Contents

Class VpcLinkAttributes

Attributes when importing a new VpcLink.

Inheritance
object
VpcLinkAttributes
Implements
IVpcLinkAttributes
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Apigatewayv2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class VpcLinkAttributes : IVpcLinkAttributes
Syntax (vb)
Public Class VpcLinkAttributes 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

VpcLinkAttributes()

Attributes when importing a new VpcLink.

Properties

Vpc

The VPC to which this VPC link is associated with.

VpcLinkId

The VPC Link id.

Constructors

VpcLinkAttributes()

Attributes when importing a new VpcLink.

public VpcLinkAttributes()
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
            });

Properties

Vpc

The VPC to which this VPC link is associated with.

public IVpc Vpc { get; set; }
Property Value

IVpc

Remarks

ExampleMetadata: infused

VpcLinkId

The VPC Link id.

public string VpcLinkId { get; set; }
Property Value

string

Remarks

ExampleMetadata: infused

Implements

IVpcLinkAttributes
Back to top Generated by DocFX