@aws-sdk/client-sagemaker 3.315.0 → 3.316.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -302,3126 +302,1838 @@ import { UpdateUserProfileCommandInput, UpdateUserProfileCommandOutput } from ".
302
302
  import { UpdateWorkforceCommandInput, UpdateWorkforceCommandOutput } from "./commands/UpdateWorkforceCommand";
303
303
  import { UpdateWorkteamCommandInput, UpdateWorkteamCommandOutput } from "./commands/UpdateWorkteamCommand";
304
304
  import { SageMakerClient } from "./SageMakerClient";
305
- /**
306
- * @public
307
- * <p>Provides APIs for creating and managing SageMaker resources. </p>
308
- * <p>Other Resources:</p>
309
- * <ul>
310
- * <li>
311
- * <p>
312
- * <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/whatis.html#first-time-user">SageMaker Developer
313
- * Guide</a>
314
- * </p>
315
- * </li>
316
- * <li>
317
- * <p>
318
- * <a href="https://docs.aws.amazon.com/augmented-ai/2019-11-07/APIReference/Welcome.html">Amazon Augmented AI
319
- * Runtime API Reference</a>
320
- * </p>
321
- * </li>
322
- * </ul>
323
- */
324
- export declare class SageMaker extends SageMakerClient {
305
+ export interface SageMaker {
325
306
  /**
326
- * @public
327
- * <p>Creates an <i>association</i> between the source and the destination. A
328
- * source can be associated with multiple destinations, and a destination can be associated
329
- * with multiple sources. An association is a lineage tracking entity. For more information, see
330
- * <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/lineage-tracking.html">Amazon SageMaker
331
- * ML Lineage Tracking</a>.</p>
307
+ * @see {@link AddAssociationCommand}
332
308
  */
333
309
  addAssociation(args: AddAssociationCommandInput, options?: __HttpHandlerOptions): Promise<AddAssociationCommandOutput>;
334
310
  addAssociation(args: AddAssociationCommandInput, cb: (err: any, data?: AddAssociationCommandOutput) => void): void;
335
311
  addAssociation(args: AddAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddAssociationCommandOutput) => void): void;
336
312
  /**
337
- * @public
338
- * <p>Adds or overwrites one or more tags for the specified SageMaker resource. You can add
339
- * tags to notebook instances, training jobs, hyperparameter tuning jobs, batch transform
340
- * jobs, models, labeling jobs, work teams, endpoint configurations, and
341
- * endpoints.</p>
342
- * <p>Each tag consists of a key and an optional value. Tag keys must be unique per
343
- * resource. For more information about tags, see For more information, see <a href="https://aws.amazon.com/answers/account-management/aws-tagging-strategies/">Amazon Web Services Tagging Strategies</a>.</p>
344
- * <note>
345
- * <p>Tags that you add to a hyperparameter tuning job by calling this API are also
346
- * added to any training jobs that the hyperparameter tuning job launches after you
347
- * call this API, but not to training jobs that the hyperparameter tuning job launched
348
- * before you called this API. To make sure that the tags associated with a
349
- * hyperparameter tuning job are also added to all training jobs that the
350
- * hyperparameter tuning job launches, add the tags when you first create the tuning
351
- * job by specifying them in the <code>Tags</code> parameter of <a>CreateHyperParameterTuningJob</a>
352
- * </p>
353
- * </note>
354
- * <note>
355
- * <p>Tags that you add to a SageMaker Studio Domain or User Profile by calling this API
356
- * are also added to any Apps that the Domain or User Profile launches after you call
357
- * this API, but not to Apps that the Domain or User Profile launched before you called
358
- * this API. To make sure that the tags associated with a Domain or User Profile are
359
- * also added to all Apps that the Domain or User Profile launches, add the tags when
360
- * you first create the Domain or User Profile by specifying them in the
361
- * <code>Tags</code> parameter of <a>CreateDomain</a> or <a>CreateUserProfile</a>.</p>
362
- * </note>
313
+ * @see {@link AddTagsCommand}
363
314
  */
364
315
  addTags(args: AddTagsCommandInput, options?: __HttpHandlerOptions): Promise<AddTagsCommandOutput>;
365
316
  addTags(args: AddTagsCommandInput, cb: (err: any, data?: AddTagsCommandOutput) => void): void;
366
317
  addTags(args: AddTagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddTagsCommandOutput) => void): void;
367
318
  /**
368
- * @public
369
- * <p>Associates a trial component with a trial. A trial component can be associated with
370
- * multiple trials. To disassociate a trial component from a trial, call the <a>DisassociateTrialComponent</a> API.</p>
319
+ * @see {@link AssociateTrialComponentCommand}
371
320
  */
372
321
  associateTrialComponent(args: AssociateTrialComponentCommandInput, options?: __HttpHandlerOptions): Promise<AssociateTrialComponentCommandOutput>;
373
322
  associateTrialComponent(args: AssociateTrialComponentCommandInput, cb: (err: any, data?: AssociateTrialComponentCommandOutput) => void): void;
374
323
  associateTrialComponent(args: AssociateTrialComponentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateTrialComponentCommandOutput) => void): void;
375
324
  /**
376
- * @public
377
- * <p>This action batch describes a list of versioned model packages</p>
325
+ * @see {@link BatchDescribeModelPackageCommand}
378
326
  */
379
327
  batchDescribeModelPackage(args: BatchDescribeModelPackageCommandInput, options?: __HttpHandlerOptions): Promise<BatchDescribeModelPackageCommandOutput>;
380
328
  batchDescribeModelPackage(args: BatchDescribeModelPackageCommandInput, cb: (err: any, data?: BatchDescribeModelPackageCommandOutput) => void): void;
381
329
  batchDescribeModelPackage(args: BatchDescribeModelPackageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchDescribeModelPackageCommandOutput) => void): void;
382
330
  /**
383
- * @public
384
- * <p>Creates an <i>action</i>. An action is a lineage tracking entity that
385
- * represents an action or activity. For example, a model deployment or an HPO job.
386
- * Generally, an action involves at least one input or output artifact. For more information, see
387
- * <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/lineage-tracking.html">Amazon SageMaker
388
- * ML Lineage Tracking</a>.</p>
331
+ * @see {@link CreateActionCommand}
389
332
  */
390
333
  createAction(args: CreateActionCommandInput, options?: __HttpHandlerOptions): Promise<CreateActionCommandOutput>;
391
334
  createAction(args: CreateActionCommandInput, cb: (err: any, data?: CreateActionCommandOutput) => void): void;
392
335
  createAction(args: CreateActionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateActionCommandOutput) => void): void;
393
336
  /**
394
- * @public
395
- * <p>Create a machine learning algorithm that you can use in SageMaker and list in the Amazon Web Services Marketplace.</p>
337
+ * @see {@link CreateAlgorithmCommand}
396
338
  */
397
339
  createAlgorithm(args: CreateAlgorithmCommandInput, options?: __HttpHandlerOptions): Promise<CreateAlgorithmCommandOutput>;
398
340
  createAlgorithm(args: CreateAlgorithmCommandInput, cb: (err: any, data?: CreateAlgorithmCommandOutput) => void): void;
399
341
  createAlgorithm(args: CreateAlgorithmCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAlgorithmCommandOutput) => void): void;
400
342
  /**
401
- * @public
402
- * <p>Creates a running app for the specified UserProfile. This operation is automatically
403
- * invoked by Amazon SageMaker Studio upon access to the associated Domain, and when new kernel
404
- * configurations are selected by the user. A user may have multiple Apps active simultaneously.</p>
343
+ * @see {@link CreateAppCommand}
405
344
  */
406
345
  createApp(args: CreateAppCommandInput, options?: __HttpHandlerOptions): Promise<CreateAppCommandOutput>;
407
346
  createApp(args: CreateAppCommandInput, cb: (err: any, data?: CreateAppCommandOutput) => void): void;
408
347
  createApp(args: CreateAppCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAppCommandOutput) => void): void;
409
348
  /**
410
- * @public
411
- * <p>Creates a configuration for running a SageMaker image as a KernelGateway app. The
412
- * configuration specifies the Amazon Elastic File System (EFS) storage volume on the image, and a list of the
413
- * kernels in the image.</p>
349
+ * @see {@link CreateAppImageConfigCommand}
414
350
  */
415
351
  createAppImageConfig(args: CreateAppImageConfigCommandInput, options?: __HttpHandlerOptions): Promise<CreateAppImageConfigCommandOutput>;
416
352
  createAppImageConfig(args: CreateAppImageConfigCommandInput, cb: (err: any, data?: CreateAppImageConfigCommandOutput) => void): void;
417
353
  createAppImageConfig(args: CreateAppImageConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAppImageConfigCommandOutput) => void): void;
418
354
  /**
419
- * @public
420
- * <p>Creates an <i>artifact</i>. An artifact is a lineage tracking entity that
421
- * represents a URI addressable object or data. Some examples are the S3 URI of a dataset and
422
- * the ECR registry path of an image. For more information, see
423
- * <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/lineage-tracking.html">Amazon SageMaker
424
- * ML Lineage Tracking</a>.</p>
355
+ * @see {@link CreateArtifactCommand}
425
356
  */
426
357
  createArtifact(args: CreateArtifactCommandInput, options?: __HttpHandlerOptions): Promise<CreateArtifactCommandOutput>;
427
358
  createArtifact(args: CreateArtifactCommandInput, cb: (err: any, data?: CreateArtifactCommandOutput) => void): void;
428
359
  createArtifact(args: CreateArtifactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateArtifactCommandOutput) => void): void;
429
360
  /**
430
- * @public
431
- * <p>Creates an Autopilot job.</p>
432
- * <p>Find the best-performing model after you run an Autopilot job by calling <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_DescribeAutoMLJob.html">DescribeAutoMLJob</a>.</p>
433
- * <p>For information about how to use Autopilot, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/autopilot-automate-model-development.html">Automate Model
434
- * Development with Amazon SageMaker Autopilot</a>.</p>
361
+ * @see {@link CreateAutoMLJobCommand}
435
362
  */
436
363
  createAutoMLJob(args: CreateAutoMLJobCommandInput, options?: __HttpHandlerOptions): Promise<CreateAutoMLJobCommandOutput>;
437
364
  createAutoMLJob(args: CreateAutoMLJobCommandInput, cb: (err: any, data?: CreateAutoMLJobCommandOutput) => void): void;
438
365
  createAutoMLJob(args: CreateAutoMLJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAutoMLJobCommandOutput) => void): void;
439
366
  /**
440
- * @public
441
- * <p>Creates an Amazon SageMaker AutoML job that uses non-tabular data such as images or text for
442
- * Computer Vision or Natural Language Processing problems.</p>
443
- * <p>Find the resulting model after you run an AutoML job V2 by calling <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_DescribeAutoMLJobV2.html">DescribeAutoMLJobV2</a>.</p>
444
- * <p>To create an <code>AutoMLJob</code> using tabular data, see <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateAutoMLJob.html">CreateAutoMLJob</a>.</p>
445
- * <note>
446
- * <p>This API action is callable through SageMaker Canvas only. Calling it directly from the CLI
447
- * or an SDK results in an error.</p>
448
- * </note>
367
+ * @see {@link CreateAutoMLJobV2Command}
449
368
  */
450
369
  createAutoMLJobV2(args: CreateAutoMLJobV2CommandInput, options?: __HttpHandlerOptions): Promise<CreateAutoMLJobV2CommandOutput>;
451
370
  createAutoMLJobV2(args: CreateAutoMLJobV2CommandInput, cb: (err: any, data?: CreateAutoMLJobV2CommandOutput) => void): void;
452
371
  createAutoMLJobV2(args: CreateAutoMLJobV2CommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAutoMLJobV2CommandOutput) => void): void;
453
372
  /**
454
- * @public
455
- * <p>Creates a Git repository as a resource in your SageMaker account. You can associate the
456
- * repository with notebook instances so that you can use Git source control for the
457
- * notebooks you create. The Git repository is a resource in your SageMaker account, so it can
458
- * be associated with more than one notebook instance, and it persists independently from
459
- * the lifecycle of any notebook instances it is associated with.</p>
460
- * <p>The repository can be hosted either in <a href="https://docs.aws.amazon.com/codecommit/latest/userguide/welcome.html">Amazon Web Services CodeCommit</a>
461
- * or in any other Git repository.</p>
373
+ * @see {@link CreateCodeRepositoryCommand}
462
374
  */
463
375
  createCodeRepository(args: CreateCodeRepositoryCommandInput, options?: __HttpHandlerOptions): Promise<CreateCodeRepositoryCommandOutput>;
464
376
  createCodeRepository(args: CreateCodeRepositoryCommandInput, cb: (err: any, data?: CreateCodeRepositoryCommandOutput) => void): void;
465
377
  createCodeRepository(args: CreateCodeRepositoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCodeRepositoryCommandOutput) => void): void;
466
378
  /**
467
- * @public
468
- * <p>Starts a model compilation job. After the model has been compiled, Amazon SageMaker saves the
469
- * resulting model artifacts to an Amazon Simple Storage Service (Amazon S3) bucket that you specify. </p>
470
- * <p>If
471
- * you choose to host your model using Amazon SageMaker hosting services, you can use the resulting
472
- * model artifacts as part of the model. You can also use the artifacts with
473
- * Amazon Web Services
474
- * IoT Greengrass. In that case, deploy them as an ML
475
- * resource.</p>
476
- * <p>In the request body, you provide the following:</p>
477
- * <ul>
478
- * <li>
479
- * <p>A name for the compilation job</p>
480
- * </li>
481
- * <li>
482
- * <p> Information about the input model artifacts </p>
483
- * </li>
484
- * <li>
485
- * <p>The output location for the compiled model and the device (target) that the
486
- * model runs on </p>
487
- * </li>
488
- * <li>
489
- * <p>The Amazon Resource Name (ARN) of the IAM role that Amazon SageMaker assumes to perform
490
- * the model compilation job. </p>
491
- * </li>
492
- * </ul>
493
- * <p>You can also provide a <code>Tag</code> to track the model compilation job's resource
494
- * use and costs. The response body contains the
495
- * <code>CompilationJobArn</code>
496
- * for the compiled job.</p>
497
- * <p>To stop a model compilation job, use <a>StopCompilationJob</a>. To get
498
- * information about a particular model compilation job, use <a>DescribeCompilationJob</a>. To get information about multiple model
499
- * compilation jobs, use <a>ListCompilationJobs</a>.</p>
379
+ * @see {@link CreateCompilationJobCommand}
500
380
  */
501
381
  createCompilationJob(args: CreateCompilationJobCommandInput, options?: __HttpHandlerOptions): Promise<CreateCompilationJobCommandOutput>;
502
382
  createCompilationJob(args: CreateCompilationJobCommandInput, cb: (err: any, data?: CreateCompilationJobCommandOutput) => void): void;
503
383
  createCompilationJob(args: CreateCompilationJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCompilationJobCommandOutput) => void): void;
504
384
  /**
505
- * @public
506
- * <p>Creates a <i>context</i>. A context is a lineage tracking entity that
507
- * represents a logical grouping of other tracking or experiment entities. Some examples are
508
- * an endpoint and a model package. For more information, see
509
- * <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/lineage-tracking.html">Amazon SageMaker
510
- * ML Lineage Tracking</a>.</p>
385
+ * @see {@link CreateContextCommand}
511
386
  */
512
387
  createContext(args: CreateContextCommandInput, options?: __HttpHandlerOptions): Promise<CreateContextCommandOutput>;
513
388
  createContext(args: CreateContextCommandInput, cb: (err: any, data?: CreateContextCommandOutput) => void): void;
514
389
  createContext(args: CreateContextCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateContextCommandOutput) => void): void;
515
390
  /**
516
- * @public
517
- * <p>Creates a definition for a job that monitors data quality and drift. For information
518
- * about model monitor, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/model-monitor.html">Amazon SageMaker Model Monitor</a>.</p>
391
+ * @see {@link CreateDataQualityJobDefinitionCommand}
519
392
  */
520
393
  createDataQualityJobDefinition(args: CreateDataQualityJobDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<CreateDataQualityJobDefinitionCommandOutput>;
521
394
  createDataQualityJobDefinition(args: CreateDataQualityJobDefinitionCommandInput, cb: (err: any, data?: CreateDataQualityJobDefinitionCommandOutput) => void): void;
522
395
  createDataQualityJobDefinition(args: CreateDataQualityJobDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDataQualityJobDefinitionCommandOutput) => void): void;
523
396
  /**
524
- * @public
525
- * <p>Creates a device fleet.</p>
397
+ * @see {@link CreateDeviceFleetCommand}
526
398
  */
527
399
  createDeviceFleet(args: CreateDeviceFleetCommandInput, options?: __HttpHandlerOptions): Promise<CreateDeviceFleetCommandOutput>;
528
400
  createDeviceFleet(args: CreateDeviceFleetCommandInput, cb: (err: any, data?: CreateDeviceFleetCommandOutput) => void): void;
529
401
  createDeviceFleet(args: CreateDeviceFleetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDeviceFleetCommandOutput) => void): void;
530
402
  /**
531
- * @public
532
- * <p>Creates a <code>Domain</code> used by Amazon SageMaker Studio. A domain consists of an associated
533
- * Amazon Elastic File System (EFS) volume, a list of authorized users, and a variety of security, application,
534
- * policy, and Amazon Virtual Private Cloud (VPC) configurations.
535
- * Users within a domain can share notebook files and other artifacts with each other.</p>
536
- * <p>
537
- * <b>EFS storage</b>
538
- * </p>
539
- * <p>When a domain is created, an EFS volume is created for use by all of the users within the
540
- * domain. Each user receives a private home directory within the EFS volume for notebooks,
541
- * Git repositories, and data files.</p>
542
- * <p>SageMaker uses the Amazon Web Services Key Management Service (Amazon Web Services KMS) to encrypt the EFS volume attached to the domain with
543
- * an Amazon Web Services managed key by default. For more control, you can specify a
544
- * customer managed key. For more information, see
545
- * <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/encryption-at-rest.html">Protect Data at
546
- * Rest Using Encryption</a>.</p>
547
- * <p>
548
- * <b>VPC configuration</b>
549
- * </p>
550
- * <p>All SageMaker Studio traffic between the domain and the EFS volume is through the specified
551
- * VPC and subnets. For other Studio traffic, you can specify the <code>AppNetworkAccessType</code>
552
- * parameter. <code>AppNetworkAccessType</code> corresponds to the network access type that you
553
- * choose when you onboard to Studio. The following options are available:</p>
554
- * <ul>
555
- * <li>
556
- * <p>
557
- * <code>PublicInternetOnly</code> - Non-EFS traffic goes through a VPC managed by
558
- * Amazon SageMaker, which allows internet access. This is the default value.</p>
559
- * </li>
560
- * <li>
561
- * <p>
562
- * <code>VpcOnly</code> - All Studio traffic is through the specified VPC and subnets.
563
- * Internet access is disabled by default. To allow internet access, you must specify a
564
- * NAT gateway.</p>
565
- * <p>When internet access is disabled, you won't be able to run a Studio notebook or to
566
- * train or host models unless your VPC has an interface endpoint to the SageMaker API and runtime
567
- * or a NAT gateway and your security groups allow outbound connections.</p>
568
- * </li>
569
- * </ul>
570
- * <important>
571
- * <p>NFS traffic over TCP on port 2049 needs to be allowed in both inbound and outbound rules
572
- * in order to launch a SageMaker Studio app successfully.</p>
573
- * </important>
574
- * <p>For more information, see
575
- * <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/studio-notebooks-and-internet-access.html">Connect
576
- * SageMaker Studio Notebooks to Resources in a VPC</a>.</p>
403
+ * @see {@link CreateDomainCommand}
577
404
  */
578
405
  createDomain(args: CreateDomainCommandInput, options?: __HttpHandlerOptions): Promise<CreateDomainCommandOutput>;
579
406
  createDomain(args: CreateDomainCommandInput, cb: (err: any, data?: CreateDomainCommandOutput) => void): void;
580
407
  createDomain(args: CreateDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDomainCommandOutput) => void): void;
581
408
  /**
582
- * @public
583
- * <p>Creates an edge deployment plan, consisting of multiple stages. Each stage may have a different deployment configuration and devices.</p>
409
+ * @see {@link CreateEdgeDeploymentPlanCommand}
584
410
  */
585
411
  createEdgeDeploymentPlan(args: CreateEdgeDeploymentPlanCommandInput, options?: __HttpHandlerOptions): Promise<CreateEdgeDeploymentPlanCommandOutput>;
586
412
  createEdgeDeploymentPlan(args: CreateEdgeDeploymentPlanCommandInput, cb: (err: any, data?: CreateEdgeDeploymentPlanCommandOutput) => void): void;
587
413
  createEdgeDeploymentPlan(args: CreateEdgeDeploymentPlanCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateEdgeDeploymentPlanCommandOutput) => void): void;
588
414
  /**
589
- * @public
590
- * <p>Creates a new stage in an existing edge deployment plan.</p>
415
+ * @see {@link CreateEdgeDeploymentStageCommand}
591
416
  */
592
417
  createEdgeDeploymentStage(args: CreateEdgeDeploymentStageCommandInput, options?: __HttpHandlerOptions): Promise<CreateEdgeDeploymentStageCommandOutput>;
593
418
  createEdgeDeploymentStage(args: CreateEdgeDeploymentStageCommandInput, cb: (err: any, data?: CreateEdgeDeploymentStageCommandOutput) => void): void;
594
419
  createEdgeDeploymentStage(args: CreateEdgeDeploymentStageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateEdgeDeploymentStageCommandOutput) => void): void;
595
420
  /**
596
- * @public
597
- * <p>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.</p>
421
+ * @see {@link CreateEdgePackagingJobCommand}
598
422
  */
599
423
  createEdgePackagingJob(args: CreateEdgePackagingJobCommandInput, options?: __HttpHandlerOptions): Promise<CreateEdgePackagingJobCommandOutput>;
600
424
  createEdgePackagingJob(args: CreateEdgePackagingJobCommandInput, cb: (err: any, data?: CreateEdgePackagingJobCommandOutput) => void): void;
601
425
  createEdgePackagingJob(args: CreateEdgePackagingJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateEdgePackagingJobCommandOutput) => void): void;
602
426
  /**
603
- * @public
604
- * <p>Creates an endpoint using the endpoint configuration specified in the request. SageMaker
605
- * uses the endpoint to provision resources and deploy models. You create the endpoint
606
- * configuration with the <a>CreateEndpointConfig</a> API. </p>
607
- * <p> Use this API to deploy models using SageMaker hosting services. </p>
608
- * <p>For an example that calls this method when deploying a model to SageMaker hosting services,
609
- * see the <a href="https://github.com/aws/amazon-sagemaker-examples/blob/master/sagemaker-fundamentals/create-endpoint/create_endpoint.ipynb">Create Endpoint example notebook.</a>
610
- * </p>
611
- * <note>
612
- * <p> You must not delete an <code>EndpointConfig</code> that is in use by an endpoint
613
- * that is live or while the <code>UpdateEndpoint</code> or <code>CreateEndpoint</code>
614
- * operations are being performed on the endpoint. To update an endpoint, you must
615
- * create a new <code>EndpointConfig</code>.</p>
616
- * </note>
617
- * <p>The endpoint name must be unique within an Amazon Web Services Region in your
618
- * Amazon Web Services account. </p>
619
- * <p>When it receives the request, SageMaker creates the endpoint, launches the resources (ML
620
- * compute instances), and deploys the model(s) on them. </p>
621
- * <note>
622
- * <p>When you call <a>CreateEndpoint</a>, a load call is made to DynamoDB to
623
- * verify that your endpoint configuration exists. When you read data from a DynamoDB
624
- * table supporting <a href="https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.ReadConsistency.html">
625
- * <code>Eventually Consistent Reads</code>
626
- * </a>, the response might not
627
- * reflect the results of a recently completed write operation. The response might
628
- * include some stale data. If the dependent entities are not yet in DynamoDB, this
629
- * causes a validation error. If you repeat your read request after a short time, the
630
- * response should return the latest data. So retry logic is recommended to handle
631
- * these possible issues. We also recommend that customers call <a>DescribeEndpointConfig</a> before calling <a>CreateEndpoint</a> to minimize the potential impact of a DynamoDB eventually consistent read.</p>
632
- * </note>
633
- * <p>When SageMaker receives the request, it sets the endpoint status to
634
- * <code>Creating</code>. After it creates the endpoint, it sets the status to
635
- * <code>InService</code>. SageMaker can then process incoming requests for inferences. To
636
- * check the status of an endpoint, use the <a>DescribeEndpoint</a>
637
- * API.</p>
638
- * <p>If any of the models hosted at this endpoint get model data from an Amazon S3 location,
639
- * SageMaker uses Amazon Web Services Security Token Service to download model artifacts from the
640
- * S3 path you provided. Amazon Web Services STS is activated in your Amazon Web Services
641
- * account by default. If you previously deactivated Amazon Web Services STS for a region,
642
- * you need to reactivate Amazon Web Services STS for that region. For more information, see
643
- * <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_enable-regions.html">Activating and
644
- * Deactivating Amazon Web Services STS in an Amazon Web Services Region</a> in the
645
- * <i>Amazon Web Services Identity and Access Management User
646
- * Guide</i>.</p>
647
- * <note>
648
- * <p> To add the IAM role policies for using this API operation, go to the <a href="https://console.aws.amazon.com/iam/">IAM console</a>, and choose
649
- * Roles in the left navigation pane. Search the IAM role that you want to grant
650
- * access to use the <a>CreateEndpoint</a> and <a>CreateEndpointConfig</a> API operations, add the following policies to
651
- * the role. </p>
652
- * <ul>
653
- * <li>
654
- * <p>Option 1: For a full SageMaker access, search and attach the
655
- * <code>AmazonSageMakerFullAccess</code> policy.</p>
656
- * </li>
657
- * <li>
658
- * <p>Option 2: For granting a limited access to an IAM role, paste the
659
- * following Action elements manually into the JSON file of the IAM role: </p>
660
- * <p>
661
- * <code>"Action": ["sagemaker:CreateEndpoint",
662
- * "sagemaker:CreateEndpointConfig"]</code>
663
- * </p>
664
- * <p>
665
- * <code>"Resource": [</code>
666
- * </p>
667
- * <p>
668
- * <code>"arn:aws:sagemaker:region:account-id:endpoint/endpointName"</code>
669
- * </p>
670
- * <p>
671
- * <code>"arn:aws:sagemaker:region:account-id:endpoint-config/endpointConfigName"</code>
672
- * </p>
673
- * <p>
674
- * <code>]</code>
675
- * </p>
676
- * <p>For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/api-permissions-reference.html">SageMaker API
677
- * Permissions: Actions, Permissions, and Resources
678
- * Reference</a>.</p>
679
- * </li>
680
- * </ul>
681
- * </note>
427
+ * @see {@link CreateEndpointCommand}
682
428
  */
683
429
  createEndpoint(args: CreateEndpointCommandInput, options?: __HttpHandlerOptions): Promise<CreateEndpointCommandOutput>;
684
430
  createEndpoint(args: CreateEndpointCommandInput, cb: (err: any, data?: CreateEndpointCommandOutput) => void): void;
685
431
  createEndpoint(args: CreateEndpointCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateEndpointCommandOutput) => void): void;
686
432
  /**
687
- * @public
688
- * <p>Creates an endpoint configuration that SageMaker hosting services uses to deploy models. In
689
- * the configuration, you identify one or more models, created using the
690
- * <code>CreateModel</code> API, to deploy and the resources that you want SageMaker to
691
- * provision. Then you call the <a>CreateEndpoint</a> API.</p>
692
- * <note>
693
- * <p> Use this API if you want to use SageMaker hosting services to deploy models into
694
- * production. </p>
695
- * </note>
696
- * <p>In the request, you define a <code>ProductionVariant</code>, for each model that you
697
- * want to deploy. Each <code>ProductionVariant</code> parameter also describes the
698
- * resources that you want SageMaker to provision. This includes the number and type of ML
699
- * compute instances to deploy. </p>
700
- * <p>If you are hosting multiple models, you also assign a <code>VariantWeight</code> to
701
- * specify how much traffic you want to allocate to each model. For example, suppose that
702
- * you want to host two models, A and B, and you assign traffic weight 2 for model A and 1
703
- * for model B. SageMaker distributes two-thirds of the traffic to Model A, and one-third to
704
- * model B. </p>
705
- * <note>
706
- * <p>When you call <a>CreateEndpoint</a>, a load call is made to DynamoDB to
707
- * verify that your endpoint configuration exists. When you read data from a DynamoDB
708
- * table supporting <a href="https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.ReadConsistency.html">
709
- * <code>Eventually Consistent Reads</code>
710
- * </a>, the response might not
711
- * reflect the results of a recently completed write operation. The response might
712
- * include some stale data. If the dependent entities are not yet in DynamoDB, this
713
- * causes a validation error. If you repeat your read request after a short time, the
714
- * response should return the latest data. So retry logic is recommended to handle
715
- * these possible issues. We also recommend that customers call <a>DescribeEndpointConfig</a> before calling <a>CreateEndpoint</a> to minimize the potential impact of a DynamoDB eventually consistent read.</p>
716
- * </note>
433
+ * @see {@link CreateEndpointConfigCommand}
717
434
  */
718
435
  createEndpointConfig(args: CreateEndpointConfigCommandInput, options?: __HttpHandlerOptions): Promise<CreateEndpointConfigCommandOutput>;
719
436
  createEndpointConfig(args: CreateEndpointConfigCommandInput, cb: (err: any, data?: CreateEndpointConfigCommandOutput) => void): void;
720
437
  createEndpointConfig(args: CreateEndpointConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateEndpointConfigCommandOutput) => void): void;
721
438
  /**
722
- * @public
723
- * <p>Creates a SageMaker <i>experiment</i>. An experiment is a collection of
724
- * <i>trials</i> that are observed, compared and evaluated as a group. A trial is
725
- * a set of steps, called <i>trial components</i>, that produce a machine learning
726
- * model.</p>
727
- * <note>
728
- * <p>In the Studio UI, trials are referred to as <i>run groups</i> and trial
729
- * components are referred to as <i>runs</i>.</p>
730
- * </note>
731
- * <p>The goal of an experiment is to determine the components that produce the best model.
732
- * Multiple trials are performed, each one isolating and measuring the impact of a change to one
733
- * or more inputs, while keeping the remaining inputs constant.</p>
734
- * <p>When you use SageMaker Studio or the SageMaker Python SDK, all experiments, trials, and trial
735
- * components are automatically tracked, logged, and indexed. When you use the Amazon Web Services SDK for Python (Boto), you
736
- * must use the logging APIs provided by the SDK.</p>
737
- * <p>You can add tags to experiments, trials, trial components and then use the <a>Search</a> API to search for the tags.</p>
738
- * <p>To add a description to an experiment, specify the optional <code>Description</code>
739
- * parameter. To add a description later, or to change the description, call the <a>UpdateExperiment</a> API.</p>
740
- * <p>To get a list of all your experiments, call the <a>ListExperiments</a> API. To
741
- * view an experiment's properties, call the <a>DescribeExperiment</a> API. To get a
742
- * list of all the trials associated with an experiment, call the <a>ListTrials</a>
743
- * API. To create a trial call the <a>CreateTrial</a> API.</p>
439
+ * @see {@link CreateExperimentCommand}
744
440
  */
745
441
  createExperiment(args: CreateExperimentCommandInput, options?: __HttpHandlerOptions): Promise<CreateExperimentCommandOutput>;
746
442
  createExperiment(args: CreateExperimentCommandInput, cb: (err: any, data?: CreateExperimentCommandOutput) => void): void;
747
443
  createExperiment(args: CreateExperimentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateExperimentCommandOutput) => void): void;
748
444
  /**
749
- * @public
750
- * <p>Create a new <code>FeatureGroup</code>. A <code>FeatureGroup</code> is a group of
751
- * <code>Features</code> defined in the <code>FeatureStore</code> to describe a
752
- * <code>Record</code>. </p>
753
- * <p>The <code>FeatureGroup</code> defines the schema and features contained in the
754
- * FeatureGroup. A <code>FeatureGroup</code> definition is composed of a list of
755
- * <code>Features</code>, a <code>RecordIdentifierFeatureName</code>, an
756
- * <code>EventTimeFeatureName</code> and configurations for its <code>OnlineStore</code>
757
- * and <code>OfflineStore</code>. Check <a href="https://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html">Amazon Web Services service quotas</a> to see
758
- * the <code>FeatureGroup</code>s quota for your Amazon Web Services account.</p>
759
- * <important>
760
- * <p>You must include at least one of <code>OnlineStoreConfig</code> and
761
- * <code>OfflineStoreConfig</code> to create a <code>FeatureGroup</code>.</p>
762
- * </important>
445
+ * @see {@link CreateFeatureGroupCommand}
763
446
  */
764
447
  createFeatureGroup(args: CreateFeatureGroupCommandInput, options?: __HttpHandlerOptions): Promise<CreateFeatureGroupCommandOutput>;
765
448
  createFeatureGroup(args: CreateFeatureGroupCommandInput, cb: (err: any, data?: CreateFeatureGroupCommandOutput) => void): void;
766
449
  createFeatureGroup(args: CreateFeatureGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateFeatureGroupCommandOutput) => void): void;
767
450
  /**
768
- * @public
769
- * <p>Creates a flow definition.</p>
451
+ * @see {@link CreateFlowDefinitionCommand}
770
452
  */
771
453
  createFlowDefinition(args: CreateFlowDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<CreateFlowDefinitionCommandOutput>;
772
454
  createFlowDefinition(args: CreateFlowDefinitionCommandInput, cb: (err: any, data?: CreateFlowDefinitionCommandOutput) => void): void;
773
455
  createFlowDefinition(args: CreateFlowDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateFlowDefinitionCommandOutput) => void): void;
774
456
  /**
775
- * @public
776
- * <p>Create a hub.</p>
777
- * <note>
778
- * <p>Hub APIs are only callable through SageMaker Studio.</p>
779
- * </note>
457
+ * @see {@link CreateHubCommand}
780
458
  */
781
459
  createHub(args: CreateHubCommandInput, options?: __HttpHandlerOptions): Promise<CreateHubCommandOutput>;
782
460
  createHub(args: CreateHubCommandInput, cb: (err: any, data?: CreateHubCommandOutput) => void): void;
783
461
  createHub(args: CreateHubCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateHubCommandOutput) => void): void;
784
462
  /**
785
- * @public
786
- * <p>Defines the settings you will use for the human review workflow user interface. Reviewers will see a three-panel interface with an instruction area, the item to review, and an input area.</p>
463
+ * @see {@link CreateHumanTaskUiCommand}
787
464
  */
788
465
  createHumanTaskUi(args: CreateHumanTaskUiCommandInput, options?: __HttpHandlerOptions): Promise<CreateHumanTaskUiCommandOutput>;
789
466
  createHumanTaskUi(args: CreateHumanTaskUiCommandInput, cb: (err: any, data?: CreateHumanTaskUiCommandOutput) => void): void;
790
467
  createHumanTaskUi(args: CreateHumanTaskUiCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateHumanTaskUiCommandOutput) => void): void;
791
468
  /**
792
- * @public
793
- * <p>Starts a hyperparameter tuning job. A hyperparameter tuning job finds the best version
794
- * of a model by running many training jobs on your dataset using the algorithm you choose
795
- * and values for hyperparameters within ranges that you specify. It then chooses the
796
- * hyperparameter values that result in a model that performs the best, as measured by an
797
- * objective metric that you choose.</p>
798
- * <p>A hyperparameter tuning job automatically creates Amazon SageMaker experiments, trials, and
799
- * trial components for each training job that it runs. You can view these entities in
800
- * Amazon SageMaker Studio. For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/experiments-view-compare.html#experiments-view">View
801
- * Experiments, Trials, and Trial Components</a>.</p>
802
- * <important>
803
- * <p>Do not include any security-sensitive information including account access IDs,
804
- * secrets or tokens in any hyperparameter field. If the use of security-sensitive
805
- * credentials are detected, SageMaker will reject your training job request and return an
806
- * exception error.</p>
807
- * </important>
469
+ * @see {@link CreateHyperParameterTuningJobCommand}
808
470
  */
809
471
  createHyperParameterTuningJob(args: CreateHyperParameterTuningJobCommandInput, options?: __HttpHandlerOptions): Promise<CreateHyperParameterTuningJobCommandOutput>;
810
472
  createHyperParameterTuningJob(args: CreateHyperParameterTuningJobCommandInput, cb: (err: any, data?: CreateHyperParameterTuningJobCommandOutput) => void): void;
811
473
  createHyperParameterTuningJob(args: CreateHyperParameterTuningJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateHyperParameterTuningJobCommandOutput) => void): void;
812
474
  /**
813
- * @public
814
- * <p>Creates a custom SageMaker image. A SageMaker image is a set of image versions. Each image
815
- * version represents a container image stored in Amazon Elastic Container Registry (ECR). For more information, see
816
- * <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/studio-byoi.html">Bring your own SageMaker image</a>.</p>
475
+ * @see {@link CreateImageCommand}
817
476
  */
818
477
  createImage(args: CreateImageCommandInput, options?: __HttpHandlerOptions): Promise<CreateImageCommandOutput>;
819
478
  createImage(args: CreateImageCommandInput, cb: (err: any, data?: CreateImageCommandOutput) => void): void;
820
479
  createImage(args: CreateImageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateImageCommandOutput) => void): void;
821
480
  /**
822
- * @public
823
- * <p>Creates a version of the SageMaker image specified by <code>ImageName</code>. The version
824
- * represents the Amazon Elastic Container Registry (ECR) container image specified by <code>BaseImage</code>.</p>
481
+ * @see {@link CreateImageVersionCommand}
825
482
  */
826
483
  createImageVersion(args: CreateImageVersionCommandInput, options?: __HttpHandlerOptions): Promise<CreateImageVersionCommandOutput>;
827
484
  createImageVersion(args: CreateImageVersionCommandInput, cb: (err: any, data?: CreateImageVersionCommandOutput) => void): void;
828
485
  createImageVersion(args: CreateImageVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateImageVersionCommandOutput) => void): void;
829
486
  /**
830
- * @public
831
- * <p>
832
- * Creates an inference experiment using the configurations specified in the request.
833
- * </p>
834
- * <p>
835
- * Use this API to setup and schedule an experiment to compare model variants on a Amazon SageMaker inference endpoint. For
836
- * more information about inference experiments, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/shadow-tests.html">Shadow tests</a>.
837
- * </p>
838
- * <p>
839
- * Amazon SageMaker begins your experiment at the scheduled time and routes traffic to your endpoint's model variants based
840
- * on your specified configuration.
841
- * </p>
842
- * <p>
843
- * While the experiment is in progress or after it has concluded, you can view metrics that compare your model
844
- * variants. For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/shadow-tests-view-monitor-edit.html">View, monitor, and edit shadow tests</a>.
845
- * </p>
487
+ * @see {@link CreateInferenceExperimentCommand}
846
488
  */
847
489
  createInferenceExperiment(args: CreateInferenceExperimentCommandInput, options?: __HttpHandlerOptions): Promise<CreateInferenceExperimentCommandOutput>;
848
490
  createInferenceExperiment(args: CreateInferenceExperimentCommandInput, cb: (err: any, data?: CreateInferenceExperimentCommandOutput) => void): void;
849
491
  createInferenceExperiment(args: CreateInferenceExperimentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateInferenceExperimentCommandOutput) => void): void;
850
492
  /**
851
- * @public
852
- * <p>Starts a recommendation job. You can create either an instance
853
- * recommendation or load test job.</p>
493
+ * @see {@link CreateInferenceRecommendationsJobCommand}
854
494
  */
855
495
  createInferenceRecommendationsJob(args: CreateInferenceRecommendationsJobCommandInput, options?: __HttpHandlerOptions): Promise<CreateInferenceRecommendationsJobCommandOutput>;
856
496
  createInferenceRecommendationsJob(args: CreateInferenceRecommendationsJobCommandInput, cb: (err: any, data?: CreateInferenceRecommendationsJobCommandOutput) => void): void;
857
497
  createInferenceRecommendationsJob(args: CreateInferenceRecommendationsJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateInferenceRecommendationsJobCommandOutput) => void): void;
858
498
  /**
859
- * @public
860
- * <p>Creates a job that uses workers to label the data objects in your input dataset. You
861
- * can use the labeled data to train machine learning models. </p>
862
- * <p>You can select your workforce from one of three providers:</p>
863
- * <ul>
864
- * <li>
865
- * <p>A private workforce that you create. It can include employees, contractors,
866
- * and outside experts. Use a private workforce when want the data to stay within
867
- * your organization or when a specific set of skills is required.</p>
868
- * </li>
869
- * <li>
870
- * <p>One or more vendors that you select from the Amazon Web Services Marketplace. Vendors provide
871
- * expertise in specific areas. </p>
872
- * </li>
873
- * <li>
874
- * <p>The Amazon Mechanical Turk workforce. This is the largest workforce, but it
875
- * should only be used for public data or data that has been stripped of any
876
- * personally identifiable information.</p>
877
- * </li>
878
- * </ul>
879
- * <p>You can also use <i>automated data labeling</i> to reduce the number of
880
- * data objects that need to be labeled by a human. Automated data labeling uses
881
- * <i>active learning</i> to determine if a data object can be labeled by
882
- * machine or if it needs to be sent to a human worker. For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/sms-automated-labeling.html">Using
883
- * Automated Data Labeling</a>.</p>
884
- * <p>The data objects to be labeled are contained in an Amazon S3 bucket. You create a
885
- * <i>manifest file</i> that describes the location of each object. For
886
- * more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/sms-data.html">Using Input and Output Data</a>.</p>
887
- * <p>The output can be used as the manifest file for another labeling job or as training
888
- * data for your machine learning models.</p>
889
- * <p>You can use this operation to create a static labeling job or a streaming labeling
890
- * job. A static labeling job stops if all data objects in the input manifest file
891
- * identified in <code>ManifestS3Uri</code> have been labeled. A streaming labeling job
892
- * runs perpetually until it is manually stopped, or remains idle for 10 days. You can send
893
- * new data objects to an active (<code>InProgress</code>) streaming labeling job in real
894
- * time. To learn how to create a static labeling job, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/sms-create-labeling-job-api.html">Create a Labeling Job
895
- * (API) </a> in the Amazon SageMaker Developer Guide. To learn how to create a streaming
896
- * labeling job, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/sms-streaming-create-job.html">Create a Streaming Labeling
897
- * Job</a>.</p>
499
+ * @see {@link CreateLabelingJobCommand}
898
500
  */
899
501
  createLabelingJob(args: CreateLabelingJobCommandInput, options?: __HttpHandlerOptions): Promise<CreateLabelingJobCommandOutput>;
900
502
  createLabelingJob(args: CreateLabelingJobCommandInput, cb: (err: any, data?: CreateLabelingJobCommandOutput) => void): void;
901
503
  createLabelingJob(args: CreateLabelingJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLabelingJobCommandOutput) => void): void;
902
504
  /**
903
- * @public
904
- * <p>Creates a model in SageMaker. In the request, you name the model and describe a primary
905
- * container. For the primary container, you specify the Docker image that
906
- * contains inference code, artifacts (from prior training), and a custom environment map
907
- * that the inference code uses when you deploy the model for predictions.</p>
908
- * <p>Use this API to create a model if you want to use SageMaker hosting services or run a batch
909
- * transform job.</p>
910
- * <p>To host your model, you create an endpoint configuration with the
911
- * <code>CreateEndpointConfig</code> API, and then create an endpoint with the
912
- * <code>CreateEndpoint</code> API. SageMaker then deploys all of the containers that you
913
- * defined for the model in the hosting environment. </p>
914
- * <p>For an example that calls this method when deploying a model to SageMaker hosting services,
915
- * see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/realtime-endpoints-deployment.html#realtime-endpoints-deployment-create-model">Create a Model (Amazon Web Services SDK for Python (Boto 3)).</a>
916
- * </p>
917
- * <p>To run a batch transform using your model, you start a job with the
918
- * <code>CreateTransformJob</code> API. SageMaker uses your model and your dataset to get
919
- * inferences which are then saved to a specified S3 location.</p>
920
- * <p>In the request, you also provide an IAM role that SageMaker can assume to access model
921
- * artifacts and docker image for deployment on ML compute hosting instances or for batch
922
- * transform jobs. In addition, you also use the IAM role to manage permissions the
923
- * inference code needs. For example, if the inference code access any other Amazon Web Services resources, you grant necessary permissions via this role.</p>
505
+ * @see {@link CreateModelCommand}
924
506
  */
925
507
  createModel(args: CreateModelCommandInput, options?: __HttpHandlerOptions): Promise<CreateModelCommandOutput>;
926
508
  createModel(args: CreateModelCommandInput, cb: (err: any, data?: CreateModelCommandOutput) => void): void;
927
509
  createModel(args: CreateModelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateModelCommandOutput) => void): void;
928
510
  /**
929
- * @public
930
- * <p>Creates the definition for a model bias job.</p>
511
+ * @see {@link CreateModelBiasJobDefinitionCommand}
931
512
  */
932
513
  createModelBiasJobDefinition(args: CreateModelBiasJobDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<CreateModelBiasJobDefinitionCommandOutput>;
933
514
  createModelBiasJobDefinition(args: CreateModelBiasJobDefinitionCommandInput, cb: (err: any, data?: CreateModelBiasJobDefinitionCommandOutput) => void): void;
934
515
  createModelBiasJobDefinition(args: CreateModelBiasJobDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateModelBiasJobDefinitionCommandOutput) => void): void;
935
516
  /**
936
- * @public
937
- * <p>Creates an Amazon SageMaker Model Card.</p>
938
- * <p>For information about how to use model cards, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/model-cards.html">Amazon SageMaker Model Card</a>.</p>
517
+ * @see {@link CreateModelCardCommand}
939
518
  */
940
519
  createModelCard(args: CreateModelCardCommandInput, options?: __HttpHandlerOptions): Promise<CreateModelCardCommandOutput>;
941
520
  createModelCard(args: CreateModelCardCommandInput, cb: (err: any, data?: CreateModelCardCommandOutput) => void): void;
942
521
  createModelCard(args: CreateModelCardCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateModelCardCommandOutput) => void): void;
943
522
  /**
944
- * @public
945
- * <p>Creates an Amazon SageMaker Model Card export job.</p>
523
+ * @see {@link CreateModelCardExportJobCommand}
946
524
  */
947
525
  createModelCardExportJob(args: CreateModelCardExportJobCommandInput, options?: __HttpHandlerOptions): Promise<CreateModelCardExportJobCommandOutput>;
948
526
  createModelCardExportJob(args: CreateModelCardExportJobCommandInput, cb: (err: any, data?: CreateModelCardExportJobCommandOutput) => void): void;
949
527
  createModelCardExportJob(args: CreateModelCardExportJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateModelCardExportJobCommandOutput) => void): void;
950
528
  /**
951
- * @public
952
- * <p>Creates the definition for a model explainability job.</p>
529
+ * @see {@link CreateModelExplainabilityJobDefinitionCommand}
953
530
  */
954
531
  createModelExplainabilityJobDefinition(args: CreateModelExplainabilityJobDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<CreateModelExplainabilityJobDefinitionCommandOutput>;
955
532
  createModelExplainabilityJobDefinition(args: CreateModelExplainabilityJobDefinitionCommandInput, cb: (err: any, data?: CreateModelExplainabilityJobDefinitionCommandOutput) => void): void;
956
533
  createModelExplainabilityJobDefinition(args: CreateModelExplainabilityJobDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateModelExplainabilityJobDefinitionCommandOutput) => void): void;
957
534
  /**
958
- * @public
959
- * <p>Creates a model package that you can use to create SageMaker models or list on Amazon Web Services
960
- * Marketplace, or a versioned model that is part of a model group. Buyers can subscribe to
961
- * model packages listed on Amazon Web Services Marketplace to create models in SageMaker.</p>
962
- * <p>To create a model package by specifying a Docker container that contains your
963
- * inference code and the Amazon S3 location of your model artifacts, provide values for
964
- * <code>InferenceSpecification</code>. To create a model from an algorithm resource
965
- * that you created or subscribed to in Amazon Web Services Marketplace, provide a value for
966
- * <code>SourceAlgorithmSpecification</code>.</p>
967
- * <note>
968
- * <p>There are two types of model packages:</p>
969
- * <ul>
970
- * <li>
971
- * <p>Versioned - a model that is part of a model group in the model
972
- * registry.</p>
973
- * </li>
974
- * <li>
975
- * <p>Unversioned - a model package that is not part of a model group.</p>
976
- * </li>
977
- * </ul>
978
- * </note>
535
+ * @see {@link CreateModelPackageCommand}
979
536
  */
980
537
  createModelPackage(args: CreateModelPackageCommandInput, options?: __HttpHandlerOptions): Promise<CreateModelPackageCommandOutput>;
981
538
  createModelPackage(args: CreateModelPackageCommandInput, cb: (err: any, data?: CreateModelPackageCommandOutput) => void): void;
982
539
  createModelPackage(args: CreateModelPackageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateModelPackageCommandOutput) => void): void;
983
540
  /**
984
- * @public
985
- * <p>Creates a model group. A model group contains a group of model versions.</p>
541
+ * @see {@link CreateModelPackageGroupCommand}
986
542
  */
987
543
  createModelPackageGroup(args: CreateModelPackageGroupCommandInput, options?: __HttpHandlerOptions): Promise<CreateModelPackageGroupCommandOutput>;
988
544
  createModelPackageGroup(args: CreateModelPackageGroupCommandInput, cb: (err: any, data?: CreateModelPackageGroupCommandOutput) => void): void;
989
545
  createModelPackageGroup(args: CreateModelPackageGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateModelPackageGroupCommandOutput) => void): void;
990
546
  /**
991
- * @public
992
- * <p>Creates a definition for a job that monitors model quality and drift. For information
993
- * about model monitor, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/model-monitor.html">Amazon SageMaker Model Monitor</a>.</p>
547
+ * @see {@link CreateModelQualityJobDefinitionCommand}
994
548
  */
995
549
  createModelQualityJobDefinition(args: CreateModelQualityJobDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<CreateModelQualityJobDefinitionCommandOutput>;
996
550
  createModelQualityJobDefinition(args: CreateModelQualityJobDefinitionCommandInput, cb: (err: any, data?: CreateModelQualityJobDefinitionCommandOutput) => void): void;
997
551
  createModelQualityJobDefinition(args: CreateModelQualityJobDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateModelQualityJobDefinitionCommandOutput) => void): void;
998
552
  /**
999
- * @public
1000
- * <p>Creates a schedule that regularly starts Amazon SageMaker Processing Jobs to monitor the data
1001
- * captured for an Amazon SageMaker Endpoint.</p>
553
+ * @see {@link CreateMonitoringScheduleCommand}
1002
554
  */
1003
555
  createMonitoringSchedule(args: CreateMonitoringScheduleCommandInput, options?: __HttpHandlerOptions): Promise<CreateMonitoringScheduleCommandOutput>;
1004
556
  createMonitoringSchedule(args: CreateMonitoringScheduleCommandInput, cb: (err: any, data?: CreateMonitoringScheduleCommandOutput) => void): void;
1005
557
  createMonitoringSchedule(args: CreateMonitoringScheduleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateMonitoringScheduleCommandOutput) => void): void;
1006
558
  /**
1007
- * @public
1008
- * <p>Creates an SageMaker notebook instance. A notebook instance is a machine learning (ML)
1009
- * compute instance running on a Jupyter notebook. </p>
1010
- * <p>In a <code>CreateNotebookInstance</code> request, specify the type of ML compute
1011
- * instance that you want to run. SageMaker launches the instance, installs common libraries
1012
- * that you can use to explore datasets for model training, and attaches an ML storage
1013
- * volume to the notebook instance. </p>
1014
- * <p>SageMaker also provides a set of example notebooks. Each notebook demonstrates how to
1015
- * use SageMaker with a specific algorithm or with a machine learning framework. </p>
1016
- * <p>After receiving the request, SageMaker does the following:</p>
1017
- * <ol>
1018
- * <li>
1019
- * <p>Creates a network interface in the SageMaker VPC.</p>
1020
- * </li>
1021
- * <li>
1022
- * <p>(Option) If you specified <code>SubnetId</code>, SageMaker creates a network
1023
- * interface in your own VPC, which is inferred from the subnet ID that you provide
1024
- * in the input. When creating this network interface, SageMaker attaches the security
1025
- * group that you specified in the request to the network interface that it creates
1026
- * in your VPC.</p>
1027
- * </li>
1028
- * <li>
1029
- * <p>Launches an EC2 instance of the type specified in the request in the SageMaker
1030
- * VPC. If you specified <code>SubnetId</code> of your VPC, SageMaker specifies both
1031
- * network interfaces when launching this instance. This enables inbound traffic
1032
- * from your own VPC to the notebook instance, assuming that the security groups
1033
- * allow it.</p>
1034
- * </li>
1035
- * </ol>
1036
- * <p>After creating the notebook instance, SageMaker returns its Amazon Resource Name (ARN).
1037
- * You can't change the name of a notebook instance after you create it.</p>
1038
- * <p>After SageMaker creates the notebook instance, you can connect to the Jupyter server and
1039
- * work in Jupyter notebooks. For example, you can write code to explore a dataset that you
1040
- * can use for model training, train a model, host models by creating SageMaker endpoints, and
1041
- * validate hosted models. </p>
1042
- * <p>For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/how-it-works.html">How It Works</a>. </p>
559
+ * @see {@link CreateNotebookInstanceCommand}
1043
560
  */
1044
561
  createNotebookInstance(args: CreateNotebookInstanceCommandInput, options?: __HttpHandlerOptions): Promise<CreateNotebookInstanceCommandOutput>;
1045
562
  createNotebookInstance(args: CreateNotebookInstanceCommandInput, cb: (err: any, data?: CreateNotebookInstanceCommandOutput) => void): void;
1046
563
  createNotebookInstance(args: CreateNotebookInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateNotebookInstanceCommandOutput) => void): void;
1047
564
  /**
1048
- * @public
1049
- * <p>Creates a lifecycle configuration that you can associate with a notebook instance. A
1050
- * <i>lifecycle configuration</i> is a collection of shell scripts that
1051
- * run when you create or start a notebook instance.</p>
1052
- * <p>Each lifecycle configuration script has a limit of 16384 characters.</p>
1053
- * <p>The value of the <code>$PATH</code> environment variable that is available to both
1054
- * scripts is <code>/sbin:bin:/usr/sbin:/usr/bin</code>.</p>
1055
- * <p>View CloudWatch Logs for notebook instance lifecycle configurations in log group
1056
- * <code>/aws/sagemaker/NotebookInstances</code> in log stream
1057
- * <code>[notebook-instance-name]/[LifecycleConfigHook]</code>.</p>
1058
- * <p>Lifecycle configuration scripts cannot run for longer than 5 minutes. If a script runs
1059
- * for longer than 5 minutes, it fails and the notebook instance is not created or
1060
- * started.</p>
1061
- * <p>For information about notebook instance lifestyle configurations, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/notebook-lifecycle-config.html">Step
1062
- * 2.1: (Optional) Customize a Notebook Instance</a>.</p>
565
+ * @see {@link CreateNotebookInstanceLifecycleConfigCommand}
1063
566
  */
1064
567
  createNotebookInstanceLifecycleConfig(args: CreateNotebookInstanceLifecycleConfigCommandInput, options?: __HttpHandlerOptions): Promise<CreateNotebookInstanceLifecycleConfigCommandOutput>;
1065
568
  createNotebookInstanceLifecycleConfig(args: CreateNotebookInstanceLifecycleConfigCommandInput, cb: (err: any, data?: CreateNotebookInstanceLifecycleConfigCommandOutput) => void): void;
1066
569
  createNotebookInstanceLifecycleConfig(args: CreateNotebookInstanceLifecycleConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateNotebookInstanceLifecycleConfigCommandOutput) => void): void;
1067
570
  /**
1068
- * @public
1069
- * <p>Creates a pipeline using a JSON pipeline definition.</p>
571
+ * @see {@link CreatePipelineCommand}
1070
572
  */
1071
573
  createPipeline(args: CreatePipelineCommandInput, options?: __HttpHandlerOptions): Promise<CreatePipelineCommandOutput>;
1072
574
  createPipeline(args: CreatePipelineCommandInput, cb: (err: any, data?: CreatePipelineCommandOutput) => void): void;
1073
575
  createPipeline(args: CreatePipelineCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreatePipelineCommandOutput) => void): void;
1074
576
  /**
1075
- * @public
1076
- * <p>Creates a URL for a specified UserProfile in a Domain. When accessed in a web browser,
1077
- * the user will be automatically signed in to Amazon SageMaker Studio, and granted access to all of
1078
- * the Apps and files associated with the Domain's Amazon Elastic File System (EFS) volume.
1079
- * This operation can only be called when the authentication mode equals IAM.
1080
- * </p>
1081
- * <p>The IAM role or user passed to this API defines the permissions to access the app. Once
1082
- * the presigned URL is created, no additional permission is required to access this URL. IAM
1083
- * authorization policies for this API are also enforced for every HTTP request and WebSocket
1084
- * frame that attempts to connect to the app.</p>
1085
- * <p>You can restrict access to this API and to the
1086
- * URL that it returns to a list of IP addresses, Amazon VPCs or Amazon VPC Endpoints that you specify. For more
1087
- * information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/studio-interface-endpoint.html">Connect to SageMaker Studio Through an Interface VPC Endpoint</a>
1088
- * .</p>
1089
- * <note>
1090
- * <p>The URL that you get from a call to <code>CreatePresignedDomainUrl</code> has a default timeout of 5 minutes. You can configure this value using <code>ExpiresInSeconds</code>. If you try to use the URL after the timeout limit expires, you
1091
- * are directed to the Amazon Web Services console sign-in page.</p>
1092
- * </note>
577
+ * @see {@link CreatePresignedDomainUrlCommand}
1093
578
  */
1094
579
  createPresignedDomainUrl(args: CreatePresignedDomainUrlCommandInput, options?: __HttpHandlerOptions): Promise<CreatePresignedDomainUrlCommandOutput>;
1095
580
  createPresignedDomainUrl(args: CreatePresignedDomainUrlCommandInput, cb: (err: any, data?: CreatePresignedDomainUrlCommandOutput) => void): void;
1096
581
  createPresignedDomainUrl(args: CreatePresignedDomainUrlCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreatePresignedDomainUrlCommandOutput) => void): void;
1097
582
  /**
1098
- * @public
1099
- * <p>Returns a URL that you can use to connect to the Jupyter server from a notebook
1100
- * instance. In the SageMaker console, when you choose <code>Open</code> next to a notebook
1101
- * instance, SageMaker opens a new tab showing the Jupyter server home page from the notebook
1102
- * instance. The console uses this API to get the URL and show the page.</p>
1103
- * <p> The IAM role or user used to call this API defines the permissions to access the
1104
- * notebook instance. Once the presigned URL is created, no additional permission is
1105
- * required to access this URL. IAM authorization policies for this API are also enforced
1106
- * for every HTTP request and WebSocket frame that attempts to connect to the notebook
1107
- * instance.</p>
1108
- * <p>You can restrict access to this API and to the URL that it returns to a list of IP
1109
- * addresses that you specify. Use the <code>NotIpAddress</code> condition operator and the
1110
- * <code>aws:SourceIP</code> condition context key to specify the list of IP addresses
1111
- * that you want to have access to the notebook instance. For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/security_iam_id-based-policy-examples.html#nbi-ip-filter">Limit Access to a Notebook Instance by IP Address</a>.</p>
1112
- * <note>
1113
- * <p>The URL that you get from a call to <a>CreatePresignedNotebookInstanceUrl</a> is valid only for 5 minutes. If
1114
- * you try to use the URL after the 5-minute limit expires, you are directed to the
1115
- * Amazon Web Services console sign-in page.</p>
1116
- * </note>
583
+ * @see {@link CreatePresignedNotebookInstanceUrlCommand}
1117
584
  */
1118
585
  createPresignedNotebookInstanceUrl(args: CreatePresignedNotebookInstanceUrlCommandInput, options?: __HttpHandlerOptions): Promise<CreatePresignedNotebookInstanceUrlCommandOutput>;
1119
586
  createPresignedNotebookInstanceUrl(args: CreatePresignedNotebookInstanceUrlCommandInput, cb: (err: any, data?: CreatePresignedNotebookInstanceUrlCommandOutput) => void): void;
1120
587
  createPresignedNotebookInstanceUrl(args: CreatePresignedNotebookInstanceUrlCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreatePresignedNotebookInstanceUrlCommandOutput) => void): void;
1121
588
  /**
1122
- * @public
1123
- * <p>Creates a processing job.</p>
589
+ * @see {@link CreateProcessingJobCommand}
1124
590
  */
1125
591
  createProcessingJob(args: CreateProcessingJobCommandInput, options?: __HttpHandlerOptions): Promise<CreateProcessingJobCommandOutput>;
1126
592
  createProcessingJob(args: CreateProcessingJobCommandInput, cb: (err: any, data?: CreateProcessingJobCommandOutput) => void): void;
1127
593
  createProcessingJob(args: CreateProcessingJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateProcessingJobCommandOutput) => void): void;
1128
594
  /**
1129
- * @public
1130
- * <p>Creates a machine learning (ML) project that can contain one or more templates that set
1131
- * up an ML pipeline from training to deploying an approved model.</p>
595
+ * @see {@link CreateProjectCommand}
1132
596
  */
1133
597
  createProject(args: CreateProjectCommandInput, options?: __HttpHandlerOptions): Promise<CreateProjectCommandOutput>;
1134
598
  createProject(args: CreateProjectCommandInput, cb: (err: any, data?: CreateProjectCommandOutput) => void): void;
1135
599
  createProject(args: CreateProjectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateProjectCommandOutput) => void): void;
1136
600
  /**
1137
- * @public
1138
- * <p>Creates a space used for real time collaboration in a Domain.</p>
601
+ * @see {@link CreateSpaceCommand}
1139
602
  */
1140
603
  createSpace(args: CreateSpaceCommandInput, options?: __HttpHandlerOptions): Promise<CreateSpaceCommandOutput>;
1141
604
  createSpace(args: CreateSpaceCommandInput, cb: (err: any, data?: CreateSpaceCommandOutput) => void): void;
1142
605
  createSpace(args: CreateSpaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSpaceCommandOutput) => void): void;
1143
606
  /**
1144
- * @public
1145
- * <p>Creates a new Studio Lifecycle Configuration.</p>
607
+ * @see {@link CreateStudioLifecycleConfigCommand}
1146
608
  */
1147
609
  createStudioLifecycleConfig(args: CreateStudioLifecycleConfigCommandInput, options?: __HttpHandlerOptions): Promise<CreateStudioLifecycleConfigCommandOutput>;
1148
610
  createStudioLifecycleConfig(args: CreateStudioLifecycleConfigCommandInput, cb: (err: any, data?: CreateStudioLifecycleConfigCommandOutput) => void): void;
1149
611
  createStudioLifecycleConfig(args: CreateStudioLifecycleConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateStudioLifecycleConfigCommandOutput) => void): void;
1150
612
  /**
1151
- * @public
1152
- * <p>Starts a model training job. After training completes, SageMaker saves the resulting
1153
- * model artifacts to an Amazon S3 location that you specify. </p>
1154
- * <p>If you choose to host your model using SageMaker hosting services, you can use the
1155
- * resulting model artifacts as part of the model. You can also use the artifacts in a
1156
- * machine learning service other than SageMaker, provided that you know how to use them for
1157
- * inference.
1158
- * </p>
1159
- * <p>In the request body, you provide the following: </p>
1160
- * <ul>
1161
- * <li>
1162
- * <p>
1163
- * <code>AlgorithmSpecification</code> - Identifies the training algorithm to
1164
- * use.
1165
- * </p>
1166
- * </li>
1167
- * <li>
1168
- * <p>
1169
- * <code>HyperParameters</code> - Specify these algorithm-specific parameters to
1170
- * enable the estimation of model parameters during training. Hyperparameters can
1171
- * be tuned to optimize this learning process. For a list of hyperparameters for
1172
- * each training algorithm provided by SageMaker, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/algos.html">Algorithms</a>. </p>
1173
- * <important>
1174
- * <p>Do not include any security-sensitive information including account access
1175
- * IDs, secrets or tokens in any hyperparameter field. If the use of
1176
- * security-sensitive credentials are detected, SageMaker will reject your training
1177
- * job request and return an exception error.</p>
1178
- * </important>
1179
- * </li>
1180
- * <li>
1181
- * <p>
1182
- * <code>InputDataConfig</code> - Describes the input required by the training
1183
- * job and the Amazon S3, EFS, or FSx location where it is stored.</p>
1184
- * </li>
1185
- * <li>
1186
- * <p>
1187
- * <code>OutputDataConfig</code> - Identifies the Amazon S3 bucket where you want
1188
- * SageMaker to save the results of model training. </p>
1189
- * </li>
1190
- * <li>
1191
- * <p>
1192
- * <code>ResourceConfig</code> - Identifies the resources, ML compute
1193
- * instances, and ML storage volumes to deploy for model training. In distributed
1194
- * training, you specify more than one instance. </p>
1195
- * </li>
1196
- * <li>
1197
- * <p>
1198
- * <code>EnableManagedSpotTraining</code> - Optimize the cost of training machine
1199
- * learning models by up to 80% by using Amazon EC2 Spot instances. For more
1200
- * information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/model-managed-spot-training.html">Managed Spot
1201
- * Training</a>. </p>
1202
- * </li>
1203
- * <li>
1204
- * <p>
1205
- * <code>RoleArn</code> - The Amazon Resource Name (ARN) that SageMaker assumes to perform tasks on
1206
- * your behalf during model training.
1207
- *
1208
- * You must grant this role the necessary permissions so that SageMaker can successfully
1209
- * complete model training. </p>
1210
- * </li>
1211
- * <li>
1212
- * <p>
1213
- * <code>StoppingCondition</code> - To help cap training costs, use
1214
- * <code>MaxRuntimeInSeconds</code> to set a time limit for training. Use
1215
- * <code>MaxWaitTimeInSeconds</code> to specify how long a managed spot
1216
- * training job has to complete. </p>
1217
- * </li>
1218
- * <li>
1219
- * <p>
1220
- * <code>Environment</code> - The environment variables to set in the Docker
1221
- * container.</p>
1222
- * </li>
1223
- * <li>
1224
- * <p>
1225
- * <code>RetryStrategy</code> - The number of times to retry the job when the job
1226
- * fails due to an <code>InternalServerError</code>.</p>
1227
- * </li>
1228
- * </ul>
1229
- * <p> For more information about SageMaker, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/how-it-works.html">How It Works</a>. </p>
613
+ * @see {@link CreateTrainingJobCommand}
1230
614
  */
1231
615
  createTrainingJob(args: CreateTrainingJobCommandInput, options?: __HttpHandlerOptions): Promise<CreateTrainingJobCommandOutput>;
1232
616
  createTrainingJob(args: CreateTrainingJobCommandInput, cb: (err: any, data?: CreateTrainingJobCommandOutput) => void): void;
1233
617
  createTrainingJob(args: CreateTrainingJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTrainingJobCommandOutput) => void): void;
1234
618
  /**
1235
- * @public
1236
- * <p>Starts a transform job. A transform job uses a trained model to get inferences on a
1237
- * dataset and saves these results to an Amazon S3 location that you specify.</p>
1238
- * <p>To perform batch transformations, you create a transform job and use the data that you
1239
- * have readily available.</p>
1240
- * <p>In the request body, you provide the following:</p>
1241
- * <ul>
1242
- * <li>
1243
- * <p>
1244
- * <code>TransformJobName</code> - Identifies the transform job. The name must be
1245
- * unique within an Amazon Web Services Region in an Amazon Web Services account.</p>
1246
- * </li>
1247
- * <li>
1248
- * <p>
1249
- * <code>ModelName</code> - Identifies the model to use. <code>ModelName</code>
1250
- * must be the name of an existing Amazon SageMaker model in the same Amazon Web Services Region and Amazon Web Services
1251
- * account. For information on creating a model, see <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateModel.html">CreateModel</a>.</p>
1252
- * </li>
1253
- * <li>
1254
- * <p>
1255
- * <code>TransformInput</code> - Describes the dataset to be transformed and the
1256
- * Amazon S3 location where it is stored.</p>
1257
- * </li>
1258
- * <li>
1259
- * <p>
1260
- * <code>TransformOutput</code> - Identifies the Amazon S3 location where you want
1261
- * Amazon SageMaker to save the results from the transform job.</p>
1262
- * </li>
1263
- * <li>
1264
- * <p>
1265
- * <code>TransformResources</code> - Identifies the ML compute instances for the
1266
- * transform job.</p>
1267
- * </li>
1268
- * </ul>
1269
- * <p>For more information about how batch transformation works, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/batch-transform.html">Batch
1270
- * Transform</a>.</p>
619
+ * @see {@link CreateTransformJobCommand}
1271
620
  */
1272
621
  createTransformJob(args: CreateTransformJobCommandInput, options?: __HttpHandlerOptions): Promise<CreateTransformJobCommandOutput>;
1273
622
  createTransformJob(args: CreateTransformJobCommandInput, cb: (err: any, data?: CreateTransformJobCommandOutput) => void): void;
1274
623
  createTransformJob(args: CreateTransformJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTransformJobCommandOutput) => void): void;
1275
624
  /**
1276
- * @public
1277
- * <p>Creates an SageMaker <i>trial</i>. A trial is a set of steps called
1278
- * <i>trial components</i> that produce a machine learning model. A trial is part
1279
- * of a single SageMaker <i>experiment</i>.</p>
1280
- * <p>When you use SageMaker Studio or the SageMaker Python SDK, all experiments, trials, and trial
1281
- * components are automatically tracked, logged, and indexed. When you use the Amazon Web Services SDK for Python (Boto), you
1282
- * must use the logging APIs provided by the SDK.</p>
1283
- * <p>You can add tags to a trial and then use the <a>Search</a> API to search for
1284
- * the tags.</p>
1285
- * <p>To get a list of all your trials, call the <a>ListTrials</a> API. To view a
1286
- * trial's properties, call the <a>DescribeTrial</a> API. To create a trial component,
1287
- * call the <a>CreateTrialComponent</a> API.</p>
625
+ * @see {@link CreateTrialCommand}
1288
626
  */
1289
627
  createTrial(args: CreateTrialCommandInput, options?: __HttpHandlerOptions): Promise<CreateTrialCommandOutput>;
1290
628
  createTrial(args: CreateTrialCommandInput, cb: (err: any, data?: CreateTrialCommandOutput) => void): void;
1291
629
  createTrial(args: CreateTrialCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTrialCommandOutput) => void): void;
1292
630
  /**
1293
- * @public
1294
- * <p>Creates a <i>trial component</i>, which is a stage of a machine learning
1295
- * <i>trial</i>. A trial is composed of one or more trial components. A trial
1296
- * component can be used in multiple trials.</p>
1297
- * <p>Trial components include pre-processing jobs, training jobs, and batch transform
1298
- * jobs.</p>
1299
- * <p>When you use SageMaker Studio or the SageMaker Python SDK, all experiments, trials, and trial
1300
- * components are automatically tracked, logged, and indexed. When you use the Amazon Web Services SDK for Python (Boto), you
1301
- * must use the logging APIs provided by the SDK.</p>
1302
- * <p>You can add tags to a trial component and then use the <a>Search</a> API to
1303
- * search for the tags.</p>
631
+ * @see {@link CreateTrialComponentCommand}
1304
632
  */
1305
633
  createTrialComponent(args: CreateTrialComponentCommandInput, options?: __HttpHandlerOptions): Promise<CreateTrialComponentCommandOutput>;
1306
634
  createTrialComponent(args: CreateTrialComponentCommandInput, cb: (err: any, data?: CreateTrialComponentCommandOutput) => void): void;
1307
635
  createTrialComponent(args: CreateTrialComponentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTrialComponentCommandOutput) => void): void;
1308
636
  /**
1309
- * @public
1310
- * <p>Creates a user profile. A user profile represents a single user within a domain, and is
1311
- * the main way to reference a "person" for the purposes of sharing, reporting, and other
1312
- * user-oriented features. This entity is created when a user onboards to Amazon SageMaker Studio. If an
1313
- * administrator invites a person by email or imports them from IAM Identity Center, a user profile is
1314
- * automatically created. A user profile is the primary holder of settings for an individual
1315
- * user and has a reference to the user's private Amazon Elastic File System (EFS) home directory.
1316
- * </p>
637
+ * @see {@link CreateUserProfileCommand}
1317
638
  */
1318
639
  createUserProfile(args: CreateUserProfileCommandInput, options?: __HttpHandlerOptions): Promise<CreateUserProfileCommandOutput>;
1319
640
  createUserProfile(args: CreateUserProfileCommandInput, cb: (err: any, data?: CreateUserProfileCommandOutput) => void): void;
1320
641
  createUserProfile(args: CreateUserProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateUserProfileCommandOutput) => void): void;
1321
642
  /**
1322
- * @public
1323
- * <p>Use this operation to create a workforce. This operation will return an error
1324
- * if a workforce already exists in the Amazon Web Services Region that you specify. You can only
1325
- * create one workforce in each Amazon Web Services Region per Amazon Web Services account.</p>
1326
- * <p>If you want to create a new workforce in an Amazon Web Services Region where
1327
- * a workforce already exists, use the API
1328
- * operation to delete the existing workforce and then use <code>CreateWorkforce</code>
1329
- * to create a new workforce.</p>
1330
- * <p>To create a private workforce using Amazon Cognito, you must specify a Cognito user pool
1331
- * in <code>CognitoConfig</code>.
1332
- * You can also create an Amazon Cognito workforce using the Amazon SageMaker console.
1333
- * For more information, see
1334
- * <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/sms-workforce-create-private.html">
1335
- * Create a Private Workforce (Amazon Cognito)</a>.</p>
1336
- * <p>To create a private workforce using your own OIDC Identity Provider (IdP), specify your IdP
1337
- * configuration in <code>OidcConfig</code>. Your OIDC IdP must support <i>groups</i>
1338
- * because groups are used by Ground Truth and Amazon A2I to create work teams.
1339
- * For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/sms-workforce-create-private-oidc.html">
1340
- * Create a Private Workforce (OIDC IdP)</a>.</p>
643
+ * @see {@link CreateWorkforceCommand}
1341
644
  */
1342
645
  createWorkforce(args: CreateWorkforceCommandInput, options?: __HttpHandlerOptions): Promise<CreateWorkforceCommandOutput>;
1343
646
  createWorkforce(args: CreateWorkforceCommandInput, cb: (err: any, data?: CreateWorkforceCommandOutput) => void): void;
1344
647
  createWorkforce(args: CreateWorkforceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateWorkforceCommandOutput) => void): void;
1345
648
  /**
1346
- * @public
1347
- * <p>Creates a new work team for labeling your data. A work team is defined by one or more
1348
- * Amazon Cognito user pools. You must first create the user pools before you can create a work
1349
- * team.</p>
1350
- * <p>You cannot create more than 25 work teams in an account and region.</p>
649
+ * @see {@link CreateWorkteamCommand}
1351
650
  */
1352
651
  createWorkteam(args: CreateWorkteamCommandInput, options?: __HttpHandlerOptions): Promise<CreateWorkteamCommandOutput>;
1353
652
  createWorkteam(args: CreateWorkteamCommandInput, cb: (err: any, data?: CreateWorkteamCommandOutput) => void): void;
1354
653
  createWorkteam(args: CreateWorkteamCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateWorkteamCommandOutput) => void): void;
1355
654
  /**
1356
- * @public
1357
- * <p>Deletes an action.</p>
655
+ * @see {@link DeleteActionCommand}
1358
656
  */
1359
657
  deleteAction(args: DeleteActionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteActionCommandOutput>;
1360
658
  deleteAction(args: DeleteActionCommandInput, cb: (err: any, data?: DeleteActionCommandOutput) => void): void;
1361
659
  deleteAction(args: DeleteActionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteActionCommandOutput) => void): void;
1362
660
  /**
1363
- * @public
1364
- * <p>Removes the specified algorithm from your account.</p>
661
+ * @see {@link DeleteAlgorithmCommand}
1365
662
  */
1366
663
  deleteAlgorithm(args: DeleteAlgorithmCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAlgorithmCommandOutput>;
1367
664
  deleteAlgorithm(args: DeleteAlgorithmCommandInput, cb: (err: any, data?: DeleteAlgorithmCommandOutput) => void): void;
1368
665
  deleteAlgorithm(args: DeleteAlgorithmCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAlgorithmCommandOutput) => void): void;
1369
666
  /**
1370
- * @public
1371
- * <p>Used to stop and delete an app.</p>
667
+ * @see {@link DeleteAppCommand}
1372
668
  */
1373
669
  deleteApp(args: DeleteAppCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAppCommandOutput>;
1374
670
  deleteApp(args: DeleteAppCommandInput, cb: (err: any, data?: DeleteAppCommandOutput) => void): void;
1375
671
  deleteApp(args: DeleteAppCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAppCommandOutput) => void): void;
1376
672
  /**
1377
- * @public
1378
- * <p>Deletes an AppImageConfig.</p>
673
+ * @see {@link DeleteAppImageConfigCommand}
1379
674
  */
1380
675
  deleteAppImageConfig(args: DeleteAppImageConfigCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAppImageConfigCommandOutput>;
1381
676
  deleteAppImageConfig(args: DeleteAppImageConfigCommandInput, cb: (err: any, data?: DeleteAppImageConfigCommandOutput) => void): void;
1382
677
  deleteAppImageConfig(args: DeleteAppImageConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAppImageConfigCommandOutput) => void): void;
1383
678
  /**
1384
- * @public
1385
- * <p>Deletes an artifact. Either <code>ArtifactArn</code> or <code>Source</code> must be
1386
- * specified.</p>
679
+ * @see {@link DeleteArtifactCommand}
1387
680
  */
1388
681
  deleteArtifact(args: DeleteArtifactCommandInput, options?: __HttpHandlerOptions): Promise<DeleteArtifactCommandOutput>;
1389
682
  deleteArtifact(args: DeleteArtifactCommandInput, cb: (err: any, data?: DeleteArtifactCommandOutput) => void): void;
1390
683
  deleteArtifact(args: DeleteArtifactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteArtifactCommandOutput) => void): void;
1391
684
  /**
1392
- * @public
1393
- * <p>Deletes an association.</p>
685
+ * @see {@link DeleteAssociationCommand}
1394
686
  */
1395
687
  deleteAssociation(args: DeleteAssociationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAssociationCommandOutput>;
1396
688
  deleteAssociation(args: DeleteAssociationCommandInput, cb: (err: any, data?: DeleteAssociationCommandOutput) => void): void;
1397
689
  deleteAssociation(args: DeleteAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAssociationCommandOutput) => void): void;
1398
690
  /**
1399
- * @public
1400
- * <p>Deletes the specified Git repository from your account.</p>
691
+ * @see {@link DeleteCodeRepositoryCommand}
1401
692
  */
1402
693
  deleteCodeRepository(args: DeleteCodeRepositoryCommandInput, options?: __HttpHandlerOptions): Promise<DeleteCodeRepositoryCommandOutput>;
1403
694
  deleteCodeRepository(args: DeleteCodeRepositoryCommandInput, cb: (err: any, data?: DeleteCodeRepositoryCommandOutput) => void): void;
1404
695
  deleteCodeRepository(args: DeleteCodeRepositoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteCodeRepositoryCommandOutput) => void): void;
1405
696
  /**
1406
- * @public
1407
- * <p>Deletes an context.</p>
697
+ * @see {@link DeleteContextCommand}
1408
698
  */
1409
699
  deleteContext(args: DeleteContextCommandInput, options?: __HttpHandlerOptions): Promise<DeleteContextCommandOutput>;
1410
700
  deleteContext(args: DeleteContextCommandInput, cb: (err: any, data?: DeleteContextCommandOutput) => void): void;
1411
701
  deleteContext(args: DeleteContextCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteContextCommandOutput) => void): void;
1412
702
  /**
1413
- * @public
1414
- * <p>Deletes a data quality monitoring job definition.</p>
703
+ * @see {@link DeleteDataQualityJobDefinitionCommand}
1415
704
  */
1416
705
  deleteDataQualityJobDefinition(args: DeleteDataQualityJobDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDataQualityJobDefinitionCommandOutput>;
1417
706
  deleteDataQualityJobDefinition(args: DeleteDataQualityJobDefinitionCommandInput, cb: (err: any, data?: DeleteDataQualityJobDefinitionCommandOutput) => void): void;
1418
707
  deleteDataQualityJobDefinition(args: DeleteDataQualityJobDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDataQualityJobDefinitionCommandOutput) => void): void;
1419
708
  /**
1420
- * @public
1421
- * <p>Deletes a fleet.</p>
709
+ * @see {@link DeleteDeviceFleetCommand}
1422
710
  */
1423
711
  deleteDeviceFleet(args: DeleteDeviceFleetCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDeviceFleetCommandOutput>;
1424
712
  deleteDeviceFleet(args: DeleteDeviceFleetCommandInput, cb: (err: any, data?: DeleteDeviceFleetCommandOutput) => void): void;
1425
713
  deleteDeviceFleet(args: DeleteDeviceFleetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDeviceFleetCommandOutput) => void): void;
1426
714
  /**
1427
- * @public
1428
- * <p>Used to delete a domain.
1429
- * If you onboarded with IAM mode, you will need to delete your domain to onboard again using IAM Identity Center.
1430
- * Use with caution. All of the members of the domain will lose access to their EFS volume,
1431
- * including data, notebooks, and other artifacts.
1432
- * </p>
715
+ * @see {@link DeleteDomainCommand}
1433
716
  */
1434
717
  deleteDomain(args: DeleteDomainCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDomainCommandOutput>;
1435
718
  deleteDomain(args: DeleteDomainCommandInput, cb: (err: any, data?: DeleteDomainCommandOutput) => void): void;
1436
719
  deleteDomain(args: DeleteDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDomainCommandOutput) => void): void;
1437
720
  /**
1438
- * @public
1439
- * <p>Deletes an edge deployment plan if (and only if) all the stages in the plan are inactive or there are no stages in the plan.</p>
721
+ * @see {@link DeleteEdgeDeploymentPlanCommand}
1440
722
  */
1441
723
  deleteEdgeDeploymentPlan(args: DeleteEdgeDeploymentPlanCommandInput, options?: __HttpHandlerOptions): Promise<DeleteEdgeDeploymentPlanCommandOutput>;
1442
724
  deleteEdgeDeploymentPlan(args: DeleteEdgeDeploymentPlanCommandInput, cb: (err: any, data?: DeleteEdgeDeploymentPlanCommandOutput) => void): void;
1443
725
  deleteEdgeDeploymentPlan(args: DeleteEdgeDeploymentPlanCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteEdgeDeploymentPlanCommandOutput) => void): void;
1444
726
  /**
1445
- * @public
1446
- * <p>Delete a stage in an edge deployment plan if (and only if) the stage is inactive.</p>
727
+ * @see {@link DeleteEdgeDeploymentStageCommand}
1447
728
  */
1448
729
  deleteEdgeDeploymentStage(args: DeleteEdgeDeploymentStageCommandInput, options?: __HttpHandlerOptions): Promise<DeleteEdgeDeploymentStageCommandOutput>;
1449
730
  deleteEdgeDeploymentStage(args: DeleteEdgeDeploymentStageCommandInput, cb: (err: any, data?: DeleteEdgeDeploymentStageCommandOutput) => void): void;
1450
731
  deleteEdgeDeploymentStage(args: DeleteEdgeDeploymentStageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteEdgeDeploymentStageCommandOutput) => void): void;
1451
732
  /**
1452
- * @public
1453
- * <p>Deletes an endpoint. SageMaker frees up all of the resources that were deployed when the
1454
- * endpoint was created. </p>
1455
- * <p>SageMaker retires any custom KMS key grants associated with the endpoint, meaning you don't
1456
- * need to use the <a href="http://docs.aws.amazon.com/kms/latest/APIReference/API_RevokeGrant.html">RevokeGrant</a> API call.</p>
1457
- * <p>When you delete your endpoint, SageMaker asynchronously deletes associated endpoint
1458
- * resources such as KMS key grants. You might still see these resources in your account
1459
- * for a few minutes after deleting your endpoint. Do not delete or revoke the permissions
1460
- * for your <code>
1461
- * <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateModel.html#sagemaker-CreateModel-request-ExecutionRoleArn">ExecutionRoleArn</a>
1462
- * </code>, otherwise SageMaker cannot delete these
1463
- * resources.</p>
733
+ * @see {@link DeleteEndpointCommand}
1464
734
  */
1465
735
  deleteEndpoint(args: DeleteEndpointCommandInput, options?: __HttpHandlerOptions): Promise<DeleteEndpointCommandOutput>;
1466
736
  deleteEndpoint(args: DeleteEndpointCommandInput, cb: (err: any, data?: DeleteEndpointCommandOutput) => void): void;
1467
737
  deleteEndpoint(args: DeleteEndpointCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteEndpointCommandOutput) => void): void;
1468
738
  /**
1469
- * @public
1470
- * <p>Deletes an endpoint configuration. The <code>DeleteEndpointConfig</code> API
1471
- * deletes only the specified configuration. It does not delete endpoints created using the
1472
- * configuration. </p>
1473
- * <p>You must not delete an <code>EndpointConfig</code> in use by an endpoint that is
1474
- * live or while the <code>UpdateEndpoint</code> or <code>CreateEndpoint</code> operations
1475
- * are being performed on the endpoint. If you delete the <code>EndpointConfig</code> of an
1476
- * endpoint that is active or being created or updated you may lose visibility into the
1477
- * instance type the endpoint is using. The endpoint must be deleted in order to stop
1478
- * incurring charges.</p>
739
+ * @see {@link DeleteEndpointConfigCommand}
1479
740
  */
1480
741
  deleteEndpointConfig(args: DeleteEndpointConfigCommandInput, options?: __HttpHandlerOptions): Promise<DeleteEndpointConfigCommandOutput>;
1481
742
  deleteEndpointConfig(args: DeleteEndpointConfigCommandInput, cb: (err: any, data?: DeleteEndpointConfigCommandOutput) => void): void;
1482
743
  deleteEndpointConfig(args: DeleteEndpointConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteEndpointConfigCommandOutput) => void): void;
1483
744
  /**
1484
- * @public
1485
- * <p>Deletes an SageMaker experiment. All trials associated with the experiment must be deleted
1486
- * first. Use the <a>ListTrials</a> API to get a list of the trials associated with
1487
- * the experiment.</p>
745
+ * @see {@link DeleteExperimentCommand}
1488
746
  */
1489
747
  deleteExperiment(args: DeleteExperimentCommandInput, options?: __HttpHandlerOptions): Promise<DeleteExperimentCommandOutput>;
1490
748
  deleteExperiment(args: DeleteExperimentCommandInput, cb: (err: any, data?: DeleteExperimentCommandOutput) => void): void;
1491
749
  deleteExperiment(args: DeleteExperimentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteExperimentCommandOutput) => void): void;
1492
750
  /**
1493
- * @public
1494
- * <p>Delete the <code>FeatureGroup</code> and any data that was written to the
1495
- * <code>OnlineStore</code> of the <code>FeatureGroup</code>. Data cannot be accessed from
1496
- * the <code>OnlineStore</code> immediately after <code>DeleteFeatureGroup</code> is called. </p>
1497
- * <p>Data written into the <code>OfflineStore</code> will not be deleted. The Amazon Web Services Glue
1498
- * database and tables that are automatically created for your <code>OfflineStore</code> are
1499
- * not deleted. </p>
751
+ * @see {@link DeleteFeatureGroupCommand}
1500
752
  */
1501
753
  deleteFeatureGroup(args: DeleteFeatureGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteFeatureGroupCommandOutput>;
1502
754
  deleteFeatureGroup(args: DeleteFeatureGroupCommandInput, cb: (err: any, data?: DeleteFeatureGroupCommandOutput) => void): void;
1503
755
  deleteFeatureGroup(args: DeleteFeatureGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteFeatureGroupCommandOutput) => void): void;
1504
756
  /**
1505
- * @public
1506
- * <p>Deletes the specified flow definition.</p>
757
+ * @see {@link DeleteFlowDefinitionCommand}
1507
758
  */
1508
759
  deleteFlowDefinition(args: DeleteFlowDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteFlowDefinitionCommandOutput>;
1509
760
  deleteFlowDefinition(args: DeleteFlowDefinitionCommandInput, cb: (err: any, data?: DeleteFlowDefinitionCommandOutput) => void): void;
1510
761
  deleteFlowDefinition(args: DeleteFlowDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteFlowDefinitionCommandOutput) => void): void;
1511
762
  /**
1512
- * @public
1513
- * <p>Delete a hub.</p>
1514
- * <note>
1515
- * <p>Hub APIs are only callable through SageMaker Studio.</p>
1516
- * </note>
763
+ * @see {@link DeleteHubCommand}
1517
764
  */
1518
765
  deleteHub(args: DeleteHubCommandInput, options?: __HttpHandlerOptions): Promise<DeleteHubCommandOutput>;
1519
766
  deleteHub(args: DeleteHubCommandInput, cb: (err: any, data?: DeleteHubCommandOutput) => void): void;
1520
767
  deleteHub(args: DeleteHubCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteHubCommandOutput) => void): void;
1521
768
  /**
1522
- * @public
1523
- * <p>Delete the contents of a hub.</p>
1524
- * <note>
1525
- * <p>Hub APIs are only callable through SageMaker Studio.</p>
1526
- * </note>
769
+ * @see {@link DeleteHubContentCommand}
1527
770
  */
1528
771
  deleteHubContent(args: DeleteHubContentCommandInput, options?: __HttpHandlerOptions): Promise<DeleteHubContentCommandOutput>;
1529
772
  deleteHubContent(args: DeleteHubContentCommandInput, cb: (err: any, data?: DeleteHubContentCommandOutput) => void): void;
1530
773
  deleteHubContent(args: DeleteHubContentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteHubContentCommandOutput) => void): void;
1531
774
  /**
1532
- * @public
1533
- * <p>Use this operation to delete a human task user interface (worker task template).</p>
1534
- * <p>
1535
- * To see a list of human task user interfaces
1536
- * (work task templates) in your account, use .
1537
- * When you delete a worker task template, it no longer appears when you call <code>ListHumanTaskUis</code>.</p>
775
+ * @see {@link DeleteHumanTaskUiCommand}
1538
776
  */
1539
777
  deleteHumanTaskUi(args: DeleteHumanTaskUiCommandInput, options?: __HttpHandlerOptions): Promise<DeleteHumanTaskUiCommandOutput>;
1540
778
  deleteHumanTaskUi(args: DeleteHumanTaskUiCommandInput, cb: (err: any, data?: DeleteHumanTaskUiCommandOutput) => void): void;
1541
779
  deleteHumanTaskUi(args: DeleteHumanTaskUiCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteHumanTaskUiCommandOutput) => void): void;
1542
780
  /**
1543
- * @public
1544
- * <p>Deletes a SageMaker image and all versions of the image. The container images aren't
1545
- * deleted.</p>
781
+ * @see {@link DeleteImageCommand}
1546
782
  */
1547
783
  deleteImage(args: DeleteImageCommandInput, options?: __HttpHandlerOptions): Promise<DeleteImageCommandOutput>;
1548
784
  deleteImage(args: DeleteImageCommandInput, cb: (err: any, data?: DeleteImageCommandOutput) => void): void;
1549
785
  deleteImage(args: DeleteImageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteImageCommandOutput) => void): void;
1550
786
  /**
1551
- * @public
1552
- * <p>Deletes a version of a SageMaker image. The container image the version represents isn't
1553
- * deleted.</p>
787
+ * @see {@link DeleteImageVersionCommand}
1554
788
  */
1555
789
  deleteImageVersion(args: DeleteImageVersionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteImageVersionCommandOutput>;
1556
790
  deleteImageVersion(args: DeleteImageVersionCommandInput, cb: (err: any, data?: DeleteImageVersionCommandOutput) => void): void;
1557
791
  deleteImageVersion(args: DeleteImageVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteImageVersionCommandOutput) => void): void;
1558
792
  /**
1559
- * @public
1560
- * <p>Deletes an inference experiment.</p>
1561
- * <note>
1562
- * <p>
1563
- * This operation does not delete your endpoint, variants, or any underlying resources. This operation only
1564
- * deletes the metadata of your experiment.
1565
- * </p>
1566
- * </note>
793
+ * @see {@link DeleteInferenceExperimentCommand}
1567
794
  */
1568
795
  deleteInferenceExperiment(args: DeleteInferenceExperimentCommandInput, options?: __HttpHandlerOptions): Promise<DeleteInferenceExperimentCommandOutput>;
1569
796
  deleteInferenceExperiment(args: DeleteInferenceExperimentCommandInput, cb: (err: any, data?: DeleteInferenceExperimentCommandOutput) => void): void;
1570
797
  deleteInferenceExperiment(args: DeleteInferenceExperimentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteInferenceExperimentCommandOutput) => void): void;
1571
798
  /**
1572
- * @public
1573
- * <p>Deletes a model. The <code>DeleteModel</code> API deletes only the model entry that
1574
- * was created in SageMaker when you called the <code>CreateModel</code> API. It does not delete
1575
- * model artifacts, inference code, or the IAM role that you specified when creating the
1576
- * model. </p>
799
+ * @see {@link DeleteModelCommand}
1577
800
  */
1578
801
  deleteModel(args: DeleteModelCommandInput, options?: __HttpHandlerOptions): Promise<DeleteModelCommandOutput>;
1579
802
  deleteModel(args: DeleteModelCommandInput, cb: (err: any, data?: DeleteModelCommandOutput) => void): void;
1580
803
  deleteModel(args: DeleteModelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteModelCommandOutput) => void): void;
1581
804
  /**
1582
- * @public
1583
- * <p>Deletes an Amazon SageMaker model bias job definition.</p>
805
+ * @see {@link DeleteModelBiasJobDefinitionCommand}
1584
806
  */
1585
807
  deleteModelBiasJobDefinition(args: DeleteModelBiasJobDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteModelBiasJobDefinitionCommandOutput>;
1586
808
  deleteModelBiasJobDefinition(args: DeleteModelBiasJobDefinitionCommandInput, cb: (err: any, data?: DeleteModelBiasJobDefinitionCommandOutput) => void): void;
1587
809
  deleteModelBiasJobDefinition(args: DeleteModelBiasJobDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteModelBiasJobDefinitionCommandOutput) => void): void;
1588
810
  /**
1589
- * @public
1590
- * <p>Deletes an Amazon SageMaker Model Card.</p>
811
+ * @see {@link DeleteModelCardCommand}
1591
812
  */
1592
813
  deleteModelCard(args: DeleteModelCardCommandInput, options?: __HttpHandlerOptions): Promise<DeleteModelCardCommandOutput>;
1593
814
  deleteModelCard(args: DeleteModelCardCommandInput, cb: (err: any, data?: DeleteModelCardCommandOutput) => void): void;
1594
815
  deleteModelCard(args: DeleteModelCardCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteModelCardCommandOutput) => void): void;
1595
816
  /**
1596
- * @public
1597
- * <p>Deletes an Amazon SageMaker model explainability job definition.</p>
817
+ * @see {@link DeleteModelExplainabilityJobDefinitionCommand}
1598
818
  */
1599
819
  deleteModelExplainabilityJobDefinition(args: DeleteModelExplainabilityJobDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteModelExplainabilityJobDefinitionCommandOutput>;
1600
820
  deleteModelExplainabilityJobDefinition(args: DeleteModelExplainabilityJobDefinitionCommandInput, cb: (err: any, data?: DeleteModelExplainabilityJobDefinitionCommandOutput) => void): void;
1601
821
  deleteModelExplainabilityJobDefinition(args: DeleteModelExplainabilityJobDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteModelExplainabilityJobDefinitionCommandOutput) => void): void;
1602
822
  /**
1603
- * @public
1604
- * <p>Deletes a model package.</p>
1605
- * <p>A model package is used to create SageMaker models or list on Amazon Web Services Marketplace. Buyers can
1606
- * subscribe to model packages listed on Amazon Web Services Marketplace to create models in SageMaker.</p>
823
+ * @see {@link DeleteModelPackageCommand}
1607
824
  */
1608
825
  deleteModelPackage(args: DeleteModelPackageCommandInput, options?: __HttpHandlerOptions): Promise<DeleteModelPackageCommandOutput>;
