aws-sdk-sagemaker 1.368.0 → 1.370.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.
@@ -7487,6 +7487,38 @@ module Aws::SageMaker
7487
7487
  include Aws::Structure
7488
7488
  end
7489
7489
 
7490
+ # The configuration for the restricted instance groups (RIG) in the
7491
+ # SageMaker HyperPod cluster.
7492
+ #
7493
+ # @!attribute [rw] shared_environment_config
7494
+ # The shared environment configuration for the restricted instance
7495
+ # groups (RIG).
7496
+ # @return [Types::ClusterSharedEnvironmentConfig]
7497
+ #
7498
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterRestrictedInstanceGroupsConfig AWS API Documentation
7499
+ #
7500
+ class ClusterRestrictedInstanceGroupsConfig < Struct.new(
7501
+ :shared_environment_config)
7502
+ SENSITIVE = []
7503
+ include Aws::Structure
7504
+ end
7505
+
7506
+ # The output configuration for the restricted instance groups (RIG) in
7507
+ # the SageMaker HyperPod cluster.
7508
+ #
7509
+ # @!attribute [rw] shared_environment_config
7510
+ # The shared environment configuration details for the restricted
7511
+ # instance groups (RIG).
7512
+ # @return [Types::ClusterSharedEnvironmentConfigDetails]
7513
+ #
7514
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterRestrictedInstanceGroupsConfigOutput AWS API Documentation
7515
+ #
7516
+ class ClusterRestrictedInstanceGroupsConfigOutput < Struct.new(
7517
+ :shared_environment_config)
7518
+ SENSITIVE = []
7519
+ include Aws::Structure
7520
+ end
7521
+
7490
7522
  # Summary of the cluster policy.
7491
7523
  #
7492
7524
  # @!attribute [rw] cluster_scheduler_config_arn
@@ -7536,6 +7568,62 @@ module Aws::SageMaker
7536
7568
  include Aws::Structure
7537
7569
  end
7538
7570
 
7571
+ # The shared environment configuration for the restricted instance
7572
+ # groups (RIG).
7573
+ #
7574
+ # @!attribute [rw] f_sx_lustre_deletion_policy
7575
+ # The deletion policy for the Amazon FSx for Lustre file system in the
7576
+ # shared environment.
7577
+ # @return [String]
7578
+ #
7579
+ # @!attribute [rw] f_sx_lustre_config
7580
+ # Configuration settings for an Amazon FSx for Lustre file system in
7581
+ # the shared environment.
7582
+ # @return [Types::FSxLustreConfig]
7583
+ #
7584
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterSharedEnvironmentConfig AWS API Documentation
7585
+ #
7586
+ class ClusterSharedEnvironmentConfig < Struct.new(
7587
+ :f_sx_lustre_deletion_policy,
7588
+ :f_sx_lustre_config)
7589
+ SENSITIVE = []
7590
+ include Aws::Structure
7591
+ end
7592
+
7593
+ # The shared environment configuration details for the restricted
7594
+ # instance groups (RIG).
7595
+ #
7596
+ # @!attribute [rw] current_f_sx_lustre_config
7597
+ # The current Amazon FSx for Lustre file system configuration in the
7598
+ # shared environment.
7599
+ # @return [Types::FSxLustreConfig]
7600
+ #
7601
+ # @!attribute [rw] desired_f_sx_lustre_config
7602
+ # The desired Amazon FSx for Lustre file system configuration in the
7603
+ # shared environment.
7604
+ # @return [Types::FSxLustreConfig]
7605
+ #
7606
+ # @!attribute [rw] current_f_sx_lustre_deletion_policy
7607
+ # The current deletion policy for the Amazon FSx for Lustre file
7608
+ # system in the shared environment.
7609
+ # @return [String]
7610
+ #
7611
+ # @!attribute [rw] desired_f_sx_lustre_deletion_policy
7612
+ # The desired deletion policy for the Amazon FSx for Lustre file
7613
+ # system in the shared environment.
7614
+ # @return [String]
7615
+ #
7616
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterSharedEnvironmentConfigDetails AWS API Documentation
7617
+ #
7618
+ class ClusterSharedEnvironmentConfigDetails < Struct.new(
7619
+ :current_f_sx_lustre_config,
7620
+ :desired_f_sx_lustre_config,
7621
+ :current_f_sx_lustre_deletion_policy,
7622
+ :desired_f_sx_lustre_deletion_policy)
7623
+ SENSITIVE = []
7624
+ include Aws::Structure
7625
+ end
7626
+
7539
7627
  # The Slurm configuration for an instance group in a SageMaker HyperPod
