import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { InvokeBlueprintOptimizationAsyncRequest, InvokeBlueprintOptimizationAsyncResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link InvokeBlueprintOptimizationAsyncCommand}. */ export interface InvokeBlueprintOptimizationAsyncCommandInput extends InvokeBlueprintOptimizationAsyncRequest { } /** * @public * * The output of {@link InvokeBlueprintOptimizationAsyncCommand}. */ export interface InvokeBlueprintOptimizationAsyncCommandOutput extends InvokeBlueprintOptimizationAsyncResponse, __MetadataBearer { } declare const InvokeBlueprintOptimizationAsyncCommand_base: { new (input: InvokeBlueprintOptimizationAsyncCommandInput): import("@smithy/core/client").CommandImpl; new (input: InvokeBlueprintOptimizationAsyncCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** * Invoke an async job to perform Blueprint Optimization * @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { BedrockDataAutomationClient, InvokeBlueprintOptimizationAsyncCommand } from "@aws-sdk/client-bedrock-data-automation"; // ES Modules import * // const { BedrockDataAutomationClient, InvokeBlueprintOptimizationAsyncCommand } = 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 = { // InvokeBlueprintOptimizationAsyncRequest * blueprint: { // BlueprintOptimizationObject * blueprintArn: "STRING_VALUE", // required * stage: "DEVELOPMENT" || "LIVE", * }, * samples: [ // BlueprintOptimizationSamples // required * { // BlueprintOptimizationSample * assetS3Object: { // S3Object * s3Uri: "STRING_VALUE", // required * version: "STRING_VALUE", * }, * groundTruthS3Object: { * s3Uri: "STRING_VALUE", // required * version: "STRING_VALUE", * }, * }, * ], * outputConfiguration: { // BlueprintOptimizationOutputConfiguration * s3Object: { * s3Uri: "STRING_VALUE", // required * version: "STRING_VALUE", * }, * }, * dataAutomationProfileArn: "STRING_VALUE", // required * encryptionConfiguration: { // EncryptionConfiguration * kmsKeyId: "STRING_VALUE", // required * kmsEncryptionContext: { // KmsEncryptionContext * "": "STRING_VALUE", * }, * }, * tags: [ // TagList * { // Tag * key: "STRING_VALUE", // required * value: "STRING_VALUE", // required * }, * ], * }; * const command = new InvokeBlueprintOptimizationAsyncCommand(input); * const response = await client.send(command); * // { // InvokeBlueprintOptimizationAsyncResponse * // invocationArn: "STRING_VALUE", // required * // }; * * ``` * * @param InvokeBlueprintOptimizationAsyncCommandInput - {@link InvokeBlueprintOptimizationAsyncCommandInput} * @returns {@link InvokeBlueprintOptimizationAsyncCommandOutput} * @see {@link InvokeBlueprintOptimizationAsyncCommandInput} for command's `input` shape. * @see {@link InvokeBlueprintOptimizationAsyncCommandOutput} 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 ServiceQuotaExceededException} (client fault) * This exception is thrown when a request is made beyond the service quota * * @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 InvokeBlueprintOptimizationAsyncCommand extends InvokeBlueprintOptimizationAsyncCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: InvokeBlueprintOptimizationAsyncRequest; output: InvokeBlueprintOptimizationAsyncResponse; }; sdk: { input: InvokeBlueprintOptimizationAsyncCommandInput; output: InvokeBlueprintOptimizationAsyncCommandOutput; }; }; }