Class CfnVpcConnection

java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
All Implemented Interfaces:
IInspectable, ITaggable, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-02T15:58:29.585Z") @Stability(Stable) public class CfnVpcConnection extends CfnResource implements IInspectable, ITaggable
Create remote VPC connection.

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.*;
 CfnVpcConnection cfnVpcConnection = CfnVpcConnection.Builder.create(this, "MyCfnVpcConnection")
         .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();
 

See Also:
  • Field Details

    • CFN_RESOURCE_TYPE_NAME

      @Stability(Stable) public static final String CFN_RESOURCE_TYPE_NAME
      The CloudFormation resource type name for this resource class.
  • Constructor Details

    • CfnVpcConnection

      protected CfnVpcConnection(software.amazon.jsii.JsiiObjectRef objRef)
    • CfnVpcConnection

      protected CfnVpcConnection(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • CfnVpcConnection

      @Stability(Stable) public CfnVpcConnection(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnVpcConnectionProps props)
      Parameters:
      scope - Scope in which this resource is defined. This parameter is required.
      id - Construct identifier for this resource (unique in its scope). This parameter is required.
      props - Resource properties. This parameter is required.
  • Method Details

    • inspect

      @Stability(Stable) public void inspect(@NotNull TreeInspector inspector)
      Examines the CloudFormation resource and discloses attributes.

      Specified by:
      inspect in interface IInspectable
      Parameters:
      inspector - tree inspector to collect and process attributes. This parameter is required.
    • renderProperties

      @Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
      Overrides:
      renderProperties in class CfnResource
      Parameters:
      props - This parameter is required.
    • getAttrArn

      @Stability(Stable) @NotNull public String getAttrArn()
      The ARN of the VPC connection.
    • getCfnProperties

      @Stability(Stable) @NotNull protected Map<String,Object> getCfnProperties()
      Overrides:
      getCfnProperties in class CfnResource
    • getTags

      @Stability(Stable) @NotNull public TagManager getTags()
      Tag Manager which manages the tags for this resource.
      Specified by:
      getTags in interface ITaggable
    • getAuthentication

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

      @Stability(Stable) public void setAuthentication(@NotNull String value)
      The type of private link authentication.
    • getClientSubnets

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

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

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

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

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

      @Stability(Stable) public void setTargetClusterArn(@NotNull String value)
      The Amazon Resource Name (ARN) of the cluster.
    • getVpcId

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

      @Stability(Stable) public void setVpcId(@NotNull String value)
      The VPC id of the remote client.
    • getTagsRaw

      @Stability(Stable) @Nullable public Map<String,String> getTagsRaw()
      Create tags when creating the VPC connection.
    • setTagsRaw

      @Stability(Stable) public void setTagsRaw(@Nullable Map<String,String> value)
      Create tags when creating the VPC connection.