interface CfnVpcEndpointMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.OpenSearchServerless.CfnVpcEndpointMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsopensearchserverless#CfnVpcEndpointMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.opensearchserverless.CfnVpcEndpointMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_opensearchserverless.CfnVpcEndpointMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_opensearchserverless » CfnVpcEndpointMixinProps |
Properties for CfnVpcEndpointPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_opensearchserverless as opensearchserverless } from '@aws-cdk/cfn-property-mixins';
const cfnVpcEndpointMixinProps: opensearchserverless.CfnVpcEndpointMixinProps = {
name: 'name',
securityGroupIds: ['securityGroupIds'],
subnetIds: ['subnetIds'],
vpcId: 'vpcId',
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | The name of the endpoint. |
| security | (string | ISecurity)[] | The unique identifiers of the security groups that define the ports, protocols, and sources for inbound traffic that you are authorizing into your endpoint. |
| subnet | string[] | The ID of the subnets from which you access OpenSearch Serverless. |
| vpc | string | The ID of the VPC from which you access OpenSearch Serverless. |
name?
Type:
string
(optional)
The name of the endpoint.
securityGroupIds?
Type:
(string | ISecurity)[]
(optional)
The unique identifiers of the security groups that define the ports, protocols, and sources for inbound traffic that you are authorizing into your endpoint.
subnetIds?
Type:
string[]
(optional)
The ID of the subnets from which you access OpenSearch Serverless.
vpcId?
Type:
string
(optional)
The ID of the VPC from which you access OpenSearch Serverless.

.NET
Go
Java
Python
TypeScript