@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:36.144Z") @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.apigateway.*;
CfnVpcLinkProps cfnVpcLinkProps = CfnVpcLinkProps.builder()
.name("name")
.targetArns(List.of("targetArns"))
// the properties below are optional
.description("description")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.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() |
default String |
getDescription()
A description of the VPC link.
|
String |
getName()
A name for the VPC link.
|
default List<CfnTag> |
getTags()
An array of arbitrary tags (key-value pairs) to associate with the VPC link.
|
List<String> |
getTargetArns()
The ARN of network load balancer of the VPC targeted by the VPC link.
|
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) @NotNull List<String> getTargetArns()
The network load balancer must be owned by the same AWS account of the API owner.
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnVpcLinkProps.Builder builder()
CfnVpcLinkProps.Builder of CfnVpcLinkPropsCopyright © 2022. All rights reserved.