Interface CfnPrivateConnectionProps

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

@Generated(value="jsii-pacmak/1.128.0 (build 749b9a9)", date="2026-04-29T18:45:18.495Z") @Stability(Stable) public interface CfnPrivateConnectionProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnPrivateConnection.

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.devopsagent.*;
 CfnPrivateConnectionProps cfnPrivateConnectionProps = CfnPrivateConnectionProps.builder()
         .connectionConfiguration(ConnectionConfigurationProperty.builder()
                 .selfManaged(SelfManagedModeProperty.builder()
                         .resourceConfigurationId("resourceConfigurationId")
                         .build())
                 .serviceManaged(ServiceManagedModeProperty.builder()
                         .hostAddress("hostAddress")
                         .vpcId("vpcId")
                         // the properties below are optional
                         .ipAddressType("ipAddressType")
                         .ipv4AddressesPerEni(123)
                         .portRanges(List.of("portRanges"))
                         .securityGroupIds(List.of("securityGroupIds"))
                         .subnetIds(List.of("subnetIds"))
                         .build())
                 .build())
         .name("name")
         // the properties below are optional
         .certificate("certificate")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: