import { Command as $Command } from "@smithy/smithy-client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { CreatePartnerAppRequest, CreatePartnerAppResponse } from "../models/models_2"; import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link CreatePartnerAppCommand}. */ export interface CreatePartnerAppCommandInput extends CreatePartnerAppRequest { } /** * @public * * The output of {@link CreatePartnerAppCommand}. */ export interface CreatePartnerAppCommandOutput extends CreatePartnerAppResponse, __MetadataBearer { } declare const CreatePartnerAppCommand_base: { new (input: CreatePartnerAppCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: CreatePartnerAppCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Creates an Amazon SageMaker Partner AI App.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SageMakerClient, CreatePartnerAppCommand } from "@aws-sdk/client-sagemaker"; // ES Modules import * // const { SageMakerClient, CreatePartnerAppCommand } = require("@aws-sdk/client-sagemaker"); // CommonJS import * const client = new SageMakerClient(config); * const input = { // CreatePartnerAppRequest * Name: "STRING_VALUE", // required * Type: "lakera-guard" || "comet" || "deepchecks-llm-evaluation" || "fiddler", // required * ExecutionRoleArn: "STRING_VALUE", // required * KmsKeyId: "STRING_VALUE", * MaintenanceConfig: { // PartnerAppMaintenanceConfig * MaintenanceWindowStart: "STRING_VALUE", * }, * Tier: "STRING_VALUE", // required * ApplicationConfig: { // PartnerAppConfig * AdminUsers: [ // PartnerAppAdminUserList * "STRING_VALUE", * ], * Arguments: { // PartnerAppArguments * "": "STRING_VALUE", * }, * }, * AuthType: "IAM", // required * EnableIamSessionBasedIdentity: true || false, * ClientToken: "STRING_VALUE", * Tags: [ // TagList * { // Tag * Key: "STRING_VALUE", // required * Value: "STRING_VALUE", // required * }, * ], * }; * const command = new CreatePartnerAppCommand(input); * const response = await client.send(command); * // { // CreatePartnerAppResponse * // Arn: "STRING_VALUE", * // }; * * ``` * * @param CreatePartnerAppCommandInput - {@link CreatePartnerAppCommandInput} * @returns {@link CreatePartnerAppCommandOutput} * @see {@link CreatePartnerAppCommandInput} for command's `input` shape. * @see {@link CreatePartnerAppCommandOutput} for command's `response` shape. * @see {@link SageMakerClientResolvedConfig | config} for SageMakerClient's `config` shape. * * @throws {@link ConflictException} (client fault) *

There was a conflict when you attempted to modify a SageMaker entity such as an Experiment or Artifact.

* * @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 CreatePartnerAppCommand extends CreatePartnerAppCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: CreatePartnerAppRequest; output: CreatePartnerAppResponse; }; sdk: { input: CreatePartnerAppCommandInput; output: CreatePartnerAppCommandOutput; }; }; }