Interface VpcLinkAttributes
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
VpcLinkAttributes.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:43.317Z")
@Stability(Experimental)
public interface VpcLinkAttributes
extends software.amazon.jsii.JsiiSerializable
(experimental) 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()
(experimental) The VPC to which this VPC link is associated with.(experimental) The VPC Link id.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getVpc
(experimental) The VPC to which this VPC link is associated with. -
getVpcLinkId
(experimental) The VPC Link id. -
builder
- Returns:
- a
VpcLinkAttributes.Builder
ofVpcLinkAttributes
-