Create Pipeline Endpoint
| opensearchingestion_create_pipeline_endpoint | R Documentation |
Creates a VPC endpoint for an OpenSearch Ingestion pipeline¶
Description¶
Creates a VPC endpoint for an OpenSearch Ingestion pipeline. Pipeline endpoints allow you to ingest data from your VPC into pipelines that you have access to.
Usage¶
opensearchingestion_create_pipeline_endpoint(PipelineArn, VpcOptions)
Arguments¶
PipelineArn |
[required] The Amazon Resource Name (ARN) of the pipeline to create the endpoint for. |
VpcOptions |
[required] Container for the VPC configuration for the pipeline endpoint, including subnet IDs and security group IDs. |
Value¶
A list with the following syntax:
list(
PipelineArn = "string",
EndpointId = "string",
Status = "CREATING"|"ACTIVE"|"CREATE_FAILED"|"DELETING"|"REVOKING"|"REVOKED",
VpcId = "string"
)
Request syntax¶
svc$create_pipeline_endpoint(
PipelineArn = "string",
VpcOptions = list(
SubnetIds = list(
"string"
),
SecurityGroupIds = list(
"string"
)
)
)