import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ListStateTemplatesRequest, ListStateTemplatesResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link ListStateTemplatesCommand}. */ export interface ListStateTemplatesCommandInput extends ListStateTemplatesRequest { } /** * @public * * The output of {@link ListStateTemplatesCommand}. */ export interface ListStateTemplatesCommandOutput extends ListStateTemplatesResponse, __MetadataBearer { } declare const ListStateTemplatesCommand_base: { new (input: ListStateTemplatesCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [ListStateTemplatesCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Lists information about created state templates.

* *

Access to certain Amazon Web Services IoT FleetWise features is currently gated. For more information, see Amazon Web Services Region and feature availability in the Amazon Web Services IoT FleetWise Developer Guide.

*
* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { IoTFleetWiseClient, ListStateTemplatesCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import * // const { IoTFleetWiseClient, ListStateTemplatesCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import * // import type { IoTFleetWiseClientConfig } from "@aws-sdk/client-iotfleetwise"; * const config = {}; // type is IoTFleetWiseClientConfig * const client = new IoTFleetWiseClient(config); * const input = { // ListStateTemplatesRequest * nextToken: "STRING_VALUE", * maxResults: Number("int"), * listResponseScope: "METADATA_ONLY", * }; * const command = new ListStateTemplatesCommand(input); * const response = await client.send(command); * // { // ListStateTemplatesResponse * // summaries: [ // StateTemplateSummaries * // { // StateTemplateSummary * // name: "STRING_VALUE", * // arn: "STRING_VALUE", * // signalCatalogArn: "STRING_VALUE", * // description: "STRING_VALUE", * // creationTime: new Date("TIMESTAMP"), * // lastModificationTime: new Date("TIMESTAMP"), * // id: "STRING_VALUE", * // }, * // ], * // nextToken: "STRING_VALUE", * // }; * * ``` * * @param ListStateTemplatesCommandInput - {@link ListStateTemplatesCommandInput} * @returns {@link ListStateTemplatesCommandOutput} * @see {@link ListStateTemplatesCommandInput} for command's `input` shape. * @see {@link ListStateTemplatesCommandOutput} for command's `response` shape. * @see {@link IoTFleetWiseClientResolvedConfig | config} for IoTFleetWiseClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

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

* * @throws {@link InternalServerException} (server fault) *

The request couldn't be completed because the server temporarily failed.

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

The request couldn't be completed due to throttling.

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

The input fails to satisfy the constraints specified by an Amazon Web Services service.

* * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* * * @public */ export declare class ListStateTemplatesCommand extends ListStateTemplatesCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListStateTemplatesRequest; output: ListStateTemplatesResponse; }; sdk: { input: ListStateTemplatesCommandInput; output: ListStateTemplatesCommandOutput; }; }; }