import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { GetSuiteDefinitionRequest, GetSuiteDefinitionResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link GetSuiteDefinitionCommand}. */ export interface GetSuiteDefinitionCommandInput extends GetSuiteDefinitionRequest { } /** * @public * * The output of {@link GetSuiteDefinitionCommand}. */ export interface GetSuiteDefinitionCommandOutput extends GetSuiteDefinitionResponse, __MetadataBearer { } declare const GetSuiteDefinitionCommand_base: { new (input: GetSuiteDefinitionCommandInput): import("@smithy/core/client").CommandImpl; new (input: GetSuiteDefinitionCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Gets information about a Device Advisor test suite.

*

Requires permission to access the GetSuiteDefinition action.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { IotDeviceAdvisorClient, GetSuiteDefinitionCommand } from "@aws-sdk/client-iotdeviceadvisor"; // ES Modules import * // const { IotDeviceAdvisorClient, GetSuiteDefinitionCommand } = require("@aws-sdk/client-iotdeviceadvisor"); // CommonJS import * // import type { IotDeviceAdvisorClientConfig } from "@aws-sdk/client-iotdeviceadvisor"; * const config = {}; // type is IotDeviceAdvisorClientConfig * const client = new IotDeviceAdvisorClient(config); * const input = { // GetSuiteDefinitionRequest * suiteDefinitionId: "STRING_VALUE", // required * suiteDefinitionVersion: "STRING_VALUE", * }; * const command = new GetSuiteDefinitionCommand(input); * const response = await client.send(command); * // { // GetSuiteDefinitionResponse * // suiteDefinitionId: "STRING_VALUE", * // suiteDefinitionArn: "STRING_VALUE", * // suiteDefinitionVersion: "STRING_VALUE", * // latestVersion: "STRING_VALUE", * // suiteDefinitionConfiguration: { // SuiteDefinitionConfiguration * // suiteDefinitionName: "STRING_VALUE", // required * // devices: [ // DeviceUnderTestList * // { // DeviceUnderTest * // thingArn: "STRING_VALUE", * // certificateArn: "STRING_VALUE", * // deviceRoleArn: "STRING_VALUE", * // }, * // ], * // intendedForQualification: true || false, * // isLongDurationTest: true || false, * // rootGroup: "STRING_VALUE", // required * // devicePermissionRoleArn: "STRING_VALUE", // required * // protocol: "MqttV3_1_1" || "MqttV5" || "MqttV3_1_1_OverWebSocket" || "MqttV5_OverWebSocket", * // }, * // createdAt: new Date("TIMESTAMP"), * // lastModifiedAt: new Date("TIMESTAMP"), * // tags: { // TagMap * // "": "STRING_VALUE", * // }, * // }; * * ``` * * @param GetSuiteDefinitionCommandInput - {@link GetSuiteDefinitionCommandInput} * @returns {@link GetSuiteDefinitionCommandOutput} * @see {@link GetSuiteDefinitionCommandInput} for command's `input` shape. * @see {@link GetSuiteDefinitionCommandOutput} for command's `response` shape. * @see {@link IotDeviceAdvisorClientResolvedConfig | config} for IotDeviceAdvisorClient's `config` shape. * * @throws {@link InternalServerException} (server fault) *

Sends an Internal Failure exception.

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

Sends a Resource Not Found exception.

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

Sends a validation exception.

* * @throws {@link IotDeviceAdvisorServiceException} *

Base exception class for all service exceptions from IotDeviceAdvisor service.

* * * @public */ export declare class GetSuiteDefinitionCommand extends GetSuiteDefinitionCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetSuiteDefinitionRequest; output: GetSuiteDefinitionResponse; }; sdk: { input: GetSuiteDefinitionCommandInput; output: GetSuiteDefinitionCommandOutput; }; }; }