1609
826
  deleteModelPackage(args: DeleteModelPackageCommandInput, cb: (err: any, data?: DeleteModelPackageCommandOutput) => void): void;
1610
827
  deleteModelPackage(args: DeleteModelPackageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteModelPackageCommandOutput) => void): void;
1611
828
  /**
1612
- * @public
1613
- * <p>Deletes the specified model group.</p>
829
+ * @see {@link DeleteModelPackageGroupCommand}
1614
830
  */
1615
831
  deleteModelPackageGroup(args: DeleteModelPackageGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteModelPackageGroupCommandOutput>;
1616
832
  deleteModelPackageGroup(args: DeleteModelPackageGroupCommandInput, cb: (err: any, data?: DeleteModelPackageGroupCommandOutput) => void): void;
1617
833
  deleteModelPackageGroup(args: DeleteModelPackageGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteModelPackageGroupCommandOutput) => void): void;
1618
834
  /**
1619
- * @public
1620
- * <p>Deletes a model group resource policy.</p>
835
+ * @see {@link DeleteModelPackageGroupPolicyCommand}
1621
836
  */
1622
837
  deleteModelPackageGroupPolicy(args: DeleteModelPackageGroupPolicyCommandInput, options?: __HttpHandlerOptions): Promise<DeleteModelPackageGroupPolicyCommandOutput>;
1623
838
  deleteModelPackageGroupPolicy(args: DeleteModelPackageGroupPolicyCommandInput, cb: (err: any, data?: DeleteModelPackageGroupPolicyCommandOutput) => void): void;
1624
839
  deleteModelPackageGroupPolicy(args: DeleteModelPackageGroupPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteModelPackageGroupPolicyCommandOutput) => void): void;
1625
840
  /**
1626
- * @public
1627
- * <p>Deletes the secified model quality monitoring job definition.</p>
841
+ * @see {@link DeleteModelQualityJobDefinitionCommand}
1628
842
  */
1629
843
  deleteModelQualityJobDefinition(args: DeleteModelQualityJobDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteModelQualityJobDefinitionCommandOutput>;
1630
844
  deleteModelQualityJobDefinition(args: DeleteModelQualityJobDefinitionCommandInput, cb: (err: any, data?: DeleteModelQualityJobDefinitionCommandOutput) => void): void;
1631
845
  deleteModelQualityJobDefinition(args: DeleteModelQualityJobDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteModelQualityJobDefinitionCommandOutput) => void): void;
1632
846
  /**
1633
- * @public
1634
- * <p>Deletes a monitoring schedule. Also stops the schedule had not already been stopped.
1635
- * This does not delete the job execution history of the monitoring schedule. </p>
847
+ * @see {@link DeleteMonitoringScheduleCommand}
1636
848
  */
1637
849
  deleteMonitoringSchedule(args: DeleteMonitoringScheduleCommandInput, options?: __HttpHandlerOptions): Promise<DeleteMonitoringScheduleCommandOutput>;
1638
850
  deleteMonitoringSchedule(args: DeleteMonitoringScheduleCommandInput, cb: (err: any, data?: DeleteMonitoringScheduleCommandOutput) => void): void;
1639
851
  deleteMonitoringSchedule(args: DeleteMonitoringScheduleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteMonitoringScheduleCommandOutput) => void): void;
1640
852
  /**
1641
- * @public
1642
- * <p> Deletes an SageMaker notebook instance. Before you can delete a notebook instance, you
1643
- * must call the <code>StopNotebookInstance</code> API. </p>
1644
- * <important>
1645
- * <p>When you delete a notebook instance, you lose all of your data. SageMaker removes
1646
- * the ML compute instance, and deletes the ML storage volume and the network interface
1647
- * associated with the notebook instance. </p>
1648
- * </important>
853
+ * @see {@link DeleteNotebookInstanceCommand}
1649
854
  */
1650
855
  deleteNotebookInstance(args: DeleteNotebookInstanceCommandInput, options?: __HttpHandlerOptions): Promise<DeleteNotebookInstanceCommandOutput>;
1651
856
  deleteNotebookInstance(args: DeleteNotebookInstanceCommandInput, cb: (err: any, data?: DeleteNotebookInstanceCommandOutput) => void): void;
1652
857
  deleteNotebookInstance(args: DeleteNotebookInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteNotebookInstanceCommandOutput) => void): void;
1653
858
  /**
1654
- * @public
1655
- * <p>Deletes a notebook instance lifecycle configuration.</p>
859
+ * @see {@link DeleteNotebookInstanceLifecycleConfigCommand}
1656
860
  */
1657
861
  deleteNotebookInstanceLifecycleConfig(args: DeleteNotebookInstanceLifecycleConfigCommandInput, options?: __HttpHandlerOptions): Promise<DeleteNotebookInstanceLifecycleConfigCommandOutput>;
1658
862
  deleteNotebookInstanceLifecycleConfig(args: DeleteNotebookInstanceLifecycleConfigCommandInput, cb: (err: any, data?: DeleteNotebookInstanceLifecycleConfigCommandOutput) => void): void;
1659
863
  deleteNotebookInstanceLifecycleConfig(args: DeleteNotebookInstanceLifecycleConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteNotebookInstanceLifecycleConfigCommandOutput) => void): void;
1660
864
  /**
1661
- * @public
1662
- * <p>Deletes a pipeline if there are no running instances of the pipeline. To delete a
1663
- * pipeline, you must stop all running instances of the pipeline using the
1664
- * <code>StopPipelineExecution</code> API. When you delete a pipeline, all instances of the
1665
- * pipeline are deleted.</p>
865
+ * @see {@link DeletePipelineCommand}
1666
866
  */
1667
867
  deletePipeline(args: DeletePipelineCommandInput, options?: __HttpHandlerOptions): Promise<DeletePipelineCommandOutput>;
1668
868
  deletePipeline(args: DeletePipelineCommandInput, cb: (err: any, data?: DeletePipelineCommandOutput) => void): void;
1669
869
  deletePipeline(args: DeletePipelineCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeletePipelineCommandOutput) => void): void;
1670
870
  /**
1671
- * @public
1672
- * <p>Delete the specified project.</p>
871
+ * @see {@link DeleteProjectCommand}
1673
872
  */
1674
873
  deleteProject(args: DeleteProjectCommandInput, options?: __HttpHandlerOptions): Promise<DeleteProjectCommandOutput>;
1675
874
  deleteProject(args: DeleteProjectCommandInput, cb: (err: any, data?: DeleteProjectCommandOutput) => void): void;
1676
875
  deleteProject(args: DeleteProjectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteProjectCommandOutput) => void): void;
1677
876
  /**
1678
- * @public
1679
- * <p>Used to delete a space.</p>
877
+ * @see {@link DeleteSpaceCommand}
1680
878
  */
1681
879
  deleteSpace(args: DeleteSpaceCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSpaceCommandOutput>;
1682
880
  deleteSpace(args: DeleteSpaceCommandInput, cb: (err: any, data?: DeleteSpaceCommandOutput) => void): void;
1683
881
  deleteSpace(args: DeleteSpaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSpaceCommandOutput) => void): void;
1684
882
  /**
1685
- * @public
1686
- * <p>Deletes the Studio Lifecycle Configuration. In order to delete the Lifecycle Configuration, there must be no running apps using the Lifecycle Configuration. You must also remove the Lifecycle Configuration from UserSettings in all Domains and UserProfiles.</p>
883
+ * @see {@link DeleteStudioLifecycleConfigCommand}
1687
884
  */
1688
885
  deleteStudioLifecycleConfig(args: DeleteStudioLifecycleConfigCommandInput, options?: __HttpHandlerOptions): Promise<DeleteStudioLifecycleConfigCommandOutput>;
1689
886
  deleteStudioLifecycleConfig(args: DeleteStudioLifecycleConfigCommandInput, cb: (err: any, data?: DeleteStudioLifecycleConfigCommandOutput) => void): void;
1690
887
  deleteStudioLifecycleConfig(args: DeleteStudioLifecycleConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteStudioLifecycleConfigCommandOutput) => void): void;
1691
888
  /**
1692
- * @public
1693
- * <p>Deletes the specified tags from an SageMaker resource.</p>
1694
- * <p>To list a resource's tags, use the <code>ListTags</code> API. </p>
1695
- * <note>
1696
- * <p>When you call this API to delete tags from a hyperparameter tuning job, the
1697
- * deleted tags are not removed from training jobs that the hyperparameter tuning job
1698
- * launched before you called this API.</p>
1699
- * </note>
1700
- * <note>
1701
- * <p>When you call this API to delete tags from a SageMaker Studio Domain or User
1702
- * Profile, the deleted tags are not removed from Apps that the SageMaker Studio Domain
1703
- * or User Profile launched before you called this API.</p>
1704
- * </note>
889
+ * @see {@link DeleteTagsCommand}
1705
890
  */
1706
891
  deleteTags(args: DeleteTagsCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTagsCommandOutput>;
1707
892
  deleteTags(args: DeleteTagsCommandInput, cb: (err: any, data?: DeleteTagsCommandOutput) => void): void;
1708
893
  deleteTags(args: DeleteTagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTagsCommandOutput) => void): void;
1709
894
  /**
1710
- * @public
1711
- * <p>Deletes the specified trial. All trial components that make up the trial must be deleted
1712
- * first. Use the <a>DescribeTrialComponent</a> API to get the list of trial
1713
- * components.</p>
895
+ * @see {@link DeleteTrialCommand}
1714
896
  */
1715
897
  deleteTrial(args: DeleteTrialCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTrialCommandOutput>;
1716
898
  deleteTrial(args: DeleteTrialCommandInput, cb: (err: any, data?: DeleteTrialCommandOutput) => void): void;
1717
899
  deleteTrial(args: DeleteTrialCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTrialCommandOutput) => void): void;
1718
900
  /**
1719
- * @public
1720
- * <p>Deletes the specified trial component. A trial component must be disassociated from all
1721
- * trials before the trial component can be deleted. To disassociate a trial component from a
1722
- * trial, call the <a>DisassociateTrialComponent</a> API.</p>
901
+ * @see {@link DeleteTrialComponentCommand}
1723
902
  */
1724
903
  deleteTrialComponent(args: DeleteTrialComponentCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTrialComponentCommandOutput>;
1725
904
  deleteTrialComponent(args: DeleteTrialComponentCommandInput, cb: (err: any, data?: DeleteTrialComponentCommandOutput) => void): void;
1726
905
  deleteTrialComponent(args: DeleteTrialComponentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTrialComponentCommandOutput) => void): void;
1727
906
  /**
1728
- * @public
1729
- * <p>Deletes a user profile. When a user profile is deleted, the user loses access to their EFS
1730
- * volume, including data, notebooks, and other artifacts.</p>
907
+ * @see {@link DeleteUserProfileCommand}
1731
908
  */
1732
909
  deleteUserProfile(args: DeleteUserProfileCommandInput, options?: __HttpHandlerOptions): Promise<DeleteUserProfileCommandOutput>;
1733
910
  deleteUserProfile(args: DeleteUserProfileCommandInput, cb: (err: any, data?: DeleteUserProfileCommandOutput) => void): void;
1734
911
  deleteUserProfile(args: DeleteUserProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteUserProfileCommandOutput) => void): void;
1735
912
  /**
1736
- * @public
1737
- * <p>Use this operation to delete a workforce.</p>
1738
- * <p>If you want to create a new workforce in an Amazon Web Services Region where
1739
- * a workforce already exists, use this operation to delete the
1740
- * existing workforce and then use
1741
- * to create a new workforce.</p>
1742
- * <important>
1743
- * <p>If a private workforce contains one or more work teams, you must use
1744
- * the
1745
- * operation to delete all work teams before you delete the workforce.
1746
- * If you try to delete a workforce that contains one or more work teams,
1747
- * you will recieve a <code>ResourceInUse</code> error.</p>
1748
- * </important>
913
+ * @see {@link DeleteWorkforceCommand}
1749
914
  */
1750
915
  deleteWorkforce(args: DeleteWorkforceCommandInput, options?: __HttpHandlerOptions): Promise<DeleteWorkforceCommandOutput>;
1751
916
  deleteWorkforce(args: DeleteWorkforceCommandInput, cb: (err: any, data?: DeleteWorkforceCommandOutput) => void): void;
1752
917
  deleteWorkforce(args: DeleteWorkforceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteWorkforceCommandOutput) => void): void;
1753
918
  /**
1754
- * @public
1755
- * <p>Deletes an existing work team. This operation can't be undone.</p>
919
+ * @see {@link DeleteWorkteamCommand}
1756
920
  */
1757
921
  deleteWorkteam(args: DeleteWorkteamCommandInput, options?: __HttpHandlerOptions): Promise<DeleteWorkteamCommandOutput>;
1758
922
  deleteWorkteam(args: DeleteWorkteamCommandInput, cb: (err: any, data?: DeleteWorkteamCommandOutput) => void): void;
1759
923
  deleteWorkteam(args: DeleteWorkteamCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteWorkteamCommandOutput) => void): void;
1760
924
  /**
1761
- * @public
1762
- * <p>Deregisters the specified devices. After you deregister a device, you will need to re-register the devices.</p>
925
+ * @see {@link DeregisterDevicesCommand}
1763
926
  */
1764
927
  deregisterDevices(args: DeregisterDevicesCommandInput, options?: __HttpHandlerOptions): Promise<DeregisterDevicesCommandOutput>;
1765
928
  deregisterDevices(args: DeregisterDevicesCommandInput, cb: (err: any, data?: DeregisterDevicesCommandOutput) => void): void;
1766
929
  deregisterDevices(args: DeregisterDevicesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeregisterDevicesCommandOutput) => void): void;
1767
930
  /**
1768
- * @public
1769
- * <p>Describes an action.</p>
931
+ * @see {@link DescribeActionCommand}
1770
932
  */
1771
933
  describeAction(args: DescribeActionCommandInput, options?: __HttpHandlerOptions): Promise<DescribeActionCommandOutput>;
1772
934
  describeAction(args: DescribeActionCommandInput, cb: (err: any, data?: DescribeActionCommandOutput) => void): void;
1773
935
  describeAction(args: DescribeActionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeActionCommandOutput) => void): void;
1774
936
  /**
1775
- * @public
1776
- * <p>Returns a description of the specified algorithm that is in your account.</p>
937
+ * @see {@link DescribeAlgorithmCommand}
1777
938
  */
1778
939
  describeAlgorithm(args: DescribeAlgorithmCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAlgorithmCommandOutput>;
1779
940
  describeAlgorithm(args: DescribeAlgorithmCommandInput, cb: (err: any, data?: DescribeAlgorithmCommandOutput) => void): void;
1780
941
  describeAlgorithm(args: DescribeAlgorithmCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAlgorithmCommandOutput) => void): void;
1781
942
  /**
1782
- * @public
1783
- * <p>Describes the app.</p>
943
+ * @see {@link DescribeAppCommand}
1784
944
  */
1785
945
  describeApp(args: DescribeAppCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAppCommandOutput>;
1786
946
  describeApp(args: DescribeAppCommandInput, cb: (err: any, data?: DescribeAppCommandOutput) => void): void;
1787
947
  describeApp(args: DescribeAppCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAppCommandOutput) => void): void;
1788
948
  /**
1789
- * @public
1790
- * <p>Describes an AppImageConfig.</p>
949
+ * @see {@link DescribeAppImageConfigCommand}
1791
950
  */
1792
951
  describeAppImageConfig(args: DescribeAppImageConfigCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAppImageConfigCommandOutput>;
1793
952
  describeAppImageConfig(args: DescribeAppImageConfigCommandInput, cb: (err: any, data?: DescribeAppImageConfigCommandOutput) => void): void;
1794
953
  describeAppImageConfig(args: DescribeAppImageConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAppImageConfigCommandOutput) => void): void;
1795
954
  /**
1796
- * @public
1797
- * <p>Describes an artifact.</p>
955
+ * @see {@link DescribeArtifactCommand}
1798
956
  */
1799
957
  describeArtifact(args: DescribeArtifactCommandInput, options?: __HttpHandlerOptions): Promise<DescribeArtifactCommandOutput>;
1800
958
  describeArtifact(args: DescribeArtifactCommandInput, cb: (err: any, data?: DescribeArtifactCommandOutput) => void): void;
1801
959
  describeArtifact(args: DescribeArtifactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeArtifactCommandOutput) => void): void;
1802
960
  /**
1803
- * @public
1804
- * <p>Returns information about an Amazon SageMaker AutoML job.</p>
961
+ * @see {@link DescribeAutoMLJobCommand}
1805
962
  */
1806
963
  describeAutoMLJob(args: DescribeAutoMLJobCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAutoMLJobCommandOutput>;
1807
964
  describeAutoMLJob(args: DescribeAutoMLJobCommandInput, cb: (err: any, data?: DescribeAutoMLJobCommandOutput) => void): void;
1808
965
  describeAutoMLJob(args: DescribeAutoMLJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAutoMLJobCommandOutput) => void): void;
1809
966
  /**
1810
- * @public
1811
- * <p>Returns information about an Amazon SageMaker AutoML V2 job.</p>
1812
- * <note>
1813
- * <p>This API action is callable through SageMaker Canvas only. Calling it directly from the CLI
1814
- * or an SDK results in an error.</p>
1815
- * </note>
967
+ * @see {@link DescribeAutoMLJobV2Command}
1816
968
  */
1817
969
  describeAutoMLJobV2(args: DescribeAutoMLJobV2CommandInput, options?: __HttpHandlerOptions): Promise<DescribeAutoMLJobV2CommandOutput>;
1818
970
  describeAutoMLJobV2(args: DescribeAutoMLJobV2CommandInput, cb: (err: any, data?: DescribeAutoMLJobV2CommandOutput) => void): void;
1819
971
  describeAutoMLJobV2(args: DescribeAutoMLJobV2CommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAutoMLJobV2CommandOutput) => void): void;
1820
972
  /**
1821
- * @public
1822
- * <p>Gets details about the specified Git repository.</p>
973
+ * @see {@link DescribeCodeRepositoryCommand}
1823
974
  */
1824
975
  describeCodeRepository(args: DescribeCodeRepositoryCommandInput, options?: __HttpHandlerOptions): Promise<DescribeCodeRepositoryCommandOutput>;
1825
976
  describeCodeRepository(args: DescribeCodeRepositoryCommandInput, cb: (err: any, data?: DescribeCodeRepositoryCommandOutput) => void): void;
1826
977
  describeCodeRepository(args: DescribeCodeRepositoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeCodeRepositoryCommandOutput) => void): void;
1827
978
  /**
1828
- * @public
1829
- * <p>Returns information about a model compilation job.</p>
1830
- * <p>To create a model compilation job, use <a>CreateCompilationJob</a>. To get
1831
- * information about multiple model compilation jobs, use <a>ListCompilationJobs</a>.</p>
979
+ * @see {@link DescribeCompilationJobCommand}
1832
980
  */
1833
981
  describeCompilationJob(args: DescribeCompilationJobCommandInput, options?: __HttpHandlerOptions): Promise<DescribeCompilationJobCommandOutput>;
1834
982
  describeCompilationJob(args: DescribeCompilationJobCommandInput, cb: (err: any, data?: DescribeCompilationJobCommandOutput) => void): void;
1835
983
  describeCompilationJob(args: DescribeCompilationJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeCompilationJobCommandOutput) => void): void;
1836
984
  /**
1837
- * @public
1838
- * <p>Describes a context.</p>
985
+ * @see {@link DescribeContextCommand}
1839
986
  */
1840
987
  describeContext(args: DescribeContextCommandInput, options?: __HttpHandlerOptions): Promise<DescribeContextCommandOutput>;
1841
988
  describeContext(args: DescribeContextCommandInput, cb: (err: any, data?: DescribeContextCommandOutput) => void): void;
1842
989
  describeContext(args: DescribeContextCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeContextCommandOutput) => void): void;
1843
990
  /**
1844
- * @public
1845
- * <p>Gets the details of a data quality monitoring job definition.</p>
991
+ * @see {@link DescribeDataQualityJobDefinitionCommand}
1846
992
  */
1847
993
  describeDataQualityJobDefinition(args: DescribeDataQualityJobDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<DescribeDataQualityJobDefinitionCommandOutput>;
1848
994
  describeDataQualityJobDefinition(args: DescribeDataQualityJobDefinitionCommandInput, cb: (err: any, data?: DescribeDataQualityJobDefinitionCommandOutput) => void): void;
1849
995
  describeDataQualityJobDefinition(args: DescribeDataQualityJobDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeDataQualityJobDefinitionCommandOutput) => void): void;
1850
996
  /**
1851
- * @public
1852
- * <p>Describes the device.</p>
997
+ * @see {@link DescribeDeviceCommand}
1853
998
  */
1854
999
  describeDevice(args: DescribeDeviceCommandInput, options?: __HttpHandlerOptions): Promise<DescribeDeviceCommandOutput>;
1855
1000
  describeDevice(args: DescribeDeviceCommandInput, cb: (err: any, data?: DescribeDeviceCommandOutput) => void): void;
1856
1001
  describeDevice(args: DescribeDeviceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeDeviceCommandOutput) => void): void;
1857
1002
  /**
1858
- * @public
1859
- * <p>A description of the fleet the device belongs to.</p>
1003
+ * @see {@link DescribeDeviceFleetCommand}
1860
1004
  */
1861
1005
  describeDeviceFleet(args: DescribeDeviceFleetCommandInput, options?: __HttpHandlerOptions): Promise<DescribeDeviceFleetCommandOutput>;
1862
1006
  describeDeviceFleet(args: DescribeDeviceFleetCommandInput, cb: (err: any, data?: DescribeDeviceFleetCommandOutput) => void): void;
1863
1007
  describeDeviceFleet(args: DescribeDeviceFleetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeDeviceFleetCommandOutput) => void): void;
1864
1008
  /**
1865
- * @public
1866
- * <p>The description of the domain.</p>
1009
+ * @see {@link DescribeDomainCommand}
1867
1010
  */
1868
1011
  describeDomain(args: DescribeDomainCommandInput, options?: __HttpHandlerOptions): Promise<DescribeDomainCommandOutput>;
1869
1012
  describeDomain(args: DescribeDomainCommandInput, cb: (err: any, data?: DescribeDomainCommandOutput) => void): void;
1870
1013
  describeDomain(args: DescribeDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeDomainCommandOutput) => void): void;
1871
1014
  /**
1872
- * @public
1873
- * <p>Describes an edge deployment plan with deployment status per stage.</p>
1015
+ * @see {@link DescribeEdgeDeploymentPlanCommand}
1874
1016
  */
1875
1017
  describeEdgeDeploymentPlan(args: DescribeEdgeDeploymentPlanCommandInput, options?: __HttpHandlerOptions): Promise<DescribeEdgeDeploymentPlanCommandOutput>;
1876
1018
  describeEdgeDeploymentPlan(args: DescribeEdgeDeploymentPlanCommandInput, cb: (err: any, data?: DescribeEdgeDeploymentPlanCommandOutput) => void): void;
1877
1019
  describeEdgeDeploymentPlan(args: DescribeEdgeDeploymentPlanCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeEdgeDeploymentPlanCommandOutput) => void): void;
1878
1020
  /**
1879
- * @public
1880
- * <p>A description of edge packaging jobs.</p>
1021
+ * @see {@link DescribeEdgePackagingJobCommand}
1881
1022
  */
1882
1023
  describeEdgePackagingJob(args: DescribeEdgePackagingJobCommandInput, options?: __HttpHandlerOptions): Promise<DescribeEdgePackagingJobCommandOutput>;
1883
1024
  describeEdgePackagingJob(args: DescribeEdgePackagingJobCommandInput, cb: (err: any, data?: DescribeEdgePackagingJobCommandOutput) => void): void;
1884
1025
  describeEdgePackagingJob(args: DescribeEdgePackagingJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeEdgePackagingJobCommandOutput) => void): void;
1885
1026
  /**
1886
- * @public
1887
- * <p>Returns the description of an endpoint.</p>
1027
+ * @see {@link DescribeEndpointCommand}
1888
1028
  */
1889
1029
  describeEndpoint(args: DescribeEndpointCommandInput, options?: __HttpHandlerOptions): Promise<DescribeEndpointCommandOutput>;
1890
1030
  describeEndpoint(args: DescribeEndpointCommandInput, cb: (err: any, data?: DescribeEndpointCommandOutput) => void): void;
1891
1031
  describeEndpoint(args: DescribeEndpointCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeEndpointCommandOutput) => void): void;
1892
1032
  /**
1893
- * @public
1894
- * <p>Returns the description of an endpoint configuration created using the
1895
- * <code>CreateEndpointConfig</code> API.</p>
1033
+ * @see {@link DescribeEndpointConfigCommand}
1896
1034
  */
1897
1035
  describeEndpointConfig(args: DescribeEndpointConfigCommandInput, options?: __HttpHandlerOptions): Promise<DescribeEndpointConfigCommandOutput>;
1898
1036
  describeEndpointConfig(args: DescribeEndpointConfigCommandInput, cb: (err: any, data?: DescribeEndpointConfigCommandOutput) => void): void;
1899
1037
  describeEndpointConfig(args: DescribeEndpointConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeEndpointConfigCommandOutput) => void): void;
1900
1038
  /**
1901
- * @public
1902
- * <p>Provides a list of an experiment's properties.</p>
1039
+ * @see {@link DescribeExperimentCommand}
1903
1040
  */
1904
1041
  describeExperiment(args: DescribeExperimentCommandInput, options?: __HttpHandlerOptions): Promise<DescribeExperimentCommandOutput>;
1905
1042
  describeExperiment(args: DescribeExperimentCommandInput, cb: (err: any, data?: DescribeExperimentCommandOutput) => void): void;
1906
1043
  describeExperiment(args: DescribeExperimentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeExperimentCommandOutput) => void): void;
1907
1044
  /**
1908
- * @public
1909
- * <p>Use this operation to describe a <code>FeatureGroup</code>. The response includes
1910
- * information on the creation time, <code>FeatureGroup</code> name, the unique identifier for
1911
- * each <code>FeatureGroup</code>, and more.</p>
1045
+ * @see {@link DescribeFeatureGroupCommand}
1912
1046
  */
1913
1047
  describeFeatureGroup(args: DescribeFeatureGroupCommandInput, options?: __HttpHandlerOptions): Promise<DescribeFeatureGroupCommandOutput>;
1914
1048
  describeFeatureGroup(args: DescribeFeatureGroupCommandInput, cb: (err: any, data?: DescribeFeatureGroupCommandOutput) => void): void;
1915
1049
  describeFeatureGroup(args: DescribeFeatureGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeFeatureGroupCommandOutput) => void): void;
1916
1050
  /**
1917
- * @public
1918
- * <p>Shows the metadata for a feature within a feature group.</p>
1051
+ * @see {@link DescribeFeatureMetadataCommand}
1919
1052
  */
1920
1053
  describeFeatureMetadata(args: DescribeFeatureMetadataCommandInput, options?: __HttpHandlerOptions): Promise<DescribeFeatureMetadataCommandOutput>;
1921
1054
  describeFeatureMetadata(args: DescribeFeatureMetadataCommandInput, cb: (err: any, data?: DescribeFeatureMetadataCommandOutput) => void): void;
1922
1055
  describeFeatureMetadata(args: DescribeFeatureMetadataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeFeatureMetadataCommandOutput) => void): void;
1923
1056
  /**
1924
- * @public
1925
- * <p>Returns information about the specified flow definition.</p>
1057
+ * @see {@link DescribeFlowDefinitionCommand}
1926
1058
  */
1927
1059
  describeFlowDefinition(args: DescribeFlowDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<DescribeFlowDefinitionCommandOutput>;
1928
1060
  describeFlowDefinition(args: DescribeFlowDefinitionCommandInput, cb: (err: any, data?: DescribeFlowDefinitionCommandOutput) => void): void;
1929
1061
  describeFlowDefinition(args: DescribeFlowDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeFlowDefinitionCommandOutput) => void): void;
1930
1062
  /**
1931
- * @public
1932
- * <p>Describe a hub.</p>
1933
- * <note>
1934
- * <p>Hub APIs are only callable through SageMaker Studio.</p>
1935
- * </note>
1063
+ * @see {@link DescribeHubCommand}
1936
1064
  */
1937
1065
  describeHub(args: DescribeHubCommandInput, options?: __HttpHandlerOptions): Promise<DescribeHubCommandOutput>;
1938
1066
  describeHub(args: DescribeHubCommandInput, cb: (err: any, data?: DescribeHubCommandOutput) => void): void;
1939
1067
  describeHub(args: DescribeHubCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeHubCommandOutput) => void): void;
1940
1068
  /**
1941
- * @public
1942
- * <p>Describe the content of a hub.</p>
1943
- * <note>
1944
- * <p>Hub APIs are only callable through SageMaker Studio.</p>
1945
- * </note>
1069
+ * @see {@link DescribeHubContentCommand}
1946
1070
  */
1947
1071
  describeHubContent(args: DescribeHubContentCommandInput, options?: __HttpHandlerOptions): Promise<DescribeHubContentCommandOutput>;
1948
1072
  describeHubContent(args: DescribeHubContentCommandInput, cb: (err: any, data?: DescribeHubContentCommandOutput) => void): void;
1949
1073
  describeHubContent(args: DescribeHubContentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeHubContentCommandOutput) => void): void;
1950
1074
  /**
1951
- * @public
1952
- * <p>Returns information about the requested human task user interface (worker task template).</p>
1075
+ * @see {@link DescribeHumanTaskUiCommand}
1953
1076
  */
1954
1077
  describeHumanTaskUi(args: DescribeHumanTaskUiCommandInput, options?: __HttpHandlerOptions): Promise<DescribeHumanTaskUiCommandOutput>;
1955
1078
  describeHumanTaskUi(args: DescribeHumanTaskUiCommandInput, cb: (err: any, data?: DescribeHumanTaskUiCommandOutput) => void): void;
1956
1079
  describeHumanTaskUi(args: DescribeHumanTaskUiCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeHumanTaskUiCommandOutput) => void): void;
1957
1080
  /**
1958
- * @public
1959
- * <p>Gets
1960
- * a description of a hyperparameter tuning job.</p>
1081
+ * @see {@link DescribeHyperParameterTuningJobCommand}
1961
1082
  */
1962
1083
  describeHyperParameterTuningJob(args: DescribeHyperParameterTuningJobCommandInput, options?: __HttpHandlerOptions): Promise<DescribeHyperParameterTuningJobCommandOutput>;
1963
1084
  describeHyperParameterTuningJob(args: DescribeHyperParameterTuningJobCommandInput, cb: (err: any, data?: DescribeHyperParameterTuningJobCommandOutput) => void): void;
1964
1085
  describeHyperParameterTuningJob(args: DescribeHyperParameterTuningJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeHyperParameterTuningJobCommandOutput) => void): void;
1965
1086
  /**
1966
- * @public
1967
- * <p>Describes a SageMaker image.</p>
1087
+ * @see {@link DescribeImageCommand}
1968
1088
  */
1969
1089
  describeImage(args: DescribeImageCommandInput, options?: __HttpHandlerOptions): Promise<DescribeImageCommandOutput>;
1970
1090
  describeImage(args: DescribeImageCommandInput, cb: (err: any, data?: DescribeImageCommandOutput) => void): void;
1971
1091
  describeImage(args: DescribeImageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeImageCommandOutput) => void): void;
1972
1092
  /**
1973
- * @public
1974
- * <p>Describes a version of a SageMaker image.</p>
1093
+ * @see {@link DescribeImageVersionCommand}
1975
1094
  */
1976
1095
  describeImageVersion(args: DescribeImageVersionCommandInput, options?: __HttpHandlerOptions): Promise<DescribeImageVersionCommandOutput>;
1977
1096
  describeImageVersion(args: DescribeImageVersionCommandInput, cb: (err: any, data?: DescribeImageVersionCommandOutput) => void): void;
1978
1097
  describeImageVersion(args: DescribeImageVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeImageVersionCommandOutput) => void): void;
1979
1098
  /**
1980
- * @public
1981
- * <p>Returns details about an inference experiment.</p>
1099
+ * @see {@link DescribeInferenceExperimentCommand}
1982
1100
  */
1983
1101
  describeInferenceExperiment(args: DescribeInferenceExperimentCommandInput, options?: __HttpHandlerOptions): Promise<DescribeInferenceExperimentCommandOutput>;
