Interface CfnOAuth2CredentialProvider.PrivateEndpointProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnOAuth2CredentialProvider.PrivateEndpointProperty.Jsii$Proxy
- Enclosing class:
CfnOAuth2CredentialProvider
@Stability(Stable)
public static interface CfnOAuth2CredentialProvider.PrivateEndpointProperty
extends software.amazon.jsii.JsiiSerializable
The private endpoint configuration for connecting to private resources in your VPC.
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 forCfnOAuth2CredentialProvider.PrivateEndpointPropertystatic final classAn implementation forCfnOAuth2CredentialProvider.PrivateEndpointProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getManagedVpcResource
Configuration for a managed VPC Lattice resource.AgentCore creates and manages the VPC Lattice resource gateway and resource configuration on your behalf.
Returns union: either
IResolvableorCfnOAuth2CredentialProvider.ManagedVpcResourceProperty- See Also:
-
getSelfManagedLatticeResource
Configuration for a self-managed VPC Lattice resource.You create and manage the VPC Lattice resource gateway and resource configuration, then provide the resource configuration identifier.
Returns union: either
IResolvableorCfnOAuth2CredentialProvider.SelfManagedLatticeResourceProperty- See Also:
-
builder
-