import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ListLogPatternsRequest, ListLogPatternsResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link ListLogPatternsCommand}. */ export interface ListLogPatternsCommandInput extends ListLogPatternsRequest { } /** * @public * * The output of {@link ListLogPatternsCommand}. */ export interface ListLogPatternsCommandOutput extends ListLogPatternsResponse, __MetadataBearer { } declare const ListLogPatternsCommand_base: { new (input: ListLogPatternsCommandInput): import("@smithy/core/client").CommandImpl; new (input: ListLogPatternsCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Lists the log patterns in the specific log LogPatternSet.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ApplicationInsightsClient, ListLogPatternsCommand } from "@aws-sdk/client-application-insights"; // ES Modules import * // const { ApplicationInsightsClient, ListLogPatternsCommand } = require("@aws-sdk/client-application-insights"); // CommonJS import * // import type { ApplicationInsightsClientConfig } from "@aws-sdk/client-application-insights"; * const config = {}; // type is ApplicationInsightsClientConfig * const client = new ApplicationInsightsClient(config); * const input = { // ListLogPatternsRequest * ResourceGroupName: "STRING_VALUE", // required * PatternSetName: "STRING_VALUE", * MaxResults: Number("int"), * NextToken: "STRING_VALUE", * AccountId: "STRING_VALUE", * }; * const command = new ListLogPatternsCommand(input); * const response = await client.send(command); * // { // ListLogPatternsResponse * // ResourceGroupName: "STRING_VALUE", * // AccountId: "STRING_VALUE", * // LogPatterns: [ // LogPatternList * // { // LogPattern * // PatternSetName: "STRING_VALUE", * // PatternName: "STRING_VALUE", * // Pattern: "STRING_VALUE", * // Rank: Number("int"), * // }, * // ], * // NextToken: "STRING_VALUE", * // }; * * ``` * * @param ListLogPatternsCommandInput - {@link ListLogPatternsCommandInput} * @returns {@link ListLogPatternsCommandOutput} * @see {@link ListLogPatternsCommandInput} for command's `input` shape. * @see {@link ListLogPatternsCommandOutput} for command's `response` shape. * @see {@link ApplicationInsightsClientResolvedConfig | config} for ApplicationInsightsClient'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 does not exist in the customer account.

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

The parameter is not valid.

* * @throws {@link ApplicationInsightsServiceException} *

Base exception class for all service exceptions from ApplicationInsights service.

* * * @public */ export declare class ListLogPatternsCommand extends ListLogPatternsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListLogPatternsRequest; output: ListLogPatternsResponse; }; sdk: { input: ListLogPatternsCommandInput; output: ListLogPatternsCommandOutput; }; }; }