1984
1102
  describeInferenceExperiment(args: DescribeInferenceExperimentCommandInput, cb: (err: any, data?: DescribeInferenceExperimentCommandOutput) => void): void;
1985
1103
  describeInferenceExperiment(args: DescribeInferenceExperimentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeInferenceExperimentCommandOutput) => void): void;
1986
1104
  /**
1987
- * @public
1988
- * <p>Provides the results of the Inference Recommender job.
1989
- * One or more recommendation jobs are returned.</p>
1105
+ * @see {@link DescribeInferenceRecommendationsJobCommand}
1990
1106
  */
1991
1107
  describeInferenceRecommendationsJob(args: DescribeInferenceRecommendationsJobCommandInput, options?: __HttpHandlerOptions): Promise<DescribeInferenceRecommendationsJobCommandOutput>;
1992
1108
  describeInferenceRecommendationsJob(args: DescribeInferenceRecommendationsJobCommandInput, cb: (err: any, data?: DescribeInferenceRecommendationsJobCommandOutput) => void): void;
1993
1109
  describeInferenceRecommendationsJob(args: DescribeInferenceRecommendationsJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeInferenceRecommendationsJobCommandOutput) => void): void;
1994
1110
  /**
1995
- * @public
1996
- * <p>Gets information about a labeling job.</p>
1111
+ * @see {@link DescribeLabelingJobCommand}
1997
1112
  */
1998
1113
  describeLabelingJob(args: DescribeLabelingJobCommandInput, options?: __HttpHandlerOptions): Promise<DescribeLabelingJobCommandOutput>;
1999
1114
  describeLabelingJob(args: DescribeLabelingJobCommandInput, cb: (err: any, data?: DescribeLabelingJobCommandOutput) => void): void;
2000
1115
  describeLabelingJob(args: DescribeLabelingJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeLabelingJobCommandOutput) => void): void;
2001
1116
  /**
2002
- * @public
2003
- * <p>Provides a list of properties for the requested lineage group.
2004
- * For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/xaccount-lineage-tracking.html">
2005
- * Cross-Account Lineage Tracking </a> in the <i>Amazon SageMaker Developer Guide</i>.</p>
1117
+ * @see {@link DescribeLineageGroupCommand}
2006
1118
  */
2007
1119
  describeLineageGroup(args: DescribeLineageGroupCommandInput, options?: __HttpHandlerOptions): Promise<DescribeLineageGroupCommandOutput>;
2008
1120
  describeLineageGroup(args: DescribeLineageGroupCommandInput, cb: (err: any, data?: DescribeLineageGroupCommandOutput) => void): void;
2009
1121
  describeLineageGroup(args: DescribeLineageGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeLineageGroupCommandOutput) => void): void;
2010
1122
  /**
2011
- * @public
2012
- * <p>Describes a model that you created using the <code>CreateModel</code>
2013
- * API.</p>
1123
+ * @see {@link DescribeModelCommand}
2014
1124
  */
2015
1125
  describeModel(args: DescribeModelCommandInput, options?: __HttpHandlerOptions): Promise<DescribeModelCommandOutput>;
2016
1126
  describeModel(args: DescribeModelCommandInput, cb: (err: any, data?: DescribeModelCommandOutput) => void): void;
2017
1127
  describeModel(args: DescribeModelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeModelCommandOutput) => void): void;
2018
1128
  /**
2019
- * @public
2020
- * <p>Returns a description of a model bias job definition.</p>
1129
+ * @see {@link DescribeModelBiasJobDefinitionCommand}
2021
1130
  */
2022
1131
  describeModelBiasJobDefinition(args: DescribeModelBiasJobDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<DescribeModelBiasJobDefinitionCommandOutput>;
2023
1132
  describeModelBiasJobDefinition(args: DescribeModelBiasJobDefinitionCommandInput, cb: (err: any, data?: DescribeModelBiasJobDefinitionCommandOutput) => void): void;
2024
1133
  describeModelBiasJobDefinition(args: DescribeModelBiasJobDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeModelBiasJobDefinitionCommandOutput) => void): void;
2025
1134
  /**
2026
- * @public
2027
- * <p>Describes the content, creation time, and security configuration of an Amazon SageMaker Model Card.</p>
1135
+ * @see {@link DescribeModelCardCommand}
2028
1136
  */
2029
1137
  describeModelCard(args: DescribeModelCardCommandInput, options?: __HttpHandlerOptions): Promise<DescribeModelCardCommandOutput>;
2030
1138
  describeModelCard(args: DescribeModelCardCommandInput, cb: (err: any, data?: DescribeModelCardCommandOutput) => void): void;
2031
1139
  describeModelCard(args: DescribeModelCardCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeModelCardCommandOutput) => void): void;
2032
1140
  /**
2033
- * @public
2034
- * <p>Describes an Amazon SageMaker Model Card export job.</p>
1141
+ * @see {@link DescribeModelCardExportJobCommand}
2035
1142
  */
2036
1143
  describeModelCardExportJob(args: DescribeModelCardExportJobCommandInput, options?: __HttpHandlerOptions): Promise<DescribeModelCardExportJobCommandOutput>;
2037
1144
  describeModelCardExportJob(args: DescribeModelCardExportJobCommandInput, cb: (err: any, data?: DescribeModelCardExportJobCommandOutput) => void): void;
2038
1145
  describeModelCardExportJob(args: DescribeModelCardExportJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeModelCardExportJobCommandOutput) => void): void;
2039
1146
  /**
2040
- * @public
2041
- * <p>Returns a description of a model explainability job definition.</p>
1147
+ * @see {@link DescribeModelExplainabilityJobDefinitionCommand}
2042
1148
  */
2043
1149
  describeModelExplainabilityJobDefinition(args: DescribeModelExplainabilityJobDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<DescribeModelExplainabilityJobDefinitionCommandOutput>;
2044
1150
  describeModelExplainabilityJobDefinition(args: DescribeModelExplainabilityJobDefinitionCommandInput, cb: (err: any, data?: DescribeModelExplainabilityJobDefinitionCommandOutput) => void): void;
2045
1151
  describeModelExplainabilityJobDefinition(args: DescribeModelExplainabilityJobDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeModelExplainabilityJobDefinitionCommandOutput) => void): void;
2046
1152
  /**
2047
- * @public
2048
- * <p>Returns a description of the specified model package, which is used to create SageMaker
2049
- * models or list them on Amazon Web Services Marketplace.</p>
2050
- * <p>To create models in SageMaker, buyers can subscribe to model packages listed on Amazon Web Services
2051
- * Marketplace.</p>
1153
+ * @see {@link DescribeModelPackageCommand}
2052
1154
  */
2053
1155
  describeModelPackage(args: DescribeModelPackageCommandInput, options?: __HttpHandlerOptions): Promise<DescribeModelPackageCommandOutput>;
2054
1156
  describeModelPackage(args: DescribeModelPackageCommandInput, cb: (err: any, data?: DescribeModelPackageCommandOutput) => void): void;
2055
1157
  describeModelPackage(args: DescribeModelPackageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeModelPackageCommandOutput) => void): void;
2056
1158
  /**
2057
- * @public
2058
- * <p>Gets a description for the specified model group.</p>
1159
+ * @see {@link DescribeModelPackageGroupCommand}
2059
1160
  */
2060
1161
  describeModelPackageGroup(args: DescribeModelPackageGroupCommandInput, options?: __HttpHandlerOptions): Promise<DescribeModelPackageGroupCommandOutput>;
2061
1162
  describeModelPackageGroup(args: DescribeModelPackageGroupCommandInput, cb: (err: any, data?: DescribeModelPackageGroupCommandOutput) => void): void;
2062
1163
  describeModelPackageGroup(args: DescribeModelPackageGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeModelPackageGroupCommandOutput) => void): void;
2063
1164
  /**
2064
- * @public
2065
- * <p>Returns a description of a model quality job definition.</p>
1165
+ * @see {@link DescribeModelQualityJobDefinitionCommand}
2066
1166
  */
2067
1167
  describeModelQualityJobDefinition(args: DescribeModelQualityJobDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<DescribeModelQualityJobDefinitionCommandOutput>;
2068
1168
  describeModelQualityJobDefinition(args: DescribeModelQualityJobDefinitionCommandInput, cb: (err: any, data?: DescribeModelQualityJobDefinitionCommandOutput) => void): void;
2069
1169
  describeModelQualityJobDefinition(args: DescribeModelQualityJobDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeModelQualityJobDefinitionCommandOutput) => void): void;
2070
1170
  /**
2071
- * @public
2072
- * <p>Describes the schedule for a monitoring job.</p>
1171
+ * @see {@link DescribeMonitoringScheduleCommand}
2073
1172
  */
2074
1173
  describeMonitoringSchedule(args: DescribeMonitoringScheduleCommandInput, options?: __HttpHandlerOptions): Promise<DescribeMonitoringScheduleCommandOutput>;
2075
1174
  describeMonitoringSchedule(args: DescribeMonitoringScheduleCommandInput, cb: (err: any, data?: DescribeMonitoringScheduleCommandOutput) => void): void;
2076
1175
  describeMonitoringSchedule(args: DescribeMonitoringScheduleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeMonitoringScheduleCommandOutput) => void): void;
2077
1176
  /**
2078
- * @public
2079
- * <p>Returns information about a notebook instance.</p>
1177
+ * @see {@link DescribeNotebookInstanceCommand}
2080
1178
  */
2081
1179
  describeNotebookInstance(args: DescribeNotebookInstanceCommandInput, options?: __HttpHandlerOptions): Promise<DescribeNotebookInstanceCommandOutput>;
2082
1180
  describeNotebookInstance(args: DescribeNotebookInstanceCommandInput, cb: (err: any, data?: DescribeNotebookInstanceCommandOutput) => void): void;
2083
1181
  describeNotebookInstance(args: DescribeNotebookInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeNotebookInstanceCommandOutput) => void): void;
2084
1182
  /**
2085
- * @public
2086
- * <p>Returns a description of a notebook instance lifecycle configuration.</p>
2087
- * <p>For information about notebook instance lifestyle configurations, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/notebook-lifecycle-config.html">Step
2088
- * 2.1: (Optional) Customize a Notebook Instance</a>.</p>
1183
+ * @see {@link DescribeNotebookInstanceLifecycleConfigCommand}
2089
1184
  */
2090
1185
  describeNotebookInstanceLifecycleConfig(args: DescribeNotebookInstanceLifecycleConfigCommandInput, options?: __HttpHandlerOptions): Promise<DescribeNotebookInstanceLifecycleConfigCommandOutput>;
2091
1186
  describeNotebookInstanceLifecycleConfig(args: DescribeNotebookInstanceLifecycleConfigCommandInput, cb: (err: any, data?: DescribeNotebookInstanceLifecycleConfigCommandOutput) => void): void;
2092
1187
  describeNotebookInstanceLifecycleConfig(args: DescribeNotebookInstanceLifecycleConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeNotebookInstanceLifecycleConfigCommandOutput) => void): void;
2093
1188
  /**
2094
- * @public
2095
- * <p>Describes the details of a pipeline.</p>
1189
+ * @see {@link DescribePipelineCommand}
2096
1190
  */
2097
1191
  describePipeline(args: DescribePipelineCommandInput, options?: __HttpHandlerOptions): Promise<DescribePipelineCommandOutput>;
2098
1192
  describePipeline(args: DescribePipelineCommandInput, cb: (err: any, data?: DescribePipelineCommandOutput) => void): void;
2099
1193
  describePipeline(args: DescribePipelineCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribePipelineCommandOutput) => void): void;
2100
1194
  /**
2101
- * @public
2102
- * <p>Describes the details of an execution's pipeline definition.</p>
1195
+ * @see {@link DescribePipelineDefinitionForExecutionCommand}
2103
1196
  */
2104
1197
  describePipelineDefinitionForExecution(args: DescribePipelineDefinitionForExecutionCommandInput, options?: __HttpHandlerOptions): Promise<DescribePipelineDefinitionForExecutionCommandOutput>;
2105
1198
  describePipelineDefinitionForExecution(args: DescribePipelineDefinitionForExecutionCommandInput, cb: (err: any, data?: DescribePipelineDefinitionForExecutionCommandOutput) => void): void;
2106
1199
  describePipelineDefinitionForExecution(args: DescribePipelineDefinitionForExecutionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribePipelineDefinitionForExecutionCommandOutput) => void): void;
2107
1200
  /**
2108
- * @public
2109
- * <p>Describes the details of a pipeline execution.</p>
1201
+ * @see {@link DescribePipelineExecutionCommand}
2110
1202
  */
2111
1203
  describePipelineExecution(args: DescribePipelineExecutionCommandInput, options?: __HttpHandlerOptions): Promise<DescribePipelineExecutionCommandOutput>;
2112
1204
  describePipelineExecution(args: DescribePipelineExecutionCommandInput, cb: (err: any, data?: DescribePipelineExecutionCommandOutput) => void): void;
2113
1205
  describePipelineExecution(args: DescribePipelineExecutionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribePipelineExecutionCommandOutput) => void): void;
2114
1206
  /**
2115
- * @public
2116
- * <p>Returns a description of a processing job.</p>
1207
+ * @see {@link DescribeProcessingJobCommand}
2117
1208
  */
2118
1209
  describeProcessingJob(args: DescribeProcessingJobCommandInput, options?: __HttpHandlerOptions): Promise<DescribeProcessingJobCommandOutput>;
2119
1210
  describeProcessingJob(args: DescribeProcessingJobCommandInput, cb: (err: any, data?: DescribeProcessingJobCommandOutput) => void): void;
2120
1211
  describeProcessingJob(args: DescribeProcessingJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeProcessingJobCommandOutput) => void): void;
2121
1212
  /**
2122
- * @public
2123
- * <p>Describes the details of a project.</p>
1213
+ * @see {@link DescribeProjectCommand}
2124
1214
  */
2125
1215
  describeProject(args: DescribeProjectCommandInput, options?: __HttpHandlerOptions): Promise<DescribeProjectCommandOutput>;
2126
1216
  describeProject(args: DescribeProjectCommandInput, cb: (err: any, data?: DescribeProjectCommandOutput) => void): void;
2127
1217
  describeProject(args: DescribeProjectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeProjectCommandOutput) => void): void;
2128
1218
  /**
2129
- * @public
2130
- * <p>Describes the space.</p>
1219
+ * @see {@link DescribeSpaceCommand}
2131
1220
  */
2132
1221
  describeSpace(args: DescribeSpaceCommandInput, options?: __HttpHandlerOptions): Promise<DescribeSpaceCommandOutput>;
2133
1222
  describeSpace(args: DescribeSpaceCommandInput, cb: (err: any, data?: DescribeSpaceCommandOutput) => void): void;
2134
1223
  describeSpace(args: DescribeSpaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeSpaceCommandOutput) => void): void;
2135
1224
  /**
2136
- * @public
2137
- * <p>Describes the Studio Lifecycle Configuration.</p>
1225
+ * @see {@link DescribeStudioLifecycleConfigCommand}
2138
1226
  */
2139
1227
  describeStudioLifecycleConfig(args: DescribeStudioLifecycleConfigCommandInput, options?: __HttpHandlerOptions): Promise<DescribeStudioLifecycleConfigCommandOutput>;
2140
1228
  describeStudioLifecycleConfig(args: DescribeStudioLifecycleConfigCommandInput, cb: (err: any, data?: DescribeStudioLifecycleConfigCommandOutput) => void): void;
2141
1229
  describeStudioLifecycleConfig(args: DescribeStudioLifecycleConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeStudioLifecycleConfigCommandOutput) => void): void;
2142
1230
  /**
2143
- * @public
2144
- * <p>Gets information about a work team provided by a vendor. It returns details about the
2145
- * subscription with a vendor in the Amazon Web Services Marketplace.</p>
1231
+ * @see {@link DescribeSubscribedWorkteamCommand}
2146
1232
  */
2147
1233
  describeSubscribedWorkteam(args: DescribeSubscribedWorkteamCommandInput, options?: __HttpHandlerOptions): Promise<DescribeSubscribedWorkteamCommandOutput>;
2148
1234
  describeSubscribedWorkteam(args: DescribeSubscribedWorkteamCommandInput, cb: (err: any, data?: DescribeSubscribedWorkteamCommandOutput) => void): void;
2149
1235
  describeSubscribedWorkteam(args: DescribeSubscribedWorkteamCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeSubscribedWorkteamCommandOutput) => void): void;
2150
1236
  /**
2151
- * @public
2152
- * <p>Returns information about a training job. </p>
2153
- * <p>Some of the attributes below only appear if the training job successfully starts.
2154
- * If the training job fails, <code>TrainingJobStatus</code> is <code>Failed</code> and,
2155
- * depending on the <code>FailureReason</code>, attributes like
2156
- * <code>TrainingStartTime</code>, <code>TrainingTimeInSeconds</code>,
2157
- * <code>TrainingEndTime</code>, and <code>BillableTimeInSeconds</code> may not be
2158
- * present in the response.</p>
1237
+ * @see {@link DescribeTrainingJobCommand}
2159
1238
  */
2160
1239
  describeTrainingJob(args: DescribeTrainingJobCommandInput, options?: __HttpHandlerOptions): Promise<DescribeTrainingJobCommandOutput>;
2161
1240
  describeTrainingJob(args: DescribeTrainingJobCommandInput, cb: (err: any, data?: DescribeTrainingJobCommandOutput) => void): void;
2162
1241
  describeTrainingJob(args: DescribeTrainingJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeTrainingJobCommandOutput) => void): void;
2163
1242
  /**
2164
- * @public
2165
- * <p>Returns information about a transform job.</p>
1243
+ * @see {@link DescribeTransformJobCommand}
2166
1244
  */
2167
1245
  describeTransformJob(args: DescribeTransformJobCommandInput, options?: __HttpHandlerOptions): Promise<DescribeTransformJobCommandOutput>;
2168
1246
  describeTransformJob(args: DescribeTransformJobCommandInput, cb: (err: any, data?: DescribeTransformJobCommandOutput) => void): void;
2169
1247
  describeTransformJob(args: DescribeTransformJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeTransformJobCommandOutput) => void): void;
2170
1248
  /**
2171
- * @public
2172
- * <p>Provides a list of a trial's properties.</p>
1249
+ * @see {@link DescribeTrialCommand}
2173
1250
  */
2174
1251
  describeTrial(args: DescribeTrialCommandInput, options?: __HttpHandlerOptions): Promise<DescribeTrialCommandOutput>;
2175
1252
  describeTrial(args: DescribeTrialCommandInput, cb: (err: any, data?: DescribeTrialCommandOutput) => void): void;
2176
1253
  describeTrial(args: DescribeTrialCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeTrialCommandOutput) => void): void;
2177
1254
  /**
2178
- * @public
2179
- * <p>Provides a list of a trials component's properties.</p>
1255
+ * @see {@link DescribeTrialComponentCommand}
2180
1256
  */
2181
1257
  describeTrialComponent(args: DescribeTrialComponentCommandInput, options?: __HttpHandlerOptions): Promise<DescribeTrialComponentCommandOutput>;
2182
1258
  describeTrialComponent(args: DescribeTrialComponentCommandInput, cb: (err: any, data?: DescribeTrialComponentCommandOutput) => void): void;
2183
1259
  describeTrialComponent(args: DescribeTrialComponentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeTrialComponentCommandOutput) => void): void;
2184
1260
  /**
2185
- * @public
2186
- * <p>Describes a user profile. For more information, see <code>CreateUserProfile</code>.</p>
1261
+ * @see {@link DescribeUserProfileCommand}
2187
1262
  */
2188
1263
  describeUserProfile(args: DescribeUserProfileCommandInput, options?: __HttpHandlerOptions): Promise<DescribeUserProfileCommandOutput>;
2189
1264
  describeUserProfile(args: DescribeUserProfileCommandInput, cb: (err: any, data?: DescribeUserProfileCommandOutput) => void): void;
2190
1265
  describeUserProfile(args: DescribeUserProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeUserProfileCommandOutput) => void): void;
2191
1266
  /**
2192
- * @public
2193
- * <p>Lists private workforce information, including workforce name, Amazon Resource Name
2194
- * (ARN), and, if applicable, allowed IP address ranges (<a href="https://docs.aws.amazon.com/vpc/latest/userguide/VPC_Subnets.html">CIDRs</a>). Allowable IP address
2195
- * ranges are the IP addresses that workers can use to access tasks. </p>
2196
- * <important>
2197
- * <p>This operation applies only to private workforces.</p>
2198
- * </important>
1267
+ * @see {@link DescribeWorkforceCommand}
2199
1268
  */
2200
1269
  describeWorkforce(args: DescribeWorkforceCommandInput, options?: __HttpHandlerOptions): Promise<DescribeWorkforceCommandOutput>;
2201
1270
  describeWorkforce(args: DescribeWorkforceCommandInput, cb: (err: any, data?: DescribeWorkforceCommandOutput) => void): void;
2202
1271
  describeWorkforce(args: DescribeWorkforceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeWorkforceCommandOutput) => void): void;
2203
1272
  /**
2204
- * @public
2205
- * <p>Gets information about a specific work team. You can see information such as the
2206
- * create date, the last updated date, membership information, and the work team's Amazon
2207
- * Resource Name (ARN).</p>
1273
+ * @see {@link DescribeWorkteamCommand}
2208
1274
  */
2209
1275
  describeWorkteam(args: DescribeWorkteamCommandInput, options?: __HttpHandlerOptions): Promise<DescribeWorkteamCommandOutput>;
2210
1276
  describeWorkteam(args: DescribeWorkteamCommandInput, cb: (err: any, data?: DescribeWorkteamCommandOutput) => void): void;
2211
1277
  describeWorkteam(args: DescribeWorkteamCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeWorkteamCommandOutput) => void): void;
2212
1278
  /**
2213
- * @public
2214
- * <p>Disables using Service Catalog in SageMaker. Service Catalog is used to create
2215
- * SageMaker projects.</p>
1279
+ * @see {@link DisableSagemakerServicecatalogPortfolioCommand}
2216
1280
  */
2217
1281
  disableSagemakerServicecatalogPortfolio(args: DisableSagemakerServicecatalogPortfolioCommandInput, options?: __HttpHandlerOptions): Promise<DisableSagemakerServicecatalogPortfolioCommandOutput>;
2218
1282
  disableSagemakerServicecatalogPortfolio(args: DisableSagemakerServicecatalogPortfolioCommandInput, cb: (err: any, data?: DisableSagemakerServicecatalogPortfolioCommandOutput) => void): void;
2219
1283
  disableSagemakerServicecatalogPortfolio(args: DisableSagemakerServicecatalogPortfolioCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisableSagemakerServicecatalogPortfolioCommandOutput) => void): void;
2220
1284
  /**
2221
- * @public
2222
- * <p>Disassociates a trial component from a trial. This doesn't effect other trials the
2223
- * component is associated with. Before you can delete a component, you must disassociate the
2224
- * component from all trials it is associated with. To associate a trial component with a trial,
2225
- * call the <a>AssociateTrialComponent</a> API.</p>
2226
- * <p>To get a list of the trials a component is associated with, use the <a>Search</a> API. Specify <code>ExperimentTrialComponent</code> for the <code>Resource</code> parameter.
2227
- * The list appears in the response under <code>Results.TrialComponent.Parents</code>.</p>
1285
+ * @see {@link DisassociateTrialComponentCommand}
2228
1286
  */
2229
1287
  disassociateTrialComponent(args: DisassociateTrialComponentCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateTrialComponentCommandOutput>;
2230
1288
  disassociateTrialComponent(args: DisassociateTrialComponentCommandInput, cb: (err: any, data?: DisassociateTrialComponentCommandOutput) => void): void;
2231
1289
  disassociateTrialComponent(args: DisassociateTrialComponentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateTrialComponentCommandOutput) => void): void;
2232
1290
  /**
2233
- * @public
2234
- * <p>Enables using Service Catalog in SageMaker. Service Catalog is used to create
2235
- * SageMaker projects.</p>
1291
+ * @see {@link EnableSagemakerServicecatalogPortfolioCommand}
2236
1292
  */
2237
1293
  enableSagemakerServicecatalogPortfolio(args: EnableSagemakerServicecatalogPortfolioCommandInput, options?: __HttpHandlerOptions): Promise<EnableSagemakerServicecatalogPortfolioCommandOutput>;
2238
1294
  enableSagemakerServicecatalogPortfolio(args: EnableSagemakerServicecatalogPortfolioCommandInput, cb: (err: any, data?: EnableSagemakerServicecatalogPortfolioCommandOutput) => void): void;
2239
1295
  enableSagemakerServicecatalogPortfolio(args: EnableSagemakerServicecatalogPortfolioCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: EnableSagemakerServicecatalogPortfolioCommandOutput) => void): void;
2240
1296
  /**
2241
- * @public
2242
- * <p>Describes a fleet.</p>
1297
+ * @see {@link GetDeviceFleetReportCommand}
2243
1298
  */
2244
1299
  getDeviceFleetReport(args: GetDeviceFleetReportCommandInput, options?: __HttpHandlerOptions): Promise<GetDeviceFleetReportCommandOutput>;
2245
1300
  getDeviceFleetReport(args: GetDeviceFleetReportCommandInput, cb: (err: any, data?: GetDeviceFleetReportCommandOutput) => void): void;
2246
1301
  getDeviceFleetReport(args: GetDeviceFleetReportCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDeviceFleetReportCommandOutput) => void): void;
2247
1302
  /**
2248
- * @public
2249
- * <p>The resource policy for the lineage group.</p>
1303
+ * @see {@link GetLineageGroupPolicyCommand}
2250
1304
  */
2251
1305
  getLineageGroupPolicy(args: GetLineageGroupPolicyCommandInput, options?: __HttpHandlerOptions): Promise<GetLineageGroupPolicyCommandOutput>;
2252
1306
  getLineageGroupPolicy(args: GetLineageGroupPolicyCommandInput, cb: (err: any, data?: GetLineageGroupPolicyCommandOutput) => void): void;
2253
1307
  getLineageGroupPolicy(args: GetLineageGroupPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetLineageGroupPolicyCommandOutput) => void): void;
2254
1308
  /**
2255
- * @public
2256
- * <p>Gets a resource policy that manages access for a model group. For information about
2257
- * resource policies, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_identity-vs-resource.html">Identity-based
2258
- * policies and resource-based policies</a> in the <i>Amazon Web Services Identity and
2259
- * Access Management User Guide.</i>.</p>
1309
+ * @see {@link GetModelPackageGroupPolicyCommand}
2260
1310
  */
2261
1311
  getModelPackageGroupPolicy(args: GetModelPackageGroupPolicyCommandInput, options?: __HttpHandlerOptions): Promise<GetModelPackageGroupPolicyCommandOutput>;
2262
1312
  getModelPackageGroupPolicy(args: GetModelPackageGroupPolicyCommandInput, cb: (err: any, data?: GetModelPackageGroupPolicyCommandOutput) => void): void;
2263
1313
  getModelPackageGroupPolicy(args: GetModelPackageGroupPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetModelPackageGroupPolicyCommandOutput) => void): void;
2264
1314
  /**
2265
- * @public
2266
- * <p>Gets the status of Service Catalog in SageMaker. Service Catalog is used to create
2267
- * SageMaker projects.</p>
1315
+ * @see {@link GetSagemakerServicecatalogPortfolioStatusCommand}
2268
1316
  */
2269
1317
  getSagemakerServicecatalogPortfolioStatus(args: GetSagemakerServicecatalogPortfolioStatusCommandInput, options?: __HttpHandlerOptions): Promise<GetSagemakerServicecatalogPortfolioStatusCommandOutput>;
2270
1318
  getSagemakerServicecatalogPortfolioStatus(args: GetSagemakerServicecatalogPortfolioStatusCommandInput, cb: (err: any, data?: GetSagemakerServicecatalogPortfolioStatusCommandOutput) => void): void;
2271
1319
  getSagemakerServicecatalogPortfolioStatus(args: GetSagemakerServicecatalogPortfolioStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSagemakerServicecatalogPortfolioStatusCommandOutput) => void): void;
2272
1320
  /**
2273
- * @public
2274
- * <p>An auto-complete API for the search functionality in the SageMaker console. It returns
2275
- * suggestions of possible matches for the property name to use in <code>Search</code>
2276
- * queries. Provides suggestions for <code>HyperParameters</code>, <code>Tags</code>, and
2277
- * <code>Metrics</code>.</p>
1321
+ * @see {@link GetSearchSuggestionsCommand}
2278
1322
  */
2279
1323
  getSearchSuggestions(args: GetSearchSuggestionsCommandInput, options?: __HttpHandlerOptions): Promise<GetSearchSuggestionsCommandOutput>;
2280
1324
  getSearchSuggestions(args: GetSearchSuggestionsCommandInput, cb: (err: any, data?: GetSearchSuggestionsCommandOutput) => void): void;
2281
1325
  getSearchSuggestions(args: GetSearchSuggestionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSearchSuggestionsCommandOutput) => void): void;
2282
1326
  /**
2283
- * @public
2284
- * <p>Import hub content.</p>
2285
- * <note>
2286
- * <p>Hub APIs are only callable through SageMaker Studio.</p>
2287
- * </note>
1327
+ * @see {@link ImportHubContentCommand}
2288
1328
  */
2289
1329
  importHubContent(args: ImportHubContentCommandInput, options?: __HttpHandlerOptions): Promise<ImportHubContentCommandOutput>;
2290
1330
  importHubContent(args: ImportHubContentCommandInput, cb: (err: any, data?: ImportHubContentCommandOutput) => void): void;
2291
1331
  importHubContent(args: ImportHubContentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ImportHubContentCommandOutput) => void): void;
2292
1332
  /**
2293
- * @public
2294
- * <p>Lists the actions in your account and their properties.</p>
1333
+ * @see {@link ListActionsCommand}
2295
1334
  */
2296
1335
  listActions(args: ListActionsCommandInput, options?: __HttpHandlerOptions): Promise<ListActionsCommandOutput>;
2297
1336
  listActions(args: ListActionsCommandInput, cb: (err: any, data?: ListActionsCommandOutput) => void): void;
2298
1337
  listActions(args: ListActionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListActionsCommandOutput) => void): void;
2299
1338
  /**
2300
- * @public
2301
- * <p>Lists the machine learning algorithms that have been created.</p>
1339
+ * @see {@link ListAlgorithmsCommand}
2302
1340
  */
2303
1341
  listAlgorithms(args: ListAlgorithmsCommandInput, options?: __HttpHandlerOptions): Promise<ListAlgorithmsCommandOutput>;
2304
1342
  listAlgorithms(args: ListAlgorithmsCommandInput, cb: (err: any, data?: ListAlgorithmsCommandOutput) => void): void;
2305
1343
  listAlgorithms(args: ListAlgorithmsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAlgorithmsCommandOutput) => void): void;
2306
1344
  /**
2307
- * @public
2308
- * <p>Lists the aliases of a specified image or image version.</p>
1345
+ * @see {@link ListAliasesCommand}
2309
1346
  */
2310
1347
  listAliases(args: ListAliasesCommandInput, options?: __HttpHandlerOptions): Promise<ListAliasesCommandOutput>;
2311
1348
  listAliases(args: ListAliasesCommandInput, cb: (err: any, data?: ListAliasesCommandOutput) => void): void;
2312
1349
  listAliases(args: ListAliasesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAliasesCommandOutput) => void): void;
2313
1350
  /**
2314
- * @public
2315
- * <p>Lists the AppImageConfigs in your account and their properties. The list can be
2316
- * filtered by creation time or modified time, and whether the AppImageConfig name contains
2317
- * a specified string.</p>
1351
+ * @see {@link ListAppImageConfigsCommand}
2318
1352
  */
2319
1353
  listAppImageConfigs(args: ListAppImageConfigsCommandInput, options?: __HttpHandlerOptions): Promise<ListAppImageConfigsCommandOutput>;
2320
1354
  listAppImageConfigs(args: ListAppImageConfigsCommandInput, cb: (err: any, data?: ListAppImageConfigsCommandOutput) => void): void;
2321
1355
  listAppImageConfigs(args: ListAppImageConfigsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAppImageConfigsCommandOutput) => void): void;
2322
1356
  /**
2323
- * @public
2324
- * <p>Lists apps.</p>
1357
+ * @see {@link ListAppsCommand}
2325
1358
  */
2326
1359
  listApps(args: ListAppsCommandInput, options?: __HttpHandlerOptions): Promise<ListAppsCommandOutput>;
