@aws-sdk/client-sagemaker 3.145.0 → 3.146.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.
Files changed (36) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist-cjs/commands/DescribeHumanTaskUiCommand.js +2 -1
  3. package/dist-cjs/commands/ListPipelineExecutionsCommand.js +3 -3
  4. package/dist-cjs/models/models_1.js +19 -20
  5. package/dist-cjs/models/models_2.js +19 -18
  6. package/dist-cjs/models/models_3.js +16 -4
  7. package/dist-cjs/protocols/Aws_json1_1.js +62 -0
  8. package/dist-es/commands/DescribeHumanTaskUiCommand.js +2 -1
  9. package/dist-es/commands/ListPipelineExecutionsCommand.js +1 -1
  10. package/dist-es/models/models_1.js +6 -7
  11. package/dist-es/models/models_2.js +7 -3
  12. package/dist-es/models/models_3.js +3 -0
  13. package/dist-es/protocols/Aws_json1_1.js +51 -1
  14. package/dist-types/SageMaker.d.ts +28 -29
  15. package/dist-types/commands/AddTagsCommand.d.ts +1 -2
  16. package/dist-types/commands/CreateAlgorithmCommand.d.ts +1 -2
  17. package/dist-types/commands/CreateCodeRepositoryCommand.d.ts +2 -2
  18. package/dist-types/commands/CreateEndpointCommand.d.ts +8 -6
  19. package/dist-types/commands/CreateModelCommand.d.ts +2 -4
  20. package/dist-types/commands/CreatePresignedNotebookInstanceUrlCommand.d.ts +1 -1
  21. package/dist-types/commands/DeleteEndpointCommand.d.ts +6 -6
  22. package/dist-types/commands/DeleteModelCommand.d.ts +3 -3
  23. package/dist-types/commands/DescribeHumanTaskUiCommand.d.ts +2 -1
  24. package/dist-types/commands/ListNotebookInstancesCommand.d.ts +2 -2
  25. package/dist-types/commands/ListPipelineExecutionsCommand.d.ts +1 -1
  26. package/dist-types/commands/ListTrainingJobsCommand.d.ts +2 -1
  27. package/dist-types/models/models_0.d.ts +218 -193
  28. package/dist-types/models/models_1.d.ts +235 -157
  29. package/dist-types/models/models_2.d.ts +83 -120
  30. package/dist-types/models/models_3.d.ts +115 -23
  31. package/dist-types/ts3.4/commands/DescribeHumanTaskUiCommand.d.ts +2 -1
  32. package/dist-types/ts3.4/commands/ListPipelineExecutionsCommand.d.ts +1 -1
  33. package/dist-types/ts3.4/models/models_1.d.ts +35 -29
  34. package/dist-types/ts3.4/models/models_2.d.ts +26 -42
  35. package/dist-types/ts3.4/models/models_3.d.ts +44 -1
  36. package/package.json +1 -1
@@ -1,5 +1,44 @@
1
1
  import { ActionSummary, AdditionalInferenceSpecificationDefinition, AgentVersion, AlgorithmSortBy, AlgorithmSpecification, AlgorithmSummary, AppDetails, AppImageConfigDetails, AppImageConfigSortKey, AppSortKey, AppSpecification, ArtifactSummary, AssociationEdgeType, AssociationSummary, AutoMLCandidate, AutoMLJobStatus, AutoMLJobSummary, AutoMLSortBy, AutoMLSortOrder, BatchStrategy, CandidateSortBy, CandidateStatus, Channel, CheckpointConfig, CodeRepositorySortBy, CodeRepositorySortOrder, CodeRepositorySummary, CognitoConfig, CompilationJobStatus, CompilationJobSummary, ContainerDefinition, ContextSummary, EdgeOutputConfig, FeatureDefinition, FeatureType, HyperParameterTuningJobObjectiveType, HyperParameterTuningJobStrategyType, InferenceSpecification, MetadataProperties, ModelApprovalStatus, ModelPackageStatus, MonitoringNetworkConfig, MonitoringOutputConfig, MonitoringResources, MonitoringStoppingCondition, ObjectiveStatus, OfflineStoreConfig, OnlineStoreConfig, OutputDataConfig, OutputParameter, ProductionVariantInstanceType, ResourceConfig, ResourceLimits, ResourceSpec, StoppingCondition, Tag, TransformInput, TransformOutput, TransformResources, UserContext, UserSettings, VpcConfig } from "./models_0";
