aws-sdk-sagemaker 1.110.0 → 1.114.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c23d5665962ac03d7ca6e9af28d93f84fbbc54e70772028859939227d19faa6a
4
- data.tar.gz: c7ad130498bd4d2402fcafc3a6c38cf1b44d5f7da559830a35316f0cbb671d46
3
+ metadata.gz: 32d202b9daf567f6f2bb28e00ad02d4b95b443f5b0ff13649f7843b80ec9b1c4
4
+ data.tar.gz: 8d7aa2498b4186d5560c6b9c8699f03bf459b01c6cadbb870c41d1d48fbae040
5
5
  SHA512:
6
- metadata.gz: 7d8b1f2a298a2646c91b5dbb9e1404585d9da09390b09b6285ca8121fece6857a9fc8de595545f0ed58c6899b6e0f3d46309854e8e07698ef34f7921c80dc0f0
7
- data.tar.gz: a3b728eab4fea90d68c8ed091d32ef745440f2a3263b6fd29e9d44d6276b52e73f133850be8ee83e87857f11e941885ce8d0d547cabeb6bd1a745a0387c8117f
6
+ metadata.gz: 8df0f46c37dc211b03f5cf1aef0bf247d422110c42d21b539eb23f5e2e9fdbaebb66d160a832fb4482a0b27187bb084f281eae7b5de30299127908a4cc110dc4
7
+ data.tar.gz: d4406d328d0b0944940c8a266f7a8a19c0d1aa27b446c9516d212f7271431546dee70b9d0784bffdcc572ebe20d7035640eac532e2f030b9b7c49e36c6f72061
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.114.0 (2022-01-03)
5
+ ------------------
6
+
7
+ * Feature - The release allows users to pass pipeline definitions as Amazon S3 locations and control the pipeline execution concurrency using ParallelismConfiguration. It also adds support of EMR jobs as pipeline steps.
8
+
9
+ 1.113.0 (2021-12-21)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.112.0 (2021-12-20)
15
+ ------------------
16
+
17
+ * Feature - This release adds a new ContentType field in AutoMLChannel for SageMaker CreateAutoMLJob InputDataConfig.
18
+
19
+ 1.111.0 (2021-12-08)
20
+ ------------------
21
+
22
+ * Feature - This release added a new Ambarella device(amba_cv2) compilation support for Sagemaker Neo.
23
+
4
24
  1.110.0 (2021-12-01)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.110.0
1
+ 1.114.0
@@ -27,6 +27,7 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
+ require 'aws-sdk-core/plugins/defaults_mode.rb'
30
31
  require 'aws-sdk-core/plugins/signature_v4.rb'
31
32
  require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
32
33
 
@@ -73,6 +74,7 @@ module Aws::SageMaker
73
74
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
74
75
  add_plugin(Aws::Plugins::TransferEncoding)
75
76
  add_plugin(Aws::Plugins::HttpChecksum)
77
+ add_plugin(Aws::Plugins::DefaultsMode)
76
78
  add_plugin(Aws::Plugins::SignatureV4)
77
79
  add_plugin(Aws::Plugins::Protocols::JsonRpc)
78
80
 
@@ -175,6 +177,10 @@ module Aws::SageMaker
175
177
  # Used only in `standard` and adaptive retry modes. Specifies whether to apply
176
178
  # a clock skew correction and retry requests with skewed client clocks.
177
179
  #
180
+ # @option options [String] :defaults_mode ("legacy")
181
+ # See {Aws::DefaultsModeConfiguration} for a list of the
182
+ # accepted modes and the configuration defaults that are included.
183
+ #
178
184
  # @option options [Boolean] :disable_host_prefix_injection (false)
179
185
  # Set to true to disable SDK automatically adding host prefix
180
186
  # to default service endpoint when available.
@@ -307,7 +313,7 @@ module Aws::SageMaker
307
313
  # seconds to wait when opening a HTTP session before raising a
308
314
  # `Timeout::Error`.
309
315
  #
310
- # @option options [Integer] :http_read_timeout (60) The default
316
+ # @option options [Float] :http_read_timeout (60) The default
311
317
  # number of seconds to wait for response data. This value can
312
318
  # safely be set per-request on the session.
313
319
  #
@@ -323,6 +329,9 @@ module Aws::SageMaker
323
329
  # disables this behaviour. This value can safely be set per
324
330
  # request on the session.
325
331
  #
332
+ # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
333
+ # in seconds.
334
+ #
326
335
  # @option options [Boolean] :http_wire_trace (false) When `true`,
327
336
  # HTTP debug output will be sent to the `:logger`.
328
337
  #
@@ -1196,6 +1205,7 @@ module Aws::SageMaker
1196
1205
  # },
1197
1206
  # compression_type: "None", # accepts None, Gzip
1198
1207
  # target_attribute_name: "TargetAttributeName", # required
1208
+ # content_type: "ContentType",
1199
1209
  # },
1200
1210
  # ],
1201
1211
  # output_data_config: { # required
@@ -1432,7 +1442,7 @@ module Aws::SageMaker
1432
1442
  # },
1433
1443
  # output_config: { # required
1434
1444
  # s3_output_location: "S3Uri", # required
1435
- # target_device: "lambda", # accepts lambda, ml_m4, ml_m5, ml_c4, ml_c5, ml_p2, ml_p3, ml_g4dn, ml_inf1, ml_eia2, jetson_tx1, jetson_tx2, jetson_nano, jetson_xavier, rasp3b, imx8qm, deeplens, rk3399, rk3288, aisage, sbe_c, qcs605, qcs603, sitara_am57x, amba_cv22, amba_cv25, x86_win32, x86_win64, coreml, jacinto_tda4vm, imx8mplus
1445
+ # target_device: "lambda", # accepts lambda, ml_m4, ml_m5, ml_c4, ml_c5, ml_p2, ml_p3, ml_g4dn, ml_inf1, ml_eia2, jetson_tx1, jetson_tx2, jetson_nano, jetson_xavier, rasp3b, imx8qm, deeplens, rk3399, rk3288, aisage, sbe_c, qcs605, qcs603, sitara_am57x, amba_cv2, amba_cv22, amba_cv25, x86_win32, x86_win64, coreml, jacinto_tda4vm, imx8mplus
1436
1446
  # target_platform: {
1437
1447
  # os: "ANDROID", # required, accepts ANDROID, LINUX
1438
1448
  # arch: "X86_64", # required, accepts X86_64, X86, ARM64, ARM_EABI, ARM_EABIHF
@@ -1833,7 +1843,7 @@ module Aws::SageMaker
1833
1843
  # subnets
1834
1844
  #
1835
1845
  # @option params [String] :home_efs_file_system_kms_key_id
1836
- # This member is deprecated and replaced with `KmsKeyId`.
1846
+ # Use `KmsKeyId`.
1837
1847
  #
1838
1848
  # @option params [String] :kms_key_id
1839
1849
  # SageMaker uses Amazon Web Services KMS to encrypt the EFS volume
@@ -5073,9 +5083,14 @@ module Aws::SageMaker
5073
5083
  # @option params [String] :pipeline_display_name
5074
5084
  # The display name of the pipeline.
5075
5085
  #
5076
- # @option params [required, String] :pipeline_definition
5086
+ # @option params [String] :pipeline_definition
5077
5087
  # The JSON pipeline definition of the pipeline.
5078
5088
  #
5089
+ # @option params [Types::PipelineDefinitionS3Location] :pipeline_definition_s3_location
5090
+ # The location of the pipeline definition stored in Amazon S3. If
5091
+ # specified, SageMaker will retrieve the pipeline definition from this
5092
+ # location.
5093
+ #
5079
5094
  # @option params [String] :pipeline_description
5080
5095
  # A description of the pipeline.
5081
5096
  #
@@ -5094,6 +5109,11 @@ module Aws::SageMaker
5094
5109
  # @option params [Array<Types::Tag>] :tags
5095
5110
  # A list of tags to apply to the created pipeline.
5096
5111
  #
5112
+ # @option params [Types::ParallelismConfiguration] :parallelism_configuration
5113
+ # This is the configuration that controls the parallelism of the
5114
+ # pipeline. If specified, it applies to all runs of this pipeline by
5115
+ # default.
5116
+ #
5097
5117
  # @return [Types::CreatePipelineResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5098
5118
  #
5099
5119
  # * {Types::CreatePipelineResponse#pipeline_arn #pipeline_arn} => String
@@ -5103,7 +5123,12 @@ module Aws::SageMaker
5103
5123
  # resp = client.create_pipeline({
5104
5124
  # pipeline_name: "PipelineName", # required
5105
5125
  # pipeline_display_name: "PipelineName",
5106
- # pipeline_definition: "PipelineDefinition", # required
5126
+ # pipeline_definition: "PipelineDefinition",
5127
+ # pipeline_definition_s3_location: {
5128
+ # bucket: "BucketName", # required
5129
+ # object_key: "Key", # required
5130
+ # version_id: "VersionId",
5131
+ # },
5107
5132
  # pipeline_description: "PipelineDescription",
5108
5133
  # client_request_token: "IdempotencyToken", # required
5109
5134
  # role_arn: "RoleArn", # required
@@ -5113,6 +5138,9 @@ module Aws::SageMaker
5113
5138
  # value: "TagValue", # required
5114
5139
  # },
5115
5140
  # ],
5141
+ # parallelism_configuration: {
5142
+ # max_parallel_execution_steps: 1, # required
5143
+ # },
5116
5144
  # })
5117
5145
  #
5118
5146
  # @example Response structure
@@ -8197,6 +8225,7 @@ module Aws::SageMaker
8197
8225
  # resp.input_data_config[0].data_source.s3_data_source.s3_uri #=> String
8198
8226
  # resp.input_data_config[0].compression_type #=> String, one of "None", "Gzip"
8199
8227
  # resp.input_data_config[0].target_attribute_name #=> String
8228
+ # resp.input_data_config[0].content_type #=> String
8200
8229
  # resp.output_data_config.kms_key_id #=> String
8201
8230
  # resp.output_data_config.s3_output_path #=> String
