import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ListDataAutomationLibraryEntitiesRequest, ListDataAutomationLibraryEntitiesResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link ListDataAutomationLibraryEntitiesCommand}. */ export interface ListDataAutomationLibraryEntitiesCommandInput extends ListDataAutomationLibraryEntitiesRequest { } /** * @public * * The output of {@link ListDataAutomationLibraryEntitiesCommand}. */ export interface ListDataAutomationLibraryEntitiesCommandOutput extends ListDataAutomationLibraryEntitiesResponse, __MetadataBearer { } declare const ListDataAutomationLibraryEntitiesCommand_base: { new (input: ListDataAutomationLibraryEntitiesCommandInput): import("@smithy/core/client").CommandImpl; new (input: ListDataAutomationLibraryEntitiesCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** * Lists all stored entities in the library * @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { BedrockDataAutomationClient, ListDataAutomationLibraryEntitiesCommand } from "@aws-sdk/client-bedrock-data-automation"; // ES Modules import * // const { BedrockDataAutomationClient, ListDataAutomationLibraryEntitiesCommand } = require("@aws-sdk/client-bedrock-data-automation"); // CommonJS import * // import type { BedrockDataAutomationClientConfig } from "@aws-sdk/client-bedrock-data-automation"; * const config = {}; // type is BedrockDataAutomationClientConfig * const client = new BedrockDataAutomationClient(config); * const input = { // ListDataAutomationLibraryEntitiesRequest * libraryArn: "STRING_VALUE", // required * entityType: "VOCABULARY", // required * maxResults: Number("int"), * nextToken: "STRING_VALUE", * }; * const command = new ListDataAutomationLibraryEntitiesCommand(input); * const response = await client.send(command); * // { // ListDataAutomationLibraryEntitiesResponse * // entities: [ // DataAutomationLibraryEntitySummaries * // { // DataAutomationLibraryEntitySummary Union: only one key present * // vocabulary: { // VocabularyEntitySummary * // entityId: "STRING_VALUE", * // description: "STRING_VALUE", * // language: "EN" || "DE" || "ES" || "FR" || "IT" || "PT" || "JA" || "KO" || "CN" || "TW" || "HK", * // numOfPhrases: Number("int"), * // lastModifiedTime: new Date("TIMESTAMP"), * // }, * // }, * // ], * // nextToken: "STRING_VALUE", * // }; * * ``` * * @param ListDataAutomationLibraryEntitiesCommandInput - {@link ListDataAutomationLibraryEntitiesCommandInput} * @returns {@link ListDataAutomationLibraryEntitiesCommandOutput} * @see {@link ListDataAutomationLibraryEntitiesCommandInput} for command's `input` shape. * @see {@link ListDataAutomationLibraryEntitiesCommandOutput} for command's `response` shape. * @see {@link BedrockDataAutomationClientResolvedConfig | config} for BedrockDataAutomationClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) * This exception is thrown when a request is denied per access permissions * * @throws {@link InternalServerException} (server fault) * This exception is thrown if there was an unexpected error during processing of request * * @throws {@link ResourceNotFoundException} (client fault) * This exception is thrown when a resource referenced by the operation does not exist * * @throws {@link ThrottlingException} (client fault) * This exception is thrown when the number of requests exceeds the limit * * @throws {@link ValidationException} (client fault) * This exception is thrown when the request's input validation fails * * @throws {@link BedrockDataAutomationServiceException} *

Base exception class for all service exceptions from BedrockDataAutomation service.

* * * @public */ export declare class ListDataAutomationLibraryEntitiesCommand extends ListDataAutomationLibraryEntitiesCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListDataAutomationLibraryEntitiesRequest; output: ListDataAutomationLibraryEntitiesResponse; }; sdk: { input: ListDataAutomationLibraryEntitiesCommandInput; output: ListDataAutomationLibraryEntitiesCommandOutput; }; }; }