2327
1360
  listApps(args: ListAppsCommandInput, cb: (err: any, data?: ListAppsCommandOutput) => void): void;
2328
1361
  listApps(args: ListAppsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAppsCommandOutput) => void): void;
2329
1362
  /**
2330
- * @public
2331
- * <p>Lists the artifacts in your account and their properties.</p>
1363
+ * @see {@link ListArtifactsCommand}
2332
1364
  */
2333
1365
  listArtifacts(args: ListArtifactsCommandInput, options?: __HttpHandlerOptions): Promise<ListArtifactsCommandOutput>;
2334
1366
  listArtifacts(args: ListArtifactsCommandInput, cb: (err: any, data?: ListArtifactsCommandOutput) => void): void;
2335
1367
  listArtifacts(args: ListArtifactsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListArtifactsCommandOutput) => void): void;
2336
1368
  /**
2337
- * @public
2338
- * <p>Lists the associations in your account and their properties.</p>
1369
+ * @see {@link ListAssociationsCommand}
2339
1370
  */
2340
1371
  listAssociations(args: ListAssociationsCommandInput, options?: __HttpHandlerOptions): Promise<ListAssociationsCommandOutput>;
2341
1372
  listAssociations(args: ListAssociationsCommandInput, cb: (err: any, data?: ListAssociationsCommandOutput) => void): void;
2342
1373
  listAssociations(args: ListAssociationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAssociationsCommandOutput) => void): void;
2343
1374
  /**
2344
- * @public
2345
- * <p>Request a list of jobs.</p>
1375
+ * @see {@link ListAutoMLJobsCommand}
2346
1376
  */
2347
1377
  listAutoMLJobs(args: ListAutoMLJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListAutoMLJobsCommandOutput>;
2348
1378
  listAutoMLJobs(args: ListAutoMLJobsCommandInput, cb: (err: any, data?: ListAutoMLJobsCommandOutput) => void): void;
2349
1379
  listAutoMLJobs(args: ListAutoMLJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAutoMLJobsCommandOutput) => void): void;
2350
1380
  /**
2351
- * @public
2352
- * <p>List the candidates created for the job.</p>
1381
+ * @see {@link ListCandidatesForAutoMLJobCommand}
2353
1382
  */
2354
1383
  listCandidatesForAutoMLJob(args: ListCandidatesForAutoMLJobCommandInput, options?: __HttpHandlerOptions): Promise<ListCandidatesForAutoMLJobCommandOutput>;
2355
1384
  listCandidatesForAutoMLJob(args: ListCandidatesForAutoMLJobCommandInput, cb: (err: any, data?: ListCandidatesForAutoMLJobCommandOutput) => void): void;
2356
1385
  listCandidatesForAutoMLJob(args: ListCandidatesForAutoMLJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCandidatesForAutoMLJobCommandOutput) => void): void;
2357
1386
  /**
2358
- * @public
2359
- * <p>Gets a list of the Git repositories in your account.</p>
1387
+ * @see {@link ListCodeRepositoriesCommand}
2360
1388
  */
2361
1389
  listCodeRepositories(args: ListCodeRepositoriesCommandInput, options?: __HttpHandlerOptions): Promise<ListCodeRepositoriesCommandOutput>;
2362
1390
  listCodeRepositories(args: ListCodeRepositoriesCommandInput, cb: (err: any, data?: ListCodeRepositoriesCommandOutput) => void): void;
2363
1391
  listCodeRepositories(args: ListCodeRepositoriesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCodeRepositoriesCommandOutput) => void): void;
2364
1392
  /**
2365
- * @public
2366
- * <p>Lists model compilation jobs that satisfy various filters.</p>
2367
- * <p>To create a model compilation job, use <a>CreateCompilationJob</a>. To get
2368
- * information about a particular model compilation job you have created, use <a>DescribeCompilationJob</a>.</p>
1393
+ * @see {@link ListCompilationJobsCommand}
2369
1394
  */
2370
1395
  listCompilationJobs(args: ListCompilationJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListCompilationJobsCommandOutput>;
2371
1396
  listCompilationJobs(args: ListCompilationJobsCommandInput, cb: (err: any, data?: ListCompilationJobsCommandOutput) => void): void;
2372
1397
  listCompilationJobs(args: ListCompilationJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCompilationJobsCommandOutput) => void): void;
2373
1398
  /**
2374
- * @public
2375
- * <p>Lists the contexts in your account and their properties.</p>
1399
+ * @see {@link ListContextsCommand}
2376
1400
  */
2377
1401
  listContexts(args: ListContextsCommandInput, options?: __HttpHandlerOptions): Promise<ListContextsCommandOutput>;
2378
1402
  listContexts(args: ListContextsCommandInput, cb: (err: any, data?: ListContextsCommandOutput) => void): void;
2379
1403
  listContexts(args: ListContextsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListContextsCommandOutput) => void): void;
2380
1404
  /**
2381
- * @public
2382
- * <p>Lists the data quality job definitions in your account.</p>
1405
+ * @see {@link ListDataQualityJobDefinitionsCommand}
2383
1406
  */
2384
1407
  listDataQualityJobDefinitions(args: ListDataQualityJobDefinitionsCommandInput, options?: __HttpHandlerOptions): Promise<ListDataQualityJobDefinitionsCommandOutput>;
2385
1408
  listDataQualityJobDefinitions(args: ListDataQualityJobDefinitionsCommandInput, cb: (err: any, data?: ListDataQualityJobDefinitionsCommandOutput) => void): void;
2386
1409
  listDataQualityJobDefinitions(args: ListDataQualityJobDefinitionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDataQualityJobDefinitionsCommandOutput) => void): void;
2387
1410
  /**
2388
- * @public
2389
- * <p>Returns a list of devices in the fleet.</p>
1411
+ * @see {@link ListDeviceFleetsCommand}
2390
1412
  */
2391
1413
  listDeviceFleets(args: ListDeviceFleetsCommandInput, options?: __HttpHandlerOptions): Promise<ListDeviceFleetsCommandOutput>;
2392
1414
  listDeviceFleets(args: ListDeviceFleetsCommandInput, cb: (err: any, data?: ListDeviceFleetsCommandOutput) => void): void;
2393
1415
  listDeviceFleets(args: ListDeviceFleetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDeviceFleetsCommandOutput) => void): void;
2394
1416
  /**
2395
- * @public
2396
- * <p>A list of devices.</p>
1417
+ * @see {@link ListDevicesCommand}
2397
1418
  */
2398
1419
  listDevices(args: ListDevicesCommandInput, options?: __HttpHandlerOptions): Promise<ListDevicesCommandOutput>;
2399
1420
  listDevices(args: ListDevicesCommandInput, cb: (err: any, data?: ListDevicesCommandOutput) => void): void;
2400
1421
  listDevices(args: ListDevicesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDevicesCommandOutput) => void): void;
2401
1422
  /**
2402
- * @public
2403
- * <p>Lists the domains.</p>
1423
+ * @see {@link ListDomainsCommand}
2404
1424
  */
2405
1425
  listDomains(args: ListDomainsCommandInput, options?: __HttpHandlerOptions): Promise<ListDomainsCommandOutput>;
2406
1426
  listDomains(args: ListDomainsCommandInput, cb: (err: any, data?: ListDomainsCommandOutput) => void): void;
2407
1427
  listDomains(args: ListDomainsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDomainsCommandOutput) => void): void;
2408
1428
  /**
2409
- * @public
2410
- * <p>Lists all edge deployment plans.</p>
1429
+ * @see {@link ListEdgeDeploymentPlansCommand}
2411
1430
  */
2412
1431
  listEdgeDeploymentPlans(args: ListEdgeDeploymentPlansCommandInput, options?: __HttpHandlerOptions): Promise<ListEdgeDeploymentPlansCommandOutput>;
2413
1432
  listEdgeDeploymentPlans(args: ListEdgeDeploymentPlansCommandInput, cb: (err: any, data?: ListEdgeDeploymentPlansCommandOutput) => void): void;
2414
1433
  listEdgeDeploymentPlans(args: ListEdgeDeploymentPlansCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEdgeDeploymentPlansCommandOutput) => void): void;
2415
1434
  /**
2416
- * @public
2417
- * <p>Returns a list of edge packaging jobs.</p>
1435
+ * @see {@link ListEdgePackagingJobsCommand}
2418
1436
  */
2419
1437
  listEdgePackagingJobs(args: ListEdgePackagingJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListEdgePackagingJobsCommandOutput>;
2420
1438
  listEdgePackagingJobs(args: ListEdgePackagingJobsCommandInput, cb: (err: any, data?: ListEdgePackagingJobsCommandOutput) => void): void;
2421
1439
  listEdgePackagingJobs(args: ListEdgePackagingJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEdgePackagingJobsCommandOutput) => void): void;
2422
1440
  /**
2423
- * @public
2424
- * <p>Lists endpoint configurations.</p>
1441
+ * @see {@link ListEndpointConfigsCommand}
2425
1442
  */
2426
1443
  listEndpointConfigs(args: ListEndpointConfigsCommandInput, options?: __HttpHandlerOptions): Promise<ListEndpointConfigsCommandOutput>;
2427
1444
  listEndpointConfigs(args: ListEndpointConfigsCommandInput, cb: (err: any, data?: ListEndpointConfigsCommandOutput) => void): void;
2428
1445
  listEndpointConfigs(args: ListEndpointConfigsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEndpointConfigsCommandOutput) => void): void;
2429
1446
  /**
2430
- * @public
2431
- * <p>Lists endpoints.</p>
1447
+ * @see {@link ListEndpointsCommand}
2432
1448
  */
2433
1449
  listEndpoints(args: ListEndpointsCommandInput, options?: __HttpHandlerOptions): Promise<ListEndpointsCommandOutput>;
2434
1450
  listEndpoints(args: ListEndpointsCommandInput, cb: (err: any, data?: ListEndpointsCommandOutput) => void): void;
2435
1451
  listEndpoints(args: ListEndpointsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEndpointsCommandOutput) => void): void;
2436
1452
  /**
2437
- * @public
2438
- * <p>Lists all the experiments in your account. The list can be filtered to show only
2439
- * experiments that were created in a specific time range. The list can be sorted by experiment
2440
- * name or creation time.</p>
1453
+ * @see {@link ListExperimentsCommand}
2441
1454
  */
2442
1455
  listExperiments(args: ListExperimentsCommandInput, options?: __HttpHandlerOptions): Promise<ListExperimentsCommandOutput>;
2443
1456
  listExperiments(args: ListExperimentsCommandInput, cb: (err: any, data?: ListExperimentsCommandOutput) => void): void;
2444
1457
  listExperiments(args: ListExperimentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListExperimentsCommandOutput) => void): void;
2445
1458
  /**
2446
- * @public
2447
- * <p>List <code>FeatureGroup</code>s based on given filter and order.</p>
1459
+ * @see {@link ListFeatureGroupsCommand}
2448
1460
  */
2449
1461
  listFeatureGroups(args: ListFeatureGroupsCommandInput, options?: __HttpHandlerOptions): Promise<ListFeatureGroupsCommandOutput>;
2450
1462
  listFeatureGroups(args: ListFeatureGroupsCommandInput, cb: (err: any, data?: ListFeatureGroupsCommandOutput) => void): void;
2451
1463
  listFeatureGroups(args: ListFeatureGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFeatureGroupsCommandOutput) => void): void;
2452
1464
  /**
2453
- * @public
2454
- * <p>Returns information about the flow definitions in your account.</p>
1465
+ * @see {@link ListFlowDefinitionsCommand}
2455
1466
  */
2456
1467
  listFlowDefinitions(args: ListFlowDefinitionsCommandInput, options?: __HttpHandlerOptions): Promise<ListFlowDefinitionsCommandOutput>;
2457
1468
  listFlowDefinitions(args: ListFlowDefinitionsCommandInput, cb: (err: any, data?: ListFlowDefinitionsCommandOutput) => void): void;
2458
1469
  listFlowDefinitions(args: ListFlowDefinitionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFlowDefinitionsCommandOutput) => void): void;
2459
1470
  /**
2460
- * @public
2461
- * <p>List the contents of a hub.</p>
2462
- * <note>
2463
- * <p>Hub APIs are only callable through SageMaker Studio.</p>
2464
- * </note>
1471
+ * @see {@link ListHubContentsCommand}
2465
1472
  */
2466
1473
  listHubContents(args: ListHubContentsCommandInput, options?: __HttpHandlerOptions): Promise<ListHubContentsCommandOutput>;
2467
1474
  listHubContents(args: ListHubContentsCommandInput, cb: (err: any, data?: ListHubContentsCommandOutput) => void): void;
2468
1475
  listHubContents(args: ListHubContentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListHubContentsCommandOutput) => void): void;
2469
1476
  /**
2470
- * @public
2471
- * <p>List hub content versions.</p>
2472
- * <note>
2473
- * <p>Hub APIs are only callable through SageMaker Studio.</p>
2474
- * </note>
1477
+ * @see {@link ListHubContentVersionsCommand}
2475
1478
  */
2476
1479
  listHubContentVersions(args: ListHubContentVersionsCommandInput, options?: __HttpHandlerOptions): Promise<ListHubContentVersionsCommandOutput>;
2477
1480
  listHubContentVersions(args: ListHubContentVersionsCommandInput, cb: (err: any, data?: ListHubContentVersionsCommandOutput) => void): void;
2478
1481
  listHubContentVersions(args: ListHubContentVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListHubContentVersionsCommandOutput) => void): void;
2479
1482
  /**
2480
- * @public
2481
- * <p>List all existing hubs.</p>
2482
- * <note>
2483
- * <p>Hub APIs are only callable through SageMaker Studio.</p>
2484
- * </note>
1483
+ * @see {@link ListHubsCommand}
2485
1484
  */
2486
1485
  listHubs(args: ListHubsCommandInput, options?: __HttpHandlerOptions): Promise<ListHubsCommandOutput>;
2487
1486
  listHubs(args: ListHubsCommandInput, cb: (err: any, data?: ListHubsCommandOutput) => void): void;
2488
1487
  listHubs(args: ListHubsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListHubsCommandOutput) => void): void;
2489
1488
  /**
2490
- * @public
2491
- * <p>Returns information about the human task user interfaces in your account.</p>
1489
+ * @see {@link ListHumanTaskUisCommand}
2492
1490
  */
2493
1491
  listHumanTaskUis(args: ListHumanTaskUisCommandInput, options?: __HttpHandlerOptions): Promise<ListHumanTaskUisCommandOutput>;
2494
1492
  listHumanTaskUis(args: ListHumanTaskUisCommandInput, cb: (err: any, data?: ListHumanTaskUisCommandOutput) => void): void;
2495
1493
  listHumanTaskUis(args: ListHumanTaskUisCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListHumanTaskUisCommandOutput) => void): void;
2496
1494
  /**
2497
- * @public
2498
- * <p>Gets a list of <a>HyperParameterTuningJobSummary</a> objects that
2499
- * describe
2500
- * the hyperparameter tuning jobs launched in your account.</p>
1495
+ * @see {@link ListHyperParameterTuningJobsCommand}
2501
1496
  */
2502
1497
  listHyperParameterTuningJobs(args: ListHyperParameterTuningJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListHyperParameterTuningJobsCommandOutput>;
2503
1498
  listHyperParameterTuningJobs(args: ListHyperParameterTuningJobsCommandInput, cb: (err: any, data?: ListHyperParameterTuningJobsCommandOutput) => void): void;
2504
1499
  listHyperParameterTuningJobs(args: ListHyperParameterTuningJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListHyperParameterTuningJobsCommandOutput) => void): void;
2505
1500
  /**
2506
- * @public
2507
- * <p>Lists the images in your account and their properties. The list can be filtered by
2508
- * creation time or modified time, and whether the image name contains a specified string.</p>
1501
+ * @see {@link ListImagesCommand}
2509
1502
  */
2510
1503
  listImages(args: ListImagesCommandInput, options?: __HttpHandlerOptions): Promise<ListImagesCommandOutput>;
2511
1504
  listImages(args: ListImagesCommandInput, cb: (err: any, data?: ListImagesCommandOutput) => void): void;
2512
1505
  listImages(args: ListImagesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListImagesCommandOutput) => void): void;
2513
1506
  /**
2514
- * @public
2515
- * <p>Lists the versions of a specified image and their properties. The list can be filtered
2516
- * by creation time or modified time.</p>
1507
+ * @see {@link ListImageVersionsCommand}
2517
1508
  */
2518
1509
  listImageVersions(args: ListImageVersionsCommandInput, options?: __HttpHandlerOptions): Promise<ListImageVersionsCommandOutput>;
2519
1510
  listImageVersions(args: ListImageVersionsCommandInput, cb: (err: any, data?: ListImageVersionsCommandOutput) => void): void;
2520
1511
  listImageVersions(args: ListImageVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListImageVersionsCommandOutput) => void): void;
2521
1512
  /**
2522
- * @public
2523
- * <p>Returns the list of all inference experiments.</p>
1513
+ * @see {@link ListInferenceExperimentsCommand}
2524
1514
  */
2525
1515
  listInferenceExperiments(args: ListInferenceExperimentsCommandInput, options?: __HttpHandlerOptions): Promise<ListInferenceExperimentsCommandOutput>;
2526
1516
  listInferenceExperiments(args: ListInferenceExperimentsCommandInput, cb: (err: any, data?: ListInferenceExperimentsCommandOutput) => void): void;
2527
1517
  listInferenceExperiments(args: ListInferenceExperimentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListInferenceExperimentsCommandOutput) => void): void;
2528
1518
  /**
2529
- * @public
2530
- * <p>Lists recommendation jobs that satisfy various filters.</p>
1519
+ * @see {@link ListInferenceRecommendationsJobsCommand}
2531
1520
  */
2532
1521
  listInferenceRecommendationsJobs(args: ListInferenceRecommendationsJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListInferenceRecommendationsJobsCommandOutput>;
2533
1522
  listInferenceRecommendationsJobs(args: ListInferenceRecommendationsJobsCommandInput, cb: (err: any, data?: ListInferenceRecommendationsJobsCommandOutput) => void): void;
2534
1523
  listInferenceRecommendationsJobs(args: ListInferenceRecommendationsJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListInferenceRecommendationsJobsCommandOutput) => void): void;
2535
1524
  /**
2536
- * @public
2537
- * <p>Returns a list of the subtasks for an Inference Recommender job.</p>
2538
- * <p>The supported subtasks are benchmarks, which evaluate the performance of your model on different instance types.</p>
1525
+ * @see {@link ListInferenceRecommendationsJobStepsCommand}
2539
1526
  */
2540
1527
  listInferenceRecommendationsJobSteps(args: ListInferenceRecommendationsJobStepsCommandInput, options?: __HttpHandlerOptions): Promise<ListInferenceRecommendationsJobStepsCommandOutput>;
2541
1528
  listInferenceRecommendationsJobSteps(args: ListInferenceRecommendationsJobStepsCommandInput, cb: (err: any, data?: ListInferenceRecommendationsJobStepsCommandOutput) => void): void;
2542
1529
  listInferenceRecommendationsJobSteps(args: ListInferenceRecommendationsJobStepsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListInferenceRecommendationsJobStepsCommandOutput) => void): void;
2543
1530
  /**
2544
- * @public
2545
- * <p>Gets a list of labeling jobs.</p>
1531
+ * @see {@link ListLabelingJobsCommand}
2546
1532
  */
2547
1533
  listLabelingJobs(args: ListLabelingJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListLabelingJobsCommandOutput>;
2548
1534
  listLabelingJobs(args: ListLabelingJobsCommandInput, cb: (err: any, data?: ListLabelingJobsCommandOutput) => void): void;
2549
1535
  listLabelingJobs(args: ListLabelingJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListLabelingJobsCommandOutput) => void): void;
2550
1536
  /**
2551
- * @public
2552
- * <p>Gets a list of labeling jobs assigned to a specified work team.</p>
1537
+ * @see {@link ListLabelingJobsForWorkteamCommand}
2553
1538
  */
2554
1539
  listLabelingJobsForWorkteam(args: ListLabelingJobsForWorkteamCommandInput, options?: __HttpHandlerOptions): Promise<ListLabelingJobsForWorkteamCommandOutput>;
2555
1540
  listLabelingJobsForWorkteam(args: ListLabelingJobsForWorkteamCommandInput, cb: (err: any, data?: ListLabelingJobsForWorkteamCommandOutput) => void): void;
2556
1541
  listLabelingJobsForWorkteam(args: ListLabelingJobsForWorkteamCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListLabelingJobsForWorkteamCommandOutput) => void): void;
2557
1542
  /**
2558
- * @public
2559
- * <p>A list of lineage groups shared with your Amazon Web Services account.
2560
- * For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/xaccount-lineage-tracking.html">
2561
- * Cross-Account Lineage Tracking </a> in the <i>Amazon SageMaker Developer Guide</i>.</p>
1543
+ * @see {@link ListLineageGroupsCommand}
2562
1544
  */
2563
1545
  listLineageGroups(args: ListLineageGroupsCommandInput, options?: __HttpHandlerOptions): Promise<ListLineageGroupsCommandOutput>;
2564
1546
  listLineageGroups(args: ListLineageGroupsCommandInput, cb: (err: any, data?: ListLineageGroupsCommandOutput) => void): void;
2565
1547
  listLineageGroups(args: ListLineageGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListLineageGroupsCommandOutput) => void): void;
2566
1548
  /**
2567
- * @public
2568
- * <p>Lists model bias jobs definitions that satisfy various filters.</p>
1549
+ * @see {@link ListModelBiasJobDefinitionsCommand}
2569
1550
  */
2570
1551
  listModelBiasJobDefinitions(args: ListModelBiasJobDefinitionsCommandInput, options?: __HttpHandlerOptions): Promise<ListModelBiasJobDefinitionsCommandOutput>;
2571
1552
  listModelBiasJobDefinitions(args: ListModelBiasJobDefinitionsCommandInput, cb: (err: any, data?: ListModelBiasJobDefinitionsCommandOutput) => void): void;
2572
1553
  listModelBiasJobDefinitions(args: ListModelBiasJobDefinitionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListModelBiasJobDefinitionsCommandOutput) => void): void;
2573
1554
  /**
2574
- * @public
2575
- * <p>List the export jobs for the Amazon SageMaker Model Card.</p>
1555
+ * @see {@link ListModelCardExportJobsCommand}
2576
1556
  */
2577
1557
  listModelCardExportJobs(args: ListModelCardExportJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListModelCardExportJobsCommandOutput>;
2578
1558
  listModelCardExportJobs(args: ListModelCardExportJobsCommandInput, cb: (err: any, data?: ListModelCardExportJobsCommandOutput) => void): void;
2579
1559
  listModelCardExportJobs(args: ListModelCardExportJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListModelCardExportJobsCommandOutput) => void): void;
2580
1560
  /**
2581
- * @public
2582
- * <p>List existing model cards.</p>
1561
+ * @see {@link ListModelCardsCommand}
2583
1562
  */
2584
1563
  listModelCards(args: ListModelCardsCommandInput, options?: __HttpHandlerOptions): Promise<ListModelCardsCommandOutput>;
2585
1564
  listModelCards(args: ListModelCardsCommandInput, cb: (err: any, data?: ListModelCardsCommandOutput) => void): void;
2586
1565
  listModelCards(args: ListModelCardsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListModelCardsCommandOutput) => void): void;
2587
1566
  /**
2588
- * @public
2589
- * <p>List existing versions of an Amazon SageMaker Model Card.</p>
1567
+ * @see {@link ListModelCardVersionsCommand}
2590
1568
  */
2591
1569
  listModelCardVersions(args: ListModelCardVersionsCommandInput, options?: __HttpHandlerOptions): Promise<ListModelCardVersionsCommandOutput>;
2592
1570
  listModelCardVersions(args: ListModelCardVersionsCommandInput, cb: (err: any, data?: ListModelCardVersionsCommandOutput) => void): void;
2593
1571
  listModelCardVersions(args: ListModelCardVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListModelCardVersionsCommandOutput) => void): void;
2594
1572
  /**
2595
- * @public
2596
- * <p>Lists model explainability job definitions that satisfy various filters.</p>
1573
+ * @see {@link ListModelExplainabilityJobDefinitionsCommand}
2597
1574
  */
2598
1575
  listModelExplainabilityJobDefinitions(args: ListModelExplainabilityJobDefinitionsCommandInput, options?: __HttpHandlerOptions): Promise<ListModelExplainabilityJobDefinitionsCommandOutput>;
2599
1576
  listModelExplainabilityJobDefinitions(args: ListModelExplainabilityJobDefinitionsCommandInput, cb: (err: any, data?: ListModelExplainabilityJobDefinitionsCommandOutput) => void): void;
2600
1577
  listModelExplainabilityJobDefinitions(args: ListModelExplainabilityJobDefinitionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListModelExplainabilityJobDefinitionsCommandOutput) => void): void;
2601
1578
  /**
2602
- * @public
2603
- * <p>Lists the domain, framework, task, and model name of standard
2604
- * machine learning models found in common model zoos.</p>
1579
+ * @see {@link ListModelMetadataCommand}
2605
1580
  */
2606
1581
  listModelMetadata(args: ListModelMetadataCommandInput, options?: __HttpHandlerOptions): Promise<ListModelMetadataCommandOutput>;
2607
1582
  listModelMetadata(args: ListModelMetadataCommandInput, cb: (err: any, data?: ListModelMetadataCommandOutput) => void): void;
2608
1583
  listModelMetadata(args: ListModelMetadataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListModelMetadataCommandOutput) => void): void;
2609
1584
  /**
2610
- * @public
2611
- * <p>Gets a list of the model groups in your Amazon Web Services account.</p>
1585
+ * @see {@link ListModelPackageGroupsCommand}
2612
1586
  */
2613
1587
  listModelPackageGroups(args: ListModelPackageGroupsCommandInput, options?: __HttpHandlerOptions): Promise<ListModelPackageGroupsCommandOutput>;
2614
1588
  listModelPackageGroups(args: ListModelPackageGroupsCommandInput, cb: (err: any, data?: ListModelPackageGroupsCommandOutput) => void): void;
2615
1589
  listModelPackageGroups(args: ListModelPackageGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListModelPackageGroupsCommandOutput) => void): void;
2616
1590
  /**
2617
- * @public
2618
- * <p>Lists the model packages that have been created.</p>
1591
+ * @see {@link ListModelPackagesCommand}
2619
1592
  */
2620
1593
  listModelPackages(args: ListModelPackagesCommandInput, options?: __HttpHandlerOptions): Promise<ListModelPackagesCommandOutput>;
2621
1594
  listModelPackages(args: ListModelPackagesCommandInput, cb: (err: any, data?: ListModelPackagesCommandOutput) => void): void;
2622
1595
  listModelPackages(args: ListModelPackagesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListModelPackagesCommandOutput) => void): void;
2623
1596
  /**
2624
- * @public
2625
- * <p>Gets a list of model quality monitoring job definitions in your account.</p>
1597
+ * @see {@link ListModelQualityJobDefinitionsCommand}
2626
1598
  */
2627
1599
  listModelQualityJobDefinitions(args: ListModelQualityJobDefinitionsCommandInput, options?: __HttpHandlerOptions): Promise<ListModelQualityJobDefinitionsCommandOutput>;
2628
1600
  listModelQualityJobDefinitions(args: ListModelQualityJobDefinitionsCommandInput, cb: (err: any, data?: ListModelQualityJobDefinitionsCommandOutput) => void): void;
2629
1601
  listModelQualityJobDefinitions(args: ListModelQualityJobDefinitionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListModelQualityJobDefinitionsCommandOutput) => void): void;
2630
1602
  /**
2631
- * @public
2632
- * <p>Lists models created with the <code>CreateModel</code> API.</p>
1603
+ * @see {@link ListModelsCommand}
2633
1604
  */
2634
1605
  listModels(args: ListModelsCommandInput, options?: __HttpHandlerOptions): Promise<ListModelsCommandOutput>;
2635
1606
  listModels(args: ListModelsCommandInput, cb: (err: any, data?: ListModelsCommandOutput) => void): void;
2636
1607
  listModels(args: ListModelsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListModelsCommandOutput) => void): void;
2637
1608
  /**
2638
- * @public
2639
- * <p>Gets a list of past alerts in a model monitoring schedule.</p>
1609
+ * @see {@link ListMonitoringAlertHistoryCommand}
2640
1610
  */
2641
1611
  listMonitoringAlertHistory(args: ListMonitoringAlertHistoryCommandInput, options?: __HttpHandlerOptions): Promise<ListMonitoringAlertHistoryCommandOutput>;
2642
1612
  listMonitoringAlertHistory(args: ListMonitoringAlertHistoryCommandInput, cb: (err: any, data?: ListMonitoringAlertHistoryCommandOutput) => void): void;
2643
1613
  listMonitoringAlertHistory(args: ListMonitoringAlertHistoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListMonitoringAlertHistoryCommandOutput) => void): void;
2644
1614
  /**
2645
- * @public
2646
- * <p>Gets the alerts for a single monitoring schedule.</p>
1615
+ * @see {@link ListMonitoringAlertsCommand}
2647
1616
  */
2648
1617
  listMonitoringAlerts(args: ListMonitoringAlertsCommandInput, options?: __HttpHandlerOptions): Promise<ListMonitoringAlertsCommandOutput>;
2649
1618
  listMonitoringAlerts(args: ListMonitoringAlertsCommandInput, cb: (err: any, data?: ListMonitoringAlertsCommandOutput) => void): void;
2650
1619
  listMonitoringAlerts(args: ListMonitoringAlertsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListMonitoringAlertsCommandOutput) => void): void;
2651
1620
  /**
2652
- * @public
2653
- * <p>Returns list of all monitoring job executions.</p>
1621
+ * @see {@link ListMonitoringExecutionsCommand}
2654
1622
  */
2655
1623
  listMonitoringExecutions(args: ListMonitoringExecutionsCommandInput, options?: __HttpHandlerOptions): Promise<ListMonitoringExecutionsCommandOutput>;
2656
1624
  listMonitoringExecutions(args: ListMonitoringExecutionsCommandInput, cb: (err: any, data?: ListMonitoringExecutionsCommandOutput) => void): void;
2657
1625
  listMonitoringExecutions(args: ListMonitoringExecutionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListMonitoringExecutionsCommandOutput) => void): void;
2658
1626
  /**
2659
- * @public
2660
- * <p>Returns list of all monitoring schedules.</p>
1627
+ * @see {@link ListMonitoringSchedulesCommand}
2661
1628
  */
2662
1629
  listMonitoringSchedules(args: ListMonitoringSchedulesCommandInput, options?: __HttpHandlerOptions): Promise<ListMonitoringSchedulesCommandOutput>;
2663
1630
  listMonitoringSchedules(args: ListMonitoringSchedulesCommandInput, cb: (err: any, data?: ListMonitoringSchedulesCommandOutput) => void): void;
2664
1631
  listMonitoringSchedules(args: ListMonitoringSchedulesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListMonitoringSchedulesCommandOutput) => void): void;
2665
1632
  /**
2666
- * @public
2667
- * <p>Lists notebook instance lifestyle configurations created with the <a>CreateNotebookInstanceLifecycleConfig</a> API.</p>
1633
+ * @see {@link ListNotebookInstanceLifecycleConfigsCommand}
2668
1634
  */
2669
1635
  listNotebookInstanceLifecycleConfigs(args: ListNotebookInstanceLifecycleConfigsCommandInput, options?: __HttpHandlerOptions): Promise<ListNotebookInstanceLifecycleConfigsCommandOutput>;
2670
1636
  listNotebookInstanceLifecycleConfigs(args: ListNotebookInstanceLifecycleConfigsCommandInput, cb: (err: any, data?: ListNotebookInstanceLifecycleConfigsCommandOutput) => void): void;
2671
1637
  listNotebookInstanceLifecycleConfigs(args: ListNotebookInstanceLifecycleConfigsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListNotebookInstanceLifecycleConfigsCommandOutput) => void): void;
2672
1638
  /**
2673
- * @public
2674
- * <p>Returns a list of the SageMaker notebook instances in the requester's account in an
2675
- * Amazon Web Services Region. </p>
1639
+ * @see {@link ListNotebookInstancesCommand}
2676
1640
  */