8202
8231
  # resp.role_arn #=> String
@@ -8359,7 +8388,7 @@ module Aws::SageMaker
8359
8388
  # resp.input_config.framework #=> String, one of "TENSORFLOW", "KERAS", "MXNET", "ONNX", "PYTORCH", "XGBOOST", "TFLITE", "DARKNET", "SKLEARN"
8360
8389
  # resp.input_config.framework_version #=> String
8361
8390
  # resp.output_config.s3_output_location #=> String
8362
- # resp.output_config.target_device #=> String, one of "lambda", "ml_m4", "ml_m5", "ml_c4", "ml_c5", "ml_p2", "ml_p3", "ml_g4dn", "ml_inf1", "ml_eia2", "jetson_tx1", "jetson_tx2", "jetson_nano", "jetson_xavier", "rasp3b", "imx8qm", "deeplens", "rk3399", "rk3288", "aisage", "sbe_c", "qcs605", "qcs603", "sitara_am57x", "amba_cv22", "amba_cv25", "x86_win32", "x86_win64", "coreml", "jacinto_tda4vm", "imx8mplus"
8391
+ # resp.output_config.target_device #=> String, one of "lambda", "ml_m4", "ml_m5", "ml_c4", "ml_c5", "ml_p2", "ml_p3", "ml_g4dn", "ml_inf1", "ml_eia2", "jetson_tx1", "jetson_tx2", "jetson_nano", "jetson_xavier", "rasp3b", "imx8qm", "deeplens", "rk3399", "rk3288", "aisage", "sbe_c", "qcs605", "qcs603", "sitara_am57x", "amba_cv2", "amba_cv22", "amba_cv25", "x86_win32", "x86_win64", "coreml", "jacinto_tda4vm", "imx8mplus"
8363
8392
  # resp.output_config.target_platform.os #=> String, one of "ANDROID", "LINUX"
8364
8393
  # resp.output_config.target_platform.arch #=> String, one of "X86_64", "X86", "ARM64", "ARM_EABI", "ARM_EABIHF"
8365
8394
  # resp.output_config.target_platform.accelerator #=> String, one of "INTEL_GRAPHICS", "MALI", "NVIDIA"
@@ -10532,6 +10561,7 @@ module Aws::SageMaker
10532
10561
  # * {Types::DescribePipelineResponse#last_run_time #last_run_time} => Time
10533
10562
  # * {Types::DescribePipelineResponse#created_by #created_by} => Types::UserContext
10534
10563
  # * {Types::DescribePipelineResponse#last_modified_by #last_modified_by} => Types::UserContext
10564
+ # * {Types::DescribePipelineResponse#parallelism_configuration #parallelism_configuration} => Types::ParallelismConfiguration
10535
10565
  #
10536
10566
  # @example Request syntax with placeholder values
10537
10567
  #
@@ -10557,6 +10587,7 @@ module Aws::SageMaker
10557
10587
  # resp.last_modified_by.user_profile_arn #=> String
10558
10588
  # resp.last_modified_by.user_profile_name #=> String
10559
10589
  # resp.last_modified_by.domain_id #=> String
10590
+ # resp.parallelism_configuration.max_parallel_execution_steps #=> Integer
10560
10591
  #
10561
10592
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribePipeline AWS API Documentation
10562
10593
  #
@@ -10615,6 +10646,7 @@ module Aws::SageMaker
10615
10646
  # * {Types::DescribePipelineExecutionResponse#last_modified_time #last_modified_time} => Time
10616
10647
  # * {Types::DescribePipelineExecutionResponse#created_by #created_by} => Types::UserContext
10617
10648
  # * {Types::DescribePipelineExecutionResponse#last_modified_by #last_modified_by} => Types::UserContext
10649
+ # * {Types::DescribePipelineExecutionResponse#parallelism_configuration #parallelism_configuration} => Types::ParallelismConfiguration
10618
10650
  #
10619
10651
  # @example Request syntax with placeholder values
10620
10652
  #
@@ -10640,6 +10672,7 @@ module Aws::SageMaker
10640
10672
  # resp.last_modified_by.user_profile_arn #=> String
10641
10673
  # resp.last_modified_by.user_profile_name #=> String
10642
10674
  # resp.last_modified_by.domain_id #=> String
10675
+ # resp.parallelism_configuration.max_parallel_execution_steps #=> Integer
10643
10676
  #
10644
10677
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribePipelineExecution AWS API Documentation
10645
10678
  #
@@ -12520,7 +12553,7 @@ module Aws::SageMaker
12520
12553
  # resp.compilation_job_summaries[0].creation_time #=> Time
12521
12554
  # resp.compilation_job_summaries[0].compilation_start_time #=> Time
12522
12555
  # resp.compilation_job_summaries[0].compilation_end_time #=> Time
12523
- # resp.compilation_job_summaries[0].compilation_target_device #=> String, one of "lambda", "ml_m4", "ml_m5", "ml_c4", "ml_c5", "ml_p2", "ml_p3", "ml_g4dn", "ml_inf1", "ml_eia2", "jetson_tx1", "jetson_tx2", "jetson_nano", "jetson_xavier", "rasp3b", "imx8qm", "deeplens", "rk3399", "rk3288", "aisage", "sbe_c", "qcs605", "qcs603", "sitara_am57x", "amba_cv22", "amba_cv25", "x86_win32", "x86_win64", "coreml", "jacinto_tda4vm", "imx8mplus"
12556
+ # resp.compilation_job_summaries[0].compilation_target_device #=> String, one of "lambda", "ml_m4", "ml_m5", "ml_c4", "ml_c5", "ml_p2", "ml_p3", "ml_g4dn", "ml_inf1", "ml_eia2", "jetson_tx1", "jetson_tx2", "jetson_nano", "jetson_xavier", "rasp3b", "imx8qm", "deeplens", "rk3399", "rk3288", "aisage", "sbe_c", "qcs605", "qcs603", "sitara_am57x", "amba_cv2", "amba_cv22", "amba_cv25", "x86_win32", "x86_win64", "coreml", "jacinto_tda4vm", "imx8mplus"
12524
12557
  # resp.compilation_job_summaries[0].compilation_target_platform_os #=> String, one of "ANDROID", "LINUX"
12525
12558
  # resp.compilation_job_summaries[0].compilation_target_platform_arch #=> String, one of "X86_64", "X86", "ARM64", "ARM_EABI", "ARM_EABIHF"
12526
12559
  # resp.compilation_job_summaries[0].compilation_target_platform_accelerator #=> String, one of "INTEL_GRAPHICS", "MALI", "NVIDIA"
@@ -14850,10 +14883,13 @@ module Aws::SageMaker
14850
14883
  #
14851
14884
  # resp.pipeline_execution_steps #=> Array
14852
14885
  # resp.pipeline_execution_steps[0].step_name #=> String
14886
+ # resp.pipeline_execution_steps[0].step_display_name #=> String
14887
+ # resp.pipeline_execution_steps[0].step_description #=> String
14853
14888
  # resp.pipeline_execution_steps[0].start_time #=> Time
14854
14889
  # resp.pipeline_execution_steps[0].end_time #=> Time
14855
14890
  # resp.pipeline_execution_steps[0].step_status #=> String, one of "Starting", "Executing", "Stopping", "Stopped", "Failed", "Succeeded"
14856
14891
  # resp.pipeline_execution_steps[0].cache_hit_result.source_pipeline_execution_arn #=> String
14892
+ # resp.pipeline_execution_steps[0].attempt_count #=> Integer
14857
14893
  # resp.pipeline_execution_steps[0].failure_reason #=> String
14858
14894
  # resp.pipeline_execution_steps[0].metadata.training_job.arn #=> String
14859
14895
  # resp.pipeline_execution_steps[0].metadata.processing_job.arn #=> String
@@ -14889,6 +14925,10 @@ module Aws::SageMaker
14889
14925
  # resp.pipeline_execution_steps[0].metadata.clarify_check.check_job_arn #=> String
14890
14926
  # resp.pipeline_execution_steps[0].metadata.clarify_check.skip_check #=> Boolean
14891
14927
  # resp.pipeline_execution_steps[0].metadata.clarify_check.register_new_baseline #=> Boolean
14928
+ # resp.pipeline_execution_steps[0].metadata.emr.cluster_id #=> String
14929
+ # resp.pipeline_execution_steps[0].metadata.emr.step_id #=> String
14930
+ # resp.pipeline_execution_steps[0].metadata.emr.step_name #=> String
14931
+ # resp.pipeline_execution_steps[0].metadata.emr.log_file_path #=> String
14892
14932
  # resp.next_token #=> String
14893
14933
  #
14894
14934
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListPipelineExecutionSteps AWS API Documentation
@@ -16297,6 +16337,10 @@ module Aws::SageMaker
16297
16337
  # **A suitable default value is auto-generated.** You should normally
16298
16338
  # not need to pass this option.**
16299
16339
  #
16340
+ # @option params [Types::ParallelismConfiguration] :parallelism_configuration
16341
+ # This configuration, if specified, overrides the parallelism
16342
+ # configuration of the parent pipeline.
16343
+ #
16300
16344
  # @return [Types::RetryPipelineExecutionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
16301
16345
  #
16302
16346
  # * {Types::RetryPipelineExecutionResponse#pipeline_execution_arn #pipeline_execution_arn} => String
@@ -16306,6 +16350,9 @@ module Aws::SageMaker
16306
16350
  # resp = client.retry_pipeline_execution({
16307
16351
  # pipeline_execution_arn: "PipelineExecutionArn", # required
16308
16352
  # client_request_token: "IdempotencyToken", # required
16353
+ # parallelism_configuration: {
16354
+ # max_parallel_execution_steps: 1, # required
16355
+ # },
16309
16356
  # })
16310
16357
  #
16311
16358
  # @example Response structure
@@ -17090,6 +17137,7 @@ module Aws::SageMaker
17090
17137
  # resp.results[0].pipeline.last_modified_by.user_profile_arn #=> String
17091
17138
  # resp.results[0].pipeline.last_modified_by.user_profile_name #=> String
