Show / Hide Table of Contents

Class CfnHarness.PrivateEndpointProperty

Private endpoint configuration for connecting to the OpenID Connect discovery endpoint over a private network.

Inheritance
object
CfnHarness.PrivateEndpointProperty
Implements
CfnHarness.IPrivateEndpointProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.BedrockAgentCore
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnHarness.PrivateEndpointProperty : CfnHarness.IPrivateEndpointProperty
Syntax (vb)
Public Class CfnHarness.PrivateEndpointProperty Implements CfnHarness.IPrivateEndpointProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-harness-privateendpoint.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.BedrockAgentCore;

             var privateEndpointProperty = new PrivateEndpointProperty {
                 ManagedVpcResource = new ManagedVpcResourceProperty {
                     EndpointIpAddressType = "endpointIpAddressType",
                     SubnetIds = new [] { "subnetIds" },
                     VpcIdentifier = "vpcIdentifier",

                     // the properties below are optional
                     RoutingDomain = "routingDomain",
                     SecurityGroupIds = new [] { "securityGroupIds" },
                     Tags = new Dictionary<string, string> {
                         { "tagsKey", "tags" }
                     }
                 },
                 SelfManagedLatticeResource = new SelfManagedLatticeResourceProperty {
                     ResourceConfigurationIdentifier = "resourceConfigurationIdentifier"
                 }
             };

Synopsis

Constructors

PrivateEndpointProperty()

Private endpoint configuration for connecting to the OpenID Connect discovery endpoint over a private network.

Properties

ManagedVpcResource

Configuration for a service-managed VPC endpoint.

SelfManagedLatticeResource

Configuration for connecting to a private resource using a self-managed VPC Lattice resource configuration.

Constructors

PrivateEndpointProperty()

Private endpoint configuration for connecting to the OpenID Connect discovery endpoint over a private network.

public PrivateEndpointProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-harness-privateendpoint.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.BedrockAgentCore;

             var privateEndpointProperty = new PrivateEndpointProperty {
                 ManagedVpcResource = new ManagedVpcResourceProperty {
                     EndpointIpAddressType = "endpointIpAddressType",
                     SubnetIds = new [] { "subnetIds" },
                     VpcIdentifier = "vpcIdentifier",

                     // the properties below are optional
                     RoutingDomain = "routingDomain",
                     SecurityGroupIds = new [] { "securityGroupIds" },
                     Tags = new Dictionary<string, string> {
                         { "tagsKey", "tags" }
                     }
                 },
                 SelfManagedLatticeResource = new SelfManagedLatticeResourceProperty {
                     ResourceConfigurationIdentifier = "resourceConfigurationIdentifier"
                 }
             };

Properties

ManagedVpcResource

Configuration for a service-managed VPC endpoint.

public object? ManagedVpcResource { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-harness-privateendpoint.html#cfn-bedrockagentcore-harness-privateendpoint-managedvpcresource

Type union: either IResolvable or CfnHarness.IManagedVpcResourceProperty

SelfManagedLatticeResource

Configuration for connecting to a private resource using a self-managed VPC Lattice resource configuration.

public object? SelfManagedLatticeResource { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-harness-privateendpoint.html#cfn-bedrockagentcore-harness-privateendpoint-selfmanagedlatticeresource

Type union: either IResolvable or CfnHarness.ISelfManagedLatticeResourceProperty

Implements

CfnHarness.IPrivateEndpointProperty
Back to top Generated by DocFX