Interface CfnVpcLinkProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnVpcLinkProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:43.236Z") @Stability(Stable) public interface CfnVpcLinkProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnVpcLink.

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();
 
  • Method Details

    • getName

      @Stability(Stable) @NotNull String getName()
      The name of the VPC link.
    • getSubnetIds

      @Stability(Stable) @NotNull List<String> getSubnetIds()
      A list of subnet IDs to include in the VPC link.
    • getSecurityGroupIds

      @Stability(Stable) @Nullable default List<String> getSecurityGroupIds()
      A list of security group IDs for the VPC link.
    • getTags

      @Stability(Stable) @Nullable default Map<String,String> getTags()
      The collection of tags.

      Each tag element is associated with a given resource.

    • builder

      @Stability(Stable) static CfnVpcLinkProps.Builder builder()
      Returns:
      a CfnVpcLinkProps.Builder of CfnVpcLinkProps