17092
17139
  # resp.results[0].pipeline.last_modified_by.domain_id #=> String
17140
+ # resp.results[0].pipeline.parallelism_configuration.max_parallel_execution_steps #=> Integer
17093
17141
  # resp.results[0].pipeline.tags #=> Array
17094
17142
  # resp.results[0].pipeline.tags[0].key #=> String
17095
17143
  # resp.results[0].pipeline.tags[0].value #=> String
@@ -17109,6 +17157,7 @@ module Aws::SageMaker
17109
17157
  # resp.results[0].pipeline_execution.last_modified_by.user_profile_arn #=> String
17110
17158
  # resp.results[0].pipeline_execution.last_modified_by.user_profile_name #=> String
17111
17159
  # resp.results[0].pipeline_execution.last_modified_by.domain_id #=> String
17160
+ # resp.results[0].pipeline_execution.parallelism_configuration.max_parallel_execution_steps #=> Integer
17112
17161
  # resp.results[0].pipeline_execution.pipeline_parameters #=> Array
17113
17162
  # resp.results[0].pipeline_execution.pipeline_parameters[0].name #=> String
17114
17163
  # resp.results[0].pipeline_execution.pipeline_parameters[0].value #=> String
@@ -17341,6 +17390,10 @@ module Aws::SageMaker
17341
17390
  # **A suitable default value is auto-generated.** You should normally
17342
17391
  # not need to pass this option.**
17343
17392
  #
17393
+ # @option params [Types::ParallelismConfiguration] :parallelism_configuration
17394
+ # This configuration, if specified, overrides the parallelism
17395
+ # configuration of the parent pipeline for this specific run.
17396
+ #
17344
17397
  # @return [Types::StartPipelineExecutionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
17345
17398
  #
17346
17399
  # * {Types::StartPipelineExecutionResponse#pipeline_execution_arn #pipeline_execution_arn} => String
@@ -17358,6 +17411,9 @@ module Aws::SageMaker
17358
17411
  # ],
17359
17412
  # pipeline_execution_description: "PipelineExecutionDescription",
17360
17413
  # client_request_token: "IdempotencyToken", # required
17414
+ # parallelism_configuration: {
17415
+ # max_parallel_execution_steps: 1, # required
17416
+ # },
17361
17417
  # })
17362
17418
  #
17363
17419
  # @example Response structure
@@ -17583,17 +17639,17 @@ module Aws::SageMaker
17583
17639
  #
17584
17640
  # A pipeline execution won't stop while a callback step is running.
17585
17641
  # When you call `StopPipelineExecution` on a pipeline execution with a
17586
- # running callback step, SageMaker Pipelines sends an additional Amazon
17587
- # SQS message to the specified SQS queue. The body of the SQS message
17588
- # contains a "Status" field which is set to "Stopping".
17642
+ # running callback step, Amazon SageMaker Pipelines sends an additional
17643
+ # Amazon SQS message to the specified SQS queue. The body of the SQS
17644
+ # message contains a "Status" field which is set to "Stopping".
17589
17645
  #
17590
17646
  # You should add logic to your Amazon SQS message consumer to take any
17591
17647
  # needed action (for example, resource cleanup) upon receipt of the
17592
17648
  # message followed by a call to `SendPipelineExecutionStepSuccess` or
17593
17649
  # `SendPipelineExecutionStepFailure`.
17594
17650
  #
17595
- # Only when SageMaker Pipelines receives one of these calls will it stop
17596
- # the pipeline execution.
17651
+ # Only when Amazon SageMaker Pipelines receives one of these calls will
17652
+ # it stop the pipeline execution.
17597
17653
  #
17598
17654
  # **Lambda Step**
17599
17655
  #
@@ -17692,16 +17748,16 @@ module Aws::SageMaker
17692
17748
  req.send_request(options)
17693
17749
  end
17694
17750
 
17695
- # Stops a transform job.
17751
+ # Stops a batch transform job.
17696
17752
  #
17697
17753
  # When Amazon SageMaker receives a `StopTransformJob` request, the
17698
17754
  # status of the job changes to `Stopping`. After Amazon SageMaker stops
17699
- # the job, the status is set to `Stopped`. When you stop a transform job
17700
- # before it is completed, Amazon SageMaker doesn't store the job's
17701
- # output in Amazon S3.
17755
+ # the job, the status is set to `Stopped`. When you stop a batch
17756
+ # transform job before it is completed, Amazon SageMaker doesn't store
17757
+ # the job's output in Amazon S3.
17702
17758
  #
17703
17759
  # @option params [required, String] :transform_job_name
17704
- # The name of the transform job to stop.
17760
+ # The name of the batch transform job to stop.
17705
17761
  #
17706
17762
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
17707
17763
  #
@@ -18741,12 +18797,21 @@ module Aws::SageMaker
18741
18797
  # @option params [String] :pipeline_definition
18742
18798
  # The JSON pipeline definition.
18743
18799
  #
18800
+ # @option params [Types::PipelineDefinitionS3Location] :pipeline_definition_s3_location
18801
+ # The location of the pipeline definition stored in Amazon S3. If
18802
+ # specified, SageMaker will retrieve the pipeline definition from this
18803
+ # location.
18804
+ #
18744
18805
  # @option params [String] :pipeline_description
18745
18806
  # The description of the pipeline.
18746
18807
  #
18747
18808
  # @option params [String] :role_arn
18748
18809
  # The Amazon Resource Name (ARN) that the pipeline uses to execute.
18749
18810
  #
18811
+ # @option params [Types::ParallelismConfiguration] :parallelism_configuration
18812
+ # If specified, it applies to all executions of this pipeline by
18813
+ # default.
18814
+ #
18750
18815
  # @return [Types::UpdatePipelineResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
18751
18816
  #
18752
18817
  # * {Types::UpdatePipelineResponse#pipeline_arn #pipeline_arn} => String
@@ -18757,8 +18822,16 @@ module Aws::SageMaker
18757
18822
  # pipeline_name: "PipelineName", # required
18758
18823
  # pipeline_display_name: "PipelineName",
18759
18824
  # pipeline_definition: "PipelineDefinition",
18825
+ # pipeline_definition_s3_location: {
18826
+ # bucket: "BucketName", # required
18827
+ # object_key: "Key", # required
18828
+ # version_id: "VersionId",
18829
+ # },
18760
18830
  # pipeline_description: "PipelineDescription",
18761
18831
  # role_arn: "RoleArn",
18832
+ # parallelism_configuration: {
18833
+ # max_parallel_execution_steps: 1, # required
18834
+ # },
18762
18835
  # })
18763
18836
  #
18764
18837
  # @example Response structure
@@ -18785,6 +18858,10 @@ module Aws::SageMaker
18785
18858
  # @option params [String] :pipeline_execution_display_name
18786
18859
  # The display name of the pipeline execution.
18787
18860
  #
18861
+ # @option params [Types::ParallelismConfiguration] :parallelism_configuration
18862
+ # This configuration, if specified, overrides the parallelism
18863
+ # configuration of the parent pipeline for this specific run.
18864
+ #
18788
18865
  # @return [Types::UpdatePipelineExecutionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
18789
18866
  #
18790
18867
  # * {Types::UpdatePipelineExecutionResponse#pipeline_execution_arn #pipeline_execution_arn} => String
@@ -18795,6 +18872,9 @@ module Aws::SageMaker
18795
18872
  # pipeline_execution_arn: "PipelineExecutionArn", # required
18796
18873
  # pipeline_execution_description: "PipelineExecutionDescription",
18797
18874
  # pipeline_execution_display_name: "PipelineExecutionName",
18875
+ # parallelism_configuration: {
18876
+ # max_parallel_execution_steps: 1, # required
18877
+ # },
18798
18878
  # })
18799
18879
  #
18800
18880
  # @example Response structure
@@ -19363,7 +19443,7 @@ module Aws::SageMaker
19363
19443
  params: params,
19364
19444
  config: config)
19365
19445
  context[:gem_name] = 'aws-sdk-sagemaker'
19366
- context[:gem_version] = '1.110.0'
19446
+ context[:gem_version] = '1.114.0'
19367
19447
  Seahorse::Client::Request.new(handlers, context)
19368
19448
  end
19369
19449
 
@@ -141,6 +141,7 @@ module Aws::SageMaker
141
141
  Boolean = Shapes::BooleanShape.new(name: 'Boolean')
142
142
  BooleanOperator = Shapes::StringShape.new(name: 'BooleanOperator')
143
143
  Branch = Shapes::StringShape.new(name: 'Branch')
144
+ BucketName = Shapes::StringShape.new(name: 'BucketName')
144
145
  CacheHitResult = Shapes::StructureShape.new(name: 'CacheHitResult')
145
146
  CallbackStepMetadata = Shapes::StructureShape.new(name: 'CallbackStepMetadata')
146
147
  CallbackToken = Shapes::StringShape.new(name: 'CallbackToken')
@@ -552,6 +553,7 @@ module Aws::SageMaker
552
553
  DriftCheckExplainability = Shapes::StructureShape.new(name: 'DriftCheckExplainability')
553
554
  DriftCheckModelDataQuality = Shapes::StructureShape.new(name: 'DriftCheckModelDataQuality')
554
555
  DriftCheckModelQuality = Shapes::StructureShape.new(name: 'DriftCheckModelQuality')
556
+ EMRStepMetadata = Shapes::StructureShape.new(name: 'EMRStepMetadata')
555
557
  Edge = Shapes::StructureShape.new(name: 'Edge')
556
558
  EdgeModel = Shapes::StructureShape.new(name: 'EdgeModel')
557
559
  EdgeModelStat = Shapes::StructureShape.new(name: 'EdgeModelStat')
@@ -757,6 +759,7 @@ module Aws::SageMaker
757
759
  IntegerParameterRange = Shapes::StructureShape.new(name: 'IntegerParameterRange')
758
760
  IntegerParameterRangeSpecification = Shapes::StructureShape.new(name: 'IntegerParameterRangeSpecification')
759
761
  IntegerParameterRanges = Shapes::ListShape.new(name: 'IntegerParameterRanges')
