Interface CfnPipe.SelfManagedKafkaAccessConfigurationVpcProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPipe.SelfManagedKafkaAccessConfigurationVpcProperty.Jsii$Proxy
- Enclosing class:
CfnPipe
@Stability(Stable)
public static interface CfnPipe.SelfManagedKafkaAccessConfigurationVpcProperty
extends software.amazon.jsii.JsiiSerializable
This structure specifies the VPC subnets and security groups for the stream, and whether a public IP address is to be used.
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.pipes.*; SelfManagedKafkaAccessConfigurationVpcProperty selfManagedKafkaAccessConfigurationVpcProperty = SelfManagedKafkaAccessConfigurationVpcProperty.builder() .securityGroup(List.of("securityGroup")) .subnets(List.of("subnets")) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnPipe.SelfManagedKafkaAccessConfigurationVpcProperty
static final class
An implementation forCfnPipe.SelfManagedKafkaAccessConfigurationVpcProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
Specifies the security groups associated with the stream.Specifies the subnets associated with the stream.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSecurityGroup
Specifies the security groups associated with the stream.These security groups must all be in the same VPC. You can specify as many as five security groups.
- See Also:
-
getSubnets
Specifies the subnets associated with the stream.These subnets must all be in the same VPC. You can specify as many as 16 subnets.
- See Also:
-
builder
-