Interface CfnOAuth2CredentialProvider.PrivateEndpointOverrideProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnOAuth2CredentialProvider.PrivateEndpointOverrideProperty.Jsii$Proxy
- Enclosing class:
CfnOAuth2CredentialProvider
@Stability(Stable)
public static interface CfnOAuth2CredentialProvider.PrivateEndpointOverrideProperty
extends software.amazon.jsii.JsiiSerializable
A mapping of a specific domain to a private endpoint for secure connectivity through a VPC Lattice resource configuration.
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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnOAuth2CredentialProvider.PrivateEndpointOverrideProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The domain to override with a private endpoint.The private endpoint configuration for connecting to private resources in your VPC.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDomain
The domain to override with a private endpoint.- See Also:
-
getPrivateEndpoint
The private endpoint configuration for connecting to private resources in your VPC.Returns union: either
IResolvableorCfnOAuth2CredentialProvider.PrivateEndpointProperty- See Also:
-
builder
@Stability(Stable) static CfnOAuth2CredentialProvider.PrivateEndpointOverrideProperty.Builder builder()
-