762
+ IntegerValue = Shapes::IntegerShape.new(name: 'IntegerValue')
760
763
  InvocationsMaxRetries = Shapes::IntegerShape.new(name: 'InvocationsMaxRetries')
761
764
  InvocationsTimeoutInSeconds = Shapes::IntegerShape.new(name: 'InvocationsTimeoutInSeconds')
762
765
  IotRoleAlias = Shapes::StringShape.new(name: 'IotRoleAlias')
@@ -774,6 +777,7 @@ module Aws::SageMaker
774
777
  KernelName = Shapes::StringShape.new(name: 'KernelName')
775
778
  KernelSpec = Shapes::StructureShape.new(name: 'KernelSpec')
776
779
  KernelSpecs = Shapes::ListShape.new(name: 'KernelSpecs')
780
+ Key = Shapes::StringShape.new(name: 'Key')
777
781
  KmsKeyId = Shapes::StringShape.new(name: 'KmsKeyId')
778
782
  LabelAttributeName = Shapes::StringShape.new(name: 'LabelAttributeName')
779
783
  LabelCounter = Shapes::IntegerShape.new(name: 'LabelCounter')
@@ -941,6 +945,7 @@ module Aws::SageMaker
941
945
  MaxHumanLabeledObjectCount = Shapes::IntegerShape.new(name: 'MaxHumanLabeledObjectCount')
942
946
  MaxNumberOfTests = Shapes::IntegerShape.new(name: 'MaxNumberOfTests')
943
947
  MaxNumberOfTrainingJobs = Shapes::IntegerShape.new(name: 'MaxNumberOfTrainingJobs')
948
+ MaxParallelExecutionSteps = Shapes::IntegerShape.new(name: 'MaxParallelExecutionSteps')
944
949
  MaxParallelOfTests = Shapes::IntegerShape.new(name: 'MaxParallelOfTests')
945
950
  MaxParallelTrainingJobs = Shapes::IntegerShape.new(name: 'MaxParallelTrainingJobs')
946
951
  MaxPayloadInMB = Shapes::IntegerShape.new(name: 'MaxPayloadInMB')
@@ -1126,6 +1131,7 @@ module Aws::SageMaker
1126
1131
  OutputParameter = Shapes::StructureShape.new(name: 'OutputParameter')
1127
1132
  OutputParameterList = Shapes::ListShape.new(name: 'OutputParameterList')
1128
1133
  PaginationToken = Shapes::StringShape.new(name: 'PaginationToken')
1134
+ ParallelismConfiguration = Shapes::StructureShape.new(name: 'ParallelismConfiguration')
1129
1135
  Parameter = Shapes::StructureShape.new(name: 'Parameter')
1130
1136
  ParameterKey = Shapes::StringShape.new(name: 'ParameterKey')
1131
1137
  ParameterList = Shapes::ListShape.new(name: 'ParameterList')
@@ -1147,6 +1153,7 @@ module Aws::SageMaker
1147
1153
  Pipeline = Shapes::StructureShape.new(name: 'Pipeline')
1148
1154
  PipelineArn = Shapes::StringShape.new(name: 'PipelineArn')
1149
1155
  PipelineDefinition = Shapes::StringShape.new(name: 'PipelineDefinition')
1156
+ PipelineDefinitionS3Location = Shapes::StructureShape.new(name: 'PipelineDefinitionS3Location')
1150
1157
  PipelineDescription = Shapes::StringShape.new(name: 'PipelineDescription')
1151
1158
  PipelineExecution = Shapes::StructureShape.new(name: 'PipelineExecution')
1152
1159
  PipelineExecutionArn = Shapes::StringShape.new(name: 'PipelineExecutionArn')
@@ -1376,6 +1383,8 @@ module Aws::SageMaker
1376
1383
  StartPipelineExecutionResponse = Shapes::StructureShape.new(name: 'StartPipelineExecutionResponse')
1377
1384
  StatusDetails = Shapes::StringShape.new(name: 'StatusDetails')
1378
1385
  StatusMessage = Shapes::StringShape.new(name: 'StatusMessage')
1386
+ StepDescription = Shapes::StringShape.new(name: 'StepDescription')
1387
+ StepDisplayName = Shapes::StringShape.new(name: 'StepDisplayName')
1379
1388
  StepName = Shapes::StringShape.new(name: 'StepName')
1380
1389
  StepStatus = Shapes::StringShape.new(name: 'StepStatus')
1381
1390
  StopAutoMLJobRequest = Shapes::StructureShape.new(name: 'StopAutoMLJobRequest')
@@ -1587,6 +1596,7 @@ module Aws::SageMaker
1587
1596
  VariantStatus = Shapes::StringShape.new(name: 'VariantStatus')
1588
1597
  VariantStatusMessage = Shapes::StringShape.new(name: 'VariantStatusMessage')
1589
1598
  VariantWeight = Shapes::FloatShape.new(name: 'VariantWeight')
1599
+ VersionId = Shapes::StringShape.new(name: 'VersionId')
1590
1600
  VersionedArnOrName = Shapes::StringShape.new(name: 'VersionedArnOrName')
1591
1601
  Vertex = Shapes::StructureShape.new(name: 'Vertex')
1592
1602
  Vertices = Shapes::ListShape.new(name: 'Vertices')
@@ -1817,6 +1827,7 @@ module Aws::SageMaker
1817
1827
  AutoMLChannel.add_member(:data_source, Shapes::ShapeRef.new(shape: AutoMLDataSource, required: true, location_name: "DataSource"))
1818
1828
  AutoMLChannel.add_member(:compression_type, Shapes::ShapeRef.new(shape: CompressionType, location_name: "CompressionType"))
1819
1829
  AutoMLChannel.add_member(:target_attribute_name, Shapes::ShapeRef.new(shape: TargetAttributeName, required: true, location_name: "TargetAttributeName"))
1830
+ AutoMLChannel.add_member(:content_type, Shapes::ShapeRef.new(shape: ContentType, location_name: "ContentType"))
1820
1831
  AutoMLChannel.struct_class = Types::AutoMLChannel
1821
1832
 
1822
1833
  AutoMLContainerDefinition.add_member(:image, Shapes::ShapeRef.new(shape: ContainerImage, required: true, location_name: "Image"))
@@ -2493,11 +2504,13 @@ module Aws::SageMaker
2493
2504
 
2494
2505
  CreatePipelineRequest.add_member(:pipeline_name, Shapes::ShapeRef.new(shape: PipelineName, required: true, location_name: "PipelineName"))
2495
2506
  CreatePipelineRequest.add_member(:pipeline_display_name, Shapes::ShapeRef.new(shape: PipelineName, location_name: "PipelineDisplayName"))
2496
- CreatePipelineRequest.add_member(:pipeline_definition, Shapes::ShapeRef.new(shape: PipelineDefinition, required: true, location_name: "PipelineDefinition"))
2507
+ CreatePipelineRequest.add_member(:pipeline_definition, Shapes::ShapeRef.new(shape: PipelineDefinition, location_name: "PipelineDefinition"))
2508
+ CreatePipelineRequest.add_member(:pipeline_definition_s3_location, Shapes::ShapeRef.new(shape: PipelineDefinitionS3Location, location_name: "PipelineDefinitionS3Location"))
2497
2509
  CreatePipelineRequest.add_member(:pipeline_description, Shapes::ShapeRef.new(shape: PipelineDescription, location_name: "PipelineDescription"))
2498
2510
  CreatePipelineRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: IdempotencyToken, required: true, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
2499
2511
  CreatePipelineRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "RoleArn"))
2500
2512
  CreatePipelineRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
2513
+ CreatePipelineRequest.add_member(:parallelism_configuration, Shapes::ShapeRef.new(shape: ParallelismConfiguration, location_name: "ParallelismConfiguration"))
2501
2514
  CreatePipelineRequest.struct_class = Types::CreatePipelineRequest
2502
2515
 
2503
2516
  CreatePipelineResponse.add_member(:pipeline_arn, Shapes::ShapeRef.new(shape: PipelineArn, location_name: "PipelineArn"))
@@ -3539,6 +3552,7 @@ module Aws::SageMaker
3539
3552
  DescribePipelineExecutionResponse.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastModifiedTime"))
3540
3553
  DescribePipelineExecutionResponse.add_member(:created_by, Shapes::ShapeRef.new(shape: UserContext, location_name: "CreatedBy"))
3541
3554
  DescribePipelineExecutionResponse.add_member(:last_modified_by, Shapes::ShapeRef.new(shape: UserContext, location_name: "LastModifiedBy"))
3555
+ DescribePipelineExecutionResponse.add_member(:parallelism_configuration, Shapes::ShapeRef.new(shape: ParallelismConfiguration, location_name: "ParallelismConfiguration"))
3542
3556
  DescribePipelineExecutionResponse.struct_class = Types::DescribePipelineExecutionResponse
3543
3557
 
3544
3558
  DescribePipelineRequest.add_member(:pipeline_name, Shapes::ShapeRef.new(shape: PipelineName, required: true, location_name: "PipelineName"))
