Interface CfnHarness.PrivateEndpointOverrideProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnHarness.PrivateEndpointOverrideProperty.Jsii$Proxy
Enclosing class:
CfnHarness

@Stability(Stable) public static interface CfnHarness.PrivateEndpointOverrideProperty extends software.amazon.jsii.JsiiSerializable
Maps a domain to a private endpoint for resolving that domain over a private network.

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.bedrockagentcore.*;
 PrivateEndpointOverrideProperty privateEndpointOverrideProperty = PrivateEndpointOverrideProperty.builder()
         .domain("domain")
         .privateEndpoint(PrivateEndpointProperty.builder()
                 .managedVpcResource(ManagedVpcResourceProperty.builder()
                         .endpointIpAddressType("endpointIpAddressType")
                         .subnetIds(List.of("subnetIds"))
                         .vpcIdentifier("vpcIdentifier")
                         // the properties below are optional
                         .routingDomain("routingDomain")
                         .securityGroupIds(List.of("securityGroupIds"))
                         .tags(Map.of(
                                 "tagsKey", "tags"))
                         .build())
                 .selfManagedLatticeResource(SelfManagedLatticeResourceProperty.builder()
                         .resourceConfigurationIdentifier("resourceConfigurationIdentifier")
                         .build())
                 .build())
         .build();
 

See Also: