import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ListGroupingAttributeDefinitionsInput, ListGroupingAttributeDefinitionsOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link ListGroupingAttributeDefinitionsCommand}. */ export interface ListGroupingAttributeDefinitionsCommandInput extends ListGroupingAttributeDefinitionsInput { } /** * @public * * The output of {@link ListGroupingAttributeDefinitionsCommand}. */ export interface ListGroupingAttributeDefinitionsCommandOutput extends ListGroupingAttributeDefinitionsOutput, __MetadataBearer { } declare const ListGroupingAttributeDefinitionsCommand_base: { new (input: ListGroupingAttributeDefinitionsCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [ListGroupingAttributeDefinitionsCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Returns the current grouping configuration for this account, including all custom grouping attribute definitions that have been configured. These definitions determine how services are logically grouped based on telemetry attributes, Amazon Web Services tags, or predefined mappings.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ApplicationSignalsClient, ListGroupingAttributeDefinitionsCommand } from "@aws-sdk/client-application-signals"; // ES Modules import * // const { ApplicationSignalsClient, ListGroupingAttributeDefinitionsCommand } = require("@aws-sdk/client-application-signals"); // CommonJS import * // import type { ApplicationSignalsClientConfig } from "@aws-sdk/client-application-signals"; * const config = {}; // type is ApplicationSignalsClientConfig * const client = new ApplicationSignalsClient(config); * const input = { // ListGroupingAttributeDefinitionsInput * NextToken: "STRING_VALUE", * AwsAccountId: "STRING_VALUE", * IncludeLinkedAccounts: true || false, * }; * const command = new ListGroupingAttributeDefinitionsCommand(input); * const response = await client.send(command); * // { // ListGroupingAttributeDefinitionsOutput * // GroupingAttributeDefinitions: [ // GroupingAttributeDefinitions // required * // { // GroupingAttributeDefinition * // GroupingName: "STRING_VALUE", // required * // GroupingSourceKeys: [ // GroupingSourceKeyStringList * // "STRING_VALUE", * // ], * // DefaultGroupingValue: "STRING_VALUE", * // }, * // ], * // UpdatedAt: new Date("TIMESTAMP"), * // NextToken: "STRING_VALUE", * // }; * * ``` * * @param ListGroupingAttributeDefinitionsCommandInput - {@link ListGroupingAttributeDefinitionsCommandInput} * @returns {@link ListGroupingAttributeDefinitionsCommandOutput} * @see {@link ListGroupingAttributeDefinitionsCommandInput} for command's `input` shape. * @see {@link ListGroupingAttributeDefinitionsCommandOutput} for command's `response` shape. * @see {@link ApplicationSignalsClientResolvedConfig | config} for ApplicationSignalsClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

You don't have sufficient permissions to perform this action.

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

The request was throttled because of quota limits.

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

The resource is not valid.

* * @throws {@link ApplicationSignalsServiceException} *

Base exception class for all service exceptions from ApplicationSignals service.

* * * @public */ export declare class ListGroupingAttributeDefinitionsCommand extends ListGroupingAttributeDefinitionsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListGroupingAttributeDefinitionsInput; output: ListGroupingAttributeDefinitionsOutput; }; sdk: { input: ListGroupingAttributeDefinitionsCommandInput; output: ListGroupingAttributeDefinitionsCommandOutput; }; }; }