import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DescribeProfilingGroupRequest, DescribeProfilingGroupResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DescribeProfilingGroupCommand}. */ export interface DescribeProfilingGroupCommandInput extends DescribeProfilingGroupRequest { } /** * @public * * The output of {@link DescribeProfilingGroupCommand}. */ export interface DescribeProfilingGroupCommandOutput extends DescribeProfilingGroupResponse, __MetadataBearer { } declare const DescribeProfilingGroupCommand_base: { new (input: DescribeProfilingGroupCommandInput): import("@smithy/core/client").CommandImpl; new (input: DescribeProfilingGroupCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

* Returns a * ProfilingGroupDescription * * object that contains information about the requested profiling group. *

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { CodeGuruProfilerClient, DescribeProfilingGroupCommand } from "@aws-sdk/client-codeguruprofiler"; // ES Modules import * // const { CodeGuruProfilerClient, DescribeProfilingGroupCommand } = require("@aws-sdk/client-codeguruprofiler"); // CommonJS import * // import type { CodeGuruProfilerClientConfig } from "@aws-sdk/client-codeguruprofiler"; * const config = {}; // type is CodeGuruProfilerClientConfig * const client = new CodeGuruProfilerClient(config); * const input = { // DescribeProfilingGroupRequest * profilingGroupName: "STRING_VALUE", // required * }; * const command = new DescribeProfilingGroupCommand(input); * const response = await client.send(command); * // { // DescribeProfilingGroupResponse * // profilingGroup: { // ProfilingGroupDescription * // name: "STRING_VALUE", * // agentOrchestrationConfig: { // AgentOrchestrationConfig * // profilingEnabled: true || false, // required * // }, * // arn: "STRING_VALUE", * // createdAt: new Date("TIMESTAMP"), * // updatedAt: new Date("TIMESTAMP"), * // profilingStatus: { // ProfilingStatus * // latestAgentProfileReportedAt: new Date("TIMESTAMP"), * // latestAggregatedProfile: { // AggregatedProfileTime * // start: new Date("TIMESTAMP"), * // period: "STRING_VALUE", * // }, * // latestAgentOrchestratedAt: new Date("TIMESTAMP"), * // }, * // computePlatform: "STRING_VALUE", * // tags: { // TagsMap * // "": "STRING_VALUE", * // }, * // }, * // }; * * ``` * * @param DescribeProfilingGroupCommandInput - {@link DescribeProfilingGroupCommandInput} * @returns {@link DescribeProfilingGroupCommandOutput} * @see {@link DescribeProfilingGroupCommandInput} for command's `input` shape. * @see {@link DescribeProfilingGroupCommandOutput} for command's `response` shape. * @see {@link CodeGuruProfilerClientResolvedConfig | config} for CodeGuruProfilerClient's `config` shape. * * @throws {@link InternalServerException} (server fault) *

The server encountered an internal error and is unable to complete the request.

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

The resource specified in the request does not exist.

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

The request was denied due to request throttling.

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

The parameter is not valid.

* * @throws {@link CodeGuruProfilerServiceException} *

Base exception class for all service exceptions from CodeGuruProfiler service.

* * * @public */ export declare class DescribeProfilingGroupCommand extends DescribeProfilingGroupCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeProfilingGroupRequest; output: DescribeProfilingGroupResponse; }; sdk: { input: DescribeProfilingGroupCommandInput; output: DescribeProfilingGroupCommandOutput; }; }; }