7540
7628
  # cluster.
7541
7629
  #
@@ -9310,6 +9398,11 @@ module Aws::SageMaker
9310
9398
  # to be created in the SageMaker HyperPod cluster.
9311
9399
  # @return [Array<Types::ClusterRestrictedInstanceGroupSpecification>]
9312
9400
  #
9401
+ # @!attribute [rw] restricted_instance_groups_config
9402
+ # The configuration for the restricted instance groups (RIG) in the
9403
+ # SageMaker HyperPod cluster.
9404
+ # @return [Types::ClusterRestrictedInstanceGroupsConfig]
9405
+ #
9313
9406
  # @!attribute [rw] vpc_config
9314
9407
  # Specifies the Amazon Virtual Private Cloud (VPC) that is associated
9315
9408
  # with the Amazon SageMaker HyperPod cluster. You can control access
@@ -9429,6 +9522,7 @@ module Aws::SageMaker
9429
9522
  :cluster_name,
9430
9523
  :instance_groups,
9431
9524
  :restricted_instance_groups,
9525
+ :restricted_instance_groups_config,
9432
9526
  :vpc_config,
9433
9527
  :tags,
9434
9528
  :orchestrator,
@@ -11457,6 +11551,69 @@ module Aws::SageMaker
11457
11551
  include Aws::Structure
11458
11552
  end
11459
11553
 
11554
+ # @!attribute [rw] job_name
11555
+ # The name of the job. The name must be unique within your account and
11556
+ # Amazon Web Services Region.
11557
+ # @return [String]
11558
+ #
11559
+ # @!attribute [rw] role_arn
11560
+ # The Amazon Resource Name (ARN) of the IAM role that Amazon SageMaker
11561
+ # assumes to perform the job. The role must have the necessary
11562
+ # permissions to access the resources required by the job
11563
+ # configuration.
11564
+ # @return [String]
11565
+ #
11566
+ # @!attribute [rw] job_category
11567
+ # The category of the job. The category determines the type of
11568
+ # workload that the job runs.
11569
+ # @return [String]
11570
+ #
11571
+ # @!attribute [rw] job_config_schema_version
11572
+ # The version of the configuration schema to use for the job
11573
+ # configuration document. Use `ListJobSchemaVersions` to get available
11574
+ # schema versions for a job category.
11575
+ # @return [String]
11576
+ #
11577
+ # @!attribute [rw] job_config_document
11578
+ # The JSON configuration document for the job. The document must
11579
+ # conform to the schema specified by `JobConfigSchemaVersion`. Use
11580
+ # `DescribeJobSchemaVersion` to retrieve the schema for validation.
11581
+ # @return [String]
11582
+ #
11583
+ # @!attribute [rw] tags
11584
+ # An array of key-value pairs to apply to the job as tags. For more
11585
+ # information, see [Tagging Amazon Web Services Resources][1].
11586
+ #
11587
+ #
11588
+ #
11589
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
11590
+ # @return [Array<Types::Tag>]
11591
+ #
11592
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateJobRequest AWS API Documentation
11593
+ #
11594
+ class CreateJobRequest < Struct.new(
11595
+ :job_name,
11596
+ :role_arn,
11597
+ :job_category,
11598
+ :job_config_schema_version,
11599
+ :job_config_document,
11600
+ :tags)
11601
+ SENSITIVE = []
11602
+ include Aws::Structure
11603
+ end
11604
+
11605
+ # @!attribute [rw] job_arn
11606
+ # The Amazon Resource Name (ARN) of the job.
11607
+ # @return [String]
11608
+ #
11609
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateJobResponse AWS API Documentation
11610
+ #
11611
+ class CreateJobResponse < Struct.new(
11612
+ :job_arn)
11613
+ SENSITIVE = []
11614
+ include Aws::Structure
11615
+ end
11616
+
11460
11617
  # @!attribute [rw] labeling_job_name
11461
11618
  # The name of the labeling job. This name is used to identify the job
11462
11619
  # in a list of labeling jobs. Labeling job names must be unique within
@@ -15946,6 +16103,27 @@ module Aws::SageMaker
15946
16103
  include Aws::Structure
15947
16104
  end
15948
16105
 
16106
+ # @!attribute [rw] job_name
16107
+ # The name of the job to delete.
16108
+ # @return [String]
16109
+ #
16110
+ # @!attribute [rw] job_category
16111
+ # The category of the job to delete.
16112
+ # @return [String]
16113
+ #
16114
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteJobRequest AWS API Documentation
16115
+ #
16116
+ class DeleteJobRequest < Struct.new(
16117
+ :job_name,
16118
+ :job_category)
16119
+ SENSITIVE = []
16120
+ include Aws::Structure
16121
+ end
16122
+
16123
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteJobResponse AWS API Documentation
16124
+ #
16125
+ class DeleteJobResponse < Aws::EmptyStructure; end
16126
+
15949
16127
  # @!attribute [rw] arn
15950
16128
  # The ARN of the MLflow App to delete.
15951
16129
  # @return [String]
@@ -17695,6 +17873,11 @@ module Aws::SageMaker
17695
17873
  # to be created in the SageMaker HyperPod cluster.
17696
17874
  # @return [Array<Types::ClusterRestrictedInstanceGroupDetails>]
17697
17875
  #
17876
+ # @!attribute [rw] restricted_instance_groups_config
17877
+ # The configuration for the restricted instance groups (RIG) in the
17878
+ # SageMaker HyperPod cluster.
17879
+ # @return [Types::ClusterRestrictedInstanceGroupsConfigOutput]
17880
+ #
17698
17881
  # @!attribute [rw] vpc_config
17699
17882
  # Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker
17700
17883
  # jobs, hosted models, and compute resources have access to. You can
@@ -17746,6 +17929,7 @@ module Aws::SageMaker
17746
17929
  :failure_message,
17747
17930
  :instance_groups,
17748
17931
  :restricted_instance_groups,
17932
+ :restricted_instance_groups_config,
17749
17933
  :vpc_config,
17750
17934
  :orchestrator,
17751
17935
  :tiered_storage_config,
@@ -20391,6 +20575,144 @@ module Aws::SageMaker
20391
20575
  include Aws::Structure
20392
20576
  end
20393
20577
 