@@ -3556,6 +3570,7 @@ module Aws::SageMaker
3556
3570
  DescribePipelineResponse.add_member(:last_run_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastRunTime"))
3557
3571
  DescribePipelineResponse.add_member(:created_by, Shapes::ShapeRef.new(shape: UserContext, location_name: "CreatedBy"))
3558
3572
  DescribePipelineResponse.add_member(:last_modified_by, Shapes::ShapeRef.new(shape: UserContext, location_name: "LastModifiedBy"))
3573
+ DescribePipelineResponse.add_member(:parallelism_configuration, Shapes::ShapeRef.new(shape: ParallelismConfiguration, location_name: "ParallelismConfiguration"))
3559
3574
  DescribePipelineResponse.struct_class = Types::DescribePipelineResponse
3560
3575
 
3561
3576
  DescribeProcessingJobRequest.add_member(:processing_job_name, Shapes::ShapeRef.new(shape: ProcessingJobName, required: true, location_name: "ProcessingJobName"))
@@ -3849,6 +3864,12 @@ module Aws::SageMaker
3849
3864
  DriftCheckModelQuality.add_member(:constraints, Shapes::ShapeRef.new(shape: MetricsSource, location_name: "Constraints"))
3850
3865
  DriftCheckModelQuality.struct_class = Types::DriftCheckModelQuality
3851
3866
 
3867
+ EMRStepMetadata.add_member(:cluster_id, Shapes::ShapeRef.new(shape: String256, location_name: "ClusterId"))
3868
+ EMRStepMetadata.add_member(:step_id, Shapes::ShapeRef.new(shape: String256, location_name: "StepId"))
3869
+ EMRStepMetadata.add_member(:step_name, Shapes::ShapeRef.new(shape: String256, location_name: "StepName"))
3870
+ EMRStepMetadata.add_member(:log_file_path, Shapes::ShapeRef.new(shape: String1024, location_name: "LogFilePath"))
3871
+ EMRStepMetadata.struct_class = Types::EMRStepMetadata
3872
+
3852
3873
  Edge.add_member(:source_arn, Shapes::ShapeRef.new(shape: AssociationEntityArn, location_name: "SourceArn"))
3853
3874
  Edge.add_member(:destination_arn, Shapes::ShapeRef.new(shape: AssociationEntityArn, location_name: "DestinationArn"))
3854
3875
  Edge.add_member(:association_type, Shapes::ShapeRef.new(shape: AssociationEdgeType, location_name: "AssociationType"))
@@ -5748,6 +5769,9 @@ module Aws::SageMaker
5748
5769
 
5749
5770
  OutputParameterList.member = Shapes::ShapeRef.new(shape: OutputParameter)
5750
5771
 
5772
+ ParallelismConfiguration.add_member(:max_parallel_execution_steps, Shapes::ShapeRef.new(shape: MaxParallelExecutionSteps, required: true, location_name: "MaxParallelExecutionSteps"))
5773
+ ParallelismConfiguration.struct_class = Types::ParallelismConfiguration
5774
+
5751
5775
  Parameter.add_member(:name, Shapes::ShapeRef.new(shape: PipelineParameterName, required: true, location_name: "Name"))
5752
5776
  Parameter.add_member(:value, Shapes::ShapeRef.new(shape: String1024, required: true, location_name: "Value"))
5753
5777
  Parameter.struct_class = Types::Parameter
@@ -5815,9 +5839,15 @@ module Aws::SageMaker
5815
5839
  Pipeline.add_member(:last_run_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastRunTime"))
5816
5840
  Pipeline.add_member(:created_by, Shapes::ShapeRef.new(shape: UserContext, location_name: "CreatedBy"))
5817
5841
  Pipeline.add_member(:last_modified_by, Shapes::ShapeRef.new(shape: UserContext, location_name: "LastModifiedBy"))
5842
+ Pipeline.add_member(:parallelism_configuration, Shapes::ShapeRef.new(shape: ParallelismConfiguration, location_name: "ParallelismConfiguration"))
5818
5843
  Pipeline.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
5819
5844
  Pipeline.struct_class = Types::Pipeline
5820
5845
 
5846
+ PipelineDefinitionS3Location.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location_name: "Bucket"))
5847
+ PipelineDefinitionS3Location.add_member(:object_key, Shapes::ShapeRef.new(shape: Key, required: true, location_name: "ObjectKey"))
5848
+ PipelineDefinitionS3Location.add_member(:version_id, Shapes::ShapeRef.new(shape: VersionId, location_name: "VersionId"))
5849
+ PipelineDefinitionS3Location.struct_class = Types::PipelineDefinitionS3Location
5850
+
5821
5851
  PipelineExecution.add_member(:pipeline_arn, Shapes::ShapeRef.new(shape: PipelineArn, location_name: "PipelineArn"))
5822
5852
  PipelineExecution.add_member(:pipeline_execution_arn, Shapes::ShapeRef.new(shape: PipelineExecutionArn, location_name: "PipelineExecutionArn"))
5823
5853
  PipelineExecution.add_member(:pipeline_execution_display_name, Shapes::ShapeRef.new(shape: PipelineExecutionName, location_name: "PipelineExecutionDisplayName"))
@@ -5829,14 +5859,18 @@ module Aws::SageMaker
5829
5859
  PipelineExecution.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastModifiedTime"))
5830
5860
  PipelineExecution.add_member(:created_by, Shapes::ShapeRef.new(shape: UserContext, location_name: "CreatedBy"))
5831
5861
  PipelineExecution.add_member(:last_modified_by, Shapes::ShapeRef.new(shape: UserContext, location_name: "LastModifiedBy"))
5862
+ PipelineExecution.add_member(:parallelism_configuration, Shapes::ShapeRef.new(shape: ParallelismConfiguration, location_name: "ParallelismConfiguration"))
5832
5863
  PipelineExecution.add_member(:pipeline_parameters, Shapes::ShapeRef.new(shape: ParameterList, location_name: "PipelineParameters"))
5833
5864
  PipelineExecution.struct_class = Types::PipelineExecution
5834
5865
 
5835
5866
  PipelineExecutionStep.add_member(:step_name, Shapes::ShapeRef.new(shape: StepName, location_name: "StepName"))
5867
+ PipelineExecutionStep.add_member(:step_display_name, Shapes::ShapeRef.new(shape: StepDisplayName, location_name: "StepDisplayName"))
5868
+ PipelineExecutionStep.add_member(:step_description, Shapes::ShapeRef.new(shape: StepDescription, location_name: "StepDescription"))
5836
5869
  PipelineExecutionStep.add_member(:start_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "StartTime"))
5837
5870
  PipelineExecutionStep.add_member(:end_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "EndTime"))
5838
5871
  PipelineExecutionStep.add_member(:step_status, Shapes::ShapeRef.new(shape: StepStatus, location_name: "StepStatus"))
5839
5872
  PipelineExecutionStep.add_member(:cache_hit_result, Shapes::ShapeRef.new(shape: CacheHitResult, location_name: "CacheHitResult"))
5873
+ PipelineExecutionStep.add_member(:attempt_count, Shapes::ShapeRef.new(shape: IntegerValue, location_name: "AttemptCount"))
5840
5874
  PipelineExecutionStep.add_member(:failure_reason, Shapes::ShapeRef.new(shape: FailureReason, location_name: "FailureReason"))
5841
5875
  PipelineExecutionStep.add_member(:metadata, Shapes::ShapeRef.new(shape: PipelineExecutionStepMetadata, location_name: "Metadata"))
5842
5876
  PipelineExecutionStep.struct_class = Types::PipelineExecutionStep
@@ -5854,6 +5888,7 @@ module Aws::SageMaker
5854
5888
  PipelineExecutionStepMetadata.add_member(:lambda, Shapes::ShapeRef.new(shape: LambdaStepMetadata, location_name: "Lambda"))
5855
5889
  PipelineExecutionStepMetadata.add_member(:quality_check, Shapes::ShapeRef.new(shape: QualityCheckStepMetadata, location_name: "QualityCheck"))
5856
5890
  PipelineExecutionStepMetadata.add_member(:clarify_check, Shapes::ShapeRef.new(shape: ClarifyCheckStepMetadata, location_name: "ClarifyCheck"))
5891
+ PipelineExecutionStepMetadata.add_member(:emr, Shapes::ShapeRef.new(shape: EMRStepMetadata, location_name: "EMR"))
5857
5892
  PipelineExecutionStepMetadata.struct_class = Types::PipelineExecutionStepMetadata
5858
5893
 
5859
5894
  PipelineExecutionSummary.add_member(:pipeline_execution_arn, Shapes::ShapeRef.new(shape: PipelineExecutionArn, location_name: "PipelineExecutionArn"))
@@ -6256,6 +6291,7 @@ module Aws::SageMaker
6256
6291
 
6257
6292
  RetryPipelineExecutionRequest.add_member(:pipeline_execution_arn, Shapes::ShapeRef.new(shape: PipelineExecutionArn, required: true, location_name: "PipelineExecutionArn"))
6258
6293
  RetryPipelineExecutionRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: IdempotencyToken, required: true, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
6294
+ RetryPipelineExecutionRequest.add_member(:parallelism_configuration, Shapes::ShapeRef.new(shape: ParallelismConfiguration, location_name: "ParallelismConfiguration"))
6259
6295
  RetryPipelineExecutionRequest.struct_class = Types::RetryPipelineExecutionRequest
6260
6296
 
6261
6297
  RetryPipelineExecutionResponse.add_member(:pipeline_execution_arn, Shapes::ShapeRef.new(shape: PipelineExecutionArn, location_name: "PipelineExecutionArn"))
@@ -6387,6 +6423,7 @@ module Aws::SageMaker
6387
6423
  StartPipelineExecutionRequest.add_member(:pipeline_parameters, Shapes::ShapeRef.new(shape: ParameterList, location_name: "PipelineParameters"))
6388
6424
  StartPipelineExecutionRequest.add_member(:pipeline_execution_description, Shapes::ShapeRef.new(shape: PipelineExecutionDescription, location_name: "PipelineExecutionDescription"))
6389
6425
  StartPipelineExecutionRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: IdempotencyToken, required: true, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
6426
+ StartPipelineExecutionRequest.add_member(:parallelism_configuration, Shapes::ShapeRef.new(shape: ParallelismConfiguration, location_name: "ParallelismConfiguration"))
6390
6427
  StartPipelineExecutionRequest.struct_class = Types::StartPipelineExecutionRequest
6391
6428
 
6392
6429
  StartPipelineExecutionResponse.add_member(:pipeline_execution_arn, Shapes::ShapeRef.new(shape: PipelineExecutionArn, location_name: "PipelineExecutionArn"))
@@ -6927,6 +6964,7 @@ module Aws::SageMaker
6927
6964
  UpdatePipelineExecutionRequest.add_member(:pipeline_execution_arn, Shapes::ShapeRef.new(shape: PipelineExecutionArn, required: true, location_name: "PipelineExecutionArn"))
