Interface CfnOAuth2CredentialProviderPropsMixin.PrivateEndpointProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnOAuth2CredentialProviderPropsMixin.PrivateEndpointProperty.Jsii$Proxy
- Enclosing class:
CfnOAuth2CredentialProviderPropsMixin
@Stability(Stable)
public static interface CfnOAuth2CredentialProviderPropsMixin.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.cfnpropertymixins.services.bedrockagentcore.*;
PrivateEndpointProperty privateEndpointProperty = 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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnOAuth2CredentialProviderPropsMixin.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
IResolvableorCfnOAuth2CredentialProviderPropsMixin.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
IResolvableorCfnOAuth2CredentialProviderPropsMixin.SelfManagedLatticeResourceProperty- See Also:
-
builder
@Stability(Stable) static CfnOAuth2CredentialProviderPropsMixin.PrivateEndpointProperty.Builder builder()
-