import { Command as $Command } from "@smithy/core/client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { GetGroupRequest, GetGroupResult } from "../models/models_0"; import type { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; /** * @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 GetGroupResult, __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 group resource details.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { XRayClient, GetGroupCommand } from "@aws-sdk/client-xray"; // ES Modules import * // const { XRayClient, GetGroupCommand } = require("@aws-sdk/client-xray"); // CommonJS import * // import type { XRayClientConfig } from "@aws-sdk/client-xray"; * const config = {}; // type is XRayClientConfig * const client = new XRayClient(config); * const input = { // GetGroupRequest * GroupName: "STRING_VALUE", * GroupARN: "STRING_VALUE", * }; * const command = new GetGroupCommand(input); * const response = await client.send(command); * // { // GetGroupResult * // Group: { // Group * // GroupName: "STRING_VALUE", * // GroupARN: "STRING_VALUE", * // FilterExpression: "STRING_VALUE", * // InsightsConfiguration: { // InsightsConfiguration * // InsightsEnabled: true || false, * // NotificationsEnabled: true || false, * // }, * // }, * // }; * * ``` * * @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 XRayClientResolvedConfig | config} for XRayClient's `config` shape. * * @throws {@link InvalidRequestException} (client fault) *

The request is missing required parameters or has invalid parameters.

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

The request exceeds the maximum number of requests per second.

* * @throws {@link XRayServiceException} *

Base exception class for all service exceptions from XRay service.

* * * @public */ export declare class GetGroupCommand extends GetGroupCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetGroupRequest; output: GetGroupResult; }; sdk: { input: GetGroupCommandInput; output: GetGroupCommandOutput; }; }; }