Interface CfnVpcConnectionMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnVpcConnectionMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:01.746Z")
@Stability(Stable)
public interface CfnVpcConnectionMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnVpcConnectionPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.msk.*;
CfnVpcConnectionMixinProps cfnVpcConnectionMixinProps = CfnVpcConnectionMixinProps.builder()
.authentication("authentication")
.clientSubnets(List.of("clientSubnets"))
.securityGroups(List.of("securityGroups"))
.tags(Map.of(
"tagsKey", "tags"))
.targetClusterArn("targetClusterArn")
.vpcId("vpcId")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnVpcConnectionMixinPropsstatic final classAn implementation forCfnVpcConnectionMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe type of private link authentication.The list of subnets in the client VPC to connect to.The security groups to attach to the ENIs for the broker nodes.getTags()An arbitrary set of tags (key-value pairs) you specify while creating the VPC connection.default StringThe Amazon Resource Name (ARN) of the cluster.default StringgetVpcId()The VPC ID of the remote client.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAuthentication
The type of private link authentication.- See Also:
-
getClientSubnets
The list of subnets in the client VPC to connect to.- See Also:
-
getSecurityGroups
The security groups to attach to the ENIs for the broker nodes.- See Also:
-
getTags
An arbitrary set of tags (key-value pairs) you specify while creating the VPC connection.- See Also:
-
getTargetClusterArn
The Amazon Resource Name (ARN) of the cluster.- See Also:
-
getVpcId
The VPC ID of the remote client.- See Also:
-
builder
- Returns:
- a
CfnVpcConnectionMixinProps.BuilderofCfnVpcConnectionMixinProps
-