6928
6965
  UpdatePipelineExecutionRequest.add_member(:pipeline_execution_description, Shapes::ShapeRef.new(shape: PipelineExecutionDescription, location_name: "PipelineExecutionDescription"))
6929
6966
  UpdatePipelineExecutionRequest.add_member(:pipeline_execution_display_name, Shapes::ShapeRef.new(shape: PipelineExecutionName, location_name: "PipelineExecutionDisplayName"))
6967
+ UpdatePipelineExecutionRequest.add_member(:parallelism_configuration, Shapes::ShapeRef.new(shape: ParallelismConfiguration, location_name: "ParallelismConfiguration"))
6930
6968
  UpdatePipelineExecutionRequest.struct_class = Types::UpdatePipelineExecutionRequest
6931
6969
 
6932
6970
  UpdatePipelineExecutionResponse.add_member(:pipeline_execution_arn, Shapes::ShapeRef.new(shape: PipelineExecutionArn, location_name: "PipelineExecutionArn"))
@@ -6935,8 +6973,10 @@ module Aws::SageMaker
6935
6973
  UpdatePipelineRequest.add_member(:pipeline_name, Shapes::ShapeRef.new(shape: PipelineName, required: true, location_name: "PipelineName"))
6936
6974
  UpdatePipelineRequest.add_member(:pipeline_display_name, Shapes::ShapeRef.new(shape: PipelineName, location_name: "PipelineDisplayName"))
6937
6975
  UpdatePipelineRequest.add_member(:pipeline_definition, Shapes::ShapeRef.new(shape: PipelineDefinition, location_name: "PipelineDefinition"))
6976
+ UpdatePipelineRequest.add_member(:pipeline_definition_s3_location, Shapes::ShapeRef.new(shape: PipelineDefinitionS3Location, location_name: "PipelineDefinitionS3Location"))
6938
6977
  UpdatePipelineRequest.add_member(:pipeline_description, Shapes::ShapeRef.new(shape: PipelineDescription, location_name: "PipelineDescription"))
6939
6978
  UpdatePipelineRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "RoleArn"))
6979
+ UpdatePipelineRequest.add_member(:parallelism_configuration, Shapes::ShapeRef.new(shape: ParallelismConfiguration, location_name: "ParallelismConfiguration"))
6940
6980
  UpdatePipelineRequest.struct_class = Types::UpdatePipelineRequest
6941
6981
 
6942
6982
  UpdatePipelineResponse.add_member(:pipeline_arn, Shapes::ShapeRef.new(shape: PipelineArn, location_name: "PipelineArn"))
@@ -2048,6 +2048,7 @@ module Aws::SageMaker
2048
2048
  # },
2049
2049
  # compression_type: "None", # accepts None, Gzip
2050
2050
  # target_attribute_name: "TargetAttributeName", # required
2051
+ # content_type: "ContentType",
2051
2052
  # }
2052
2053
  #
2053
2054
  # @!attribute [rw] data_source
@@ -2063,12 +2064,19 @@ module Aws::SageMaker
2063
2064
  # represented by 'y'.
2064
2065
  # @return [String]
2065
2066
  #
2067
+ # @!attribute [rw] content_type
2068
+ # The content type of the data from the input source. You can use
2069
+ # `text/csv;header=present` or `x-application/vnd.amazon+parquet`. The
2070
+ # default value is `text/csv;header=present`.
2071
+ # @return [String]
2072
+ #
2066
2073
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/AutoMLChannel AWS API Documentation
2067
2074
  #
2068
2075
  class AutoMLChannel < Struct.new(
2069
2076
  :data_source,
2070
2077
  :compression_type,
2071
- :target_attribute_name)
2078
+ :target_attribute_name,
2079
+ :content_type)
2072
2080
  SENSITIVE = []
2073
2081
  include Aws::Structure
2074
2082
  end
@@ -4361,6 +4369,7 @@ module Aws::SageMaker
4361
4369
  # },
4362
4370
  # compression_type: "None", # accepts None, Gzip
4363
4371
  # target_attribute_name: "TargetAttributeName", # required
4372
+ # content_type: "ContentType",
4364
4373
  # },
4365
4374
  # ],
4366
4375
  # output_data_config: { # required
@@ -4567,7 +4576,7 @@ module Aws::SageMaker
4567
4576
  # },
4568
4577
  # output_config: { # required
4569
4578
  # s3_output_location: "S3Uri", # required
4570
- # target_device: "lambda", # accepts lambda, ml_m4, ml_m5, ml_c4, ml_c5, ml_p2, ml_p3, ml_g4dn, ml_inf1, ml_eia2, jetson_tx1, jetson_tx2, jetson_nano, jetson_xavier, rasp3b, imx8qm, deeplens, rk3399, rk3288, aisage, sbe_c, qcs605, qcs603, sitara_am57x, amba_cv22, amba_cv25, x86_win32, x86_win64, coreml, jacinto_tda4vm, imx8mplus
4579
+ # target_device: "lambda", # accepts lambda, ml_m4, ml_m5, ml_c4, ml_c5, ml_p2, ml_p3, ml_g4dn, ml_inf1, ml_eia2, jetson_tx1, jetson_tx2, jetson_nano, jetson_xavier, rasp3b, imx8qm, deeplens, rk3399, rk3288, aisage, sbe_c, qcs605, qcs603, sitara_am57x, amba_cv2, amba_cv22, amba_cv25, x86_win32, x86_win64, coreml, jacinto_tda4vm, imx8mplus
4571
4580
  # target_platform: {
4572
4581
  # os: "ANDROID", # required, accepts ANDROID, LINUX
4573
4582
  # arch: "X86_64", # required, accepts X86_64, X86, ARM64, ARM_EABI, ARM_EABIHF
@@ -5128,7 +5137,7 @@ module Aws::SageMaker
5128
5137
  # @return [String]
5129
5138
  #
5130
5139
  # @!attribute [rw] home_efs_file_system_kms_key_id
5131
- # This member is deprecated and replaced with `KmsKeyId`.
5140
+ # Use `KmsKeyId`.
5132
5141
  # @return [String]
5133
5142
  #
5134
5143
  # @!attribute [rw] kms_key_id
@@ -8271,7 +8280,12 @@ module Aws::SageMaker
8271
8280
  # {
8272
8281
  # pipeline_name: "PipelineName", # required
8273
8282
  # pipeline_display_name: "PipelineName",
8274
- # pipeline_definition: "PipelineDefinition", # required
8283
+ # pipeline_definition: "PipelineDefinition",
8284
+ # pipeline_definition_s3_location: {
8285
+ # bucket: "BucketName", # required
8286
+ # object_key: "Key", # required
8287
+ # version_id: "VersionId",
8288
+ # },
8275
8289
  # pipeline_description: "PipelineDescription",
8276
8290
  # client_request_token: "IdempotencyToken", # required
8277
8291
  # role_arn: "RoleArn", # required
@@ -8281,6 +8295,9 @@ module Aws::SageMaker
8281
8295
  # value: "TagValue", # required
8282
8296
  # },
8283
8297
  # ],
8298
+ # parallelism_configuration: {
8299
+ # max_parallel_execution_steps: 1, # required
8300
+ # },
8284
8301
  # }
8285
8302
  #
8286
8303
  # @!attribute [rw] pipeline_name
@@ -8295,6 +8312,12 @@ module Aws::SageMaker
8295
8312
  # The JSON pipeline definition of the pipeline.
8296
8313
  # @return [String]
8297
8314
  #
8315
+ # @!attribute [rw] pipeline_definition_s3_location
8316
+ # The location of the pipeline definition stored in Amazon S3. If
8317
+ # specified, SageMaker will retrieve the pipeline definition from this
8318
+ # location.
8319
+ # @return [Types::PipelineDefinitionS3Location]
8320
+ #
8298
8321
  # @!attribute [rw] pipeline_description
8299
8322
  # A description of the pipeline.
8300
8323
  # @return [String]
@@ -8317,16 +8340,24 @@ module Aws::SageMaker
8317
8340
  # A list of tags to apply to the created pipeline.
8318
8341
  # @return [Array<Types::Tag>]
8319
8342
  #
8343
+ # @!attribute [rw] parallelism_configuration
8344
+ # This is the configuration that controls the parallelism of the
8345
+ # pipeline. If specified, it applies to all runs of this pipeline by
8346
+ # default.
8347
+ # @return [Types::ParallelismConfiguration]
8348
+ #
8320
8349
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreatePipelineRequest AWS API Documentation
8321
8350
  #
8322
8351
  class CreatePipelineRequest < Struct.new(
8323
8352
  :pipeline_name,
8324
8353
  :pipeline_display_name,
8325
8354
  :pipeline_definition,
8355
+ :pipeline_definition_s3_location,
8326
8356
  :pipeline_description,
8327
8357
  :client_request_token,
8328
8358
  :role_arn,
8329
- :tags)
8359
+ :tags,
8360
+ :parallelism_configuration)
8330
8361
  SENSITIVE = []
8331
8362
  include Aws::Structure
8332
8363
  end
@@ -12797,7 +12828,7 @@ module Aws::SageMaker
12797
12828
  # @return [String]
12798
12829
  #
12799
12830
  # @!attribute [rw] home_efs_file_system_kms_key_id
12800
- # This member is deprecated and replaced with `KmsKeyId`.
12831
+ # Use `KmsKeyId`.
12801
12832
  # @return [String]
12802
12833
  #
12803
12834
  # @!attribute [rw] subnet_ids
@@ -15128,6 +15159,10 @@ module Aws::SageMaker
15128
15159
  # trial, trial component, lineage group, or project.
15129
15160
  # @return [Types::UserContext]
15130
15161
  #
15162
+ # @!attribute [rw] parallelism_configuration
15163
+ # The parallelism configuration applied to the pipeline.
15164
+ # @return [Types::ParallelismConfiguration]
15165
+ #
15131
15166
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribePipelineExecutionResponse AWS API Documentation
15132
15167
  #
15133
15168
  class DescribePipelineExecutionResponse < Struct.new(
@@ -15141,7 +15176,8 @@ module Aws::SageMaker
15141
15176
  :creation_time,
15142
15177
  :last_modified_time,
15143
15178
  :created_by,
15144
- :last_modified_by)
15179
+ :last_modified_by,
15180
+ :parallelism_configuration)
15145
15181
  SENSITIVE = []
