Interface CfnHarnessPropsMixin.PrivateEndpointOverrideProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnHarnessPropsMixin.PrivateEndpointOverrideProperty.Jsii$Proxy
- Enclosing class:
CfnHarnessPropsMixin
@Stability(Stable)
public static interface CfnHarnessPropsMixin.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.cfnpropertymixins.services.bedrockagentcore.*;
PrivateEndpointOverrideProperty privateEndpointOverrideProperty = PrivateEndpointOverrideProperty.builder()
.domain("domain")
.privateEndpoint(PrivateEndpointProperty.builder()
.managedVpcResource(ManagedVpcResourceProperty.builder()
.endpointIpAddressType("endpointIpAddressType")
.routingDomain("routingDomain")
.securityGroupIds(List.of("securityGroupIds"))
.subnetIds(List.of("subnetIds"))
.tags(Map.of(
"tagsKey", "tags"))
.vpcIdentifier("vpcIdentifier")
.build())
.selfManagedLatticeResource(SelfManagedLatticeResourceProperty.builder()
.resourceConfigurationIdentifier("resourceConfigurationIdentifier")
.build())
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnHarnessPropsMixin.PrivateEndpointOverridePropertystatic final classAn implementation forCfnHarnessPropsMixin.PrivateEndpointOverrideProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDomain
- See Also:
-
getPrivateEndpoint
Private endpoint configuration for connecting to the OpenID Connect discovery endpoint over a private network.Returns union: either
IResolvableorCfnHarnessPropsMixin.PrivateEndpointProperty- See Also:
-
builder
-