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 { GetGroupRequest, GetGroupResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link GetGroupCommand}. */ export interface GetGroupCommandInput extends GetGroupRequest { } /** * @public * * The output of {@link GetGroupCommand}. */ export interface GetGroupCommandOutput extends GetGroupResponse, __MetadataBearer { } declare const GetGroupCommand_base: { new (input: GetGroupCommandInput): import("@smithy/core/client").CommandImpl; new (input: GetGroupCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** * Retrieves information about a group. * @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { GreengrassClient, GetGroupCommand } from "@aws-sdk/client-greengrass"; // ES Modules import * // const { GreengrassClient, GetGroupCommand } = 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 = { // GetGroupRequest * GroupId: "STRING_VALUE", // required * }; * const command = new GetGroupCommand(input); * const response = await client.send(command); * // { // GetGroupResponse * // Arn: "STRING_VALUE", * // CreationTimestamp: "STRING_VALUE", * // Id: "STRING_VALUE", * // LastUpdatedTimestamp: "STRING_VALUE", * // LatestVersion: "STRING_VALUE", * // LatestVersionArn: "STRING_VALUE", * // Name: "STRING_VALUE", * // tags: { // Tags * // "": "STRING_VALUE", * // }, * // }; * * ``` * * @param GetGroupCommandInput - {@link GetGroupCommandInput} * @returns {@link GetGroupCommandOutput} * @see {@link GetGroupCommandInput} for command's `input` shape. * @see {@link GetGroupCommandOutput} 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 GetGroupCommand extends GetGroupCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetGroupRequest; output: GetGroupResponse; }; sdk: { input: GetGroupCommandInput; output: GetGroupCommandOutput; }; }; }