2677
1641
  listNotebookInstances(args: ListNotebookInstancesCommandInput, options?: __HttpHandlerOptions): Promise<ListNotebookInstancesCommandOutput>;
2678
1642
  listNotebookInstances(args: ListNotebookInstancesCommandInput, cb: (err: any, data?: ListNotebookInstancesCommandOutput) => void): void;
2679
1643
  listNotebookInstances(args: ListNotebookInstancesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListNotebookInstancesCommandOutput) => void): void;
2680
1644
  /**
2681
- * @public
2682
- * <p>Gets a list of the pipeline executions.</p>
1645
+ * @see {@link ListPipelineExecutionsCommand}
2683
1646
  */
2684
1647
  listPipelineExecutions(args: ListPipelineExecutionsCommandInput, options?: __HttpHandlerOptions): Promise<ListPipelineExecutionsCommandOutput>;
2685
1648
  listPipelineExecutions(args: ListPipelineExecutionsCommandInput, cb: (err: any, data?: ListPipelineExecutionsCommandOutput) => void): void;
2686
1649
  listPipelineExecutions(args: ListPipelineExecutionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPipelineExecutionsCommandOutput) => void): void;
2687
1650
  /**
2688
- * @public
2689
- * <p>Gets a list of <code>PipeLineExecutionStep</code> objects.</p>
1651
+ * @see {@link ListPipelineExecutionStepsCommand}
2690
1652
  */
2691
1653
  listPipelineExecutionSteps(args: ListPipelineExecutionStepsCommandInput, options?: __HttpHandlerOptions): Promise<ListPipelineExecutionStepsCommandOutput>;
2692
1654
  listPipelineExecutionSteps(args: ListPipelineExecutionStepsCommandInput, cb: (err: any, data?: ListPipelineExecutionStepsCommandOutput) => void): void;
2693
1655
  listPipelineExecutionSteps(args: ListPipelineExecutionStepsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPipelineExecutionStepsCommandOutput) => void): void;
2694
1656
  /**
2695
- * @public
2696
- * <p>Gets a list of parameters for a pipeline execution.</p>
1657
+ * @see {@link ListPipelineParametersForExecutionCommand}
2697
1658
  */
2698
1659
  listPipelineParametersForExecution(args: ListPipelineParametersForExecutionCommandInput, options?: __HttpHandlerOptions): Promise<ListPipelineParametersForExecutionCommandOutput>;
2699
1660
  listPipelineParametersForExecution(args: ListPipelineParametersForExecutionCommandInput, cb: (err: any, data?: ListPipelineParametersForExecutionCommandOutput) => void): void;
2700
1661
  listPipelineParametersForExecution(args: ListPipelineParametersForExecutionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPipelineParametersForExecutionCommandOutput) => void): void;
2701
1662
  /**
2702
- * @public
2703
- * <p>Gets a list of pipelines.</p>
1663
+ * @see {@link ListPipelinesCommand}
2704
1664
  */
2705
1665
  listPipelines(args: ListPipelinesCommandInput, options?: __HttpHandlerOptions): Promise<ListPipelinesCommandOutput>;
2706
1666
  listPipelines(args: ListPipelinesCommandInput, cb: (err: any, data?: ListPipelinesCommandOutput) => void): void;
2707
1667
  listPipelines(args: ListPipelinesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPipelinesCommandOutput) => void): void;
2708
1668
  /**
2709
- * @public
2710
- * <p>Lists processing jobs that satisfy various filters.</p>
1669
+ * @see {@link ListProcessingJobsCommand}
2711
1670
  */
2712
1671
  listProcessingJobs(args: ListProcessingJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListProcessingJobsCommandOutput>;
2713
1672
  listProcessingJobs(args: ListProcessingJobsCommandInput, cb: (err: any, data?: ListProcessingJobsCommandOutput) => void): void;
2714
1673
  listProcessingJobs(args: ListProcessingJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListProcessingJobsCommandOutput) => void): void;
2715
1674
  /**
2716
- * @public
2717
- * <p>Gets a list of the projects in an Amazon Web Services account.</p>
1675
+ * @see {@link ListProjectsCommand}
2718
1676
  */
2719
1677
  listProjects(args: ListProjectsCommandInput, options?: __HttpHandlerOptions): Promise<ListProjectsCommandOutput>;
2720
1678
  listProjects(args: ListProjectsCommandInput, cb: (err: any, data?: ListProjectsCommandOutput) => void): void;
2721
1679
  listProjects(args: ListProjectsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListProjectsCommandOutput) => void): void;
2722
1680
  /**
2723
- * @public
2724
- * <p>Lists spaces.</p>
1681
+ * @see {@link ListSpacesCommand}
2725
1682
  */
2726
1683
  listSpaces(args: ListSpacesCommandInput, options?: __HttpHandlerOptions): Promise<ListSpacesCommandOutput>;
2727
1684
  listSpaces(args: ListSpacesCommandInput, cb: (err: any, data?: ListSpacesCommandOutput) => void): void;
2728
1685
  listSpaces(args: ListSpacesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSpacesCommandOutput) => void): void;
2729
1686
  /**
2730
- * @public
2731
- * <p>Lists devices allocated to the stage, containing detailed device information and deployment status.</p>
1687
+ * @see {@link ListStageDevicesCommand}
2732
1688
  */
2733
1689
  listStageDevices(args: ListStageDevicesCommandInput, options?: __HttpHandlerOptions): Promise<ListStageDevicesCommandOutput>;
2734
1690
  listStageDevices(args: ListStageDevicesCommandInput, cb: (err: any, data?: ListStageDevicesCommandOutput) => void): void;
2735
1691
  listStageDevices(args: ListStageDevicesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListStageDevicesCommandOutput) => void): void;
2736
1692
  /**
2737
- * @public
2738
- * <p>Lists the Studio Lifecycle Configurations in your Amazon Web Services Account.</p>
1693
+ * @see {@link ListStudioLifecycleConfigsCommand}
2739
1694
  */
2740
1695
  listStudioLifecycleConfigs(args: ListStudioLifecycleConfigsCommandInput, options?: __HttpHandlerOptions): Promise<ListStudioLifecycleConfigsCommandOutput>;
2741
1696
  listStudioLifecycleConfigs(args: ListStudioLifecycleConfigsCommandInput, cb: (err: any, data?: ListStudioLifecycleConfigsCommandOutput) => void): void;
2742
1697
  listStudioLifecycleConfigs(args: ListStudioLifecycleConfigsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListStudioLifecycleConfigsCommandOutput) => void): void;
2743
1698
  /**
2744
- * @public
2745
- * <p>Gets a list of the work teams that you are subscribed to in the Amazon Web Services Marketplace. The
2746
- * list may be empty if no work team satisfies the filter specified in the
2747
- * <code>NameContains</code> parameter.</p>
1699
+ * @see {@link ListSubscribedWorkteamsCommand}
2748
1700
  */
2749
1701
  listSubscribedWorkteams(args: ListSubscribedWorkteamsCommandInput, options?: __HttpHandlerOptions): Promise<ListSubscribedWorkteamsCommandOutput>;
2750
1702
  listSubscribedWorkteams(args: ListSubscribedWorkteamsCommandInput, cb: (err: any, data?: ListSubscribedWorkteamsCommandOutput) => void): void;
2751
1703
  listSubscribedWorkteams(args: ListSubscribedWorkteamsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSubscribedWorkteamsCommandOutput) => void): void;
2752
1704
  /**
2753
- * @public
2754
- * <p>Returns the tags for the specified SageMaker resource.</p>
1705
+ * @see {@link ListTagsCommand}
2755
1706
  */
2756
1707
  listTags(args: ListTagsCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsCommandOutput>;
2757
1708
  listTags(args: ListTagsCommandInput, cb: (err: any, data?: ListTagsCommandOutput) => void): void;
2758
1709
  listTags(args: ListTagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsCommandOutput) => void): void;
2759
1710
  /**
2760
- * @public
2761
- * <p>Lists training jobs.</p>
2762
- * <note>
2763
- * <p>When <code>StatusEquals</code> and <code>MaxResults</code> are set at the same
2764
- * time, the <code>MaxResults</code> number of training jobs are first retrieved
2765
- * ignoring the <code>StatusEquals</code> parameter and then they are filtered by the
2766
- * <code>StatusEquals</code> parameter, which is returned as a response.</p>
2767
- * <p>For example, if <code>ListTrainingJobs</code> is invoked with the following
2768
- * parameters:</p>
2769
- * <p>
2770
- * <code>\{ ... MaxResults: 100, StatusEquals: InProgress ... \}</code>
2771
- * </p>
2772
- * <p>First, 100 trainings jobs with any status, including those other than
2773
- * <code>InProgress</code>, are selected (sorted according to the creation time,
2774
- * from the most current to the oldest). Next, those with a status of
2775
- * <code>InProgress</code> are returned.</p>
2776
- * <p>You can quickly test the API using the following Amazon Web Services CLI
2777
- * code.</p>
2778
- * <p>
2779
- * <code>aws sagemaker list-training-jobs --max-results 100 --status-equals
2780
- * InProgress</code>
2781
- * </p>
2782
- * </note>
1711
+ * @see {@link ListTrainingJobsCommand}
2783
1712
  */
2784
1713
  listTrainingJobs(args: ListTrainingJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListTrainingJobsCommandOutput>;
2785
1714
  listTrainingJobs(args: ListTrainingJobsCommandInput, cb: (err: any, data?: ListTrainingJobsCommandOutput) => void): void;
2786
1715
  listTrainingJobs(args: ListTrainingJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTrainingJobsCommandOutput) => void): void;
2787
1716
  /**
2788
- * @public
2789
- * <p>Gets a list of <a>TrainingJobSummary</a> objects that describe the training
2790
- * jobs that a hyperparameter tuning job launched.</p>
1717
+ * @see {@link ListTrainingJobsForHyperParameterTuningJobCommand}
2791
1718
  */
2792
1719
  listTrainingJobsForHyperParameterTuningJob(args: ListTrainingJobsForHyperParameterTuningJobCommandInput, options?: __HttpHandlerOptions): Promise<ListTrainingJobsForHyperParameterTuningJobCommandOutput>;
2793
1720
  listTrainingJobsForHyperParameterTuningJob(args: ListTrainingJobsForHyperParameterTuningJobCommandInput, cb: (err: any, data?: ListTrainingJobsForHyperParameterTuningJobCommandOutput) => void): void;
2794
1721
  listTrainingJobsForHyperParameterTuningJob(args: ListTrainingJobsForHyperParameterTuningJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTrainingJobsForHyperParameterTuningJobCommandOutput) => void): void;
2795
1722
  /**
2796
- * @public
2797
- * <p>Lists transform jobs.</p>
1723
+ * @see {@link ListTransformJobsCommand}
2798
1724
  */
2799
1725
  listTransformJobs(args: ListTransformJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListTransformJobsCommandOutput>;
2800
1726
  listTransformJobs(args: ListTransformJobsCommandInput, cb: (err: any, data?: ListTransformJobsCommandOutput) => void): void;
2801
1727
  listTransformJobs(args: ListTransformJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTransformJobsCommandOutput) => void): void;
2802
1728
  /**
2803
- * @public
2804
- * <p>Lists the trial components in your account. You can sort the list by trial component name
2805
- * or creation time. You can filter the list to show only components that were created in a
2806
- * specific time range. You can also filter on one of the following:</p>
2807
- * <ul>
2808
- * <li>
2809
- * <p>
2810
- * <code>ExperimentName</code>
2811
- * </p>
2812
- * </li>
2813
- * <li>
2814
- * <p>
2815
- * <code>SourceArn</code>
2816
- * </p>
2817
- * </li>
2818
- * <li>
2819
- * <p>
2820
- * <code>TrialName</code>
2821
- * </p>
2822
- * </li>
2823
- * </ul>
1729
+ * @see {@link ListTrialComponentsCommand}
2824
1730
  */
2825
1731
  listTrialComponents(args: ListTrialComponentsCommandInput, options?: __HttpHandlerOptions): Promise<ListTrialComponentsCommandOutput>;
2826
1732
  listTrialComponents(args: ListTrialComponentsCommandInput, cb: (err: any, data?: ListTrialComponentsCommandOutput) => void): void;
2827
1733
  listTrialComponents(args: ListTrialComponentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTrialComponentsCommandOutput) => void): void;
2828
1734
  /**
2829
- * @public
2830
- * <p>Lists the trials in your account. Specify an experiment name to limit the list to the
2831
- * trials that are part of that experiment. Specify a trial component name to limit the list to
2832
- * the trials that associated with that trial component. The list can be filtered to show only
2833
- * trials that were created in a specific time range. The list can be sorted by trial name or
2834
- * creation time.</p>
1735
+ * @see {@link ListTrialsCommand}
2835
1736
  */
2836
1737
  listTrials(args: ListTrialsCommandInput, options?: __HttpHandlerOptions): Promise<ListTrialsCommandOutput>;
2837
1738
  listTrials(args: ListTrialsCommandInput, cb: (err: any, data?: ListTrialsCommandOutput) => void): void;
2838
1739
  listTrials(args: ListTrialsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTrialsCommandOutput) => void): void;
2839
1740
  /**
2840
- * @public
2841
- * <p>Lists user profiles.</p>
1741
+ * @see {@link ListUserProfilesCommand}
2842
1742
  */
2843
1743
  listUserProfiles(args: ListUserProfilesCommandInput, options?: __HttpHandlerOptions): Promise<ListUserProfilesCommandOutput>;
2844
1744
  listUserProfiles(args: ListUserProfilesCommandInput, cb: (err: any, data?: ListUserProfilesCommandOutput) => void): void;
2845
1745
  listUserProfiles(args: ListUserProfilesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListUserProfilesCommandOutput) => void): void;
2846
1746
  /**
2847
- * @public
2848
- * <p>Use this operation to list all private and vendor workforces in an Amazon Web Services Region. Note that you can only
2849
- * have one private workforce per Amazon Web Services Region.</p>
1747
+ * @see {@link ListWorkforcesCommand}
2850
1748
  */
2851
1749
  listWorkforces(args: ListWorkforcesCommandInput, options?: __HttpHandlerOptions): Promise<ListWorkforcesCommandOutput>;
2852
1750
  listWorkforces(args: ListWorkforcesCommandInput, cb: (err: any, data?: ListWorkforcesCommandOutput) => void): void;
2853
1751
  listWorkforces(args: ListWorkforcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListWorkforcesCommandOutput) => void): void;
2854
1752
  /**
2855
- * @public
2856
- * <p>Gets a list of private work teams that you have defined in a region. The list may be empty if
2857
- * no work team satisfies the filter specified in the <code>NameContains</code>
2858
- * parameter.</p>
1753
+ * @see {@link ListWorkteamsCommand}
2859
1754
  */
2860
1755
  listWorkteams(args: ListWorkteamsCommandInput, options?: __HttpHandlerOptions): Promise<ListWorkteamsCommandOutput>;
2861
1756
  listWorkteams(args: ListWorkteamsCommandInput, cb: (err: any, data?: ListWorkteamsCommandOutput) => void): void;
2862
1757
  listWorkteams(args: ListWorkteamsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListWorkteamsCommandOutput) => void): void;
2863
1758
  /**
2864
- * @public
2865
- * <p>Adds a resouce policy to control access to a model group. For information about
2866
- * resoure policies, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_identity-vs-resource.html">Identity-based
2867
- * policies and resource-based policies</a> in the <i>Amazon Web Services Identity and Access Management User Guide.</i>.</p>
1759
+ * @see {@link PutModelPackageGroupPolicyCommand}
2868
1760
  */
2869
1761
  putModelPackageGroupPolicy(args: PutModelPackageGroupPolicyCommandInput, options?: __HttpHandlerOptions): Promise<PutModelPackageGroupPolicyCommandOutput>;
2870
1762
  putModelPackageGroupPolicy(args: PutModelPackageGroupPolicyCommandInput, cb: (err: any, data?: PutModelPackageGroupPolicyCommandOutput) => void): void;
2871
1763
  putModelPackageGroupPolicy(args: PutModelPackageGroupPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutModelPackageGroupPolicyCommandOutput) => void): void;
2872
1764
  /**
2873
- * @public
2874
- * <p>Use this action to inspect your lineage and discover relationships between entities.
2875
- * For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/querying-lineage-entities.html">
2876
- * Querying Lineage Entities</a> in the <i>Amazon SageMaker Developer Guide</i>.</p>
1765
+ * @see {@link QueryLineageCommand}
2877
1766
  */
2878
1767
  queryLineage(args: QueryLineageCommandInput, options?: __HttpHandlerOptions): Promise<QueryLineageCommandOutput>;
2879
1768
  queryLineage(args: QueryLineageCommandInput, cb: (err: any, data?: QueryLineageCommandOutput) => void): void;
2880
1769
  queryLineage(args: QueryLineageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: QueryLineageCommandOutput) => void): void;
2881
1770
  /**
2882
- * @public
2883
- * <p>Register devices.</p>
1771
+ * @see {@link RegisterDevicesCommand}
2884
1772
  */
2885
1773
  registerDevices(args: RegisterDevicesCommandInput, options?: __HttpHandlerOptions): Promise<RegisterDevicesCommandOutput>;
2886
1774
  registerDevices(args: RegisterDevicesCommandInput, cb: (err: any, data?: RegisterDevicesCommandOutput) => void): void;
2887
1775
  registerDevices(args: RegisterDevicesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RegisterDevicesCommandOutput) => void): void;
2888
1776
  /**
2889
- * @public
2890
- * <p>Renders the UI template so that you can preview the worker's experience. </p>
1777
+ * @see {@link RenderUiTemplateCommand}
2891
1778
  */
2892
1779
  renderUiTemplate(args: RenderUiTemplateCommandInput, options?: __HttpHandlerOptions): Promise<RenderUiTemplateCommandOutput>;
2893
1780
  renderUiTemplate(args: RenderUiTemplateCommandInput, cb: (err: any, data?: RenderUiTemplateCommandOutput) => void): void;
2894
1781
  renderUiTemplate(args: RenderUiTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RenderUiTemplateCommandOutput) => void): void;
2895
1782
  /**
2896
- * @public
2897
- * <p>Retry the execution of the pipeline.</p>
1783
+ * @see {@link RetryPipelineExecutionCommand}
2898
1784
  */
2899
1785
  retryPipelineExecution(args: RetryPipelineExecutionCommandInput, options?: __HttpHandlerOptions): Promise<RetryPipelineExecutionCommandOutput>;
2900
1786
  retryPipelineExecution(args: RetryPipelineExecutionCommandInput, cb: (err: any, data?: RetryPipelineExecutionCommandOutput) => void): void;
2901
1787
  retryPipelineExecution(args: RetryPipelineExecutionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RetryPipelineExecutionCommandOutput) => void): void;
2902
1788
  /**
2903
- * @public
2904
- * <p>Finds SageMaker resources that match a search query. Matching resources are returned
2905
- * as a list of <code>SearchRecord</code> objects in the response. You can sort the search
2906
- * results by any resource property in a ascending or descending order.</p>
2907
- * <p>You can query against the following value types: numeric, text, Boolean, and
2908
- * timestamp.</p>
2909
- * <note>
2910
- * <p>The Search API may provide access to otherwise restricted data. See <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/api-permissions-reference.html">Amazon SageMaker
2911
- * API Permissions: Actions, Permissions, and Resources Reference</a> for more
2912
- * information.</p>
2913
- * </note>
1789
+ * @see {@link SearchCommand}
2914
1790
  */
2915
1791
  search(args: SearchCommandInput, options?: __HttpHandlerOptions): Promise<SearchCommandOutput>;
2916
1792
  search(args: SearchCommandInput, cb: (err: any, data?: SearchCommandOutput) => void): void;
2917
1793
  search(args: SearchCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchCommandOutput) => void): void;
2918
1794
  /**
2919
- * @public
2920
- * <p>Notifies the pipeline that the execution of a callback step failed, along with a
2921
- * message describing why. When a callback step is run, the pipeline generates a callback
2922
- * token and includes the token in a message sent to Amazon Simple Queue Service (Amazon SQS).</p>
1795
+ * @see {@link SendPipelineExecutionStepFailureCommand}
2923
1796
  */
2924
1797
  sendPipelineExecutionStepFailure(args: SendPipelineExecutionStepFailureCommandInput, options?: __HttpHandlerOptions): Promise<SendPipelineExecutionStepFailureCommandOutput>;
2925
1798
  sendPipelineExecutionStepFailure(args: SendPipelineExecutionStepFailureCommandInput, cb: (err: any, data?: SendPipelineExecutionStepFailureCommandOutput) => void): void;
2926
1799
  sendPipelineExecutionStepFailure(args: SendPipelineExecutionStepFailureCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SendPipelineExecutionStepFailureCommandOutput) => void): void;
2927
1800
  /**
2928
- * @public
2929
- * <p>Notifies the pipeline that the execution of a callback step succeeded and provides a
2930
- * list of the step's output parameters. When a callback step is run, the pipeline generates
2931
- * a callback token and includes the token in a message sent to Amazon Simple Queue Service (Amazon SQS).</p>
1801
+ * @see {@link SendPipelineExecutionStepSuccessCommand}
2932
1802
  */
2933
1803
  sendPipelineExecutionStepSuccess(args: SendPipelineExecutionStepSuccessCommandInput, options?: __HttpHandlerOptions): Promise<SendPipelineExecutionStepSuccessCommandOutput>;
2934
1804
  sendPipelineExecutionStepSuccess(args: SendPipelineExecutionStepSuccessCommandInput, cb: (err: any, data?: SendPipelineExecutionStepSuccessCommandOutput) => void): void;
2935
1805
  sendPipelineExecutionStepSuccess(args: SendPipelineExecutionStepSuccessCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SendPipelineExecutionStepSuccessCommandOutput) => void): void;
2936
1806
  /**
2937
- * @public
2938
- * <p>Starts a stage in an edge deployment plan.</p>
1807
+ * @see {@link StartEdgeDeploymentStageCommand}
2939
1808
  */
2940
1809
  startEdgeDeploymentStage(args: StartEdgeDeploymentStageCommandInput, options?: __HttpHandlerOptions): Promise<StartEdgeDeploymentStageCommandOutput>;
2941
1810
  startEdgeDeploymentStage(args: StartEdgeDeploymentStageCommandInput, cb: (err: any, data?: StartEdgeDeploymentStageCommandOutput) => void): void;
2942
1811
  startEdgeDeploymentStage(args: StartEdgeDeploymentStageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartEdgeDeploymentStageCommandOutput) => void): void;
2943
1812
  /**
2944
- * @public
2945
- * <p>Starts an inference experiment.</p>
1813
+ * @see {@link StartInferenceExperimentCommand}
2946
1814
  */
2947
1815
  startInferenceExperiment(args: StartInferenceExperimentCommandInput, options?: __HttpHandlerOptions): Promise<StartInferenceExperimentCommandOutput>;
2948
1816
  startInferenceExperiment(args: StartInferenceExperimentCommandInput, cb: (err: any, data?: StartInferenceExperimentCommandOutput) => void): void;
2949
1817
  startInferenceExperiment(args: StartInferenceExperimentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartInferenceExperimentCommandOutput) => void): void;
2950
1818
  /**
2951
- * @public
2952
- * <p>Starts a previously stopped monitoring schedule.</p>
2953
- * <note>
2954
- * <p>By default, when you successfully create a new schedule, the status of a monitoring
2955
- * schedule is <code>scheduled</code>.</p>
2956
- * </note>
1819
+ * @see {@link StartMonitoringScheduleCommand}
2957
1820
  */
2958
1821
  startMonitoringSchedule(args: StartMonitoringScheduleCommandInput, options?: __HttpHandlerOptions): Promise<StartMonitoringScheduleCommandOutput>;
2959
1822
  startMonitoringSchedule(args: StartMonitoringScheduleCommandInput, cb: (err: any, data?: StartMonitoringScheduleCommandOutput) => void): void;
2960
1823
  startMonitoringSchedule(args: StartMonitoringScheduleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartMonitoringScheduleCommandOutput) => void): void;
2961
1824
  /**
2962
- * @public
2963
- * <p>Launches an ML compute instance with the latest version of the libraries and
2964
- * attaches your ML storage volume. After configuring the notebook instance, SageMaker sets the
2965
- * notebook instance status to <code>InService</code>. A notebook instance's status must be
2966
- * <code>InService</code> before you can connect to your Jupyter notebook. </p>
1825
+ * @see {@link StartNotebookInstanceCommand}
2967
1826
  */
2968
1827
  startNotebookInstance(args: StartNotebookInstanceCommandInput, options?: __HttpHandlerOptions): Promise<StartNotebookInstanceCommandOutput>;
2969
1828
  startNotebookInstance(args: StartNotebookInstanceCommandInput, cb: (err: any, data?: StartNotebookInstanceCommandOutput) => void): void;
2970
1829
  startNotebookInstance(args: StartNotebookInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartNotebookInstanceCommandOutput) => void): void;
2971
1830
  /**
2972
- * @public
2973
- * <p>Starts a pipeline execution.</p>
1831
+ * @see {@link StartPipelineExecutionCommand}
2974
1832
  */
2975
1833
  startPipelineExecution(args: StartPipelineExecutionCommandInput, options?: __HttpHandlerOptions): Promise<StartPipelineExecutionCommandOutput>;
2976
1834
  startPipelineExecution(args: StartPipelineExecutionCommandInput, cb: (err: any, data?: StartPipelineExecutionCommandOutput) => void): void;
2977
1835
  startPipelineExecution(args: StartPipelineExecutionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartPipelineExecutionCommandOutput) => void): void;
2978
1836
  /**
2979
- * @public
2980
- * <p>A method for forcing a running job to shut down.</p>
1837
+ * @see {@link StopAutoMLJobCommand}
2981
1838
  */
2982
1839
  stopAutoMLJob(args: StopAutoMLJobCommandInput, options?: __HttpHandlerOptions): Promise<StopAutoMLJobCommandOutput>;
2983
1840
  stopAutoMLJob(args: StopAutoMLJobCommandInput, cb: (err: any, data?: StopAutoMLJobCommandOutput) => void): void;
2984
1841
  stopAutoMLJob(args: StopAutoMLJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopAutoMLJobCommandOutput) => void): void;
2985
1842
  /**
2986
- * @public
2987
- * <p>Stops a model compilation job.</p>
2988
- * <p> To stop a job, Amazon SageMaker sends the algorithm the SIGTERM signal. This gracefully shuts the
2989
- * job down. If the job hasn't stopped, it sends the SIGKILL signal.</p>
2990
- * <p>When it receives a <code>StopCompilationJob</code> request, Amazon SageMaker changes the <a>CompilationJobSummary$CompilationJobStatus</a> of the job to
2991
- * <code>Stopping</code>. After Amazon SageMaker stops the job, it sets the <a>CompilationJobSummary$CompilationJobStatus</a> to <code>Stopped</code>.
2992
- * </p>
1843
+ * @see {@link StopCompilationJobCommand}
2993
1844
  */
2994
1845
  stopCompilationJob(args: StopCompilationJobCommandInput, options?: __HttpHandlerOptions): Promise<StopCompilationJobCommandOutput>;
2995
1846
  stopCompilationJob(args: StopCompilationJobCommandInput, cb: (err: any, data?: StopCompilationJobCommandOutput) => void): void;
2996
1847
  stopCompilationJob(args: StopCompilationJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopCompilationJobCommandOutput) => void): void;
2997
1848
  /**
2998
- * @public
2999
- * <p>Stops a stage in an edge deployment plan.</p>
1849
+ * @see {@link StopEdgeDeploymentStageCommand}
3000
1850
  */
3001
1851
  stopEdgeDeploymentStage(args: StopEdgeDeploymentStageCommandInput, options?: __HttpHandlerOptions): Promise<StopEdgeDeploymentStageCommandOutput>;
3002
1852
  stopEdgeDeploymentStage(args: StopEdgeDeploymentStageCommandInput, cb: (err: any, data?: StopEdgeDeploymentStageCommandOutput) => void): void;
3003
1853
  stopEdgeDeploymentStage(args: StopEdgeDeploymentStageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopEdgeDeploymentStageCommandOutput) => void): void;
3004
1854
  /**
3005
- * @public
3006
- * <p>Request to stop an edge packaging job.</p>
1855
+ * @see {@link StopEdgePackagingJobCommand}
3007
1856
  */
3008
1857
  stopEdgePackagingJob(args: StopEdgePackagingJobCommandInput, options?: __HttpHandlerOptions): Promise<StopEdgePackagingJobCommandOutput>;
3009
1858
  stopEdgePackagingJob(args: StopEdgePackagingJobCommandInput, cb: (err: any, data?: StopEdgePackagingJobCommandOutput) => void): void;
3010
1859
  stopEdgePackagingJob(args: StopEdgePackagingJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopEdgePackagingJobCommandOutput) => void): void;
3011
1860
  /**
3012
- * @public
3013
- * <p>Stops a running hyperparameter tuning job and all running training jobs that the
3014
- * tuning job launched.</p>
3015
- * <p>All model artifacts output from the training jobs are stored in Amazon Simple Storage Service (Amazon S3). All
3016
- * data that the training jobs write to Amazon CloudWatch Logs are still available in CloudWatch. After the
3017
- * tuning job moves to the <code>Stopped</code> state, it releases all
3018
- * reserved
3019
- * resources for the tuning job.</p>
1861
+ * @see {@link StopHyperParameterTuningJobCommand}
3020
1862
  */
3021
1863
  stopHyperParameterTuningJob(args: StopHyperParameterTuningJobCommandInput, options?: __HttpHandlerOptions): Promise<StopHyperParameterTuningJobCommandOutput>;
3022
1864
  stopHyperParameterTuningJob(args: StopHyperParameterTuningJobCommandInput, cb: (err: any, data?: StopHyperParameterTuningJobCommandOutput) => void): void;
3023
1865
  stopHyperParameterTuningJob(args: StopHyperParameterTuningJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopHyperParameterTuningJobCommandOutput) => void): void;
3024
1866
  /**
3025
- * @public
3026
- * <p>Stops an inference experiment.</p>
1867
+ * @see {@link StopInferenceExperimentCommand}
3027
1868
  */
3028
1869
  stopInferenceExperiment(args: StopInferenceExperimentCommandInput, options?: __HttpHandlerOptions): Promise<StopInferenceExperimentCommandOutput>;
3029
1870
  stopInferenceExperiment(args: StopInferenceExperimentCommandInput, cb: (err: any, data?: StopInferenceExperimentCommandOutput) => void): void;
3030
1871
  stopInferenceExperiment(args: StopInferenceExperimentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopInferenceExperimentCommandOutput) => void): void;
3031
1872
  /**
3032
- * @public
3033
- * <p>Stops an Inference Recommender job.</p>
1873
+ * @see {@link StopInferenceRecommendationsJobCommand}
3034
1874
  */
3035
1875
  stopInferenceRecommendationsJob(args: StopInferenceRecommendationsJobCommandInput, options?: __HttpHandlerOptions): Promise<StopInferenceRecommendationsJobCommandOutput>;
3036
1876
  stopInferenceRecommendationsJob(args: StopInferenceRecommendationsJobCommandInput, cb: (err: any, data?: StopInferenceRecommendationsJobCommandOutput) => void): void;
3037
1877
  stopInferenceRecommendationsJob(args: StopInferenceRecommendationsJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopInferenceRecommendationsJobCommandOutput) => void): void;
3038
1878
  /**
3039
- * @public
3040
- * <p>Stops a running labeling job. A job that is stopped cannot be restarted. Any results
3041
- * obtained before the job is stopped are placed in the Amazon S3 output bucket.</p>
1879
+ * @see {@link StopLabelingJobCommand}
3042
1880
  */
3043
1881
  stopLabelingJob(args: StopLabelingJobCommandInput, options?: __HttpHandlerOptions): Promise<StopLabelingJobCommandOutput>;
3044
1882
  stopLabelingJob(args: StopLabelingJobCommandInput, cb: (err: any, data?: StopLabelingJobCommandOutput) => void): void;
3045
1883
  stopLabelingJob(args: StopLabelingJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopLabelingJobCommandOutput) => void): void;
3046
1884
  /**
3047
- * @public
3048
- * <p>Stops a previously started monitoring schedule.</p>
1885
+ * @see {@link StopMonitoringScheduleCommand}
3049
1886
  */
3050
1887
  stopMonitoringSchedule(args: StopMonitoringScheduleCommandInput, options?: __HttpHandlerOptions): Promise<StopMonitoringScheduleCommandOutput>;
3051
1888
  stopMonitoringSchedule(args: StopMonitoringScheduleCommandInput, cb: (err: any, data?: StopMonitoringScheduleCommandOutput) => void): void;
3052
1889
  stopMonitoringSchedule(args: StopMonitoringScheduleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopMonitoringScheduleCommandOutput) => void): void;
3053
1890
  /**
3054
- * @public
3055
- * <p>Terminates the ML compute instance. Before terminating the instance, SageMaker
3056
- * disconnects the ML storage volume from it. SageMaker preserves the ML storage volume. SageMaker
3057
- * stops charging you for the ML compute instance when you call
3058
- * <code>StopNotebookInstance</code>.</p>
3059
- * <p>To access data on the ML storage volume for a notebook instance that has been
3060
- * terminated, call the <code>StartNotebookInstance</code> API.
3061
- * <code>StartNotebookInstance</code> launches another ML compute instance, configures
3062
- * it, and attaches the preserved ML storage volume so you can continue your work.
3063
- * </p>
1891
+ * @see {@link StopNotebookInstanceCommand}
3064
1892
  */
3065
1893
  stopNotebookInstance(args: StopNotebookInstanceCommandInput, options?: __HttpHandlerOptions): Promise<StopNotebookInstanceCommandOutput>;
3066
1894
  stopNotebookInstance(args: StopNotebookInstanceCommandInput, cb: (err: any, data?: StopNotebookInstanceCommandOutput) => void): void;
3067
1895
  stopNotebookInstance(args: StopNotebookInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopNotebookInstanceCommandOutput) => void): void;
3068
1896
  /**
3069
- * @public
3070
- * <p>Stops a pipeline execution.</p>
3071
- * <p>
3072
- * <b>Callback Step</b>
3073
- * </p>
3074
- * <p>A pipeline execution won't stop while a callback step is running.
3075
- * When you call <code>StopPipelineExecution</code>
3076
- * on a pipeline execution with a running callback step, SageMaker Pipelines sends an
3077
- * additional Amazon SQS message to the specified SQS queue. The body of the SQS message
3078
- * contains a "Status" field which is set to "Stopping".</p>
3079
- * <p>You should add logic to your Amazon SQS message consumer to take any needed action (for
3080
- * example, resource cleanup) upon receipt of the message followed by a call to
3081
- * <code>SendPipelineExecutionStepSuccess</code> or
3082
- * <code>SendPipelineExecutionStepFailure</code>.</p>
3083
- * <p>Only when SageMaker Pipelines receives one of these calls will it stop the pipeline execution.</p>
3084
- * <p>
3085
- * <b>Lambda Step</b>
3086
- * </p>
3087
- * <p>A pipeline execution can't be stopped while a lambda step is running because the Lambda
3088
- * function invoked by the lambda step can't be stopped. If you attempt to stop the execution
3089
- * while the Lambda function is running, the pipeline waits for the Lambda function to finish
3090
- * or until the timeout is hit, whichever occurs first, and then stops. If the Lambda function
3091
- * finishes, the pipeline execution status is <code>Stopped</code>. If the timeout is hit
3092
- * the pipeline execution status is <code>Failed</code>.</p>
1897
+ * @see {@link StopPipelineExecutionCommand}
3093
1898
  */
3094
1899
  stopPipelineExecution(args: StopPipelineExecutionCommandInput, options?: __HttpHandlerOptions): Promise<StopPipelineExecutionCommandOutput>;
3095
1900
  stopPipelineExecution(args: StopPipelineExecutionCommandInput, cb: (err: any, data?: StopPipelineExecutionCommandOutput) => void): void;
3096
1901
  stopPipelineExecution(args: StopPipelineExecutionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopPipelineExecutionCommandOutput) => void): void;
3097
1902
  /**
3098
- * @public
3099
- * <p>Stops a processing job.</p>
1903
+ * @see {@link StopProcessingJobCommand}
3100
1904
  */
3101
1905
  stopProcessingJob(args: StopProcessingJobCommandInput, options?: __HttpHandlerOptions): Promise<StopProcessingJobCommandOutput>;
3102
1906
  stopProcessingJob(args: StopProcessingJobCommandInput, cb: (err: any, data?: StopProcessingJobCommandOutput) => void): void;
3103
1907
  stopProcessingJob(args: StopProcessingJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopProcessingJobCommandOutput) => void): void;
3104
1908
  /**
3105
- * @public
3106
- * <p>Stops a training job. To stop a job, SageMaker sends the algorithm the
3107
- * <code>SIGTERM</code> signal, which delays job termination for 120 seconds.
3108
- * Algorithms might use this 120-second window to save the model artifacts, so the results
3109
- * of the training is not lost. </p>
3110
- * <p>When it receives a <code>StopTrainingJob</code> request, SageMaker changes the status of
3111
- * the job to <code>Stopping</code>. After SageMaker stops the job, it sets the status to
3112
- * <code>Stopped</code>.</p>
1909
+ * @see {@link StopTrainingJobCommand}
3113
1910
  */
3114
1911
  stopTrainingJob(args: StopTrainingJobCommandInput, options?: __HttpHandlerOptions): Promise<StopTrainingJobCommandOutput>;
3115
1912
  stopTrainingJob(args: StopTrainingJobCommandInput, cb: (err: any, data?: StopTrainingJobCommandOutput) => void): void;
3116
1913
  stopTrainingJob(args: StopTrainingJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopTrainingJobCommandOutput) => void): void;
3117
1914
  /**
3118
- * @public
3119
- * <p>Stops a batch transform job.</p>
3120
- * <p>When Amazon SageMaker receives a <code>StopTransformJob</code> request, the status of the job
3121
- * changes to <code>Stopping</code>. After Amazon SageMaker
3122
- * stops
3123
- * the job, the status is set to <code>Stopped</code>. When you stop a batch transform job before
3124
- * it is completed, Amazon SageMaker doesn't store the job's output in Amazon S3.</p>
1915
+ * @see {@link StopTransformJobCommand}
3125
1916
  */
3126
1917
  stopTransformJob(args: StopTransformJobCommandInput, options?: __HttpHandlerOptions): Promise<StopTransformJobCommandOutput>;
3127
1918
  stopTransformJob(args: StopTransformJobCommandInput, cb: (err: any, data?: StopTransformJobCommandOutput) => void): void;
3128
1919
  stopTransformJob(args: StopTransformJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopTransformJobCommandOutput) => void): void;
3129
1920
  /**
3130
- * @public
3131
- * <p>Updates an action.</p>
1921
+ * @see {@link UpdateActionCommand}
3132
1922
  */
3133
1923
  updateAction(args: UpdateActionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateActionCommandOutput>;
3134
1924
  updateAction(args: UpdateActionCommandInput, cb: (err: any, data?: UpdateActionCommandOutput) => void): void;
3135
1925
  updateAction(args: UpdateActionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateActionCommandOutput) => void): void;
3136
1926
  /**
3137
- * @public
3138
- * <p>Updates the properties of an AppImageConfig.</p>
1927
+ * @see {@link UpdateAppImageConfigCommand}
3139
1928
  */
3140
1929
  updateAppImageConfig(args: UpdateAppImageConfigCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAppImageConfigCommandOutput>;
3141
1930
  updateAppImageConfig(args: UpdateAppImageConfigCommandInput, cb: (err: any, data?: UpdateAppImageConfigCommandOutput) => void): void;
3142
1931
  updateAppImageConfig(args: UpdateAppImageConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAppImageConfigCommandOutput) => void): void;
3143
1932
  /**
3144
- * @public
3145
- * <p>Updates an artifact.</p>
1933
+ * @see {@link UpdateArtifactCommand}
3146
1934
  */
3147
1935
  updateArtifact(args: UpdateArtifactCommandInput, options?: __HttpHandlerOptions): Promise<UpdateArtifactCommandOutput>;
3148
1936
  updateArtifact(args: UpdateArtifactCommandInput, cb: (err: any, data?: UpdateArtifactCommandOutput) => void): void;
3149
1937
  updateArtifact(args: UpdateArtifactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateArtifactCommandOutput) => void): void;
3150
1938
  /**
3151
- * @public
3152
- * <p>Updates the specified Git repository with the specified values.</p>
1939
+ * @see {@link UpdateCodeRepositoryCommand}
3153
1940
  */
3154
1941
  updateCodeRepository(args: UpdateCodeRepositoryCommandInput, options?: __HttpHandlerOptions): Promise<UpdateCodeRepositoryCommandOutput>;
3155
1942
  updateCodeRepository(args: UpdateCodeRepositoryCommandInput, cb: (err: any, data?: UpdateCodeRepositoryCommandOutput) => void): void;
3156
1943
  updateCodeRepository(args: UpdateCodeRepositoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateCodeRepositoryCommandOutput) => void): void;
3157
1944
  /**
3158
- * @public
3159
- * <p>Updates a context.</p>
1945
+ * @see {@link UpdateContextCommand}
3160
1946
  */
3161
1947
  updateContext(args: UpdateContextCommandInput, options?: __HttpHandlerOptions): Promise<UpdateContextCommandOutput>;
3162
1948
  updateContext(args: UpdateContextCommandInput, cb: (err: any, data?: UpdateContextCommandOutput) => void): void;
3163
1949
  updateContext(args: UpdateContextCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateContextCommandOutput) => void): void;
3164
1950
  /**
3165
- * @public
3166
- * <p>Updates a fleet of devices.</p>
1951
+ * @see {@link UpdateDeviceFleetCommand}
3167
1952
  */
3168
1953
  updateDeviceFleet(args: UpdateDeviceFleetCommandInput, options?: __HttpHandlerOptions): Promise<UpdateDeviceFleetCommandOutput>;
3169
1954
  updateDeviceFleet(args: UpdateDeviceFleetCommandInput, cb: (err: any, data?: UpdateDeviceFleetCommandOutput) => void): void;
3170
1955
  updateDeviceFleet(args: UpdateDeviceFleetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDeviceFleetCommandOutput) => void): void;
3171
1956
  /**
3172
- * @public
3173
- * <p>Updates one or more devices in a fleet.</p>
1957
+ * @see {@link UpdateDevicesCommand}
3174
1958
  */
3175
1959
  updateDevices(args: UpdateDevicesCommandInput, options?: __HttpHandlerOptions): Promise<UpdateDevicesCommandOutput>;
3176
1960
  updateDevices(args: UpdateDevicesCommandInput, cb: (err: any, data?: UpdateDevicesCommandOutput) => void): void;
3177
1961
  updateDevices(args: UpdateDevicesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDevicesCommandOutput) => void): void;
3178
1962
  /**
3179
- * @public
3180
- * <p>Updates the default settings for new user profiles in the domain.</p>
1963
+ * @see {@link UpdateDomainCommand}
3181
1964
  */
3182
1965
  updateDomain(args: UpdateDomainCommandInput, options?: __HttpHandlerOptions): Promise<UpdateDomainCommandOutput>;
3183
1966
  updateDomain(args: UpdateDomainCommandInput, cb: (err: any, data?: UpdateDomainCommandOutput) => void): void;
3184
1967
  updateDomain(args: UpdateDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDomainCommandOutput) => void): void;
3185
1968
  /**
3186
- * @public
3187
- * <p>Deploys the new <code>EndpointConfig</code> specified in the request, switches to
3188
- * using newly created endpoint, and then deletes resources provisioned for the endpoint
3189
- * using the previous <code>EndpointConfig</code> (there is no availability loss). </p>
3190
- * <p>When SageMaker receives the request, it sets the endpoint status to
3191
- * <code>Updating</code>. After updating the endpoint, it sets the status to
3192
- * <code>InService</code>. To check the status of an endpoint, use the <a>DescribeEndpoint</a> API.
3193
- *
3194
- * </p>
3195
- * <note>
3196
- * <p>You must not delete an <code>EndpointConfig</code> in use by an endpoint that is
3197
- * live or while the <code>UpdateEndpoint</code> or <code>CreateEndpoint</code>
3198
- * operations are being performed on the endpoint. To update an endpoint, you must
3199
- * create a new <code>EndpointConfig</code>.</p>
3200
- * <p>If you delete the <code>EndpointConfig</code> of an endpoint that is active or
3201
- * being created or updated you may lose visibility into the instance type the endpoint
3202
- * is using. The endpoint must be deleted in order to stop incurring charges.</p>
3203
- * </note>
1969
+ * @see {@link UpdateEndpointCommand}
3204
1970
  */
3205
1971
  updateEndpoint(args: UpdateEndpointCommandInput, options?: __HttpHandlerOptions): Promise<UpdateEndpointCommandOutput>;
3206
1972
  updateEndpoint(args: UpdateEndpointCommandInput, cb: (err: any, data?: UpdateEndpointCommandOutput) => void): void;
3207
1973
  updateEndpoint(args: UpdateEndpointCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateEndpointCommandOutput) => void): void;
3208
1974
  /**
3209
- * @public
3210
- * <p>Updates variant weight of one or more variants associated with an existing
3211
- * endpoint, or capacity of one variant associated with an existing endpoint. When it
3212
- * receives the request, SageMaker sets the endpoint status to <code>Updating</code>. After
3213
- * updating the endpoint, it sets the status to <code>InService</code>. To check the status
3214
- * of an endpoint, use the <a>DescribeEndpoint</a> API. </p>
1975
+ * @see {@link UpdateEndpointWeightsAndCapacitiesCommand}
3215
1976
  */
3216
1977
  updateEndpointWeightsAndCapacities(args: UpdateEndpointWeightsAndCapacitiesCommandInput, options?: __HttpHandlerOptions): Promise<UpdateEndpointWeightsAndCapacitiesCommandOutput>;
3217
1978
  updateEndpointWeightsAndCapacities(args: UpdateEndpointWeightsAndCapacitiesCommandInput, cb: (err: any, data?: UpdateEndpointWeightsAndCapacitiesCommandOutput) => void): void;
3218
1979
  updateEndpointWeightsAndCapacities(args: UpdateEndpointWeightsAndCapacitiesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateEndpointWeightsAndCapacitiesCommandOutput) => void): void;
3219
1980
  /**
3220
- * @public
3221
- * <p>Adds, updates, or removes the description of an experiment. Updates the display name of an
3222
- * experiment.</p>
1981
+ * @see {@link UpdateExperimentCommand}
3223
1982
  */
3224
1983
  updateExperiment(args: UpdateExperimentCommandInput, options?: __HttpHandlerOptions): Promise<UpdateExperimentCommandOutput>;
3225
1984
  updateExperiment(args: UpdateExperimentCommandInput, cb: (err: any, data?: UpdateExperimentCommandOutput) => void): void;
3226
1985
  updateExperiment(args: UpdateExperimentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateExperimentCommandOutput) => void): void;
3227
1986
  /**
3228
- * @public
3229
- * <p>Updates the feature group.</p>
1987
+ * @see {@link UpdateFeatureGroupCommand}
3230
1988
  */
3231
1989
  updateFeatureGroup(args: UpdateFeatureGroupCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFeatureGroupCommandOutput>;
3232
1990
  updateFeatureGroup(args: UpdateFeatureGroupCommandInput, cb: (err: any, data?: UpdateFeatureGroupCommandOutput) => void): void;
3233
1991
  updateFeatureGroup(args: UpdateFeatureGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFeatureGroupCommandOutput) => void): void;
3234
1992
  /**
3235
- * @public
3236
- * <p>Updates the description and parameters of the feature group.</p>
1993
+ * @see {@link UpdateFeatureMetadataCommand}
3237
1994
  */
3238
1995
  updateFeatureMetadata(args: UpdateFeatureMetadataCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFeatureMetadataCommandOutput>;
3239
1996
  updateFeatureMetadata(args: UpdateFeatureMetadataCommandInput, cb: (err: any, data?: UpdateFeatureMetadataCommandOutput) => void): void;
3240
1997
  updateFeatureMetadata(args: UpdateFeatureMetadataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFeatureMetadataCommandOutput) => void): void;
3241
1998
  /**
3242
- * @public
3243
- * <p>Update a hub.</p>
3244
- * <note>
3245
- * <p>Hub APIs are only callable through SageMaker Studio.</p>
3246
- * </note>
1999
+ * @see {@link UpdateHubCommand}
3247
2000
  */
3248
2001
  updateHub(args: UpdateHubCommandInput, options?: __HttpHandlerOptions): Promise<UpdateHubCommandOutput>;
3249
2002
  updateHub(args: UpdateHubCommandInput, cb: (err: any, data?: UpdateHubCommandOutput) => void): void;
3250
2003
  updateHub(args: UpdateHubCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateHubCommandOutput) => void): void;
3251
2004
  /**
3252
- * @public
3253
- * <p>Updates the properties of a SageMaker image. To change the image's tags, use the
3254
- * <a>AddTags</a> and <a>DeleteTags</a> APIs.</p>
2005
+ * @see {@link UpdateImageCommand}
3255
2006
  */
3256
2007
  updateImage(args: UpdateImageCommandInput, options?: __HttpHandlerOptions): Promise<UpdateImageCommandOutput>;
3257
2008
  updateImage(args: UpdateImageCommandInput, cb: (err: any, data?: UpdateImageCommandOutput) => void): void;
3258
2009
  updateImage(args: UpdateImageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateImageCommandOutput) => void): void;
3259
2010
  /**
3260
- * @public
3261
- * <p>Updates the properties of a SageMaker image version.</p>
2011
+ * @see {@link UpdateImageVersionCommand}
3262
2012
  */
3263
2013
  updateImageVersion(args: UpdateImageVersionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateImageVersionCommandOutput>;
3264
2014
  updateImageVersion(args: UpdateImageVersionCommandInput, cb: (err: any, data?: UpdateImageVersionCommandOutput) => void): void;
3265
2015
  updateImageVersion(args: UpdateImageVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateImageVersionCommandOutput) => void): void;
3266
2016
  /**
3267
- * @public
3268
- * <p>
3269
- * Updates an inference experiment that you created. The status of the inference experiment has to be either
3270
- * <code>Created</code>, <code>Running</code>. For more information on the status of an inference experiment,
3271
- * see <a>DescribeInferenceExperimentResponse$Status</a>.
3272
- * </p>
2017
+ * @see {@link UpdateInferenceExperimentCommand}
3273
2018
  */
3274
2019
  updateInferenceExperiment(args: UpdateInferenceExperimentCommandInput, options?: __HttpHandlerOptions): Promise<UpdateInferenceExperimentCommandOutput>;
3275
2020
  updateInferenceExperiment(args: UpdateInferenceExperimentCommandInput, cb: (err: any, data?: UpdateInferenceExperimentCommandOutput) => void): void;
3276
2021
  updateInferenceExperiment(args: UpdateInferenceExperimentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateInferenceExperimentCommandOutput) => void): void;
3277
2022
  /**
3278
- * @public
3279
- * <p>Update an Amazon SageMaker Model Card.</p>
3280
- * <important>
3281
- * <p>You cannot update both model card content and model card status in a single call.</p>
3282
- * </important>
2023
+ * @see {@link UpdateModelCardCommand}
3283
2024
  */
3284
2025
  updateModelCard(args: UpdateModelCardCommandInput, options?: __HttpHandlerOptions): Promise<UpdateModelCardCommandOutput>;
3285
2026
  updateModelCard(args: UpdateModelCardCommandInput, cb: (err: any, data?: UpdateModelCardCommandOutput) => void): void;
3286
2027
  updateModelCard(args: UpdateModelCardCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateModelCardCommandOutput) => void): void;
3287
2028
  /**
3288
- * @public
3289
- * <p>Updates a versioned model.</p>
2029
+ * @see {@link UpdateModelPackageCommand}
3290
2030
  */
3291
2031
  updateModelPackage(args: UpdateModelPackageCommandInput, options?: __HttpHandlerOptions): Promise<UpdateModelPackageCommandOutput>;
3292
2032
  updateModelPackage(args: UpdateModelPackageCommandInput, cb: (err: any, data?: UpdateModelPackageCommandOutput) => void): void;
3293
2033
  updateModelPackage(args: UpdateModelPackageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateModelPackageCommandOutput) => void): void;
3294
2034
  /**
3295
- * @public
3296
- * <p>Update the parameters of a model monitor alert.</p>
2035
+ * @see {@link UpdateMonitoringAlertCommand}
3297
2036
  */
3298
2037
  updateMonitoringAlert(args: UpdateMonitoringAlertCommandInput, options?: __HttpHandlerOptions): Promise<UpdateMonitoringAlertCommandOutput>;
3299
2038
  updateMonitoringAlert(args: UpdateMonitoringAlertCommandInput, cb: (err: any, data?: UpdateMonitoringAlertCommandOutput) => void): void;
3300
2039
  updateMonitoringAlert(args: UpdateMonitoringAlertCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateMonitoringAlertCommandOutput) => void): void;
3301
2040
  /**
3302
- * @public
3303
- * <p>Updates a previously created schedule.</p>
2041
+ * @see {@link UpdateMonitoringScheduleCommand}
3304
2042
  */
3305
2043
  updateMonitoringSchedule(args: UpdateMonitoringScheduleCommandInput, options?: __HttpHandlerOptions): Promise<UpdateMonitoringScheduleCommandOutput>;
3306
2044
  updateMonitoringSchedule(args: UpdateMonitoringScheduleCommandInput, cb: (err: any, data?: UpdateMonitoringScheduleCommandOutput) => void): void;
3307
2045
  updateMonitoringSchedule(args: UpdateMonitoringScheduleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateMonitoringScheduleCommandOutput) => void): void;
3308
2046
  /**
3309
- * @public
3310
- * <p>Updates a notebook instance. NotebookInstance updates include upgrading or
3311
- * downgrading the ML compute instance used for your notebook instance to accommodate
3312
- * changes in your workload requirements.</p>
2047
+ * @see {@link UpdateNotebookInstanceCommand}
3313
2048
  */
3314
2049
  updateNotebookInstance(args: UpdateNotebookInstanceCommandInput, options?: __HttpHandlerOptions): Promise<UpdateNotebookInstanceCommandOutput>;
3315
2050
  updateNotebookInstance(args: UpdateNotebookInstanceCommandInput, cb: (err: any, data?: UpdateNotebookInstanceCommandOutput) => void): void;
3316
2051
  updateNotebookInstance(args: UpdateNotebookInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateNotebookInstanceCommandOutput) => void): void;
3317
2052
  /**
3318
- * @public
3319
- * <p>Updates a notebook instance lifecycle configuration created with the <a>CreateNotebookInstanceLifecycleConfig</a> API.</p>
2053
+ * @see {@link UpdateNotebookInstanceLifecycleConfigCommand}
3320
2054
  */
3321
2055
  updateNotebookInstanceLifecycleConfig(args: UpdateNotebookInstanceLifecycleConfigCommandInput, options?: __HttpHandlerOptions): Promise<UpdateNotebookInstanceLifecycleConfigCommandOutput>;
3322
2056
  updateNotebookInstanceLifecycleConfig(args: UpdateNotebookInstanceLifecycleConfigCommandInput, cb: (err: any, data?: UpdateNotebookInstanceLifecycleConfigCommandOutput) => void): void;
3323
2057
  updateNotebookInstanceLifecycleConfig(args: UpdateNotebookInstanceLifecycleConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateNotebookInstanceLifecycleConfigCommandOutput) => void): void;
3324
2058
  /**
3325
- * @public
3326
- * <p>Updates a pipeline.</p>
2059
+ * @see {@link UpdatePipelineCommand}
3327
2060
  */
3328
2061
  updatePipeline(args: UpdatePipelineCommandInput, options?: __HttpHandlerOptions): Promise<UpdatePipelineCommandOutput>;
3329
2062
  updatePipeline(args: UpdatePipelineCommandInput, cb: (err: any, data?: UpdatePipelineCommandOutput) => void): void;
3330
2063
  updatePipeline(args: UpdatePipelineCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdatePipelineCommandOutput) => void): void;
3331
2064
  /**
3332
- * @public
3333
- * <p>Updates a pipeline execution.</p>
2065
+ * @see {@link UpdatePipelineExecutionCommand}
3334
2066
  */
3335
2067
  updatePipelineExecution(args: UpdatePipelineExecutionCommandInput, options?: __HttpHandlerOptions): Promise<UpdatePipelineExecutionCommandOutput>;
3336
2068
  updatePipelineExecution(args: UpdatePipelineExecutionCommandInput, cb: (err: any, data?: UpdatePipelineExecutionCommandOutput) => void): void;
3337
2069
  updatePipelineExecution(args: UpdatePipelineExecutionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdatePipelineExecutionCommandOutput) => void): void;
3338
2070
  /**
3339
- * @public
3340
- * <p>Updates a machine learning (ML) project that is created from a template that
3341
- * sets up an ML pipeline from training to deploying an approved model.</p>
3342
- * <note>
3343
- * <p>You must not update a project that is in use. If you update the
3344
- * <code>ServiceCatalogProvisioningUpdateDetails</code> of a project that is active
3345
- * or being created, or updated, you may lose resources already created by the
3346
- * project.</p>
3347
- * </note>
2071
+ * @see {@link UpdateProjectCommand}
3348
2072
  */
3349
2073
  updateProject(args: UpdateProjectCommandInput, options?: __HttpHandlerOptions): Promise<UpdateProjectCommandOutput>;
3350
2074
  updateProject(args: UpdateProjectCommandInput, cb: (err: any, data?: UpdateProjectCommandOutput) => void): void;
3351
2075
  updateProject(args: UpdateProjectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateProjectCommandOutput) => void): void;
3352
2076
  /**
3353
- * @public
3354
- * <p>Updates the settings of a space.</p>
2077
+ * @see {@link UpdateSpaceCommand}
3355
2078
  */
3356
2079
  updateSpace(args: UpdateSpaceCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSpaceCommandOutput>;
3357
2080
  updateSpace(args: UpdateSpaceCommandInput, cb: (err: any, data?: UpdateSpaceCommandOutput) => void): void;
3358
2081
  updateSpace(args: UpdateSpaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSpaceCommandOutput) => void): void;
3359
2082
  /**
3360
- * @public
3361
- * <p>Update a model training job to request a new Debugger profiling configuration or to
3362
- * change warm pool retention length.</p>
2083
+ * @see {@link UpdateTrainingJobCommand}
3363
2084
  */
3364
2085
  updateTrainingJob(args: UpdateTrainingJobCommandInput, options?: __HttpHandlerOptions): Promise<UpdateTrainingJobCommandOutput>;
3365
2086
  updateTrainingJob(args: UpdateTrainingJobCommandInput, cb: (err: any, data?: UpdateTrainingJobCommandOutput) => void): void;
3366
2087
  updateTrainingJob(args: UpdateTrainingJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateTrainingJobCommandOutput) => void): void;
3367
2088
  /**
3368
- * @public
3369
- * <p>Updates the display name of a trial.</p>
2089
+ * @see {@link UpdateTrialCommand}
3370
2090
  */
3371
2091
  updateTrial(args: UpdateTrialCommandInput, options?: __HttpHandlerOptions): Promise<UpdateTrialCommandOutput>;
3372
2092
  updateTrial(args: UpdateTrialCommandInput, cb: (err: any, data?: UpdateTrialCommandOutput) => void): void;
3373
2093
  updateTrial(args: UpdateTrialCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateTrialCommandOutput) => void): void;
3374
2094
  /**
3375
- * @public
3376
- * <p>Updates one or more properties of a trial component.</p>
2095
+ * @see {@link UpdateTrialComponentCommand}
3377
2096
  */
3378
2097
  updateTrialComponent(args: UpdateTrialComponentCommandInput, options?: __HttpHandlerOptions): Promise<UpdateTrialComponentCommandOutput>;
3379
2098
  updateTrialComponent(args: UpdateTrialComponentCommandInput, cb: (err: any, data?: UpdateTrialComponentCommandOutput) => void): void;
3380
2099
  updateTrialComponent(args: UpdateTrialComponentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateTrialComponentCommandOutput) => void): void;
3381
2100
  /**
3382
- * @public
3383
- * <p>Updates a user profile.</p>
2101
+ * @see {@link UpdateUserProfileCommand}
3384
2102
  */
3385
2103
  updateUserProfile(args: UpdateUserProfileCommandInput, options?: __HttpHandlerOptions): Promise<UpdateUserProfileCommandOutput>;
3386
2104
  updateUserProfile(args: UpdateUserProfileCommandInput, cb: (err: any, data?: UpdateUserProfileCommandOutput) => void): void;
3387
2105
  updateUserProfile(args: UpdateUserProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateUserProfileCommandOutput) => void): void;
3388
2106
  /**
3389
- * @public
3390
- * <p>Use this operation to update your workforce. You can use this operation to
3391
- * require that workers use specific IP addresses to work on tasks
3392
- * and to update your OpenID Connect (OIDC) Identity Provider (IdP) workforce configuration.</p>
3393
- * <p>The worker portal is now supported in VPC and public internet.</p>
3394
- * <p> Use <code>SourceIpConfig</code> to restrict worker access to tasks to a specific range of IP addresses.
3395
- * You specify allowed IP addresses by creating a list of up to ten <a href="https://docs.aws.amazon.com/vpc/latest/userguide/VPC_Subnets.html">CIDRs</a>.
3396
- * By default, a workforce isn't restricted to specific IP addresses. If you specify a
3397
- * range of IP addresses, workers who attempt to access tasks using any IP address outside
3398
- * the specified range are denied and get a <code>Not Found</code> error message on
3399
- * the worker portal.</p>
3400
- * <p>To restrict access to all the workers in public internet, add the <code>SourceIpConfig</code> CIDR value as "10.0.0.0/16".</p>
3401
- * <important>
3402
- * <p>Amazon SageMaker does not support Source Ip restriction for worker portals in VPC.</p>
3403
- * </important>
3404
- * <p>Use <code>OidcConfig</code> to update the configuration of a workforce created using
3405
- * your own OIDC IdP. </p>
3406
- * <important>
3407
- * <p>You can only update your OIDC IdP configuration when there are no work teams
3408
- * associated with your workforce. You can delete work teams using the operation.</p>
3409
- * </important>
3410
- * <p>After restricting access to a range of IP addresses or updating your OIDC IdP configuration with this operation, you
3411
- * can view details about your update workforce using the
3412
- * operation.</p>
3413
- * <important>
3414
- * <p>This operation only applies to private workforces.</p>
3415
- * </important>
2107
+ * @see {@link UpdateWorkforceCommand}
3416
2108
  */
3417
2109
  updateWorkforce(args: UpdateWorkforceCommandInput, options?: __HttpHandlerOptions): Promise<UpdateWorkforceCommandOutput>;
3418
2110
  updateWorkforce(args: UpdateWorkforceCommandInput, cb: (err: any, data?: UpdateWorkforceCommandOutput) => void): void;
3419
2111
  updateWorkforce(args: UpdateWorkforceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateWorkforceCommandOutput) => void): void;
3420
2112
  /**
3421
- * @public
3422
- * <p>Updates an existing work team with new member definitions or description.</p>
2113
+ * @see {@link UpdateWorkteamCommand}
3423
2114
  */
3424
2115
  updateWorkteam(args: UpdateWorkteamCommandInput, options?: __HttpHandlerOptions): Promise<UpdateWorkteamCommandOutput>;
3425
2116
  updateWorkteam(args: UpdateWorkteamCommandInput, cb: (err: any, data?: UpdateWorkteamCommandOutput) => void): void;
3426
2117
  updateWorkteam(args: UpdateWorkteamCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateWorkteamCommandOutput) => void): void;
3427
2118
  }
2119
+ /**
2120
+ * @public
2121
+ * <p>Provides APIs for creating and managing SageMaker resources. </p>
2122
+ * <p>Other Resources:</p>
2123
+ * <ul>
2124
+ * <li>
2125
+ * <p>
2126
+ * <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/whatis.html#first-time-user">SageMaker Developer
2127
+ * Guide</a>
2128
+ * </p>
2129
+ * </li>
2130
+ * <li>
2131
+ * <p>
2132
+ * <a href="https://docs.aws.amazon.com/augmented-ai/2019-11-07/APIReference/Welcome.html">Amazon Augmented AI
2133
+ * Runtime API Reference</a>
2134
+ * </p>
2135
+ * </li>
2136
+ * </ul>
2137
+ */
2138
+ export declare class SageMaker extends SageMakerClient implements SageMaker {
2139
+ }