@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:36.293Z") @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.*;
CfnVpcLinkProps cfnVpcLinkProps = CfnVpcLinkProps.builder()
.name("name")
.subnetIds(List.of("subnetIds"))
// the properties below are optional
.securityGroupIds(List.of("securityGroupIds"))
.tags(Map.of(
"tagsKey", "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 Map<String,String> |
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 Map<String,String> 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.