aws-sdk-sagemaker 1.99.0 → 1.103.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +110 -45
- data/lib/aws-sdk-sagemaker/client_api.rb +35 -1
- data/lib/aws-sdk-sagemaker/types.rb +363 -150
- data/lib/aws-sdk-sagemaker.rb +1 -1
- metadata +2 -2
@@ -260,7 +260,7 @@ module Aws::SageMaker
|
|
260
260
|
# {
|
261
261
|
# training_image: "AlgorithmImage",
|
262
262
|
# algorithm_name: "ArnOrName",
|
263
|
-
# training_input_mode: "Pipe", # required, accepts Pipe, File
|
263
|
+
# training_input_mode: "Pipe", # required, accepts Pipe, File, FastFile
|
264
264
|
# metric_definitions: [
|
265
265
|
# {
|
266
266
|
# name: "MetricName", # required
|
@@ -293,27 +293,45 @@ module Aws::SageMaker
|
|
293
293
|
# @return [String]
|
294
294
|
#
|
295
295
|
# @!attribute [rw] training_input_mode
|
296
|
-
# The input mode that the algorithm supports. For
|
297
|
-
#
|
298
|
-
#
|
299
|
-
#
|
300
|
-
#
|
301
|
-
# algorithm supports
|
302
|
-
#
|
303
|
-
#
|
304
|
-
#
|
305
|
-
#
|
306
|
-
#
|
307
|
-
#
|
308
|
-
#
|
309
|
-
#
|
310
|
-
#
|
311
|
-
#
|
312
|
-
# the
|
313
|
-
#
|
314
|
-
#
|
315
|
-
#
|
316
|
-
#
|
296
|
+
# The training input mode that the algorithm supports. For more
|
297
|
+
# information about input modes, see [Algorithms][1].
|
298
|
+
#
|
299
|
+
# **Pipe mode**
|
300
|
+
#
|
301
|
+
# If an algorithm supports `Pipe` mode, Amazon SageMaker streams data
|
302
|
+
# directly from Amazon S3 to the container.
|
303
|
+
#
|
304
|
+
# **File mode**
|
305
|
+
#
|
306
|
+
# If an algorithm supports `File` mode, SageMaker downloads the
|
307
|
+
# training data from S3 to the provisioned ML storage volume, and
|
308
|
+
# mounts the directory to the Docker volume for the training
|
309
|
+
# container.
|
310
|
+
#
|
311
|
+
# You must provision the ML storage volume with sufficient capacity to
|
312
|
+
# accommodate the data downloaded from S3. In addition to the training
|
313
|
+
# data, the ML storage volume also stores the output model. The
|
314
|
+
# algorithm container uses the ML storage volume to also store
|
315
|
+
# intermediate information, if any.
|
316
|
+
#
|
317
|
+
# For distributed algorithms, training data is distributed uniformly.
|
318
|
+
# Your training duration is predictable if the input data objects
|
319
|
+
# sizes are approximately the same. SageMaker does not split the files
|
320
|
+
# any further for model training. If the object sizes are skewed,
|
321
|
+
# training won't be optimal as the data distribution is also skewed
|
322
|
+
# when one host in a training cluster is overloaded, thus becoming a
|
323
|
+
# bottleneck in training.
|
324
|
+
#
|
325
|
+
# **FastFile mode**
|
326
|
+
#
|
327
|
+
# If an algorithm supports `FastFile` mode, SageMaker streams data
|
328
|
+
# directly from S3 to the container with no code changes, and provides
|
329
|
+
# file system access to the data. Users can author their training
|
330
|
+
# script to interact with these files as if they were stored on disk.
|
331
|
+
#
|
332
|
+
# `FastFile` mode works best when the data is read sequentially.
|
333
|
+
# Augmented manifest files aren't supported. The startup time is
|
334
|
+
# lower when there are fewer files in the S3 bucket provided.
|
317
335
|
#
|
318
336
|
#
|
319
337
|
#
|
@@ -451,7 +469,7 @@ module Aws::SageMaker
|
|
451
469
|
# {
|
452
470
|
# profile_name: "EntityName", # required
|
453
471
|
# training_job_definition: { # required
|
454
|
-
# training_input_mode: "Pipe", # required, accepts Pipe, File
|
472
|
+
# training_input_mode: "Pipe", # required, accepts Pipe, File, FastFile
|
455
473
|
# hyper_parameters: {
|
456
474
|
# "HyperParameterKey" => "HyperParameterValue",
|
457
475
|
# },
|
@@ -475,7 +493,7 @@ module Aws::SageMaker
|
|
475
493
|
# content_type: "ContentType",
|
476
494
|
# compression_type: "None", # accepts None, Gzip
|
477
495
|
# record_wrapper_type: "None", # accepts None, RecordIO
|
478
|
-
# input_mode: "Pipe", # accepts Pipe, File
|
496
|
+
# input_mode: "Pipe", # accepts Pipe, File, FastFile
|
479
497
|
# shuffle_config: {
|
480
498
|
# seed: 1, # required
|
481
499
|
# },
|
@@ -565,7 +583,7 @@ module Aws::SageMaker
|
|
565
583
|
# {
|
566
584
|
# profile_name: "EntityName", # required
|
567
585
|
# training_job_definition: { # required
|
568
|
-
# training_input_mode: "Pipe", # required, accepts Pipe, File
|
586
|
+
# training_input_mode: "Pipe", # required, accepts Pipe, File, FastFile
|
569
587
|
# hyper_parameters: {
|
570
588
|
# "HyperParameterKey" => "HyperParameterValue",
|
571
589
|
# },
|
@@ -589,7 +607,7 @@ module Aws::SageMaker
|
|
589
607
|
# content_type: "ContentType",
|
590
608
|
# compression_type: "None", # accepts None, Gzip
|
591
609
|
# record_wrapper_type: "None", # accepts None, RecordIO
|
592
|
-
# input_mode: "Pipe", # accepts Pipe, File
|
610
|
+
# input_mode: "Pipe", # accepts Pipe, File, FastFile
|
593
611
|
# shuffle_config: {
|
594
612
|
# seed: 1, # required
|
595
613
|
# },
|
@@ -1622,7 +1640,7 @@ module Aws::SageMaker
|
|
1622
1640
|
#
|
1623
1641
|
# @!attribute [rw] created_by
|
1624
1642
|
# Information about the user who created or modified an experiment,
|
1625
|
-
# trial,
|
1643
|
+
# trial, trial component, or project.
|
1626
1644
|
# @return [Types::UserContext]
|
1627
1645
|
#
|
1628
1646
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/AssociationSummary AWS API Documentation
|
@@ -2063,12 +2081,20 @@ module Aws::SageMaker
|
|
2063
2081
|
# @return [Integer]
|
2064
2082
|
#
|
2065
2083
|
# @!attribute [rw] max_runtime_per_training_job_in_seconds
|
2066
|
-
# The maximum time, in seconds,
|
2067
|
-
# part of
|
2084
|
+
# The maximum time, in seconds, that each training job is allowed to
|
2085
|
+
# run as part of a hyperparameter tuning job. For more information,
|
2086
|
+
# see the used by the action.
|
2068
2087
|
# @return [Integer]
|
2069
2088
|
#
|
2070
2089
|
# @!attribute [rw] max_auto_ml_job_runtime_in_seconds
|
2071
2090
|
# The maximum runtime, in seconds, an AutoML job has to complete.
|
2091
|
+
#
|
2092
|
+
# If an AutoML job exceeds the maximum runtime, the job is stopped
|
2093
|
+
# automatically and its processing is ended gracefully. The AutoML job
|
2094
|
+
# identifies the best model whose training was completed and marks it
|
2095
|
+
# as the best-performing model. Any unfinished steps of the job, such
|
2096
|
+
# as automatic one-click Autopilot model deployment, will not be
|
2097
|
+
# completed.
|
2072
2098
|
# @return [Integer]
|
2073
2099
|
#
|
2074
2100
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/AutoMLJobCompletionCriteria AWS API Documentation
|
@@ -2676,7 +2702,7 @@ module Aws::SageMaker
|
|
2676
2702
|
# content_type: "ContentType",
|
2677
2703
|
# compression_type: "None", # accepts None, Gzip
|
2678
2704
|
# record_wrapper_type: "None", # accepts None, RecordIO
|
2679
|
-
# input_mode: "Pipe", # accepts Pipe, File
|
2705
|
+
# input_mode: "Pipe", # accepts Pipe, File, FastFile
|
2680
2706
|
# shuffle_config: {
|
2681
2707
|
# seed: 1, # required
|
2682
2708
|
# },
|
@@ -2775,7 +2801,7 @@ module Aws::SageMaker
|
|
2775
2801
|
# is_required: false,
|
2776
2802
|
# supported_content_types: ["ContentType"], # required
|
2777
2803
|
# supported_compression_types: ["None"], # accepts None, Gzip
|
2778
|
-
# supported_input_modes: ["Pipe"], # required, accepts Pipe, File
|
2804
|
+
# supported_input_modes: ["Pipe"], # required, accepts Pipe, File, FastFile
|
2779
2805
|
# }
|
2780
2806
|
#
|
2781
2807
|
# @!attribute [rw] name
|
@@ -3549,7 +3575,7 @@ module Aws::SageMaker
|
|
3549
3575
|
# is_required: false,
|
3550
3576
|
# supported_content_types: ["ContentType"], # required
|
3551
3577
|
# supported_compression_types: ["None"], # accepts None, Gzip
|
3552
|
-
# supported_input_modes: ["Pipe"], # required, accepts Pipe, File
|
3578
|
+
# supported_input_modes: ["Pipe"], # required, accepts Pipe, File, FastFile
|
3553
3579
|
# },
|
3554
3580
|
# ],
|
3555
3581
|
# supported_tuning_job_objective_metrics: [
|
@@ -3583,7 +3609,7 @@ module Aws::SageMaker
|
|
3583
3609
|
# {
|
3584
3610
|
# profile_name: "EntityName", # required
|
3585
3611
|
# training_job_definition: { # required
|
3586
|
-
# training_input_mode: "Pipe", # required, accepts Pipe, File
|
3612
|
+
# training_input_mode: "Pipe", # required, accepts Pipe, File, FastFile
|
3587
3613
|
# hyper_parameters: {
|
3588
3614
|
# "HyperParameterKey" => "HyperParameterValue",
|
3589
3615
|
# },
|
@@ -3607,7 +3633,7 @@ module Aws::SageMaker
|
|
3607
3633
|
# content_type: "ContentType",
|
3608
3634
|
# compression_type: "None", # accepts None, Gzip
|
3609
3635
|
# record_wrapper_type: "None", # accepts None, RecordIO
|
3610
|
-
# input_mode: "Pipe", # accepts Pipe, File
|
3636
|
+
# input_mode: "Pipe", # accepts Pipe, File, FastFile
|
3611
3637
|
# shuffle_config: {
|
3612
3638
|
# seed: 1, # required
|
3613
3639
|
# },
|
@@ -4738,9 +4764,8 @@ module Aws::SageMaker
|
|
4738
4764
|
#
|
4739
4765
|
# @!attribute [rw] kms_key_id
|
4740
4766
|
# SageMaker uses Amazon Web Services KMS to encrypt the EFS volume
|
4741
|
-
# attached to the domain with an Amazon Web Services managed
|
4742
|
-
#
|
4743
|
-
# managed CMK.
|
4767
|
+
# attached to the domain with an Amazon Web Services managed key by
|
4768
|
+
# default. For more control, specify a customer managed key.
|
4744
4769
|
# @return [String]
|
4745
4770
|
#
|
4746
4771
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateDomainRequest AWS API Documentation
|
@@ -4829,8 +4854,8 @@ module Aws::SageMaker
|
|
4829
4854
|
# @return [Types::EdgeOutputConfig]
|
4830
4855
|
#
|
4831
4856
|
# @!attribute [rw] resource_key
|
4832
|
-
# The
|
4833
|
-
# runs on.
|
4857
|
+
# The Amazon Web Services KMS key to use when encrypting the EBS
|
4858
|
+
# volume the edge packaging job runs on.
|
4834
4859
|
# @return [String]
|
4835
4860
|
#
|
4836
4861
|
# @!attribute [rw] tags
|
@@ -5256,12 +5281,19 @@ module Aws::SageMaker
|
|
5256
5281
|
# `OfflineStore`.
|
5257
5282
|
#
|
5258
5283
|
# * A configuration for an Amazon Web Services Glue or Amazon Web
|
5259
|
-
# Services Hive data
|
5284
|
+
# Services Hive data catalog.
|
5260
5285
|
#
|
5261
5286
|
# * An KMS encryption key to encrypt the Amazon S3 location used for
|
5262
|
-
# `OfflineStore`.
|
5287
|
+
# `OfflineStore`. If KMS encryption key is not specified, by default
|
5288
|
+
# we encrypt all data at rest using Amazon Web Services KMS key. By
|
5289
|
+
# defining your [bucket-level key][1] for SSE, you can reduce Amazon
|
5290
|
+
# Web Services KMS requests costs by up to 99 percent.
|
5263
5291
|
#
|
5264
5292
|
# To learn more about this parameter, see OfflineStoreConfig.
|
5293
|
+
#
|
5294
|
+
#
|
5295
|
+
#
|
5296
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/bucket-key.html
|
5265
5297
|
# @return [Types::OfflineStoreConfig]
|
5266
5298
|
#
|
5267
5299
|
# @!attribute [rw] role_arn
|
@@ -5545,7 +5577,7 @@ module Aws::SageMaker
|
|
5545
5577
|
# },
|
5546
5578
|
# algorithm_specification: { # required
|
5547
5579
|
# training_image: "AlgorithmImage",
|
5548
|
-
# training_input_mode: "Pipe", # required, accepts Pipe, File
|
5580
|
+
# training_input_mode: "Pipe", # required, accepts Pipe, File, FastFile
|
5549
5581
|
# algorithm_name: "ArnOrName",
|
5550
5582
|
# metric_definitions: [
|
5551
5583
|
# {
|
@@ -5575,7 +5607,7 @@ module Aws::SageMaker
|
|
5575
5607
|
# content_type: "ContentType",
|
5576
5608
|
# compression_type: "None", # accepts None, Gzip
|
5577
5609
|
# record_wrapper_type: "None", # accepts None, RecordIO
|
5578
|
-
# input_mode: "Pipe", # accepts Pipe, File
|
5610
|
+
# input_mode: "Pipe", # accepts Pipe, File, FastFile
|
5579
5611
|
# shuffle_config: {
|
5580
5612
|
# seed: 1, # required
|
5581
5613
|
# },
|
@@ -5646,7 +5678,7 @@ module Aws::SageMaker
|
|
5646
5678
|
# },
|
5647
5679
|
# algorithm_specification: { # required
|
5648
5680
|
# training_image: "AlgorithmImage",
|
5649
|
-
# training_input_mode: "Pipe", # required, accepts Pipe, File
|
5681
|
+
# training_input_mode: "Pipe", # required, accepts Pipe, File, FastFile
|
5650
5682
|
# algorithm_name: "ArnOrName",
|
5651
5683
|
# metric_definitions: [
|
5652
5684
|
# {
|
@@ -5676,7 +5708,7 @@ module Aws::SageMaker
|
|
5676
5708
|
# content_type: "ContentType",
|
5677
5709
|
# compression_type: "None", # accepts None, Gzip
|
5678
5710
|
# record_wrapper_type: "None", # accepts None, RecordIO
|
5679
|
-
# input_mode: "Pipe", # accepts Pipe, File
|
5711
|
+
# input_mode: "Pipe", # accepts Pipe, File, FastFile
|
5680
5712
|
# shuffle_config: {
|
5681
5713
|
# seed: 1, # required
|
5682
5714
|
# },
|
@@ -7907,7 +7939,7 @@ module Aws::SageMaker
|
|
7907
7939
|
# project_description: "EntityDescription",
|
7908
7940
|
# service_catalog_provisioning_details: { # required
|
7909
7941
|
# product_id: "ServiceCatalogEntityId", # required
|
7910
|
-
# provisioning_artifact_id: "ServiceCatalogEntityId",
|
7942
|
+
# provisioning_artifact_id: "ServiceCatalogEntityId",
|
7911
7943
|
# path_id: "ServiceCatalogEntityId",
|
7912
7944
|
# provisioning_parameters: [
|
7913
7945
|
# {
|
@@ -7934,8 +7966,10 @@ module Aws::SageMaker
|
|
7934
7966
|
#
|
7935
7967
|
# @!attribute [rw] service_catalog_provisioning_details
|
7936
7968
|
# The product ID and provisioning artifact ID to provision a service
|
7937
|
-
# catalog.
|
7938
|
-
#
|
7969
|
+
# catalog. The provisioning artifact ID will default to the latest
|
7970
|
+
# provisioning artifact ID of the product, if you don't provide the
|
7971
|
+
# provisioning artifact ID. For more information, see [What is Amazon
|
7972
|
+
# Web Services Service Catalog][1].
|
7939
7973
|
#
|
7940
7974
|
#
|
7941
7975
|
#
|
@@ -8049,7 +8083,7 @@ module Aws::SageMaker
|
|
8049
8083
|
# algorithm_specification: { # required
|
8050
8084
|
# training_image: "AlgorithmImage",
|
8051
8085
|
# algorithm_name: "ArnOrName",
|
8052
|
-
# training_input_mode: "Pipe", # required, accepts Pipe, File
|
8086
|
+
# training_input_mode: "Pipe", # required, accepts Pipe, File, FastFile
|
8053
8087
|
# metric_definitions: [
|
8054
8088
|
# {
|
8055
8089
|
# name: "MetricName", # required
|
@@ -8079,7 +8113,7 @@ module Aws::SageMaker
|
|
8079
8113
|
# content_type: "ContentType",
|
8080
8114
|
# compression_type: "None", # accepts None, Gzip
|
8081
8115
|
# record_wrapper_type: "None", # accepts None, RecordIO
|
8082
|
-
# input_mode: "Pipe", # accepts Pipe, File
|
8116
|
+
# input_mode: "Pipe", # accepts Pipe, File, FastFile
|
8083
8117
|
# shuffle_config: {
|
8084
8118
|
# seed: 1, # required
|
8085
8119
|
# },
|
@@ -9384,19 +9418,18 @@ module Aws::SageMaker
|
|
9384
9418
|
# specify `OutputFilter` as an additional filter to select a portion
|
9385
9419
|
# of the joined dataset and store it in the output file.
|
9386
9420
|
#
|
9387
|
-
# For JSON or JSONLines objects, such as a JSON array,
|
9388
|
-
#
|
9389
|
-
#
|
9390
|
-
#
|
9391
|
-
#
|
9392
|
-
#
|
9393
|
-
#
|
9421
|
+
# For JSON or JSONLines objects, such as a JSON array, SageMaker adds
|
9422
|
+
# the transformed data to the input JSON object in an attribute called
|
9423
|
+
# `SageMakerOutput`. The joined result for JSON must be a key-value
|
9424
|
+
# pair object. If the input is not a key-value pair object, SageMaker
|
9425
|
+
# creates a new JSON file. In the new JSON file, and the input data is
|
9426
|
+
# stored under the `SageMakerInput` key and the results are stored in
|
9427
|
+
# `SageMakerOutput`.
|
9394
9428
|
#
|
9395
|
-
# For CSV data,
|
9396
|
-
#
|
9397
|
-
#
|
9398
|
-
#
|
9399
|
-
# is a CSV file.
|
9429
|
+
# For CSV data, SageMaker takes each row as a JSON array and joins the
|
9430
|
+
# transformed data with the input by appending each transformed row to
|
9431
|
+
# the end of the input. The joined data has the original input data
|
9432
|
+
# followed by the transformed data and the output is a CSV file.
|
9400
9433
|
#
|
9401
9434
|
# For information on how joining in applied, see [Workflow for
|
9402
9435
|
# Associating Inferences with Input Records][1].
|
@@ -10937,7 +10970,7 @@ module Aws::SageMaker
|
|
10937
10970
|
#
|
10938
10971
|
# @!attribute [rw] created_by
|
10939
10972
|
# Information about the user who created or modified an experiment,
|
10940
|
-
# trial,
|
10973
|
+
# trial, trial component, or project.
|
10941
10974
|
# @return [Types::UserContext]
|
10942
10975
|
#
|
10943
10976
|
# @!attribute [rw] last_modified_time
|
@@ -10946,7 +10979,7 @@ module Aws::SageMaker
|
|
10946
10979
|
#
|
10947
10980
|
# @!attribute [rw] last_modified_by
|
10948
10981
|
# Information about the user who created or modified an experiment,
|
10949
|
-
# trial,
|
10982
|
+
# trial, trial component, or project.
|
10950
10983
|
# @return [Types::UserContext]
|
10951
10984
|
#
|
10952
10985
|
# @!attribute [rw] metadata_properties
|
@@ -11174,6 +11207,9 @@ module Aws::SageMaker
|
|
11174
11207
|
#
|
11175
11208
|
# @!attribute [rw] last_user_activity_timestamp
|
11176
11209
|
# The timestamp of the last user's activity.
|
11210
|
+
# `LastUserActivityTimestamp` is also updated when SageMaker performs
|
11211
|
+
# health checks without user activity. As a result, this value is set
|
11212
|
+
# to the same value as `LastHealthCheckTimestamp`.
|
11177
11213
|
# @return [Time]
|
11178
11214
|
#
|
11179
11215
|
# @!attribute [rw] creation_time
|
@@ -11252,7 +11288,7 @@ module Aws::SageMaker
|
|
11252
11288
|
#
|
11253
11289
|
# @!attribute [rw] created_by
|
11254
11290
|
# Information about the user who created or modified an experiment,
|
11255
|
-
# trial,
|
11291
|
+
# trial, trial component, or project.
|
11256
11292
|
# @return [Types::UserContext]
|
11257
11293
|
#
|
11258
11294
|
# @!attribute [rw] last_modified_time
|
@@ -11261,7 +11297,7 @@ module Aws::SageMaker
|
|
11261
11297
|
#
|
11262
11298
|
# @!attribute [rw] last_modified_by
|
11263
11299
|
# Information about the user who created or modified an experiment,
|
11264
|
-
# trial,
|
11300
|
+
# trial, trial component, or project.
|
11265
11301
|
# @return [Types::UserContext]
|
11266
11302
|
#
|
11267
11303
|
# @!attribute [rw] metadata_properties
|
@@ -11663,7 +11699,7 @@ module Aws::SageMaker
|
|
11663
11699
|
#
|
11664
11700
|
# @!attribute [rw] created_by
|
11665
11701
|
# Information about the user who created or modified an experiment,
|
11666
|
-
# trial,
|
11702
|
+
# trial, trial component, or project.
|
11667
11703
|
# @return [Types::UserContext]
|
11668
11704
|
#
|
11669
11705
|
# @!attribute [rw] last_modified_time
|
@@ -11672,7 +11708,7 @@ module Aws::SageMaker
|
|
11672
11708
|
#
|
11673
11709
|
# @!attribute [rw] last_modified_by
|
11674
11710
|
# Information about the user who created or modified an experiment,
|
11675
|
-
# trial,
|
11711
|
+
# trial, trial component, or project.
|
11676
11712
|
# @return [Types::UserContext]
|
11677
11713
|
#
|
11678
11714
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeContextResponse AWS API Documentation
|
@@ -12032,7 +12068,7 @@ module Aws::SageMaker
|
|
12032
12068
|
# @return [String]
|
12033
12069
|
#
|
12034
12070
|
# @!attribute [rw] kms_key_id
|
12035
|
-
# The Amazon Web Services KMS customer managed
|
12071
|
+
# The Amazon Web Services KMS customer managed key used to encrypt the
|
12036
12072
|
# EFS volume attached to the domain.
|
12037
12073
|
# @return [String]
|
12038
12074
|
#
|
@@ -12110,7 +12146,8 @@ module Aws::SageMaker
|
|
12110
12146
|
# @return [Types::EdgeOutputConfig]
|
12111
12147
|
#
|
12112
12148
|
# @!attribute [rw] resource_key
|
12113
|
-
# The
|
12149
|
+
# The Amazon Web Services KMS key to use when encrypting the EBS
|
12150
|
+
# volume the job run on.
|
12114
12151
|
# @return [String]
|
12115
12152
|
#
|
12116
12153
|
# @!attribute [rw] edge_packaging_job_status
|
@@ -13419,7 +13456,7 @@ module Aws::SageMaker
|
|
13419
13456
|
#
|
13420
13457
|
# @!attribute [rw] created_by
|
13421
13458
|
# Information about the user who created or modified an experiment,
|
13422
|
-
# trial,
|
13459
|
+
# trial, trial component, or project.
|
13423
13460
|
# @return [Types::UserContext]
|
13424
13461
|
#
|
13425
13462
|
# @!attribute [rw] model_package_group_status
|
@@ -13521,7 +13558,7 @@ module Aws::SageMaker
|
|
13521
13558
|
#
|
13522
13559
|
# @!attribute [rw] created_by
|
13523
13560
|
# Information about the user who created or modified an experiment,
|
13524
|
-
# trial,
|
13561
|
+
# trial, trial component, or project.
|
13525
13562
|
# @return [Types::UserContext]
|
13526
13563
|
#
|
13527
13564
|
# @!attribute [rw] metadata_properties
|
@@ -13539,7 +13576,7 @@ module Aws::SageMaker
|
|
13539
13576
|
#
|
13540
13577
|
# @!attribute [rw] last_modified_by
|
13541
13578
|
# Information about the user who created or modified an experiment,
|
13542
|
-
# trial,
|
13579
|
+
# trial, trial component, or project.
|
13543
13580
|
# @return [Types::UserContext]
|
13544
13581
|
#
|
13545
13582
|
# @!attribute [rw] approval_description
|
@@ -14098,12 +14135,12 @@ module Aws::SageMaker
|
|
14098
14135
|
#
|
14099
14136
|
# @!attribute [rw] created_by
|
14100
14137
|
# Information about the user who created or modified an experiment,
|
14101
|
-
# trial,
|
14138
|
+
# trial, trial component, or project.
|
14102
14139
|
# @return [Types::UserContext]
|
14103
14140
|
#
|
14104
14141
|
# @!attribute [rw] last_modified_by
|
14105
14142
|
# Information about the user who created or modified an experiment,
|
14106
|
-
# trial,
|
14143
|
+
# trial, trial component, or project.
|
14107
14144
|
# @return [Types::UserContext]
|
14108
14145
|
#
|
14109
14146
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribePipelineExecutionResponse AWS API Documentation
|
@@ -14185,12 +14222,12 @@ module Aws::SageMaker
|
|
14185
14222
|
#
|
14186
14223
|
# @!attribute [rw] created_by
|
14187
14224
|
# Information about the user who created or modified an experiment,
|
14188
|
-
# trial,
|
14225
|
+
# trial, trial component, or project.
|
14189
14226
|
# @return [Types::UserContext]
|
14190
14227
|
#
|
14191
14228
|
# @!attribute [rw] last_modified_by
|
14192
14229
|
# Information about the user who created or modified an experiment,
|
14193
|
-
# trial,
|
14230
|
+
# trial, trial component, or project.
|
14194
14231
|
# @return [Types::UserContext]
|
14195
14232
|
#
|
14196
14233
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribePipelineResponse AWS API Documentation
|
@@ -14405,7 +14442,7 @@ module Aws::SageMaker
|
|
14405
14442
|
#
|
14406
14443
|
# @!attribute [rw] created_by
|
14407
14444
|
# Information about the user who created or modified an experiment,
|
14408
|
-
# trial,
|
14445
|
+
# trial, trial component, or project.
|
14409
14446
|
# @return [Types::UserContext]
|
14410
14447
|
#
|
14411
14448
|
# @!attribute [rw] creation_time
|
@@ -14777,8 +14814,8 @@ module Aws::SageMaker
|
|
14777
14814
|
#
|
14778
14815
|
# Multiply `BillableTimeInSeconds` by the number of instances
|
14779
14816
|
# (`InstanceCount`) in your training cluster to get the total compute
|
14780
|
-
# time
|
14781
|
-
#
|
14817
|
+
# time SageMaker will bill you if you run distributed training. The
|
14818
|
+
# formula is as follows: `BillableTimeInSeconds * InstanceCount` .
|
14782
14819
|
#
|
14783
14820
|
# You can calculate the savings from using managed spot training using
|
14784
14821
|
# the formula `(1 - BillableTimeInSeconds / TrainingTimeInSeconds) *
|
@@ -15127,7 +15164,7 @@ module Aws::SageMaker
|
|
15127
15164
|
# @return [Time]
|
15128
15165
|
#
|
15129
15166
|
# @!attribute [rw] created_by
|
15130
|
-
# Who created the component.
|
15167
|
+
# Who created the trial component.
|
15131
15168
|
# @return [Types::UserContext]
|
15132
15169
|
#
|
15133
15170
|
# @!attribute [rw] last_modified_time
|
@@ -16072,7 +16109,7 @@ module Aws::SageMaker
|
|
16072
16109
|
#
|
16073
16110
|
# @!attribute [rw] s3_input_mode
|
16074
16111
|
# Whether the `Pipe` or `File` is used as the input mode for
|
16075
|
-
#
|
16112
|
+
# transferring data for the monitoring job. `Pipe` mode is recommended
|
16076
16113
|
# for large datasets. `File` mode is useful for small files that fit
|
16077
16114
|
# in memory. Defaults to `File`.
|
16078
16115
|
# @return [String]
|
@@ -16235,8 +16272,7 @@ module Aws::SageMaker
|
|
16235
16272
|
# @return [Time]
|
16236
16273
|
#
|
16237
16274
|
# @!attribute [rw] created_by
|
16238
|
-
#
|
16239
|
-
# trial, or trial component.
|
16275
|
+
# Who created the experiment.
|
16240
16276
|
# @return [Types::UserContext]
|
16241
16277
|
#
|
16242
16278
|
# @!attribute [rw] last_modified_time
|
@@ -16245,7 +16281,7 @@ module Aws::SageMaker
|
|
16245
16281
|
#
|
16246
16282
|
# @!attribute [rw] last_modified_by
|
16247
16283
|
# Information about the user who created or modified an experiment,
|
16248
|
-
# trial,
|
16284
|
+
# trial, trial component, or project.
|
16249
16285
|
# @return [Types::UserContext]
|
16250
16286
|
#
|
16251
16287
|
# @!attribute [rw] tags
|
@@ -17071,7 +17107,7 @@ module Aws::SageMaker
|
|
17071
17107
|
# data as a hash:
|
17072
17108
|
#
|
17073
17109
|
# {
|
17074
|
-
# resource: "TrainingJob", # required, accepts TrainingJob, Experiment, ExperimentTrial, ExperimentTrialComponent, Endpoint, ModelPackage, ModelPackageGroup, Pipeline, PipelineExecution, FeatureGroup
|
17110
|
+
# resource: "TrainingJob", # required, accepts TrainingJob, Experiment, ExperimentTrial, ExperimentTrialComponent, Endpoint, ModelPackage, ModelPackageGroup, Pipeline, PipelineExecution, FeatureGroup, Project
|
17075
17111
|
# suggestion_query: {
|
17076
17112
|
# property_name_query: {
|
17077
17113
|
# property_name_hint: "PropertyNameHint", # required
|
@@ -18384,7 +18420,7 @@ module Aws::SageMaker
|
|
18384
18420
|
#
|
18385
18421
|
# {
|
18386
18422
|
# training_image: "AlgorithmImage",
|
18387
|
-
# training_input_mode: "Pipe", # required, accepts Pipe, File
|
18423
|
+
# training_input_mode: "Pipe", # required, accepts Pipe, File, FastFile
|
18388
18424
|
# algorithm_name: "ArnOrName",
|
18389
18425
|
# metric_definitions: [
|
18390
18426
|
# {
|
@@ -18410,21 +18446,45 @@ module Aws::SageMaker
|
|
18410
18446
|
# @return [String]
|
18411
18447
|
#
|
18412
18448
|
# @!attribute [rw] training_input_mode
|
18413
|
-
# The input mode that the algorithm supports
|
18414
|
-
# input
|
18415
|
-
#
|
18416
|
-
#
|
18417
|
-
#
|
18449
|
+
# The training input mode that the algorithm supports. For more
|
18450
|
+
# information about input modes, see [Algorithms][1].
|
18451
|
+
#
|
18452
|
+
# **Pipe mode**
|
18453
|
+
#
|
18454
|
+
# If an algorithm supports `Pipe` mode, Amazon SageMaker streams data
|
18418
18455
|
# directly from Amazon S3 to the container.
|
18419
18456
|
#
|
18420
|
-
#
|
18421
|
-
# volume that is attached to the training instance with enough
|
18422
|
-
# capacity to accommodate the training data downloaded from Amazon S3,
|
18423
|
-
# the model artifacts, and intermediate information.
|
18457
|
+
# **File mode**
|
18424
18458
|
#
|
18459
|
+
# If an algorithm supports `File` mode, SageMaker downloads the
|
18460
|
+
# training data from S3 to the provisioned ML storage volume, and
|
18461
|
+
# mounts the directory to the Docker volume for the training
|
18462
|
+
# container.
|
18463
|
+
#
|
18464
|
+
# You must provision the ML storage volume with sufficient capacity to
|
18465
|
+
# accommodate the data downloaded from S3. In addition to the training
|
18466
|
+
# data, the ML storage volume also stores the output model. The
|
18467
|
+
# algorithm container uses the ML storage volume to also store
|
18468
|
+
# intermediate information, if any.
|
18469
|
+
#
|
18470
|
+
# For distributed algorithms, training data is distributed uniformly.
|
18471
|
+
# Your training duration is predictable if the input data objects
|
18472
|
+
# sizes are approximately the same. SageMaker does not split the files
|
18473
|
+
# any further for model training. If the object sizes are skewed,
|
18474
|
+
# training won't be optimal as the data distribution is also skewed
|
18475
|
+
# when one host in a training cluster is overloaded, thus becoming a
|
18476
|
+
# bottleneck in training.
|
18425
18477
|
#
|
18478
|
+
# **FastFile mode**
|
18426
18479
|
#
|
18427
|
-
#
|
18480
|
+
# If an algorithm supports `FastFile` mode, SageMaker streams data
|
18481
|
+
# directly from S3 to the container with no code changes, and provides
|
18482
|
+
# file system access to the data. Users can author their training
|
18483
|
+
# script to interact with these files as if they were stored on disk.
|
18484
|
+
#
|
18485
|
+
# `FastFile` mode works best when the data is read sequentially.
|
18486
|
+
# Augmented manifest files aren't supported. The startup time is
|
18487
|
+
# lower when there are fewer files in the S3 bucket provided.
|
18428
18488
|
#
|
18429
18489
|
#
|
18430
18490
|
#
|
@@ -18565,7 +18625,7 @@ module Aws::SageMaker
|
|
18565
18625
|
# },
|
18566
18626
|
# algorithm_specification: { # required
|
18567
18627
|
# training_image: "AlgorithmImage",
|
18568
|
-
# training_input_mode: "Pipe", # required, accepts Pipe, File
|
18628
|
+
# training_input_mode: "Pipe", # required, accepts Pipe, File, FastFile
|
18569
18629
|
# algorithm_name: "ArnOrName",
|
18570
18630
|
# metric_definitions: [
|
18571
18631
|
# {
|
@@ -18595,7 +18655,7 @@ module Aws::SageMaker
|
|
18595
18655
|
# content_type: "ContentType",
|
18596
18656
|
# compression_type: "None", # accepts None, Gzip
|
18597
18657
|
# record_wrapper_type: "None", # accepts None, RecordIO
|
18598
|
-
# input_mode: "Pipe", # accepts Pipe, File
|
18658
|
+
# input_mode: "Pipe", # accepts Pipe, File, FastFile
|
18599
18659
|
# shuffle_config: {
|
18600
18660
|
# seed: 1, # required
|
18601
18661
|
# },
|
@@ -19786,7 +19846,7 @@ module Aws::SageMaker
|
|
19786
19846
|
#
|
19787
19847
|
# @!attribute [rw] lifecycle_config_arns
|
19788
19848
|
# The Amazon Resource Name (ARN) of the Lifecycle Configurations
|
19789
|
-
# attached to the
|
19849
|
+
# attached to the the user profile or domain.
|
19790
19850
|
# @return [Array<String>]
|
19791
19851
|
#
|
19792
19852
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/KernelGatewayAppSettings AWS API Documentation
|
@@ -20239,10 +20299,10 @@ module Aws::SageMaker
|
|
20239
20299
|
# You can only specify a `VolumeKmsKeyId` when you create a labeling
|
20240
20300
|
# job with automated data labeling enabled using the API operation
|
20241
20301
|
# `CreateLabelingJob`. You cannot specify an Amazon Web Services KMS
|
20242
|
-
#
|
20243
|
-
#
|
20244
|
-
#
|
20245
|
-
#
|
20302
|
+
# key to encrypt the storage volume used for automated data labeling
|
20303
|
+
# model training and inference when you create a labeling job using
|
20304
|
+
# the console. To learn more, see [Output Data and Storage Volume
|
20305
|
+
# Encryption][1].
|
20246
20306
|
#
|
20247
20307
|
# The `VolumeKmsKeyId` can be any of the following formats:
|
20248
20308
|
#
|
@@ -23252,8 +23312,8 @@ module Aws::SageMaker
|
|
23252
23312
|
# @return [Integer]
|
23253
23313
|
#
|
23254
23314
|
# @!attribute [rw] name_contains
|
23255
|
-
# A string in the
|
23256
|
-
#
|
23315
|
+
# A string in the model name. This filter returns only models whose
|
23316
|
+
# name contains the specified string.
|
23257
23317
|
# @return [String]
|
23258
23318
|
#
|
23259
23319
|
# @!attribute [rw] creation_time_before
|
@@ -25297,7 +25357,7 @@ module Aws::SageMaker
|
|
25297
25357
|
# model artifacts.
|
25298
25358
|
#
|
25299
25359
|
# Model artifacts are the output that results from training a model, and
|
25300
|
-
# typically consist of trained parameters, a model
|
25360
|
+
# typically consist of trained parameters, a model definition that
|
25301
25361
|
# describes how to compute inferences, and other metadata.
|
25302
25362
|
#
|
25303
25363
|
# @!attribute [rw] s3_model_artifacts
|
@@ -25824,7 +25884,7 @@ module Aws::SageMaker
|
|
25824
25884
|
#
|
25825
25885
|
# @!attribute [rw] created_by
|
25826
25886
|
# Information about the user who created or modified an experiment,
|
25827
|
-
# trial,
|
25887
|
+
# trial, trial component, or project.
|
25828
25888
|
# @return [Types::UserContext]
|
25829
25889
|
#
|
25830
25890
|
# @!attribute [rw] metadata_properties
|
@@ -25842,7 +25902,7 @@ module Aws::SageMaker
|
|
25842
25902
|
#
|
25843
25903
|
# @!attribute [rw] last_modified_by
|
25844
25904
|
# Information about the user who created or modified an experiment,
|
25845
|
-
# trial,
|
25905
|
+
# trial, trial component, or project.
|
25846
25906
|
# @return [Types::UserContext]
|
25847
25907
|
#
|
25848
25908
|
# @!attribute [rw] approval_description
|
@@ -25981,7 +26041,7 @@ module Aws::SageMaker
|
|
25981
26041
|
#
|
25982
26042
|
# @!attribute [rw] created_by
|
25983
26043
|
# Information about the user who created or modified an experiment,
|
25984
|
-
# trial,
|
26044
|
+
# trial, trial component, or project.
|
25985
26045
|
# @return [Types::UserContext]
|
25986
26046
|
#
|
25987
26047
|
# @!attribute [rw] model_package_group_status
|
@@ -28363,7 +28423,7 @@ module Aws::SageMaker
|
|
28363
28423
|
#
|
28364
28424
|
# `"arn:aws:kms:us-west-2:111122223333:alias/ExampleAlias"`
|
28365
28425
|
#
|
28366
|
-
# If you use a KMS key ID or an alias of your
|
28426
|
+
# If you use a KMS key ID or an alias of your KMS key, the Amazon
|
28367
28427
|
# SageMaker execution role must include permissions to call
|
28368
28428
|
# `kms:Encrypt`. If you don't provide a KMS key ID, Amazon SageMaker
|
28369
28429
|
# uses the default KMS key for Amazon S3 for your role's account.
|
@@ -28654,12 +28714,12 @@ module Aws::SageMaker
|
|
28654
28714
|
#
|
28655
28715
|
# @!attribute [rw] created_by
|
28656
28716
|
# Information about the user who created or modified an experiment,
|
28657
|
-
# trial,
|
28717
|
+
# trial, trial component, or project.
|
28658
28718
|
# @return [Types::UserContext]
|
28659
28719
|
#
|
28660
28720
|
# @!attribute [rw] last_modified_by
|
28661
28721
|
# Information about the user who created or modified an experiment,
|
28662
|
-
# trial,
|
28722
|
+
# trial, trial component, or project.
|
28663
28723
|
# @return [Types::UserContext]
|
28664
28724
|
#
|
28665
28725
|
# @!attribute [rw] tags
|
@@ -28726,12 +28786,12 @@ module Aws::SageMaker
|
|
28726
28786
|
#
|
28727
28787
|
# @!attribute [rw] created_by
|
28728
28788
|
# Information about the user who created or modified an experiment,
|
28729
|
-
# trial,
|
28789
|
+
# trial, trial component, or project.
|
28730
28790
|
# @return [Types::UserContext]
|
28731
28791
|
#
|
28732
28792
|
# @!attribute [rw] last_modified_by
|
28733
28793
|
# Information about the user who created or modified an experiment,
|
28734
|
-
# trial,
|
28794
|
+
# trial, trial component, or project.
|
28735
28795
|
# @return [Types::UserContext]
|
28736
28796
|
#
|
28737
28797
|
# @!attribute [rw] pipeline_parameters
|
@@ -29738,7 +29798,7 @@ module Aws::SageMaker
|
|
29738
29798
|
#
|
29739
29799
|
# `"arn:aws:kms:us-west-2:111122223333:alias/ExampleAlias"`
|
29740
29800
|
#
|
29741
|
-
# If you use a KMS key ID or an alias of your
|
29801
|
+
# If you use a KMS key ID or an alias of your KMS key, the Amazon
|
29742
29802
|
# SageMaker execution role must include permissions to call
|
29743
29803
|
# `kms:Encrypt`. If you don't provide a KMS key ID, Amazon SageMaker
|
29744
29804
|
# uses the default KMS key for Amazon S3 for your role's account.
|
@@ -30022,6 +30082,84 @@ module Aws::SageMaker
|
|
30022
30082
|
include Aws::Structure
|
30023
30083
|
end
|
30024
30084
|
|
30085
|
+
# The properties of a project as returned by the Search API.
|
30086
|
+
#
|
30087
|
+
# @!attribute [rw] project_arn
|
30088
|
+
# The Amazon Resource Name (ARN) of the project.
|
30089
|
+
# @return [String]
|
30090
|
+
#
|
30091
|
+
# @!attribute [rw] project_name
|
30092
|
+
# The name of the project.
|
30093
|
+
# @return [String]
|
30094
|
+
#
|
30095
|
+
# @!attribute [rw] project_id
|
30096
|
+
# The ID of the project.
|
30097
|
+
# @return [String]
|
30098
|
+
#
|
30099
|
+
# @!attribute [rw] project_description
|
30100
|
+
# The description of the project.
|
30101
|
+
# @return [String]
|
30102
|
+
#
|
30103
|
+
# @!attribute [rw] service_catalog_provisioning_details
|
30104
|
+
# Details that you specify to provision a service catalog product. For
|
30105
|
+
# information about service catalog, see [What is Amazon Web Services
|
30106
|
+
# Service Catalog][1].
|
30107
|
+
#
|
30108
|
+
#
|
30109
|
+
#
|
30110
|
+
# [1]: https://docs.aws.amazon.com/servicecatalog/latest/adminguide/introduction.html
|
30111
|
+
# @return [Types::ServiceCatalogProvisioningDetails]
|
30112
|
+
#
|
30113
|
+
# @!attribute [rw] service_catalog_provisioned_product_details
|
30114
|
+
# Details of a provisioned service catalog product. For information
|
30115
|
+
# about service catalog, see [What is Amazon Web Services Service
|
30116
|
+
# Catalog][1].
|
30117
|
+
#
|
30118
|
+
#
|
30119
|
+
#
|
30120
|
+
# [1]: https://docs.aws.amazon.com/servicecatalog/latest/adminguide/introduction.html
|
30121
|
+
# @return [Types::ServiceCatalogProvisionedProductDetails]
|
30122
|
+
#
|
30123
|
+
# @!attribute [rw] project_status
|
30124
|
+
# The status of the project.
|
30125
|
+
# @return [String]
|
30126
|
+
#
|
30127
|
+
# @!attribute [rw] created_by
|
30128
|
+
# Who created the project.
|
30129
|
+
# @return [Types::UserContext]
|
30130
|
+
#
|
30131
|
+
# @!attribute [rw] creation_time
|
30132
|
+
# A timestamp specifying when the project was created.
|
30133
|
+
# @return [Time]
|
30134
|
+
#
|
30135
|
+
# @!attribute [rw] tags
|
30136
|
+
# An array of key-value pairs. You can use tags to categorize your
|
30137
|
+
# Amazon Web Services resources in different ways, for example, by
|
30138
|
+
# purpose, owner, or environment. For more information, see [Tagging
|
30139
|
+
# Amazon Web Services Resources][1].
|
30140
|
+
#
|
30141
|
+
#
|
30142
|
+
#
|
30143
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
|
30144
|
+
# @return [Array<Types::Tag>]
|
30145
|
+
#
|
30146
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/Project AWS API Documentation
|
30147
|
+
#
|
30148
|
+
class Project < Struct.new(
|
30149
|
+
:project_arn,
|
30150
|
+
:project_name,
|
30151
|
+
:project_id,
|
30152
|
+
:project_description,
|
30153
|
+
:service_catalog_provisioning_details,
|
30154
|
+
:service_catalog_provisioned_product_details,
|
30155
|
+
:project_status,
|
30156
|
+
:created_by,
|
30157
|
+
:creation_time,
|
30158
|
+
:tags)
|
30159
|
+
SENSITIVE = []
|
30160
|
+
include Aws::Structure
|
30161
|
+
end
|
30162
|
+
|
30025
30163
|
# Information about a project.
|
30026
30164
|
#
|
30027
30165
|
# @!attribute [rw] project_name
|
@@ -30897,7 +31035,7 @@ module Aws::SageMaker
|
|
30897
31035
|
# @return [String]
|
30898
31036
|
#
|
30899
31037
|
# @!attribute [rw] lifecycle_config_arn
|
30900
|
-
# The Amazon Resource Name (ARN) of the Lifecycle
|
31038
|
+
# The Amazon Resource Name (ARN) of the Lifecycle Configuration
|
30901
31039
|
# attached to the Resource.
|
30902
31040
|
# @return [String]
|
30903
31041
|
#
|
@@ -30937,6 +31075,48 @@ module Aws::SageMaker
|
|
30937
31075
|
include Aws::Structure
|
30938
31076
|
end
|
30939
31077
|
|
31078
|
+
# @note When making an API call, you may pass RetryPipelineExecutionRequest
|
31079
|
+
# data as a hash:
|
31080
|
+
#
|
31081
|
+
# {
|
31082
|
+
# pipeline_execution_arn: "PipelineExecutionArn", # required
|
31083
|
+
# client_request_token: "IdempotencyToken", # required
|
31084
|
+
# }
|
31085
|
+
#
|
31086
|
+
# @!attribute [rw] pipeline_execution_arn
|
31087
|
+
# The Amazon Resource Name (ARN) of the pipeline execution.
|
31088
|
+
# @return [String]
|
31089
|
+
#
|
31090
|
+
# @!attribute [rw] client_request_token
|
31091
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
31092
|
+
# idempotency of the operation. An idempotent operation completes no
|
31093
|
+
# more than once.
|
31094
|
+
#
|
31095
|
+
# **A suitable default value is auto-generated.** You should normally
|
31096
|
+
# not need to pass this option.
|
31097
|
+
# @return [String]
|
31098
|
+
#
|
31099
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/RetryPipelineExecutionRequest AWS API Documentation
|
31100
|
+
#
|
31101
|
+
class RetryPipelineExecutionRequest < Struct.new(
|
31102
|
+
:pipeline_execution_arn,
|
31103
|
+
:client_request_token)
|
31104
|
+
SENSITIVE = []
|
31105
|
+
include Aws::Structure
|
31106
|
+
end
|
31107
|
+
|
31108
|
+
# @!attribute [rw] pipeline_execution_arn
|
31109
|
+
# The Amazon Resource Name (ARN) of the pipeline execution.
|
31110
|
+
# @return [String]
|
31111
|
+
#
|
31112
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/RetryPipelineExecutionResponse AWS API Documentation
|
31113
|
+
#
|
31114
|
+
class RetryPipelineExecutionResponse < Struct.new(
|
31115
|
+
:pipeline_execution_arn)
|
31116
|
+
SENSITIVE = []
|
31117
|
+
include Aws::Structure
|
31118
|
+
end
|
31119
|
+
|
30940
31120
|
# The retry strategy to use when a training job fails due to an
|
30941
31121
|
# `InternalServerError`. `RetryStrategy` is specified as part of the
|
30942
31122
|
# `CreateTrainingJob` and `CreateHyperParameterTuningJob` requests. You
|
@@ -31338,6 +31518,10 @@ module Aws::SageMaker
|
|
31338
31518
|
# composed of features and values per features.
|
31339
31519
|
# @return [Types::FeatureGroup]
|
31340
31520
|
#
|
31521
|
+
# @!attribute [rw] project
|
31522
|
+
# The properties of a project.
|
31523
|
+
# @return [Types::Project]
|
31524
|
+
#
|
31341
31525
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SearchRecord AWS API Documentation
|
31342
31526
|
#
|
31343
31527
|
class SearchRecord < Struct.new(
|
@@ -31350,7 +31534,8 @@ module Aws::SageMaker
|
|
31350
31534
|
:model_package_group,
|
31351
31535
|
:pipeline,
|
31352
31536
|
:pipeline_execution,
|
31353
|
-
:feature_group
|
31537
|
+
:feature_group,
|
31538
|
+
:project)
|
31354
31539
|
SENSITIVE = []
|
31355
31540
|
include Aws::Structure
|
31356
31541
|
end
|
@@ -31359,7 +31544,7 @@ module Aws::SageMaker
|
|
31359
31544
|
# data as a hash:
|
31360
31545
|
#
|
31361
31546
|
# {
|
31362
|
-
# resource: "TrainingJob", # required, accepts TrainingJob, Experiment, ExperimentTrial, ExperimentTrialComponent, Endpoint, ModelPackage, ModelPackageGroup, Pipeline, PipelineExecution, FeatureGroup
|
31547
|
+
# resource: "TrainingJob", # required, accepts TrainingJob, Experiment, ExperimentTrial, ExperimentTrialComponent, Endpoint, ModelPackage, ModelPackageGroup, Pipeline, PipelineExecution, FeatureGroup, Project
|
31363
31548
|
# search_expression: {
|
31364
31549
|
# filters: [
|
31365
31550
|
# {
|
@@ -31728,7 +31913,7 @@ module Aws::SageMaker
|
|
31728
31913
|
end
|
31729
31914
|
|
31730
31915
|
# Details that you specify to provision a service catalog product. For
|
31731
|
-
# information about service catalog, see
|
31916
|
+
# information about service catalog, see [What is Amazon Web Services
|
31732
31917
|
# Service Catalog][1].
|
31733
31918
|
#
|
31734
31919
|
#
|
@@ -31740,7 +31925,7 @@ module Aws::SageMaker
|
|
31740
31925
|
#
|
31741
31926
|
# {
|
31742
31927
|
# product_id: "ServiceCatalogEntityId", # required
|
31743
|
-
# provisioning_artifact_id: "ServiceCatalogEntityId",
|
31928
|
+
# provisioning_artifact_id: "ServiceCatalogEntityId",
|
31744
31929
|
# path_id: "ServiceCatalogEntityId",
|
31745
31930
|
# provisioning_parameters: [
|
31746
31931
|
# {
|
@@ -32036,7 +32221,7 @@ module Aws::SageMaker
|
|
32036
32221
|
# @!attribute [rw] client_request_token
|
32037
32222
|
# A unique, case-sensitive identifier that you provide to ensure the
|
32038
32223
|
# idempotency of the operation. An idempotent operation completes no
|
32039
|
-
# more than
|
32224
|
+
# more than once.
|
32040
32225
|
#
|
32041
32226
|
# **A suitable default value is auto-generated.** You should normally
|
32042
32227
|
# not need to pass this option.
|
@@ -32214,7 +32399,7 @@ module Aws::SageMaker
|
|
32214
32399
|
# @!attribute [rw] client_request_token
|
32215
32400
|
# A unique, case-sensitive identifier that you provide to ensure the
|
32216
32401
|
# idempotency of the operation. An idempotent operation completes no
|
32217
|
-
# more than
|
32402
|
+
# more than once.
|
32218
32403
|
#
|
32219
32404
|
# **A suitable default value is auto-generated.** You should normally
|
32220
32405
|
# not need to pass this option.
|
@@ -32298,11 +32483,11 @@ module Aws::SageMaker
|
|
32298
32483
|
include Aws::Structure
|
32299
32484
|
end
|
32300
32485
|
|
32301
|
-
# Specifies a limit to how long a model training job
|
32302
|
-
#
|
32303
|
-
#
|
32304
|
-
#
|
32305
|
-
#
|
32486
|
+
# Specifies a limit to how long a model training job or model
|
32487
|
+
# compilation job can run. It also specifies how long a managed spot
|
32488
|
+
# training job has to complete. When the job reaches the time limit,
|
32489
|
+
# Amazon SageMaker ends the training or compilation job. Use this API to
|
32490
|
+
# cap model training costs.
|
32306
32491
|
#
|
32307
32492
|
# To stop a training job, Amazon SageMaker sends the algorithm the
|
32308
32493
|
# `SIGTERM` signal, which delays job termination for 120 seconds.
|
@@ -32464,12 +32649,12 @@ module Aws::SageMaker
|
|
32464
32649
|
end
|
32465
32650
|
|
32466
32651
|
# A tag object that consists of a key and an optional value, used to
|
32467
|
-
# manage metadata for
|
32652
|
+
# manage metadata for SageMaker Amazon Web Services resources.
|
32468
32653
|
#
|
32469
32654
|
# You can add tags to notebook instances, training jobs, hyperparameter
|
32470
32655
|
# tuning jobs, batch transform jobs, models, labeling jobs, work teams,
|
32471
32656
|
# endpoint configurations, and endpoints. For more information on adding
|
32472
|
-
# tags to
|
32657
|
+
# tags to SageMaker resources, see AddTags.
|
32473
32658
|
#
|
32474
32659
|
# For more information on adding metadata to your Amazon Web Services
|
32475
32660
|
# resources with tagging, see [Tagging Amazon Web Services
|
@@ -32998,7 +33183,7 @@ module Aws::SageMaker
|
|
32998
33183
|
# data as a hash:
|
32999
33184
|
#
|
33000
33185
|
# {
|
33001
|
-
# training_input_mode: "Pipe", # required, accepts Pipe, File
|
33186
|
+
# training_input_mode: "Pipe", # required, accepts Pipe, File, FastFile
|
33002
33187
|
# hyper_parameters: {
|
33003
33188
|
# "HyperParameterKey" => "HyperParameterValue",
|
33004
33189
|
# },
|
@@ -33022,7 +33207,7 @@ module Aws::SageMaker
|
|
33022
33207
|
# content_type: "ContentType",
|
33023
33208
|
# compression_type: "None", # accepts None, Gzip
|
33024
33209
|
# record_wrapper_type: "None", # accepts None, RecordIO
|
33025
|
-
# input_mode: "Pipe", # accepts Pipe, File
|
33210
|
+
# input_mode: "Pipe", # accepts Pipe, File, FastFile
|
33026
33211
|
# shuffle_config: {
|
33027
33212
|
# seed: 1, # required
|
33028
33213
|
# },
|
@@ -33045,15 +33230,45 @@ module Aws::SageMaker
|
|
33045
33230
|
# }
|
33046
33231
|
#
|
33047
33232
|
# @!attribute [rw] training_input_mode
|
33048
|
-
# The input mode
|
33049
|
-
# input modes
|
33050
|
-
#
|
33233
|
+
# The training input mode that the algorithm supports. For more
|
33234
|
+
# information about input modes, see [Algorithms][1].
|
33235
|
+
#
|
33236
|
+
# **Pipe mode**
|
33237
|
+
#
|
33238
|
+
# If an algorithm supports `Pipe` mode, Amazon SageMaker streams data
|
33239
|
+
# directly from Amazon S3 to the container.
|
33240
|
+
#
|
33241
|
+
# **File mode**
|
33051
33242
|
#
|
33052
|
-
# If an algorithm supports
|
33053
|
-
#
|
33054
|
-
#
|
33055
|
-
# container.
|
33056
|
-
#
|
33243
|
+
# If an algorithm supports `File` mode, SageMaker downloads the
|
33244
|
+
# training data from S3 to the provisioned ML storage volume, and
|
33245
|
+
# mounts the directory to the Docker volume for the training
|
33246
|
+
# container.
|
33247
|
+
#
|
33248
|
+
# You must provision the ML storage volume with sufficient capacity to
|
33249
|
+
# accommodate the data downloaded from S3. In addition to the training
|
33250
|
+
# data, the ML storage volume also stores the output model. The
|
33251
|
+
# algorithm container uses the ML storage volume to also store
|
33252
|
+
# intermediate information, if any.
|
33253
|
+
#
|
33254
|
+
# For distributed algorithms, training data is distributed uniformly.
|
33255
|
+
# Your training duration is predictable if the input data objects
|
33256
|
+
# sizes are approximately the same. SageMaker does not split the files
|
33257
|
+
# any further for model training. If the object sizes are skewed,
|
33258
|
+
# training won't be optimal as the data distribution is also skewed
|
33259
|
+
# when one host in a training cluster is overloaded, thus becoming a
|
33260
|
+
# bottleneck in training.
|
33261
|
+
#
|
33262
|
+
# **FastFile mode**
|
33263
|
+
#
|
33264
|
+
# If an algorithm supports `FastFile` mode, SageMaker streams data
|
33265
|
+
# directly from S3 to the container with no code changes, and provides
|
33266
|
+
# file system access to the data. Users can author their training
|
33267
|
+
# script to interact with these files as if they were stored on disk.
|
33268
|
+
#
|
33269
|
+
# `FastFile` mode works best when the data is read sequentially.
|
33270
|
+
# Augmented manifest files aren't supported. The startup time is
|
33271
|
+
# lower when there are fewer files in the S3 bucket provided.
|
33057
33272
|
#
|
33058
33273
|
#
|
33059
33274
|
#
|
@@ -33247,7 +33462,7 @@ module Aws::SageMaker
|
|
33247
33462
|
# is_required: false,
|
33248
33463
|
# supported_content_types: ["ContentType"], # required
|
33249
33464
|
# supported_compression_types: ["None"], # accepts None, Gzip
|
33250
|
-
# supported_input_modes: ["Pipe"], # required, accepts Pipe, File
|
33465
|
+
# supported_input_modes: ["Pipe"], # required, accepts Pipe, File, FastFile
|
33251
33466
|
# },
|
33252
33467
|
# ],
|
33253
33468
|
# supported_tuning_job_objective_metrics: [
|
@@ -34026,8 +34241,7 @@ module Aws::SageMaker
|
|
34026
34241
|
# @return [Time]
|
34027
34242
|
#
|
34028
34243
|
# @!attribute [rw] created_by
|
34029
|
-
#
|
34030
|
-
# trial, or trial component.
|
34244
|
+
# Who created the trial.
|
34031
34245
|
# @return [Types::UserContext]
|
34032
34246
|
#
|
34033
34247
|
# @!attribute [rw] last_modified_time
|
@@ -34036,7 +34250,7 @@ module Aws::SageMaker
|
|
34036
34250
|
#
|
34037
34251
|
# @!attribute [rw] last_modified_by
|
34038
34252
|
# Information about the user who created or modified an experiment,
|
34039
|
-
# trial,
|
34253
|
+
# trial, trial component, or project.
|
34040
34254
|
# @return [Types::UserContext]
|
34041
34255
|
#
|
34042
34256
|
# @!attribute [rw] metadata_properties
|
@@ -34110,8 +34324,7 @@ module Aws::SageMaker
|
|
34110
34324
|
# @return [Time]
|
34111
34325
|
#
|
34112
34326
|
# @!attribute [rw] created_by
|
34113
|
-
#
|
34114
|
-
# trial, or trial component.
|
34327
|
+
# Who created the trial component.
|
34115
34328
|
# @return [Types::UserContext]
|
34116
34329
|
#
|
34117
34330
|
# @!attribute [rw] last_modified_time
|
@@ -34120,7 +34333,7 @@ module Aws::SageMaker
|
|
34120
34333
|
#
|
34121
34334
|
# @!attribute [rw] last_modified_by
|
34122
34335
|
# Information about the user who created or modified an experiment,
|
34123
|
-
# trial,
|
34336
|
+
# trial, trial component, or project.
|
34124
34337
|
# @return [Types::UserContext]
|
34125
34338
|
#
|
34126
34339
|
# @!attribute [rw] parameters
|
@@ -34331,7 +34544,7 @@ module Aws::SageMaker
|
|
34331
34544
|
#
|
34332
34545
|
# @!attribute [rw] created_by
|
34333
34546
|
# Information about the user who created or modified an experiment,
|
34334
|
-
# trial,
|
34547
|
+
# trial, trial component, or project.
|
34335
34548
|
# @return [Types::UserContext]
|
34336
34549
|
#
|
34337
34550
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/TrialComponentSimpleSummary AWS API Documentation
|
@@ -34471,7 +34684,7 @@ module Aws::SageMaker
|
|
34471
34684
|
# @return [Time]
|
34472
34685
|
#
|
34473
34686
|
# @!attribute [rw] created_by
|
34474
|
-
# Who created the component.
|
34687
|
+
# Who created the trial component.
|
34475
34688
|
# @return [Types::UserContext]
|
34476
34689
|
#
|
34477
34690
|
# @!attribute [rw] last_modified_time
|
@@ -36358,7 +36571,7 @@ module Aws::SageMaker
|
|
36358
36571
|
end
|
36359
36572
|
|
36360
36573
|
# Information about the user who created or modified an experiment,
|
36361
|
-
# trial,
|
36574
|
+
# trial, trial component, or project.
|
36362
36575
|
#
|
36363
36576
|
# @!attribute [rw] user_profile_arn
|
36364
36577
|
# The Amazon Resource Name (ARN) of the user's profile.
|