20578
+ # @!attribute [rw] job_name
20579
+ # The name of the job to describe.
20580
+ # @return [String]
20581
+ #
20582
+ # @!attribute [rw] job_category
20583
+ # The category of the job.
20584
+ # @return [String]
20585
+ #
20586
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeJobRequest AWS API Documentation
20587
+ #
20588
+ class DescribeJobRequest < Struct.new(
20589
+ :job_name,
20590
+ :job_category)
20591
+ SENSITIVE = []
20592
+ include Aws::Structure
20593
+ end
20594
+
20595
+ # @!attribute [rw] job_name
20596
+ # The name of the job.
20597
+ # @return [String]
20598
+ #
20599
+ # @!attribute [rw] job_arn
20600
+ # The Amazon Resource Name (ARN) of the job.
20601
+ # @return [String]
20602
+ #
20603
+ # @!attribute [rw] role_arn
20604
+ # The ARN of the IAM role associated with the job.
20605
+ # @return [String]
20606
+ #
20607
+ # @!attribute [rw] job_category
20608
+ # The category of the job.
20609
+ # @return [String]
20610
+ #
20611
+ # @!attribute [rw] job_config_schema_version
20612
+ # The schema version used for the job configuration document.
20613
+ # @return [String]
20614
+ #
20615
+ # @!attribute [rw] job_config_document
20616
+ # The JSON configuration document for the job.
20617
+ # @return [String]
20618
+ #
20619
+ # @!attribute [rw] creation_time
20620
+ # The date and time that the job was created.
20621
+ # @return [Time]
20622
+ #
20623
+ # @!attribute [rw] last_modified_time
20624
+ # The date and time that the job was last modified.
20625
+ # @return [Time]
20626
+ #
20627
+ # @!attribute [rw] end_time
20628
+ # The date and time that the job ended.
20629
+ # @return [Time]
20630
+ #
20631
+ # @!attribute [rw] job_status
20632
+ # The current status of the job.
20633
+ # @return [String]
20634
+ #
20635
+ # @!attribute [rw] secondary_status
20636
+ # The detailed secondary status of the job, providing more granular
20637
+ # information about the job's progress. Secondary statuses may change
20638
+ # between releases.
20639
+ # @return [String]
20640
+ #
20641
+ # @!attribute [rw] secondary_status_transitions
20642
+ # A list of secondary status transitions for the job, with timestamps
20643
+ # and optional status messages.
20644
+ # @return [Array<Types::JobSecondaryStatusTransition>]
20645
+ #
20646
+ # @!attribute [rw] failure_reason
20647
+ # If the job failed, the reason it failed.
20648
+ # @return [String]
20649
+ #
20650
+ # @!attribute [rw] tags
20651
+ # The tags associated with the job.
20652
+ # @return [Array<Types::Tag>]
20653
+ #
20654
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeJobResponse AWS API Documentation
20655
+ #
20656
+ class DescribeJobResponse < Struct.new(
20657
+ :job_name,
20658
+ :job_arn,
20659
+ :role_arn,
20660
+ :job_category,
20661
+ :job_config_schema_version,
20662
+ :job_config_document,
20663
+ :creation_time,
20664
+ :last_modified_time,
20665
+ :end_time,
20666
+ :job_status,
20667
+ :secondary_status,
20668
+ :secondary_status_transitions,
20669
+ :failure_reason,
20670
+ :tags)
20671
+ SENSITIVE = []
20672
+ include Aws::Structure
20673
+ end
20674
+
20675
+ # @!attribute [rw] job_category
20676
+ # The category of the job schema to describe.
20677
+ # @return [String]
20678
+ #
20679
+ # @!attribute [rw] job_config_schema_version
20680
+ # The version of the schema to retrieve. If not specified, the latest
20681
+ # version is returned.
20682
+ # @return [String]
20683
+ #
20684
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeJobSchemaVersionRequest AWS API Documentation
20685
+ #
20686
+ class DescribeJobSchemaVersionRequest < Struct.new(
20687
+ :job_category,
20688
+ :job_config_schema_version)
20689
+ SENSITIVE = []
20690
+ include Aws::Structure
20691
+ end
20692
+
20693
+ # @!attribute [rw] job_category
20694
+ # The category of the job schema.
20695
+ # @return [String]
20696
+ #
20697
+ # @!attribute [rw] job_config_schema_version
20698
+ # The version of the schema.
20699
+ # @return [String]
20700
+ #
20701
+ # @!attribute [rw] job_config_schema
20702
+ # The JSON schema document that defines the structure of the job
20703
+ # configuration.
20704
+ # @return [String]
20705
+ #
20706
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeJobSchemaVersionResponse AWS API Documentation
20707
+ #
20708
+ class DescribeJobSchemaVersionResponse < Struct.new(
20709
+ :job_category,
20710
+ :job_config_schema_version,
20711
+ :job_config_schema)
20712
+ SENSITIVE = []
20713
+ include Aws::Structure
20714
+ end
20715
+
20394
20716
  # @!attribute [rw] labeling_job_name
20395
20717
  # The name of the labeling job to return information for.
20396
20718
  # @return [String]
@@ -31857,6 +32179,119 @@ module Aws::SageMaker
31857
32179
  include Aws::Structure
31858
32180
  end
31859
32181
 
32182
+ # Provides summary information about a job configuration schema version.
32183
+ #
32184
+ # @!attribute [rw] job_config_schema_version
32185
+ # The version of the job configuration schema.
32186
+ # @return [String]
32187
+ #
32188
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/JobConfigSchemaVersionSummary AWS API Documentation
32189
+ #
32190
+ class JobConfigSchemaVersionSummary < Struct.new(
32191
+ :job_config_schema_version)
32192
+ SENSITIVE = []
32193
+ include Aws::Structure
32194
+ end
32195
+
32196
+ # Represents a secondary status transition for a job. Jobs progress
32197
+ # through multiple secondary statuses during execution. Each transition
32198
+ # records the status, start time, optional end time, and an optional
32199
+ # message with additional details.
32200
+ #
32201
+ # @!attribute [rw] status
32202
+ # The secondary status of the job at this transition point.
32203
+ # @return [String]
32204
+ #
32205
+ # @!attribute [rw] start_time
32206
+ # The date and time that the status transition started.
32207
+ # @return [Time]
32208
+ #
32209
+ # @!attribute [rw] end_time
32210
+ # The date and time that the status transition ended.
32211
+ # @return [Time]
32212
+ #
32213
+ # @!attribute [rw] status_message
32214
+ # A detailed message about the status transition.
32215
+ # @return [String]
32216
+ #
32217
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/JobSecondaryStatusTransition AWS API Documentation
32218
+ #
32219
+ class JobSecondaryStatusTransition < Struct.new(
32220
+ :status,
32221
+ :start_time,
32222
+ :end_time,
32223
+ :status_message)
32224
+ SENSITIVE = []
32225
+ include Aws::Structure
32226
+ end
32227
+
32228
+ # Metadata for a SageMaker job step.
32229
+ #
32230
+ # @!attribute [rw] arn
32231
+ # The Amazon Resource Name (ARN) of the SageMaker job that was run by
32232
+ # this step execution.
32233
+ # @return [String]
32234
+ #
32235
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/JobStepMetadata AWS API Documentation
32236
+ #
32237
+ class JobStepMetadata < Struct.new(
32238
+ :arn)
32239
+ SENSITIVE = []
32240
+ include Aws::Structure
32241
+ end
32242
+
32243
+ # Provides summary information about a job, returned by the `ListJobs`
32244
+ # operation. Use `DescribeJob` to get full details for a specific job.
32245
+ #
32246
+ # @!attribute [rw] job_arn
32247
+ # The Amazon Resource Name (ARN) of the job.
32248
+ # @return [String]
32249
+ #
32250
+ # @!attribute [rw] job_name
32251
+ # The name of the job.
32252
+ # @return [String]
32253
+ #
32254
+ # @!attribute [rw] job_category
32255
+ # The category of the job.
32256
+ # @return [String]
32257
+ #
32258
+ # @!attribute [rw] job_status
32259
+ # The current status of the job.
32260
+ # @return [String]
32261
+ #
32262
+ # @!attribute [rw] job_secondary_status
32263
+ # The secondary status of the job, providing more granular information
32264
+ # about the job's progress. Secondary statuses may change between
32265
+ # releases.
32266
+ # @return [String]
32267
+ #
32268
+ # @!attribute [rw] creation_time
32269
+ # The date and time that the job was created.
32270
+ # @return [Time]
32271
+ #
32272
+ # @!attribute [rw] last_modified_time
32273
+ # The date and time that the job was last modified.
32274
+ # @return [Time]
32275
+ #
32276
+ # @!attribute [rw] end_time
32277
+ # The date and time that the job ended.
32278
+ # @return [Time]
32279
+ #
32280
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/JobSummary AWS API Documentation
32281
+ #
32282
+ class JobSummary < Struct.new(
32283
+ :job_arn,
32284
+ :job_name,
32285
+ :job_category,
32286
+ :job_status,
32287
+ :job_secondary_status,
32288
+ :creation_time,
32289
+ :last_modified_time,
32290
+ :end_time)
32291
+ SENSITIVE = []
32292
+ include Aws::Structure
32293
+ end
32294
+
31860
32295
  # The configuration for the file system and kernels in a SageMaker AI
31861
32296
  # image running as a JupyterLab app. The `FileSystemConfig` object is
31862
32297
  # not supported.
@@ -35891,6 +36326,134 @@ module Aws::SageMaker
35891
36326
  include Aws::Structure
35892
36327
  end
35893
36328
 
