Interface CfnVpcConnectionProps

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

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

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.msk.*;
 CfnVpcConnectionProps cfnVpcConnectionProps = CfnVpcConnectionProps.builder()
         .authentication("authentication")
         .clientSubnets(List.of("clientSubnets"))
         .securityGroups(List.of("securityGroups"))
         .targetClusterArn("targetClusterArn")
         .vpcId("vpcId")
         // the properties below are optional
         .tags(Map.of(
                 "tagsKey", "tags"))
         .build();
 
  • Method Details

    • getAuthentication

      @Stability(Stable) @NotNull String getAuthentication()
      The type of private link authentication.
    • getClientSubnets

      @Stability(Stable) @NotNull List<String> getClientSubnets()
      The list of subnets in the client VPC to connect to.
    • getSecurityGroups

      @Stability(Stable) @NotNull List<String> getSecurityGroups()
      The security groups to attach to the ENIs for the broker nodes.
    • getTargetClusterArn

      @Stability(Stable) @NotNull String getTargetClusterArn()
      The Amazon Resource Name (ARN) of the cluster.
    • getVpcId

      @Stability(Stable) @NotNull String getVpcId()
      The VPC id of the remote client.
    • getTags

      @Stability(Stable) @Nullable default Map<String,String> getTags()
      Create tags when creating the VPC connection.
    • builder

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