Interface VpcLinkAttributes
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
VpcLinkAttributes.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-21T06:34:02.835Z")
@Stability(Stable)
public interface VpcLinkAttributes
extends software.amazon.jsii.JsiiSerializable
Attributes when importing a new VpcLink.
Example:
import software.amazon.awscdk.services.ec2.*; Vpc vpc; IVpcLink awesomeLink = VpcLink.fromVpcLinkAttributes(this, "awesome-vpc-link", VpcLinkAttributes.builder() .vpcLinkId("us-east-1_oiuR12Abd") .vpc(vpc) .build());
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forVpcLinkAttributes
static final class
An implementation forVpcLinkAttributes
-
Method Summary
Modifier and TypeMethodDescriptionstatic VpcLinkAttributes.Builder
builder()
getVpc()
The VPC to which this VPC link is associated with.The VPC Link id.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getVpc
The VPC to which this VPC link is associated with. -
getVpcLinkId
The VPC Link id. -
builder
- Returns:
- a
VpcLinkAttributes.Builder
ofVpcLinkAttributes
-