import { Command as $Command } from "@smithy/core/client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; import type { CreateImageRequest, CreateImageResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link CreateImageCommand}. */ export interface CreateImageCommandInput extends CreateImageRequest { } /** * @public * * The output of {@link CreateImageCommand}. */ export interface CreateImageCommandOutput extends CreateImageResponse, __MetadataBearer { } declare const CreateImageCommand_base: { new (input: CreateImageCommandInput): import("@smithy/core/client").CommandImpl; new (input: CreateImageCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

Creates a new image. This request will create a new image along with all of the * configured output resources defined in the distribution configuration. You must specify * exactly one recipe for your image, using either a ContainerRecipeArn or an * ImageRecipeArn.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ImagebuilderClient, CreateImageCommand } from "@aws-sdk/client-imagebuilder"; // ES Modules import * // const { ImagebuilderClient, CreateImageCommand } = require("@aws-sdk/client-imagebuilder"); // CommonJS import * // import type { ImagebuilderClientConfig } from "@aws-sdk/client-imagebuilder"; * const config = {}; // type is ImagebuilderClientConfig * const client = new ImagebuilderClient(config); * const input = { // CreateImageRequest * imageRecipeArn: "STRING_VALUE", * containerRecipeArn: "STRING_VALUE", * distributionConfigurationArn: "STRING_VALUE", * infrastructureConfigurationArn: "STRING_VALUE", // required * imageTestsConfiguration: { // ImageTestsConfiguration * imageTestsEnabled: true || false, * timeoutMinutes: Number("int"), * }, * enhancedImageMetadataEnabled: true || false, * tags: { // TagMap * "": "STRING_VALUE", * }, * clientToken: "STRING_VALUE", // required * imageScanningConfiguration: { // ImageScanningConfiguration * imageScanningEnabled: true || false, * ecrConfiguration: { // EcrConfiguration * repositoryName: "STRING_VALUE", * containerTags: [ // StringList * "STRING_VALUE", * ], * }, * }, * workflows: [ // WorkflowConfigurationList * { // WorkflowConfiguration * workflowArn: "STRING_VALUE", // required * parameters: [ // WorkflowParameterList * { // WorkflowParameter * name: "STRING_VALUE", // required * value: [ // WorkflowParameterValueList // required * "STRING_VALUE", * ], * }, * ], * parallelGroup: "STRING_VALUE", * onFailure: "CONTINUE" || "ABORT", * }, * ], * executionRole: "STRING_VALUE", * loggingConfiguration: { // ImageLoggingConfiguration * logGroupName: "STRING_VALUE", * }, * }; * const command = new CreateImageCommand(input); * const response = await client.send(command); * // { // CreateImageResponse * // requestId: "STRING_VALUE", * // clientToken: "STRING_VALUE", * // imageBuildVersionArn: "STRING_VALUE", * // latestVersionReferences: { // LatestVersionReferences * // latestVersionArn: "STRING_VALUE", * // latestMajorVersionArn: "STRING_VALUE", * // latestMinorVersionArn: "STRING_VALUE", * // latestPatchVersionArn: "STRING_VALUE", * // }, * // }; * * ``` * * @param CreateImageCommandInput - {@link CreateImageCommandInput} * @returns {@link CreateImageCommandOutput} * @see {@link CreateImageCommandInput} for command's `input` shape. * @see {@link CreateImageCommandOutput} for command's `response` shape. * @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape. * * @throws {@link CallRateLimitExceededException} (client fault) *

You have exceeded the permitted request rate for the specific operation.

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

These errors are usually caused by a client action, such as using an action or * resource on behalf of a user that doesn't have permissions to use the action or * resource, or specifying an invalid resource identifier.

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

You are not authorized to perform the requested operation.

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

You have specified a client token for an operation using parameter values that differ * from a previous request that used the same client token.

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

You have requested an action that that the service doesn't support.

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

The resource that you are trying to operate on is currently in use. Review the message * details and retry later.

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

This exception is thrown when the service encounters an unrecoverable * exception.

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

You have exceeded the number of permitted resources or operations for this service. * For service quotas, see EC2 Image Builder endpoints and * quotas.

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

The service is unable to process your request at this time.

* * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* * * @public */ export declare class CreateImageCommand extends CreateImageCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: CreateImageRequest; output: CreateImageResponse; }; sdk: { input: CreateImageCommandInput; output: CreateImageCommandOutput; }; }; }