import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { CreatePipelineEndpointRequest, CreatePipelineEndpointResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link CreatePipelineEndpointCommand}. */ export interface CreatePipelineEndpointCommandInput extends CreatePipelineEndpointRequest { } /** * @public * * The output of {@link CreatePipelineEndpointCommand}. */ export interface CreatePipelineEndpointCommandOutput extends CreatePipelineEndpointResponse, __MetadataBearer { } declare const CreatePipelineEndpointCommand_base: { new (input: CreatePipelineEndpointCommandInput): import("@smithy/core/client").CommandImpl; new (input: CreatePipelineEndpointCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

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.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { OSISClient, CreatePipelineEndpointCommand } from "@aws-sdk/client-osis"; // ES Modules import * // const { OSISClient, CreatePipelineEndpointCommand } = require("@aws-sdk/client-osis"); // CommonJS import * // import type { OSISClientConfig } from "@aws-sdk/client-osis"; * const config = {}; // type is OSISClientConfig * const client = new OSISClient(config); * const input = { // CreatePipelineEndpointRequest * PipelineArn: "STRING_VALUE", // required * VpcOptions: { // PipelineEndpointVpcOptions * SubnetIds: [ // SubnetIds * "STRING_VALUE", * ], * SecurityGroupIds: [ // SecurityGroupIds * "STRING_VALUE", * ], * }, * }; * const command = new CreatePipelineEndpointCommand(input); * const response = await client.send(command); * // { // CreatePipelineEndpointResponse * // PipelineArn: "STRING_VALUE", * // EndpointId: "STRING_VALUE", * // Status: "CREATING" || "ACTIVE" || "CREATE_FAILED" || "DELETING" || "REVOKING" || "REVOKED", * // VpcId: "STRING_VALUE", * // }; * * ``` * * @param CreatePipelineEndpointCommandInput - {@link CreatePipelineEndpointCommandInput} * @returns {@link CreatePipelineEndpointCommandOutput} * @see {@link CreatePipelineEndpointCommandInput} for command's `input` shape. * @see {@link CreatePipelineEndpointCommandOutput} for command's `response` shape. * @see {@link OSISClientResolvedConfig | config} for OSISClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

You don't have permissions to access the resource.

* * @throws {@link DisabledOperationException} (client fault) *

Exception is thrown when an operation has been disabled.

* * @throws {@link InternalException} (server fault) *

The request failed because of an unknown error, exception, or failure (the failure is * internal to the service).

* * @throws {@link LimitExceededException} (client fault) *

You attempted to create more than the allowed number of tags.

* * @throws {@link ResourceNotFoundException} (client fault) *

You attempted to access or delete a resource that does not exist.

* * @throws {@link ValidationException} (client fault) *

An exception for missing or invalid input fields.

* * @throws {@link OSISServiceException} *

Base exception class for all service exceptions from OSIS service.

* * * @public */ export declare class CreatePipelineEndpointCommand extends CreatePipelineEndpointCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: CreatePipelineEndpointRequest; output: CreatePipelineEndpointResponse; }; sdk: { input: CreatePipelineEndpointCommandInput; output: CreatePipelineEndpointCommandOutput; }; }; }