15146
15182
  include Aws::Structure
15147
15183
  end
@@ -15215,6 +15251,10 @@ module Aws::SageMaker
15215
15251
  # trial, trial component, lineage group, or project.
15216
15252
  # @return [Types::UserContext]
15217
15253
  #
15254
+ # @!attribute [rw] parallelism_configuration
15255
+ # Lists the parallelism configuration applied to the pipeline.
15256
+ # @return [Types::ParallelismConfiguration]
15257
+ #
15218
15258
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribePipelineResponse AWS API Documentation
15219
15259
  #
15220
15260
  class DescribePipelineResponse < Struct.new(
@@ -15229,7 +15269,8 @@ module Aws::SageMaker
15229
15269
  :last_modified_time,
15230
15270
  :last_run_time,
15231
15271
  :created_by,
15232
- :last_modified_by)
15272
+ :last_modified_by,
15273
+ :parallelism_configuration)
15233
15274
  SENSITIVE = []
15234
15275
  include Aws::Structure
15235
15276
  end
@@ -17036,6 +17077,36 @@ module Aws::SageMaker
17036
17077
  include Aws::Structure
17037
17078
  end
17038
17079
 
17080
+ # The configurations and outcomes of an Amazon EMR step execution.
17081
+ #
17082
+ # @!attribute [rw] cluster_id
17083
+ # The identifier of the EMR cluster.
17084
+ # @return [String]
17085
+ #
17086
+ # @!attribute [rw] step_id
17087
+ # The identifier of the EMR cluster step.
17088
+ # @return [String]
17089
+ #
17090
+ # @!attribute [rw] step_name
17091
+ # The name of the EMR cluster step.
17092
+ # @return [String]
17093
+ #
17094
+ # @!attribute [rw] log_file_path
17095
+ # The path to the log file where the cluster step's failure root
17096
+ # cause is recorded.
17097
+ # @return [String]
17098
+ #
17099
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/EMRStepMetadata AWS API Documentation
17100
+ #
17101
+ class EMRStepMetadata < Struct.new(
17102
+ :cluster_id,
17103
+ :step_id,
17104
+ :step_name,
17105
+ :log_file_path)
17106
+ SENSITIVE = []
17107
+ include Aws::Structure
17108
+ end
17109
+
17039
17110
  # A directed edge connecting two lineage entities.
17040
17111
  #
17041
17112
  # @!attribute [rw] source_arn
@@ -21298,11 +21369,17 @@ module Aws::SageMaker
21298
21369
  # @return [String]
21299
21370
  #
21300
21371
  # @!attribute [rw] framework_version
21301
- # Specifies the framework version to use.
21372
+ # Specifies the framework version to use. This API field is only
21373
+ # supported for the PyTorch and TensorFlow frameworks.
21374
+ #
21375
+ # For information about framework versions supported for cloud targets
21376
+ # and edge devices, see [Cloud Supported Instance Types and
21377
+ # Frameworks][1] and [Edge Supported Frameworks][2].
21378
+ #
21302
21379
  #
21303
- # This API field is only supported for PyTorch framework versions
21304
- # `1.4`, `1.5`, and `1.6` for cloud instance target devices: `ml_c4`,
21305
- # `ml_c5`, `ml_m4`, `ml_m5`, `ml_p2`, `ml_p3`, and `ml_g4dn`.
21380
+ #
21381
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/neo-supported-cloud.html
21382
+ # [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/neo-supported-devices-edge-frameworks.html
21306
21383
  # @return [String]
21307
21384
  #
21308
21385
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/InputConfig AWS API Documentation
@@ -30319,7 +30396,7 @@ module Aws::SageMaker
30319
30396
  #
30320
30397
  # {
30321
30398
  # s3_output_location: "S3Uri", # required
30322
- # target_device: "lambda", # accepts lambda, ml_m4, ml_m5, ml_c4, ml_c5, ml_p2, ml_p3, ml_g4dn, ml_inf1, ml_eia2, jetson_tx1, jetson_tx2, jetson_nano, jetson_xavier, rasp3b, imx8qm, deeplens, rk3399, rk3288, aisage, sbe_c, qcs605, qcs603, sitara_am57x, amba_cv22, amba_cv25, x86_win32, x86_win64, coreml, jacinto_tda4vm, imx8mplus
30399
+ # target_device: "lambda", # accepts lambda, ml_m4, ml_m5, ml_c4, ml_c5, ml_p2, ml_p3, ml_g4dn, ml_inf1, ml_eia2, jetson_tx1, jetson_tx2, jetson_nano, jetson_xavier, rasp3b, imx8qm, deeplens, rk3399, rk3288, aisage, sbe_c, qcs605, qcs603, sitara_am57x, amba_cv2, amba_cv22, amba_cv25, x86_win32, x86_win64, coreml, jacinto_tda4vm, imx8mplus
30323
30400
  # target_platform: {
30324
30401
  # os: "ANDROID", # required, accepts ANDROID, LINUX
30325
30402
  # arch: "X86_64", # required, accepts X86_64, X86, ARM64, ARM_EABI, ARM_EABIHF
@@ -30625,6 +30702,29 @@ module Aws::SageMaker
30625
30702
  include Aws::Structure
30626
30703
  end
30627
30704
 
30705
+ # Configuration that controls the parallelism of the pipeline. By
30706
+ # default, the parallelism configuration specified applies to all
30707
+ # executions of the pipeline unless overridden.
30708
+ #
30709
+ # @note When making an API call, you may pass ParallelismConfiguration
30710
+ # data as a hash:
30711
+ #
30712
+ # {
30713
+ # max_parallel_execution_steps: 1, # required
30714
+ # }
30715
+ #
30716
+ # @!attribute [rw] max_parallel_execution_steps
30717
+ # The max number of steps that can be executed in parallel.
30718
+ # @return [Integer]
30719
+ #
30720
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ParallelismConfiguration AWS API Documentation
30721
+ #
30722
+ class ParallelismConfiguration < Struct.new(
30723
+ :max_parallel_execution_steps)
30724
+ SENSITIVE = []
30725
+ include Aws::Structure
30726
+ end
30727
+
30628
30728
  # Assigns a value to a named Pipeline parameter.
30629
30729
  #
30630
30730
  # @note When making an API call, you may pass Parameter
@@ -31011,6 +31111,10 @@ module Aws::SageMaker
31011
31111
  # trial, trial component, lineage group, or project.
31012
31112
  # @return [Types::UserContext]
31013
31113
  #
31114
+ # @!attribute [rw] parallelism_configuration
31115
+ # The parallelism configuration applied to the pipeline.
31116
+ # @return [Types::ParallelismConfiguration]
31117
+ #
31014
31118
  # @!attribute [rw] tags
31015
31119
  # A list of tags that apply to the pipeline.
31016
31120
  # @return [Array<Types::Tag>]
@@ -31029,11 +31133,47 @@ module Aws::SageMaker
31029
31133
  :last_run_time,
31030
31134
  :created_by,
31031
31135
  :last_modified_by,
31136
+ :parallelism_configuration,
31032
31137
  :tags)
31033
31138
  SENSITIVE = []
31034
31139
  include Aws::Structure
31035
31140
  end
31036
31141
 
31142
+ # The location of the pipeline definition stored in Amazon S3.
31143
+ #
31144
+ # @note When making an API call, you may pass PipelineDefinitionS3Location
31145
+ # data as a hash:
31146
+ #
31147
+ # {
31148
+ # bucket: "BucketName", # required
31149
+ # object_key: "Key", # required
31150
+ # version_id: "VersionId",
31151
+ # }
31152
+ #
31153
+ # @!attribute [rw] bucket
31154
+ # Name of the S3 bucket.
31155
+ # @return [String]
31156
+ #
31157
+ # @!attribute [rw] object_key
31158
+ # The object key (or key name) uniquely identifies the object in an S3
31159
+ # bucket.
31160
+ # @return [String]
31161
+ #
31162
+ # @!attribute [rw] version_id
31163
+ # Version Id of the pipeline definition file. If not specified, Amazon
31164
+ # SageMaker will retrieve the latest version.
31165
+ # @return [String]
31166
+ #
31167
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/PipelineDefinitionS3Location AWS API Documentation
31168
+ #
31169
+ class PipelineDefinitionS3Location < Struct.new(
31170
+ :bucket,
31171
+ :object_key,
31172
+ :version_id)
31173
+ SENSITIVE = []
31174
+ include Aws::Structure
31175
+ end
31176
+
31037
31177
  # An execution of a pipeline.
31038
31178
  #
31039
31179
  # @!attribute [rw] pipeline_arn
@@ -31083,6 +31223,10 @@ module Aws::SageMaker
31083
31223
  # trial, trial component, lineage group, or project.
31084
31224
  # @return [Types::UserContext]
31085
31225
  #
31226
+ # @!attribute [rw] parallelism_configuration
31227
+ # The parallelism configuration applied to the pipeline execution.
31228
+ # @return [Types::ParallelismConfiguration]
31229
+ #
31086
31230
  # @!attribute [rw] pipeline_parameters
31087
31231
  # Contains a list of pipeline parameters. This list can be empty.
31088
31232
  # @return [Array<Types::Parameter>]
@@ -31101,6 +31245,7 @@ module Aws::SageMaker
31101
31245
  :last_modified_time,
31102
31246
  :created_by,
31103
31247
  :last_modified_by,
31248
+ :parallelism_configuration,
31104
31249
  :pipeline_parameters)
31105
31250
  SENSITIVE = []
31106
31251
  include Aws::Structure
@@ -31112,6 +31257,14 @@ module Aws::SageMaker
31112
31257
  # The name of the step that is executed.
31113
31258
  # @return [String]
31114
31259
  #
31260
+ # @!attribute [rw] step_display_name
31261
+ # The display name of the step.
31262
+ # @return [String]
31263
+ #
31264
+ # @!attribute [rw] step_description
31265
+ # The description of the step.
31266
+ # @return [String]
31267
+ #
31115
31268
  # @!attribute [rw] start_time
