@Generated(value="jsii-pacmak/1.50.0 (build d1830a4)", date="2022-01-04T15:39:02.055Z") @Stability(value=Experimental) public interface VpcLinkProps extends software.amazon.jsii.JsiiSerializable
Example:
import software.amazon.awscdk.core.*; Vpc vpc = new Vpc(this, "VPC"); VpcLink vpcLink = VpcLink.Builder.create(this, "VpcLink").vpc(vpc).build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
VpcLinkProps.Builder
A builder for
VpcLinkProps |
static class |
VpcLinkProps.Jsii$Proxy
An implementation for
VpcLinkProps |
| Modifier and Type | Method and Description |
|---|---|
static VpcLinkProps.Builder |
builder() |
default List<ISecurityGroup> |
getSecurityGroups()
(experimental) A list of security groups for the VPC link.
|
default SubnetSelection |
getSubnets()
(experimental) A list of subnets for the VPC link.
|
IVpc |
getVpc()
(experimental) The VPC in which the private resources reside.
|
default String |
getVpcLinkName()
(experimental) The name used to label and identify the VPC link.
|
@Stability(value=Experimental) @NotNull IVpc getVpc()
@Stability(value=Experimental) @Nullable default List<ISecurityGroup> getSecurityGroups()
Default: - no security groups. Use `addSecurityGroups` to add security groups
@Stability(value=Experimental) @Nullable default SubnetSelection getSubnets()
Default: - private subnets of the provided VPC. Use `addSubnets` to add more subnets
@Stability(value=Experimental) @Nullable default String getVpcLinkName()
Default: - automatically generated name
@Stability(value=Experimental) static VpcLinkProps.Builder builder()
VpcLinkProps.Builder of VpcLinkPropsCopyright © 2022. All rights reserved.