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 { GetTestGridProjectRequest, GetTestGridProjectResult } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link GetTestGridProjectCommand}. */ export interface GetTestGridProjectCommandInput extends GetTestGridProjectRequest { } /** * @public * * The output of {@link GetTestGridProjectCommand}. */ export interface GetTestGridProjectCommandOutput extends GetTestGridProjectResult, __MetadataBearer { } declare const GetTestGridProjectCommand_base: { new (input: GetTestGridProjectCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: GetTestGridProjectCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Retrieves information about a Selenium testing project.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { DeviceFarmClient, GetTestGridProjectCommand } from "@aws-sdk/client-device-farm"; // ES Modules import * // const { DeviceFarmClient, GetTestGridProjectCommand } = 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 = { // GetTestGridProjectRequest * projectArn: "STRING_VALUE", // required * }; * const command = new GetTestGridProjectCommand(input); * const response = await client.send(command); * // { // GetTestGridProjectResult * // testGridProject: { // TestGridProject * // arn: "STRING_VALUE", * // name: "STRING_VALUE", * // description: "STRING_VALUE", * // vpcConfig: { // TestGridVpcConfig * // securityGroupIds: [ // SecurityGroupIds // required * // "STRING_VALUE", * // ], * // subnetIds: [ // SubnetIds // required * // "STRING_VALUE", * // ], * // vpcId: "STRING_VALUE", // required * // }, * // created: new Date("TIMESTAMP"), * // }, * // }; * * ``` * * @param GetTestGridProjectCommandInput - {@link GetTestGridProjectCommandInput} * @returns {@link GetTestGridProjectCommandOutput} * @see {@link GetTestGridProjectCommandInput} for command's `input` shape. * @see {@link GetTestGridProjectCommandOutput} 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 InternalServiceException} (server fault) *

An internal exception was raised in the service. Contact aws-devicefarm-support@amazon.com if you see this * error.

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

The specified entity was not found.

* * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* * * @public */ export declare class GetTestGridProjectCommand extends GetTestGridProjectCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetTestGridProjectRequest; output: GetTestGridProjectResult; }; sdk: { input: GetTestGridProjectCommandInput; output: GetTestGridProjectCommandOutput; }; }; }