2
2
  import { _InstanceType, DataCaptureConfigSummary, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DirectInternetAccess, DomainStatus, DriftCheckBaselines, EdgePackagingJobStatus, EndpointStatus, ExperimentConfig, ExperimentSource, FeatureGroupStatus, FeatureParameter, FlowDefinitionStatus, HumanTaskConfig, HyperParameterTrainingJobDefinition, HyperParameterTuningJobConfig, HyperParameterTuningJobWarmStartConfig, InferenceExecutionConfig, InstanceMetadataServiceConfiguration, LabelingJobAlgorithmsConfig, LabelingJobInputConfig, LabelingJobOutputConfig, LabelingJobStoppingConditions, LastUpdateStatus, MemberDefinition, ModelArtifacts, ModelBiasAppSpecification, ModelBiasBaselineConfig, ModelBiasJobInput, ModelClientConfig, ModelExplainabilityAppSpecification, ModelExplainabilityBaselineConfig, ModelExplainabilityJobInput, ModelMetrics, ModelPackageValidationSpecification, ModelQualityAppSpecification, ModelQualityBaselineConfig, ModelQualityJobInput, MonitoringScheduleConfig, MonitoringType, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, NotificationConfiguration, OfflineStoreStatus, OfflineStoreStatusValue, ParallelismConfiguration, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, ProductionVariantSummary, ProfilerConfig, ProfilerRuleConfiguration, RecommendationJobInputConfig, RecommendationJobStoppingConditions, RecommendationJobType, RetryStrategy, RootAccess, RuleEvaluationStatus, ServiceCatalogProvisioningDetails, SourceAlgorithmSpecification, SourceIpConfig, StudioLifecycleConfigAppType, TensorBoardOutputConfig, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus } from "./models_1";
3
+ export declare enum HumanTaskUiStatus {
4
+ ACTIVE = "Active",
5
+ DELETING = "Deleting"
6
+ }
7
+ /**
8
+ * <p>Container for user interface template information.</p>
9
+ */
10
+ export interface UiTemplateInfo {
11
+ /**
12
+ * <p>The URL for the user interface template.</p>
13
+ */
14
+ Url?: string;
15
+ /**
16
+ * <p>The SHA-256 digest of the contents of the template.</p>
17
+ */
18
+ ContentSha256?: string;
19
+ }
20
+ export interface DescribeHumanTaskUiResponse {
21
+ /**
22
+ * <p>The Amazon Resource Name (ARN) of the human task user interface (worker task template).</p>
23
+ */
24
+ HumanTaskUiArn: string | undefined;
25
+ /**
26
+ * <p>The name of the human task user interface (worker task template).</p>
27
+ */
28
+ HumanTaskUiName: string | undefined;
29
+ /**
30
+ * <p>The status of the human task user interface (worker task template). Valid values are listed below.</p>
31
+ */
32
+ HumanTaskUiStatus?: HumanTaskUiStatus | string;
33
+ /**
34
+ * <p>The timestamp when the human task user interface was created.</p>
35
+ */
36
+ CreationTime: Date | undefined;
37
+ /**
38
+ * <p>Container for user interface template information.</p>
39
+ */
40
+ UiTemplate: UiTemplateInfo | undefined;
41
+ }
3
42
  export interface DescribeHyperParameterTuningJobRequest {
4
43
  /**
5
44
  * <p>The name of the tuning job.</p>
@@ -642,8 +681,8 @@ export interface DescribeLabelingJobResponse {
642
681
  */
643
682
  InputConfig: LabelingJobInputConfig | undefined;
644
683
  /**
645
- * <p>The location of the job's output data and the Amazon Web Services Key Management Service key ID for the key used to
646
- * encrypt the output data, if any.</p>
684
+ * <p>The location of the job's output data and the Amazon Web Services Key Management
685
+ * Service key ID for the key used to encrypt the output data, if any.</p>
647
686
  */
648
687
  OutputConfig: LabelingJobOutputConfig | undefined;
649
688
  /**
@@ -725,10 +764,9 @@ export interface DescribeLabelingJobResponse {
725
764
  */
726
765
  HumanTaskConfig: HumanTaskConfig | undefined;
727
766
  /**
728
- * <p>An array of key-value pairs. You can use tags to categorize your Amazon Web Services resources in
729
- * different ways, for example, by purpose, owner, or environment. For more information,
730
- * see <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging Amazon Web Services
731
- * Resources</a>.</p>
767
+ * <p>An array of key-value pairs. You can use tags to categorize your Amazon Web Services
768
+ * resources in different ways, for example, by purpose, owner, or environment. For more
769
+ * information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging Amazon Web Services Resources</a>.</p>
732
770
  */
733
771
  Tags?: Tag[];
734
772
  /**
@@ -1383,8 +1421,8 @@ export interface DescribeNotebookInstanceOutput {
1383
1421
  */
1384
1422
  RoleArn?: string;
1385
1423
  /**
1386
- * <p>The Amazon Web Services KMS key ID SageMaker uses to encrypt data when storing it on the ML storage
1387
- * volume attached to the instance. </p>
1424
+ * <p>The Amazon Web Services KMS key ID SageMaker uses to encrypt data when storing it on the
1425
+ * ML storage volume attached to the instance. </p>
1388
1426
  */
1389
1427
  KmsKeyId?: string;
1390
1428
  /**
@@ -1430,18 +1468,18 @@ export interface DescribeNotebookInstanceOutput {
1430
1468
  /**
1431
1469
  * <p>The Git repository associated with the notebook instance as its default code
1432
1470
  * repository. This can be either the name of a Git repository stored as a resource in your
1433
- * account, or the URL of a Git repository in <a href="https://docs.aws.amazon.com/codecommit/latest/userguide/welcome.html">Amazon Web Services CodeCommit</a> or in any
1434
- * other Git repository. When you open a notebook instance, it opens in the directory that
1435
- * contains this repository. For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/nbi-git-repo.html">Associating Git Repositories with SageMaker
1436
- * Notebook Instances</a>.</p>
1471
+ * account, or the URL of a Git repository in <a href="https://docs.aws.amazon.com/codecommit/latest/userguide/welcome.html">Amazon Web Services CodeCommit</a>
1472
+ * or in any other Git repository. When you open a notebook instance, it opens in the
1473
+ * directory that contains this repository. For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/nbi-git-repo.html">Associating Git
1474
+ * Repositories with SageMaker Notebook Instances</a>.</p>
1437
1475
  */
1438
1476
  DefaultCodeRepository?: string;
1439
1477
  /**
1440
1478
  * <p>An array of up to three Git repositories associated with the notebook instance. These
1441
1479
  * can be either the names of Git repositories stored as resources in your account, or the
1442
- * URL of Git repositories in <a href="https://docs.aws.amazon.com/codecommit/latest/userguide/welcome.html">Amazon Web Services CodeCommit</a> or in any
1443
- * other Git repository. These repositories are cloned at the same level as the default
1444
- * repository of your notebook instance. For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/nbi-git-repo.html">Associating Git
1480
+ * URL of Git repositories in <a href="https://docs.aws.amazon.com/codecommit/latest/userguide/welcome.html">Amazon Web Services CodeCommit</a>
1481
+ * or in any other Git repository. These repositories are cloned at the same level as the
1482
+ * default repository of your notebook instance. For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/nbi-git-repo.html">Associating Git
1445
1483
  * Repositories with SageMaker Notebook Instances</a>.</p>
1446
1484
  */
1447
1485
  AdditionalCodeRepositories?: string[];
@@ -2373,7 +2411,8 @@ export interface DescribeTrainingJobResponse {
2373
2411
  */
2374
2412
  AlgorithmSpecification: AlgorithmSpecification | undefined;
2375
2413
  /**
2376
- * <p>The Amazon Web Services Identity and Access Management (IAM) role configured for the training job. </p>
2414
+ * <p>The Amazon Web Services Identity and Access Management (IAM) role configured for
2415
+ * the training job. </p>
2377
2416
  */
2378
2417
  RoleArn?: string;
2379
2418
  /**
@@ -3420,7 +3459,8 @@ export interface DomainDetails {
3420
3459
  Url?: string;
3421
3460
  }
3422
3461
  /**
3423
- * <p>A collection of settings that update the current configuration for the <code>RStudioServerPro</code> Domain-level app.</p>
3462
+ * <p>A collection of settings that update the current configuration for the
3463
+ * <code>RStudioServerPro</code> Domain-level app.</p>
3424
3464
  */
3425
3465
  export interface RStudioServerProDomainSettingsForUpdate {
3426
3466
  /**
@@ -3438,7 +3478,8 @@ export interface RStudioServerProDomainSettingsForUpdate {
3438
3478
  */
3439
3479
  export interface DomainSettingsForUpdate {
3440
3480
  /**
3441
- * <p>A collection of <code>RStudioServerPro</code> Domain-level app settings to update.</p>
3481
+ * <p>A collection of <code>RStudioServerPro</code> Domain-level app settings to
3482
+ * update.</p>
3442
3483
  */
3443
3484
  RStudioServerProDomainSettingsForUpdate?: RStudioServerProDomainSettingsForUpdate;
3444
3485
  }
@@ -3706,8 +3747,8 @@ export interface Endpoint {
3706
3747
  */
3707
3748
  MonitoringSchedules?: MonitoringSchedule[];
3708
3749
  /**
3709
- * <p>A list of the tags associated with the endpoint. For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging Amazon Web Services
3710
- * resources</a> in the <i>Amazon Web Services General Reference Guide</i>.</p>
3750
+ * <p>A list of the tags associated with the endpoint. For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging Amazon Web Services resources</a> in the <i>Amazon Web Services General
3751
+ * Reference Guide</i>.</p>
3711
3752
  */
3712
3753
  Tags?: Tag[];
3713
3754
  }
@@ -4460,9 +4501,9 @@ export interface GetSearchSuggestionsResponse {
4460
4501
  */
4461
4502
  export interface GitConfigForUpdate {
4462
4503
  /**
4463
- * <p>The Amazon Resource Name (ARN) of the Amazon Web Services Secrets Manager secret that contains the
4464
- * credentials used to access the git repository. The secret must have a staging label of
4465
- * <code>AWSCURRENT</code> and must be in the following format:</p>
4504
+ * <p>The Amazon Resource Name (ARN) of the Amazon Web Services Secrets Manager secret that
4505
+ * contains the credentials used to access the git repository. The secret must have a
4506
+ * staging label of <code>AWSCURRENT</code> and must be in the following format:</p>
4466
4507
  * <p>
4467
4508
  * <code>{"username": <i>UserName</i>, "password":
4468
4509
  * <i>Password</i>}</code>
@@ -4718,7 +4759,8 @@ export interface LabelingJobForWorkteamSummary {
4718
4759
  */
4719
4760
  JobReferenceCode: string | undefined;
4720
4761
  /**
4721
- * <p>The Amazon Web Services account ID of the account used to start the labeling job.</p>
4762
+ * <p>The Amazon Web Services account ID of the account used to start the labeling
4763
+ * job.</p>
4722
4764
  */
4723
4765
  WorkRequesterAccountId: string | undefined;
4724
4766
  /**
@@ -5300,8 +5342,8 @@ export interface ListCodeRepositoriesOutput {
5300
5342
  * </li>
5301
5343
  * <li>
5302
5344
  * <p>Configuration information, including the URL location of the repository and
5303
- * the ARN of the Amazon Web Services Secrets Manager secret that contains the credentials used
5304
- * to access the repository.</p>
5345
+ * the ARN of the Amazon Web Services Secrets Manager secret that contains the
5346
+ * credentials used to access the repository.</p>
5305
5347
  * </li>
5306
5348
  * </ul>
5307
5349
  */
@@ -6862,8 +6904,8 @@ export interface ListModelsInput {
6862
6904
  */
6863
6905
  MaxResults?: number;
6864
6906
  /**
6865
- * <p>A string in the model name. This filter returns only models whose
6866
- * name contains the specified string.</p>
6907
+ * <p>A string in the model name. This filter returns only models whose name contains the
6908
+ * specified string.</p>
6867
6909
  */
6868
6910
  NameContains?: string;
6869
6911
  /**
@@ -7312,18 +7354,18 @@ export interface NotebookInstanceSummary {
7312
7354
  /**
7313
7355
  * <p>The Git repository associated with the notebook instance as its default code
7314
7356
  * repository. This can be either the name of a Git repository stored as a resource in your
7315
- * account, or the URL of a Git repository in <a href="https://docs.aws.amazon.com/codecommit/latest/userguide/welcome.html">Amazon Web Services CodeCommit</a> or in any
7316
- * other Git repository. When you open a notebook instance, it opens in the directory that
7317
- * contains this repository. For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/nbi-git-repo.html">Associating Git Repositories with SageMaker
7318
- * Notebook Instances</a>.</p>
7357
+ * account, or the URL of a Git repository in <a href="https://docs.aws.amazon.com/codecommit/latest/userguide/welcome.html">Amazon Web Services CodeCommit</a>
7358
+ * or in any other Git repository. When you open a notebook instance, it opens in the
7359
+ * directory that contains this repository. For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/nbi-git-repo.html">Associating Git
7360
+ * Repositories with SageMaker Notebook Instances</a>.</p>
7319
7361
  */
7320
7362
  DefaultCodeRepository?: string;
7321
7363
  /**
7322
7364
  * <p>An array of up to three Git repositories associated with the notebook instance. These
7323
7365
  * can be either the names of Git repositories stored as resources in your account, or the
7324
- * URL of Git repositories in <a href="https://docs.aws.amazon.com/codecommit/latest/userguide/welcome.html">Amazon Web Services CodeCommit</a> or in any
7325
- * other Git repository. These repositories are cloned at the same level as the default
7326
- * repository of your notebook instance. For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/nbi-git-repo.html">Associating Git
7366
+ * URL of Git repositories in <a href="https://docs.aws.amazon.com/codecommit/latest/userguide/welcome.html">Amazon Web Services CodeCommit</a>
7367
+ * or in any other Git repository. These repositories are cloned at the same level as the
7368
+ * default repository of your notebook instance. For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/nbi-git-repo.html">Associating Git
7327
7369
  * Repositories with SageMaker Notebook Instances</a>.</p>
7328
7370
  */
7329
7371
  AdditionalCodeRepositories?: string[];
@@ -7345,81 +7387,14 @@ export declare enum SortPipelineExecutionsBy {
7345
7387
  CREATION_TIME = "CreationTime",
7346
7388
  PIPELINE_EXECUTION_ARN = "PipelineExecutionArn"
7347
7389
  }
7348
- export interface ListPipelineExecutionsRequest {
7349
- /**
7350
- * <p>The name of the pipeline.</p>
7351
- */
7352
- PipelineName: string | undefined;
7353
- /**
7354
- * <p>A filter that returns the pipeline executions that were created after a specified
7355
- * time.</p>
7356
- */
7357
- CreatedAfter?: Date;
7358
- /**
7359
- * <p>A filter that returns the pipeline executions that were created before a specified
7360
- * time.</p>
7361
- */
7362
- CreatedBefore?: Date;
7363
- /**
7364
- * <p>The field by which to sort results. The default is <code>CreatedTime</code>.</p>
7365
- */
7366
- SortBy?: SortPipelineExecutionsBy | string;
7367
- /**
7368
- * <p>The sort order for results.</p>
7369
- */
7370
- SortOrder?: SortOrder | string;
7371
- /**
7372
- * <p>If the result of the previous <code>ListPipelineExecutions</code> request was truncated,
7373
- * the response includes a <code>NextToken</code>. To retrieve the next set of pipeline executions, use the token in the next request.</p>
7374
- */
7375
- NextToken?: string;
7376
- /**
7377
- * <p>The maximum number of pipeline executions to return in the response.</p>
7378
- */
7379
- MaxResults?: number;
7380
- }
7381
7390
  /**
7382
- * <p>A pipeline execution summary.</p>
7391
+ * @internal
7383
7392
  */
7384
- export interface PipelineExecutionSummary {
7385
- /**
7386
- * <p>The Amazon Resource Name (ARN) of the pipeline execution.</p>
7387
- */
7388
- PipelineExecutionArn?: string;
7389
- /**
7390
- * <p>The start time of the pipeline execution.</p>
7391
- */
7392
- StartTime?: Date;
7393
- /**
7394
- * <p>The status of the pipeline execution.</p>
7395
- */
7396
- PipelineExecutionStatus?: PipelineExecutionStatus | string;
7397
- /**
7398
- * <p>The description of the pipeline execution.</p>
7399
- */
7400
- PipelineExecutionDescription?: string;
7401
- /**
7402
- * <p>The display name of the pipeline execution.</p>
7403
- */
7404
- PipelineExecutionDisplayName?: string;
7405
- /**
7406
- * <p>A message generated by SageMaker Pipelines describing why the pipeline execution failed.</p>
7407
- */
7408
- PipelineExecutionFailureReason?: string;
7409
- }
7410
- export interface ListPipelineExecutionsResponse {
7411
- /**
7412
- * <p>Contains a sorted list of pipeline execution summary objects matching the specified
7413
- * filters. Each run summary includes the Amazon Resource Name (ARN) of the pipeline execution, the run date,
7414
- * and the status. This list can be empty. </p>
7415
- */
7416
- PipelineExecutionSummaries?: PipelineExecutionSummary[];
7417
- /**
7418
- * <p>If the result of the previous <code>ListPipelineExecutions</code> request was truncated,
7419
- * the response includes a <code>NextToken</code>. To retrieve the next set of pipeline executions, use the token in the next request.</p>
7420
- */
7421
- NextToken?: string;
7422
- }
7393
+ export declare const UiTemplateInfoFilterSensitiveLog: (obj: UiTemplateInfo) => any;
7394
+ /**
7395
+ * @internal
7396
+ */
7397
+ export declare const DescribeHumanTaskUiResponseFilterSensitiveLog: (obj: DescribeHumanTaskUiResponse) => any;
7423
7398
  /**
7424
7399
  * @internal
7425
7400
  */
@@ -8356,15 +8331,3 @@ export declare const NotebookInstanceSummaryFilterSensitiveLog: (obj: NotebookIn
8356
8331
  * @internal
8357
8332
  */
8358
8333
  export declare const ListNotebookInstancesOutputFilterSensitiveLog: (obj: ListNotebookInstancesOutput) => any;
8359
- /**
8360
- * @internal
8361
- */
8362
- export declare const ListPipelineExecutionsRequestFilterSensitiveLog: (obj: ListPipelineExecutionsRequest) => any;
8363
- /**
8364
- * @internal
8365
- */
8366
- export declare const PipelineExecutionSummaryFilterSensitiveLog: (obj: PipelineExecutionSummary) => any;
8367
- /**
8368
- * @internal
8369
- */
8370
- export declare const ListPipelineExecutionsResponseFilterSensitiveLog: (obj: ListPipelineExecutionsResponse) => any;
@@ -1,6 +1,81 @@
1
1
  import { ActionStatus, AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AppSpecification, BatchStrategy, BooleanOperator, CacheHitResult, CallbackStepMetadata, Channel, CheckpointConfig, ClarifyCheckStepMetadata, ConditionStepMetadata, DeploymentConfig, EdgeOutputConfig, FeatureDefinition, InferenceSpecification, KernelGatewayImageConfig, MetadataProperties, ModelApprovalStatus, ModelPackageStatus, OutputDataConfig, OutputParameter, ResourceConfig, StoppingCondition, Tag, TransformInput, TransformOutput, TransformResources, UiTemplate, UserContext, UserSettings, VpcConfig } from "./models_0";
2
2
  import { _InstanceType, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DriftCheckBaselines, ExperimentConfig, FeatureParameter, InstanceMetadataServiceConfiguration, MemberDefinition, ModelArtifacts, ModelClientConfig, ModelMetrics, ModelPackageValidationSpecification, MonitoringScheduleConfig, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, NotificationConfiguration, OidcConfig, ParallelismConfiguration, PipelineDefinitionS3Location, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, ProfilerRuleConfiguration, ProvisioningParameter, RetryStrategy, RootAccess, ServiceCatalogProvisioningDetails, SourceAlgorithmSpecification, SourceIpConfig, StudioLifecycleConfigAppType, TensorBoardOutputConfig, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus, WorkforceVpcConfigRequest } from "./models_1";
3
- import { DesiredWeightAndCapacity, Device, DeviceDeploymentSummary, Direction, DomainSettingsForUpdate, Edge, EMRStepMetadata, Endpoint, Experiment, FailStepMetadata, FeatureGroup, FeatureMetadata, Filter, GitConfigForUpdate, HyperParameterTrainingJobSummary, LambdaStepMetadata, LineageType, MetricData, ModelPackageGroupStatus, ModelPackageStatusDetails, PipelineExecutionStatus, PipelineExperimentConfig, PipelineStatus, ProcessingJobStatus, ProjectStatus, ResourceType, SecondaryStatus, SecondaryStatusTransition, ServiceCatalogProvisionedProductDetails, SortBy, SortOrder, SubscribedWorkteam, TrainingJobStatus, TransformJobStatus, TrialComponentMetricSummary, TrialComponentSource, TrialSource, UserProfileStatus, Workforce, Workteam } from "./models_2";
3
+ import { DesiredWeightAndCapacity, Device, DeviceDeploymentSummary, Direction, DomainSettingsForUpdate, Edge, EMRStepMetadata, Endpoint, Experiment, FailStepMetadata, FeatureGroup, FeatureMetadata, Filter, GitConfigForUpdate, HyperParameterTrainingJobSummary, LambdaStepMetadata, LineageType, MetricData, ModelPackageGroupStatus, ModelPackageStatusDetails, PipelineExecutionStatus, PipelineExperimentConfig, PipelineStatus, ProcessingJobStatus, ProjectStatus, ResourceType, SecondaryStatus, SecondaryStatusTransition, ServiceCatalogProvisionedProductDetails, SortBy, SortOrder, SortPipelineExecutionsBy, SubscribedWorkteam, TrainingJobStatus, TransformJobStatus, TrialComponentMetricSummary, TrialComponentSource, TrialSource, UserProfileStatus, Workforce, Workteam } from "./models_2";
4
+ export interface ListPipelineExecutionsRequest {
5
+ /**
6
+ * <p>The name of the pipeline.</p>
7
+ */
8
+ PipelineName: string | undefined;
9
+ /**
10
+ * <p>A filter that returns the pipeline executions that were created after a specified
11
+ * time.</p>
12
+ */
13
+ CreatedAfter?: Date;
14
+ /**
15
+ * <p>A filter that returns the pipeline executions that were created before a specified
16
+ * time.</p>
17
+ */
18
+ CreatedBefore?: Date;
19
+ /**
20
+ * <p>The field by which to sort results. The default is <code>CreatedTime</code>.</p>
21
+ */
22
+ SortBy?: SortPipelineExecutionsBy | string;
23
+ /**
24
+ * <p>The sort order for results.</p>
25
+ */
26
+ SortOrder?: SortOrder | string;
27
+ /**
28
+ * <p>If the result of the previous <code>ListPipelineExecutions</code> request was truncated,
29
+ * the response includes a <code>NextToken</code>. To retrieve the next set of pipeline executions, use the token in the next request.</p>
30
+ */
31
+ NextToken?: string;
32
+ /**
33
+ * <p>The maximum number of pipeline executions to return in the response.</p>
34
+ */
35
+ MaxResults?: number;
36
+ }
37
+ /**
38
+ * <p>A pipeline execution summary.</p>
39
+ */
40
+ export interface PipelineExecutionSummary {
41
+ /**
42
+ * <p>The Amazon Resource Name (ARN) of the pipeline execution.</p>
43
+ */
44
+ PipelineExecutionArn?: string;
45
+ /**
46
+ * <p>The start time of the pipeline execution.</p>
47
+ */
48
+ StartTime?: Date;
49
+ /**
50
+ * <p>The status of the pipeline execution.</p>
51
+ */
52
+ PipelineExecutionStatus?: PipelineExecutionStatus | string;
53
+ /**
54
+ * <p>The description of the pipeline execution.</p>
55
+ */
56
+ PipelineExecutionDescription?: string;
57
+ /**
58
+ * <p>The display name of the pipeline execution.</p>
59
+ */
60
+ PipelineExecutionDisplayName?: string;
61
+ /**
62
+ * <p>A message generated by SageMaker Pipelines describing why the pipeline execution failed.</p>
63
+ */
64
+ PipelineExecutionFailureReason?: string;
65
+ }
66
+ export interface ListPipelineExecutionsResponse {
67
+ /**
68
+ * <p>Contains a sorted list of pipeline execution summary objects matching the specified
69
+ * filters. Each run summary includes the Amazon Resource Name (ARN) of the pipeline execution, the run date,
70
+ * and the status. This list can be empty. </p>
71
+ */
72
+ PipelineExecutionSummaries?: PipelineExecutionSummary[];
73
+ /**
74
+ * <p>If the result of the previous <code>ListPipelineExecutions</code> request was truncated,
75
+ * the response includes a <code>NextToken</code>. To retrieve the next set of pipeline executions, use the token in the next request.</p>
76
+ */
77
+ NextToken?: string;
78
+ }
4
79
  export interface ListPipelineExecutionStepsRequest {
5
80
  /**
6
81
  * <p>The Amazon Resource Name (ARN) of the pipeline execution.</p>
@@ -1953,10 +2028,9 @@ export interface Project {
1953
2028
  */
1954
2029
  CreationTime?: Date;
1955
2030
  /**
1956
- * <p>An array of key-value pairs. You can use tags to categorize your Amazon Web Services resources in
1957
- * different ways, for example, by purpose, owner, or environment. For more information,
1958
- * see <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging Amazon Web Services
1959
- * Resources</a>.</p>
2031
+ * <p>An array of key-value pairs. You can use tags to categorize your Amazon Web Services
2032
+ * resources in different ways, for example, by purpose, owner, or environment. For more
2033
+ * information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging Amazon Web Services Resources</a>.</p>
1960
2034
  */
1961
2035
  Tags?: Tag[];
1962
2036
  /**
@@ -2379,7 +2453,8 @@ export interface TrainingJob {
2379
2453
  */
2380
2454
  AlgorithmSpecification?: AlgorithmSpecification;
2381
2455
  /**
2382
- * <p>The Amazon Web Services Identity and Access Management (IAM) role configured for the training job.</p>
2456
+ * <p>The Amazon Web Services Identity and Access Management (IAM) role configured for the
2457
+ * training job.</p>
2383
2458
  */
2384
2459
  RoleArn?: string;
2385
2460
  /**
@@ -2528,10 +2603,9 @@ export interface TrainingJob {
2528
2603
  */
2529
2604
  RetryStrategy?: RetryStrategy;
2530
2605
  /**
2531
- * <p>An array of key-value pairs. You can use tags to categorize your Amazon Web Services resources in
2532
- * different ways, for example, by purpose, owner, or environment. For more information,
2533
- * see <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging Amazon Web Services
2534
- * Resources</a>.</p>
2606
+ * <p>An array of key-value pairs. You can use tags to categorize your Amazon Web Services
2607
+ * resources in different ways, for example, by purpose, owner, or environment. For more
2608
+ * information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging Amazon Web Services Resources</a>.</p>
2535
2609
  */
2536
2610
  Tags?: Tag[];
2537
2611
  }
@@ -3222,9 +3296,9 @@ export interface UpdateCodeRepositoryInput {
3222
3296
  CodeRepositoryName: string | undefined;
3223
3297
  /**
3224
3298
  * <p>The configuration of the git repository, including the URL and the Amazon Resource
3225
- * Name (ARN) of the Amazon Web Services Secrets Manager secret that contains the credentials used to
3226
- * access the repository. The secret must have a staging label of <code>AWSCURRENT</code>
3227
- * and must be in the following format:</p>
3299
+ * Name (ARN) of the Amazon Web Services Secrets Manager secret that contains the
3300
+ * credentials used to access the repository. The secret must have a staging label of
3301
+ * <code>AWSCURRENT</code> and must be in the following format:</p>
3228
3302
  * <p>
3229
3303
  * <code>{"username": <i>UserName</i>, "password":
3230
3304
  * <i>Password</i>}</code>
@@ -3380,7 +3454,8 @@ export interface UpdateEndpointInput {
3380
3454
  */
3381
3455
  ExcludeRetainedVariantProperties?: VariantProperty[];
3382
3456
  /**
3383
- * <p>The deployment configuration for an endpoint, which contains the desired deployment strategy and rollback configurations.</p>
3457
+ * <p>The deployment configuration for an endpoint, which contains the desired deployment
3458
+ * strategy and rollback configurations.</p>
3384
3459
  */
3385
3460
  DeploymentConfig?: DeploymentConfig;
3386
3461
  /**
@@ -3438,7 +3513,9 @@ export interface UpdateFeatureGroupRequest {
3438
3513
  */
3439
3514
  FeatureGroupName: string | undefined;
3440
3515
  /**
3441
- * <p>A list of the features that you're adding to the feature group.</p>
3516
+ * <p>Updates the feature group. Updating a feature group is an asynchronous operation. When
3517
+ * you get an HTTP 200 response, you've made a valid request. It takes some time after you've
3518
+ * made a valid request for Feature Store to update the feature group.</p>
3442
3519
  */
3443
3520
  FeatureAdditions?: FeatureDefinition[];
3444
3521
  }
@@ -3596,18 +3673,18 @@ export interface UpdateNotebookInstanceInput {
3596
3673
  /**
3597
3674
  * <p>The Git repository to associate with the notebook instance as its default code
3598
3675
  * repository. This can be either the name of a Git repository stored as a resource in your
3599
- * account, or the URL of a Git repository in <a href="https://docs.aws.amazon.com/codecommit/latest/userguide/welcome.html">Amazon Web Services CodeCommit</a> or in any
3600
- * other Git repository. When you open a notebook instance, it opens in the directory that
3601
- * contains this repository. For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/nbi-git-repo.html">Associating Git Repositories with SageMaker
3602
- * Notebook Instances</a>.</p>
3676
+ * account, or the URL of a Git repository in <a href="https://docs.aws.amazon.com/codecommit/latest/userguide/welcome.html">Amazon Web Services CodeCommit</a>
3677
+ * or in any other Git repository. When you open a notebook instance, it opens in the
3678
+ * directory that contains this repository. For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/nbi-git-repo.html">Associating Git
3679
+ * Repositories with SageMaker Notebook Instances</a>.</p>
3603
3680
  */
3604
3681
  DefaultCodeRepository?: string;
3605
3682
  /**
3606
3683
  * <p>An array of up to three Git repositories to associate with the notebook instance.
3607
3684
  * These can be either the names of Git repositories stored as resources in your account,
3608
- * or the URL of Git repositories in <a href="https://docs.aws.amazon.com/codecommit/latest/userguide/welcome.html">Amazon Web Services CodeCommit</a> or in any
3609
- * other Git repository. These repositories are cloned at the same level as the default
3610
- * repository of your notebook instance. For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/nbi-git-repo.html">Associating Git
3685
+ * or the URL of Git repositories in <a href="https://docs.aws.amazon.com/codecommit/latest/userguide/welcome.html">Amazon Web Services CodeCommit</a>
3686
+ * or in any other Git repository. These repositories are cloned at the same level as the
3687
+ * default repository of your notebook instance. For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/nbi-git-repo.html">Associating Git
3611
3688
  * Repositories with SageMaker Notebook Instances</a>.</p>
3612
3689
  */
3613
3690
  AdditionalCodeRepositories?: string[];
@@ -3771,7 +3848,10 @@ export interface UpdateProjectInput {
3771
3848
  /**
3772
3849
  * <p>An array of key-value pairs. You can use tags to categorize your
3773
3850
  * Amazon Web Services resources in different ways, for example, by purpose, owner, or
3774
- * environment. For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging Amazon Web Services Resources</a>.</p>
3851
+ * environment. For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging Amazon Web Services Resources</a>.
3852
+ * In addition, the project must have tag update constraints set in order to include this
3853
+ * parameter in the request. For more information, see <a href="https://docs.aws.amazon.com/servicecatalog/latest/adminguide/constraints-resourceupdate.html">Amazon Web Services Service
3854
+ * Catalog Tag Update Constraints</a>.</p>
3775
3855
  */
3776
3856
  Tags?: Tag[];
3777
3857
  }
@@ -4051,6 +4131,18 @@ export interface SearchRequest {
4051
4131
  */
4052
4132
  MaxResults?: number;
4053
4133
  }
4134
+ /**
4135
+ * @internal
4136
+ */
4137
+ export declare const ListPipelineExecutionsRequestFilterSensitiveLog: (obj: ListPipelineExecutionsRequest) => any;
4138
+ /**
4139
+ * @internal
4140
+ */
4141
+ export declare const PipelineExecutionSummaryFilterSensitiveLog: (obj: PipelineExecutionSummary) => any;
4142
+ /**
4143
+ * @internal
4144
+ */
4145
+ export declare const ListPipelineExecutionsResponseFilterSensitiveLog: (obj: ListPipelineExecutionsResponse) => any;
4054
4146
  /**
4055
4147
  * @internal
4056
4148
  */
@@ -1,6 +1,7 @@
1
1
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
2
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DescribeHumanTaskUiRequest, DescribeHumanTaskUiResponse } from "../models/models_1";
3
+ import { DescribeHumanTaskUiRequest } from "../models/models_1";
4
+ import { DescribeHumanTaskUiResponse } from "../models/models_2";
4
5
  import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
5
6
  export interface DescribeHumanTaskUiCommandInput extends DescribeHumanTaskUiRequest {
6
7
  }
@@ -1,6 +1,6 @@
1
1
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
2
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ListPipelineExecutionsRequest, ListPipelineExecutionsResponse } from "../models/models_2";
3
+ import { ListPipelineExecutionsRequest, ListPipelineExecutionsResponse } from "../models/models_3";
4
4
  import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
5
5
  export interface ListPipelineExecutionsCommandInput extends ListPipelineExecutionsRequest {
6
6
  }