Interface CfnRuntime.PrivateEndpointProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRuntime.PrivateEndpointProperty.Jsii$Proxy
- Enclosing class:
CfnRuntime
@Stability(Stable)
public static interface CfnRuntime.PrivateEndpointProperty
extends software.amazon.jsii.JsiiSerializable
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 forCfnRuntime.PrivateEndpointPropertystatic final classAn implementation forCfnRuntime.PrivateEndpointProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getManagedVpcResource
Managed VPC resource configuration.Returns union: either
IResolvableorCfnRuntime.ManagedVpcResourceProperty- See Also:
-
getSelfManagedLatticeResource
Self-managed VPC Lattice resource configuration.Returns union: either
IResolvableorCfnRuntime.SelfManagedLatticeResourceProperty- See Also:
-
builder
-