import { Command as $Command } from "@smithy/core/client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; import type { GetConnectorDefinitionVersionRequest, GetConnectorDefinitionVersionResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link GetConnectorDefinitionVersionCommand}. */ export interface GetConnectorDefinitionVersionCommandInput extends GetConnectorDefinitionVersionRequest { } /** * @public * * The output of {@link GetConnectorDefinitionVersionCommand}. */ export interface GetConnectorDefinitionVersionCommandOutput extends GetConnectorDefinitionVersionResponse, __MetadataBearer { } declare const GetConnectorDefinitionVersionCommand_base: { new (input: GetConnectorDefinitionVersionCommandInput): import("@smithy/core/client").CommandImpl; new (input: GetConnectorDefinitionVersionCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** * Retrieves information about a connector definition version, including the connectors that the version contains. Connectors are prebuilt modules that interact with local infrastructure, device protocols, AWS, and other cloud services. * @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { GreengrassClient, GetConnectorDefinitionVersionCommand } from "@aws-sdk/client-greengrass"; // ES Modules import * // const { GreengrassClient, GetConnectorDefinitionVersionCommand } = require("@aws-sdk/client-greengrass"); // CommonJS import * // import type { GreengrassClientConfig } from "@aws-sdk/client-greengrass"; * const config = {}; // type is GreengrassClientConfig * const client = new GreengrassClient(config); * const input = { // GetConnectorDefinitionVersionRequest * ConnectorDefinitionId: "STRING_VALUE", // required * ConnectorDefinitionVersionId: "STRING_VALUE", // required * NextToken: "STRING_VALUE", * }; * const command = new GetConnectorDefinitionVersionCommand(input); * const response = await client.send(command); * // { // GetConnectorDefinitionVersionResponse * // Arn: "STRING_VALUE", * // CreationTimestamp: "STRING_VALUE", * // Definition: { // ConnectorDefinitionVersion * // Connectors: [ // __listOfConnector * // { // Connector * // ConnectorArn: "STRING_VALUE", // required * // Id: "STRING_VALUE", // required * // Parameters: { // __mapOf__string * // "": "STRING_VALUE", * // }, * // }, * // ], * // }, * // Id: "STRING_VALUE", * // NextToken: "STRING_VALUE", * // Version: "STRING_VALUE", * // }; * * ``` * * @param GetConnectorDefinitionVersionCommandInput - {@link GetConnectorDefinitionVersionCommandInput} * @returns {@link GetConnectorDefinitionVersionCommandOutput} * @see {@link GetConnectorDefinitionVersionCommandInput} for command's `input` shape. * @see {@link GetConnectorDefinitionVersionCommandOutput} for command's `response` shape. * @see {@link GreengrassClientResolvedConfig | config} for GreengrassClient's `config` shape. * * @throws {@link BadRequestException} (client fault) * General error information. * * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* * * @public */ export declare class GetConnectorDefinitionVersionCommand extends GetConnectorDefinitionVersionCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetConnectorDefinitionVersionRequest; output: GetConnectorDefinitionVersionResponse; }; sdk: { input: GetConnectorDefinitionVersionCommandInput; output: GetConnectorDefinitionVersionCommandOutput; }; }; }