36329
+ # @!attribute [rw] job_category
36330
+ # The category of job schemas to list.
36331
+ # @return [String]
36332
+ #
36333
+ # @!attribute [rw] next_token
36334
+ # If the previous response was truncated, this token retrieves the
36335
+ # next set of results.
36336
+ # @return [String]
36337
+ #
36338
+ # @!attribute [rw] max_results
36339
+ # The maximum number of schema versions to return in the response. The
36340
+ # default value is 5.
36341
+ # @return [Integer]
36342
+ #
36343
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListJobSchemaVersionsRequest AWS API Documentation
36344
+ #
36345
+ class ListJobSchemaVersionsRequest < Struct.new(
36346
+ :job_category,
36347
+ :next_token,
36348
+ :max_results)
36349
+ SENSITIVE = []
36350
+ include Aws::Structure
36351
+ end
36352
+
36353
+ # @!attribute [rw] next_token
36354
+ # If the response is truncated, this token retrieves the next set of
36355
+ # results.
36356
+ # @return [String]
36357
+ #
36358
+ # @!attribute [rw] job_config_schemas
36359
+ # An array of `JobConfigSchemaVersionSummary` objects listing the
36360
+ # available schema versions.
36361
+ # @return [Array<Types::JobConfigSchemaVersionSummary>]
36362
+ #
36363
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListJobSchemaVersionsResponse AWS API Documentation
36364
+ #
36365
+ class ListJobSchemaVersionsResponse < Struct.new(
36366
+ :next_token,
36367
+ :job_config_schemas)
36368
+ SENSITIVE = []
36369
+ include Aws::Structure
36370
+ end
36371
+
36372
+ # @!attribute [rw] job_category
36373
+ # The category of jobs to list.
36374
+ # @return [String]
36375
+ #
36376
+ # @!attribute [rw] next_token
36377
+ # If the previous response was truncated, this token retrieves the
36378
+ # next set of results.
36379
+ # @return [String]
36380
+ #
36381
+ # @!attribute [rw] max_results
36382
+ # The maximum number of jobs to return in the response. The default
36383
+ # value is 50.
36384
+ # @return [Integer]
36385
+ #
36386
+ # @!attribute [rw] creation_time_after
36387
+ # A filter that returns only jobs created after the specified time.
36388
+ # @return [Time]
36389
+ #
36390
+ # @!attribute [rw] creation_time_before
36391
+ # A filter that returns only jobs created before the specified time.
36392
+ # @return [Time]
36393
+ #
36394
+ # @!attribute [rw] last_modified_time_after
36395
+ # A filter that returns only jobs modified after the specified time.
36396
+ # @return [Time]
36397
+ #
36398
+ # @!attribute [rw] last_modified_time_before
36399
+ # A filter that returns only jobs modified before the specified time.
36400
+ # @return [Time]
36401
+ #
36402
+ # @!attribute [rw] name_contains
36403
+ # A string in the job name to filter results. Only jobs whose name
36404
+ # contains the specified string are returned.
36405
+ # @return [String]
36406
+ #
36407
+ # @!attribute [rw] sort_by
36408
+ # The field to sort results by.
36409
+ # @return [String]
36410
+ #
36411
+ # @!attribute [rw] sort_order
36412
+ # The sort order for results. Valid values are `Ascending` and
36413
+ # `Descending`.
36414
+ # @return [String]
36415
+ #
36416
+ # @!attribute [rw] status_equals
36417
+ # A filter that returns only jobs with the specified status.
36418
+ # @return [String]
36419
+ #
36420
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListJobsRequest AWS API Documentation
36421
+ #
36422
+ class ListJobsRequest < Struct.new(
36423
+ :job_category,
36424
+ :next_token,
36425
+ :max_results,
36426
+ :creation_time_after,
36427
+ :creation_time_before,
36428
+ :last_modified_time_after,
36429
+ :last_modified_time_before,
36430
+ :name_contains,
36431
+ :sort_by,
36432
+ :sort_order,
36433
+ :status_equals)
36434
+ SENSITIVE = []
36435
+ include Aws::Structure
36436
+ end
36437
+
36438
+ # @!attribute [rw] next_token
36439
+ # If the response is truncated, this token retrieves the next set of
36440
+ # results.
36441
+ # @return [String]
36442
+ #
36443
+ # @!attribute [rw] job_summaries
36444
+ # An array of `JobSummary` objects that provide summary information
36445
+ # about the jobs.
36446
+ # @return [Array<Types::JobSummary>]
36447
+ #
36448
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListJobsResponse AWS API Documentation
36449
+ #
36450
+ class ListJobsResponse < Struct.new(
36451
+ :next_token,
36452
+ :job_summaries)
36453
+ SENSITIVE = []
36454
+ include Aws::Structure
36455
+ end
36456
+
35894
36457
  # @!attribute [rw] workteam_arn
