aws-cdk-lib.aws_osis.CfnPipeline.VpcOptionsProperty

interface VpcOptionsProperty

LanguageType name
.NETAmazon.CDK.aws_osis.CfnPipeline.VpcOptionsProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsosis#CfnPipeline_VpcOptionsProperty
Javaservices.osis.CfnPipeline.VpcOptionsProperty
Pythonaws_cdk.aws_osis.CfnPipeline.VpcOptionsProperty
TypeScript aws-cdk-lib » aws_osis » CfnPipeline » VpcOptionsProperty

Options that specify the subnets and security groups for an OpenSearch Ingestion VPC endpoint.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_osis as osis } from 'aws-cdk-lib';
const vpcOptionsProperty: osis.CfnPipeline.VpcOptionsProperty = {
  securityGroupIds: ['securityGroupIds'],
  subnetIds: ['subnetIds'],
};

Properties

NameTypeDescription
securityGroupIds?string[]A list of security groups associated with the VPC endpoint.
subnetIds?string[]A list of subnet IDs associated with the VPC endpoint.

securityGroupIds?

Type: string[] (optional)

A list of security groups associated with the VPC endpoint.


subnetIds?

Type: string[] (optional)

A list of subnet IDs associated with the VPC endpoint.