import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import type { CreateVPCEConfigurationRequest, CreateVPCEConfigurationResult } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link CreateVPCEConfigurationCommand}. */ export interface CreateVPCEConfigurationCommandInput extends CreateVPCEConfigurationRequest { } /** * @public * * The output of {@link CreateVPCEConfigurationCommand}. */ export interface CreateVPCEConfigurationCommandOutput extends CreateVPCEConfigurationResult, __MetadataBearer { } declare const CreateVPCEConfigurationCommand_base: { new (input: CreateVPCEConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: CreateVPCEConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Creates a configuration record in Device Farm for your Amazon Virtual Private Cloud * (VPC) endpoint.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { DeviceFarmClient, CreateVPCEConfigurationCommand } from "@aws-sdk/client-device-farm"; // ES Modules import * // const { DeviceFarmClient, CreateVPCEConfigurationCommand } = require("@aws-sdk/client-device-farm"); // CommonJS import * // import type { DeviceFarmClientConfig } from "@aws-sdk/client-device-farm"; * const config = {}; // type is DeviceFarmClientConfig * const client = new DeviceFarmClient(config); * const input = { // CreateVPCEConfigurationRequest * vpceConfigurationName: "STRING_VALUE", // required * vpceServiceName: "STRING_VALUE", // required * serviceDnsName: "STRING_VALUE", // required * vpceConfigurationDescription: "STRING_VALUE", * }; * const command = new CreateVPCEConfigurationCommand(input); * const response = await client.send(command); * // { // CreateVPCEConfigurationResult * // vpceConfiguration: { // VPCEConfiguration * // arn: "STRING_VALUE", * // vpceConfigurationName: "STRING_VALUE", * // vpceServiceName: "STRING_VALUE", * // serviceDnsName: "STRING_VALUE", * // vpceConfigurationDescription: "STRING_VALUE", * // }, * // }; * * ``` * * @param CreateVPCEConfigurationCommandInput - {@link CreateVPCEConfigurationCommandInput} * @returns {@link CreateVPCEConfigurationCommandOutput} * @see {@link CreateVPCEConfigurationCommandInput} for command's `input` shape. * @see {@link CreateVPCEConfigurationCommandOutput} for command's `response` shape. * @see {@link DeviceFarmClientResolvedConfig | config} for DeviceFarmClient's `config` shape. * * @throws {@link ArgumentException} (client fault) *

An invalid argument was specified.

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

A limit was exceeded.

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

There was a problem with the service account.

* * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* * * @public */ export declare class CreateVPCEConfigurationCommand extends CreateVPCEConfigurationCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: CreateVPCEConfigurationRequest; output: CreateVPCEConfigurationResult; }; sdk: { input: CreateVPCEConfigurationCommandInput; output: CreateVPCEConfigurationCommandOutput; }; }; }