31116
31269
  # The time that the step started executing.
31117
31270
  # @return [Time]
@@ -31129,6 +31282,15 @@ module Aws::SageMaker
31129
31282
  # hit.
31130
31283
  # @return [Types::CacheHitResult]
31131
31284
  #
31285
+ # @!attribute [rw] attempt_count
31286
+ # The current attempt of the execution step. For more information, see
31287
+ # [Retry Policy for Amazon SageMaker Pipelines steps][1].
31288
+ #
31289
+ #
31290
+ #
31291
+ # [1]: https://docs.aws.amazon.com/https:/docs.aws.amazon.com/sagemaker/latest/dg/pipelines-retry-policy.html
31292
+ # @return [Integer]
31293
+ #
31132
31294
  # @!attribute [rw] failure_reason
31133
31295
  # The reason why the step failed execution. This is only returned if
31134
31296
  # the step failed its execution.
@@ -31142,10 +31304,13 @@ module Aws::SageMaker
31142
31304
  #
31143
31305
  class PipelineExecutionStep < Struct.new(
31144
31306
  :step_name,
31307
+ :step_display_name,
31308
+ :step_description,
31145
31309
  :start_time,
31146
31310
  :end_time,
31147
31311
  :step_status,
31148
31312
  :cache_hit_result,
31313
+ :attempt_count,
31149
31314
  :failure_reason,
31150
31315
  :metadata)
31151
31316
  SENSITIVE = []
@@ -31250,6 +31415,10 @@ module Aws::SageMaker
31250
31415
  # `CalculatedBaseline`.
31251
31416
  # @return [Types::ClarifyCheckStepMetadata]
31252
31417
  #
31418
+ # @!attribute [rw] emr
31419
+ # The configurations and outcomes of an EMR step execution.
31420
+ # @return [Types::EMRStepMetadata]
31421
+ #
31253
31422
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/PipelineExecutionStepMetadata AWS API Documentation
31254
31423
  #
31255
31424
  class PipelineExecutionStepMetadata < Struct.new(
@@ -31263,7 +31432,8 @@ module Aws::SageMaker
31263
31432
  :callback,
31264
31433
  :lambda,
31265
31434
  :quality_check,
31266
- :clarify_check)
31435
+ :clarify_check,
31436
+ :emr)
31267
31437
  SENSITIVE = []
31268
31438
  include Aws::Structure
31269
31439
  end
@@ -34100,6 +34270,9 @@ module Aws::SageMaker
34100
34270
  # {
34101
34271
  # pipeline_execution_arn: "PipelineExecutionArn", # required
34102
34272
  # client_request_token: "IdempotencyToken", # required
34273
+ # parallelism_configuration: {
34274
+ # max_parallel_execution_steps: 1, # required
34275
+ # },
34103
34276
  # }
34104
34277
  #
34105
34278
  # @!attribute [rw] pipeline_execution_arn
@@ -34115,11 +34288,17 @@ module Aws::SageMaker
34115
34288
  # not need to pass this option.
34116
34289
  # @return [String]
34117
34290
  #
34291
+ # @!attribute [rw] parallelism_configuration
34292
+ # This configuration, if specified, overrides the parallelism
34293
+ # configuration of the parent pipeline.
34294
+ # @return [Types::ParallelismConfiguration]
34295
+ #
34118
34296
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/RetryPipelineExecutionRequest AWS API Documentation
34119
34297
  #
34120
34298
  class RetryPipelineExecutionRequest < Struct.new(
34121
34299
  :pipeline_execution_arn,
34122
- :client_request_token)
34300
+ :client_request_token,
34301
+ :parallelism_configuration)
34123
34302
  SENSITIVE = []
34124
34303
  include Aws::Structure
34125
34304
  end
@@ -35258,6 +35437,9 @@ module Aws::SageMaker
35258
35437
  # ],
35259
35438
  # pipeline_execution_description: "PipelineExecutionDescription",
35260
35439
  # client_request_token: "IdempotencyToken", # required
35440
+ # parallelism_configuration: {
35441
+ # max_parallel_execution_steps: 1, # required
35442
+ # },
35261
35443
  # }
35262
35444
  #
35263
35445
  # @!attribute [rw] pipeline_name
@@ -35285,6 +35467,11 @@ module Aws::SageMaker
35285
35467
  # not need to pass this option.
35286
35468
  # @return [String]
35287
35469
  #
35470
+ # @!attribute [rw] parallelism_configuration
35471
+ # This configuration, if specified, overrides the parallelism
35472
+ # configuration of the parent pipeline for this specific run.
35473
+ # @return [Types::ParallelismConfiguration]
35474
+ #
35288
35475
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/StartPipelineExecutionRequest AWS API Documentation
35289
35476
  #
35290
35477
  class StartPipelineExecutionRequest < Struct.new(
@@ -35292,7 +35479,8 @@ module Aws::SageMaker
35292
35479
  :pipeline_execution_display_name,
35293
35480
  :pipeline_parameters,
35294
35481
  :pipeline_execution_description,
35295
- :client_request_token)
35482
+ :client_request_token,
35483
+ :parallelism_configuration)
35296
35484
  SENSITIVE = []
35297
35485
  include Aws::Structure
35298
35486
  end
@@ -35549,7 +35737,7 @@ module Aws::SageMaker
35549
35737
  # }
35550
35738
  #
35551
35739
  # @!attribute [rw] transform_job_name
35552
- # The name of the transform job to stop.
35740
+ # The name of the batch transform job to stop.
35553
35741
  # @return [String]
35554
35742
  #
35555
35743
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/StopTransformJobRequest AWS API Documentation
@@ -39246,6 +39434,9 @@ module Aws::SageMaker
39246
39434
  # pipeline_execution_arn: "PipelineExecutionArn", # required
39247
39435
  # pipeline_execution_description: "PipelineExecutionDescription",
39248
39436
  # pipeline_execution_display_name: "PipelineExecutionName",
39437
+ # parallelism_configuration: {
39438
+ # max_parallel_execution_steps: 1, # required
39439
+ # },
39249
39440
  # }
39250
39441
  #
39251
39442
  # @!attribute [rw] pipeline_execution_arn
@@ -39260,12 +39451,18 @@ module Aws::SageMaker
39260
39451
  # The display name of the pipeline execution.
39261
39452
  # @return [String]
39262
39453
  #
39454
+ # @!attribute [rw] parallelism_configuration
39455
+ # This configuration, if specified, overrides the parallelism
39456
+ # configuration of the parent pipeline for this specific run.
39457
+ # @return [Types::ParallelismConfiguration]
39458
+ #
39263
39459
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdatePipelineExecutionRequest AWS API Documentation
39264
39460
  #
39265
39461
  class UpdatePipelineExecutionRequest < Struct.new(
39266
39462
  :pipeline_execution_arn,
39267
39463
  :pipeline_execution_description,
39268
- :pipeline_execution_display_name)
39464
+ :pipeline_execution_display_name,
39465
+ :parallelism_configuration)
39269
39466
  SENSITIVE = []
39270
39467
  include Aws::Structure
39271
39468
  end
@@ -39289,8 +39486,16 @@ module Aws::SageMaker
39289
39486
  # pipeline_name: "PipelineName", # required
39290
39487
  # pipeline_display_name: "PipelineName",
39291
39488
  # pipeline_definition: "PipelineDefinition",
39489
+ # pipeline_definition_s3_location: {
39490
+ # bucket: "BucketName", # required
39491
+ # object_key: "Key", # required
39492
+ # version_id: "VersionId",
39493
+ # },
39292
39494
  # pipeline_description: "PipelineDescription",
39293
39495
  # role_arn: "RoleArn",
39496
+ # parallelism_configuration: {
39497
+ # max_parallel_execution_steps: 1, # required
39498
+ # },
39294
39499
  # }
39295
39500
  #
39296
39501
  # @!attribute [rw] pipeline_name
@@ -39305,6 +39510,12 @@ module Aws::SageMaker
39305
39510
  # The JSON pipeline definition.
39306
39511
  # @return [String]
39307
39512
  #
39513
+ # @!attribute [rw] pipeline_definition_s3_location
39514
+ # The location of the pipeline definition stored in Amazon S3. If
39515
+ # specified, SageMaker will retrieve the pipeline definition from this
39516
+ # location.
39517
+ # @return [Types::PipelineDefinitionS3Location]
39518
+ #
39308
39519
  # @!attribute [rw] pipeline_description
39309
39520
  # The description of the pipeline.
39310
39521
  # @return [String]
@@ -39313,14 +39524,21 @@ module Aws::SageMaker
39313
39524
  # The Amazon Resource Name (ARN) that the pipeline uses to execute.
39314
39525
  # @return [String]
39315
39526
  #
39527
+ # @!attribute [rw] parallelism_configuration
39528
+ # If specified, it applies to all executions of this pipeline by
39529
+ # default.
39530
+ # @return [Types::ParallelismConfiguration]
39531
+ #
39316
39532
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdatePipelineRequest AWS API Documentation
39317
39533
  #
39318
39534
  class UpdatePipelineRequest < Struct.new(
39319
39535
  :pipeline_name,
39320
39536
  :pipeline_display_name,
39321
39537
  :pipeline_definition,
39538
+ :pipeline_definition_s3_location,
39322
39539
  :pipeline_description,
39323
- :role_arn)
39540
+ :role_arn,
39541
+ :parallelism_configuration)
39324
39542
  SENSITIVE = []
39325
39543
  include Aws::Structure
39326
39544
  end
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-sagemaker/customizations'
49
49
  # @!group service
50
50
  module Aws::SageMaker
51
51
 
52
- GEM_VERSION = '1.110.0'
52
+ GEM_VERSION = '1.114.0'
53
53
 
54
54
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-sagemaker
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.110.0
4
+ version: 1.114.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-12-01 00:00:00.000000000 Z
11
+ date: 2022-01-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.122.0
22
+ version: 3.125.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.122.0
32
+ version: 3.125.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement