import { Command as $Command } from "@smithy/smithy-client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { CreateEdgePackagingJobRequest } from "../models/models_1"; import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link CreateEdgePackagingJobCommand}. */ export interface CreateEdgePackagingJobCommandInput extends CreateEdgePackagingJobRequest { } /** * @public * * The output of {@link CreateEdgePackagingJobCommand}. */ export interface CreateEdgePackagingJobCommandOutput extends __MetadataBearer { } declare const CreateEdgePackagingJobCommand_base: { new (input: CreateEdgePackagingJobCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: CreateEdgePackagingJobCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Starts a SageMaker Edge Manager model packaging job. Edge Manager will use the model artifacts from the Amazon Simple Storage Service bucket that you specify. After the model has been packaged, Amazon SageMaker saves the resulting artifacts to an S3 bucket that you specify.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SageMakerClient, CreateEdgePackagingJobCommand } from "@aws-sdk/client-sagemaker"; // ES Modules import * // const { SageMakerClient, CreateEdgePackagingJobCommand } = require("@aws-sdk/client-sagemaker"); // CommonJS import * const client = new SageMakerClient(config); * const input = { // CreateEdgePackagingJobRequest * EdgePackagingJobName: "STRING_VALUE", // required * CompilationJobName: "STRING_VALUE", // required * ModelName: "STRING_VALUE", // required * ModelVersion: "STRING_VALUE", // required * RoleArn: "STRING_VALUE", // required * OutputConfig: { // EdgeOutputConfig * S3OutputLocation: "STRING_VALUE", // required * KmsKeyId: "STRING_VALUE", * PresetDeploymentType: "GreengrassV2Component", * PresetDeploymentConfig: "STRING_VALUE", * }, * ResourceKey: "STRING_VALUE", * Tags: [ // TagList * { // Tag * Key: "STRING_VALUE", // required * Value: "STRING_VALUE", // required * }, * ], * }; * const command = new CreateEdgePackagingJobCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param CreateEdgePackagingJobCommandInput - {@link CreateEdgePackagingJobCommandInput} * @returns {@link CreateEdgePackagingJobCommandOutput} * @see {@link CreateEdgePackagingJobCommandInput} for command's `input` shape. * @see {@link CreateEdgePackagingJobCommandOutput} for command's `response` shape. * @see {@link SageMakerClientResolvedConfig | config} for SageMakerClient's `config` shape. * * @throws {@link ResourceLimitExceeded} (client fault) *

You have exceeded an SageMaker resource limit. For example, you might have too many training jobs created.

* * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* * * @public */ export declare class CreateEdgePackagingJobCommand extends CreateEdgePackagingJobCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: CreateEdgePackagingJobRequest; output: {}; }; sdk: { input: CreateEdgePackagingJobCommandInput; output: CreateEdgePackagingJobCommandOutput; }; }; }