import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ListServiceLevelObjectivesInput, ListServiceLevelObjectivesOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link ListServiceLevelObjectivesCommand}. */ export interface ListServiceLevelObjectivesCommandInput extends ListServiceLevelObjectivesInput { } /** * @public * * The output of {@link ListServiceLevelObjectivesCommand}. */ export interface ListServiceLevelObjectivesCommandOutput extends ListServiceLevelObjectivesOutput, __MetadataBearer { } declare const ListServiceLevelObjectivesCommand_base: { new (input: ListServiceLevelObjectivesCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [ListServiceLevelObjectivesCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Returns a list of SLOs created in this account.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ApplicationSignalsClient, ListServiceLevelObjectivesCommand } from "@aws-sdk/client-application-signals"; // ES Modules import * // const { ApplicationSignalsClient, ListServiceLevelObjectivesCommand } = 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 = { // ListServiceLevelObjectivesInput * KeyAttributes: { // Attributes * "": "STRING_VALUE", * }, * OperationName: "STRING_VALUE", * DependencyConfig: { // DependencyConfig * DependencyKeyAttributes: { // required * "": "STRING_VALUE", * }, * DependencyOperationName: "STRING_VALUE", // required * }, * MaxResults: Number("int"), * NextToken: "STRING_VALUE", * MetricSourceTypes: [ // MetricSourceTypes * "ServiceOperation" || "CloudWatchMetric" || "ServiceDependency" || "AppMonitor" || "Canary" || "Service", * ], * IncludeLinkedAccounts: true || false, * SloOwnerAwsAccountId: "STRING_VALUE", * MetricSource: { // MetricSource * MetricSourceKeyAttributes: { // required * "": "STRING_VALUE", * }, * MetricSourceAttributes: { * "": "STRING_VALUE", * }, * }, * }; * const command = new ListServiceLevelObjectivesCommand(input); * const response = await client.send(command); * // { // ListServiceLevelObjectivesOutput * // SloSummaries: [ // ServiceLevelObjectiveSummaries * // { // ServiceLevelObjectiveSummary * // Arn: "STRING_VALUE", // required * // Name: "STRING_VALUE", // required * // KeyAttributes: { // Attributes * // "": "STRING_VALUE", * // }, * // OperationName: "STRING_VALUE", * // DependencyConfig: { // DependencyConfig * // DependencyKeyAttributes: { // required * // "": "STRING_VALUE", * // }, * // DependencyOperationName: "STRING_VALUE", // required * // }, * // CreatedTime: new Date("TIMESTAMP"), * // EvaluationType: "PeriodBased" || "RequestBased", * // MetricSourceType: "ServiceOperation" || "CloudWatchMetric" || "ServiceDependency" || "AppMonitor" || "Canary" || "Service", * // MetricSource: { // MetricSource * // MetricSourceKeyAttributes: { // required * // "": "STRING_VALUE", * // }, * // MetricSourceAttributes: { * // "": "STRING_VALUE", * // }, * // }, * // CompositeSliConfig: { // CompositeSliConfig * // SelectionConfig: { // SelectionConfig * // Type: "EXPLICIT" || "PREFIX" || "REGEX", // required * // Pattern: "STRING_VALUE", * // }, * // Components: [ // CompositeSliComponents * // { // CompositeSliComponent Union: only one key present * // OperationName: "STRING_VALUE", * // }, * // ], * // }, * // }, * // ], * // NextToken: "STRING_VALUE", * // }; * * ``` * * @param ListServiceLevelObjectivesCommandInput - {@link ListServiceLevelObjectivesCommandInput} * @returns {@link ListServiceLevelObjectivesCommandOutput} * @see {@link ListServiceLevelObjectivesCommandInput} for command's `input` shape. * @see {@link ListServiceLevelObjectivesCommandOutput} for command's `response` shape. * @see {@link ApplicationSignalsClientResolvedConfig | config} for ApplicationSignalsClient's `config` shape. * * @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 ListServiceLevelObjectivesCommand extends ListServiceLevelObjectivesCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListServiceLevelObjectivesInput; output: ListServiceLevelObjectivesOutput; }; sdk: { input: ListServiceLevelObjectivesCommandInput; output: ListServiceLevelObjectivesCommandOutput; }; }; }