Interface CfnHarness.PrivateEndpointProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnHarness.PrivateEndpointProperty.Jsii$Proxy
- Enclosing class:
CfnHarness
@Stability(Stable)
public static interface CfnHarness.PrivateEndpointProperty
extends software.amazon.jsii.JsiiSerializable
Private endpoint configuration for connecting to the OpenID Connect discovery endpoint 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.*;
PrivateEndpointProperty privateEndpointProperty = 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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnHarness.PrivateEndpointPropertystatic final classAn implementation forCfnHarness.PrivateEndpointProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getManagedVpcResource
Configuration for a service-managed VPC endpoint.Returns union: either
IResolvableorCfnHarness.ManagedVpcResourceProperty- See Also:
-
getSelfManagedLatticeResource
Configuration for connecting to a private resource using a self-managed VPC Lattice resource configuration.Returns union: either
IResolvableorCfnHarness.SelfManagedLatticeResourceProperty- See Also:
-
builder
-