35895
36458
  # The Amazon Resource Name (ARN) of the work team for which you want
35896
36459
  # to see labeling jobs for.
@@ -44657,6 +45220,10 @@ module Aws::SageMaker
44657
45220
  # The metadata of the lineage used in pipeline execution step.
44658
45221
  # @return [Types::LineageMetadata]
44659
45222
  #
45223
+ # @!attribute [rw] job
45224
+ # The metadata for a SageMaker job used in a pipeline execution step.
45225
+ # @return [Types::JobStepMetadata]
45226
+ #
44660
45227
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/PipelineExecutionStepMetadata AWS API Documentation
44661
45228
  #
44662
45229
  class PipelineExecutionStepMetadata < Struct.new(
@@ -44681,7 +45248,8 @@ module Aws::SageMaker
44681
45248
  :bedrock_provisioned_model_throughput,
44682
45249
  :bedrock_model_import,
44683
45250
  :inference_component,
44684
- :lineage)
45251
+ :lineage,
45252
+ :job)
44685
45253
  SENSITIVE = []
44686
45254
  include Aws::Structure
44687
45255
  end
@@ -47996,6 +48564,10 @@ module Aws::SageMaker
47996
48564
  # The availability zone for the reserved capacity.
47997
48565
  # @return [String]
47998
48566
  #
48567
+ # @!attribute [rw] availability_zone_id
48568
+ # The Availability Zone ID of the reserved capacity.
48569
+ # @return [String]
48570
+ #
47999
48571
  # @!attribute [rw] duration_hours
48000
48572
  # The number of whole hours in the total duration for this reserved
48001
48573
  # capacity.
@@ -48025,6 +48597,7 @@ module Aws::SageMaker
48025
48597
  :total_instance_count,
48026
48598
  :status,
48027
48599
  :availability_zone,
48600
+ :availability_zone_id,
48028
48601
  :duration_hours,
48029
48602
  :duration_minutes,
48030
48603
  :start_time,
@@ -50921,6 +51494,27 @@ module Aws::SageMaker
50921
51494
  include Aws::Structure
50922
51495
  end
50923
51496
 
51497
+ # @!attribute [rw] job_name
51498
+ # The name of the job to stop.
51499
+ # @return [String]
51500
+ #
51501
+ # @!attribute [rw] job_category
51502
+ # The category of the job to stop.
51503
+ # @return [String]
51504
+ #
51505
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/StopJobRequest AWS API Documentation
51506
+ #
51507
+ class StopJobRequest < Struct.new(
51508
+ :job_name,
51509
+ :job_category)
51510
+ SENSITIVE = []
51511
+ include Aws::Structure
51512
+ end
51513
+
51514
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/StopJobResponse AWS API Documentation
51515
+ #
51516
+ class StopJobResponse < Aws::EmptyStructure; end
51517
+
50924
51518
  # @!attribute [rw] labeling_job_name
50925
51519
  # The name of the labeling job to stop.
50926
51520
  # @return [String]
@@ -55111,6 +55705,11 @@ module Aws::SageMaker
55111
55705
  # to be created in the SageMaker HyperPod cluster.
55112
55706
  # @return [Array<Types::ClusterRestrictedInstanceGroupSpecification>]
55113
55707
  #
55708
+ # @!attribute [rw] restricted_instance_groups_config
55709
+ # The configuration for the restricted instance groups (RIG) in the
55710
+ # SageMaker HyperPod cluster.
55711
+ # @return [Types::ClusterRestrictedInstanceGroupsConfig]
55712
+ #
55114
55713
  # @!attribute [rw] tiered_storage_config
55115
55714
  # Updates the configuration for managed tier checkpointing on the
55116
55715
  # HyperPod cluster. For example, you can enable or disable the feature
@@ -55158,6 +55757,7 @@ module Aws::SageMaker
55158
55757
  :cluster_name,
55159
55758
  :instance_groups,
55160
55759
  :restricted_instance_groups,
55760
+ :restricted_instance_groups_config,
55161
55761
  :tiered_storage_config,
55162
55762
  :node_recovery,
55163
55763
  :instance_groups_to_delete,