@Generated(value="jsii-pacmak/1.50.0 (build d1830a4)", date="2022-01-04T15:39:01.985Z") @Stability(value=Stable) public interface CfnVpcLinkProps extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.apigatewayv2.*;
Object tags;
CfnVpcLinkProps cfnVpcLinkProps = CfnVpcLinkProps.builder()
.name("name")
.subnetIds(List.of("subnetIds"))
// the properties below are optional
.securityGroupIds(List.of("securityGroupIds"))
.tags(tags)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnVpcLinkProps.Builder
A builder for
CfnVpcLinkProps |
static class |
CfnVpcLinkProps.Jsii$Proxy
An implementation for
CfnVpcLinkProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnVpcLinkProps.Builder |
builder() |
String |
getName()
The name of the VPC link.
|
default List<String> |
getSecurityGroupIds()
A list of security group IDs for the VPC link.
|
List<String> |
getSubnetIds()
A list of subnet IDs to include in the VPC link.
|
default Object |
getTags()
The collection of tags.
|
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) @NotNull List<String> getSubnetIds()
@Stability(value=Stable) @Nullable default List<String> getSecurityGroupIds()
@Stability(value=Stable) @Nullable default Object getTags()
Each tag element is associated with a given resource.
@Stability(value=Stable) static CfnVpcLinkProps.Builder builder()
CfnVpcLinkProps.Builder of CfnVpcLinkPropsCopyright © 2022. All rights reserved.