aws-sdk-sagemaker 1.111.0 → 1.115.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +106 -27
- data/lib/aws-sdk-sagemaker/client_api.rb +39 -1
- data/lib/aws-sdk-sagemaker/types.rb +242 -28
- data/lib/aws-sdk-sagemaker.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 717c996b5a15306feee1fa441f1ca69a2183ddad53f10381dfda88d7cd6eca2f
|
4
|
+
data.tar.gz: 3ca21570da1eff135370b835e1d7e0fc62675690d2b91fd1c0943dd47bb28b6e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 37b0b164deaa90ad8b6181701333645b56eefd328f09e0c10a005fdfb5d30b11abb3aab4ff13652f5a35d1b387c5eb6769f36ebb7f9194b63bc1fce0bbb2e7a5
|
7
|
+
data.tar.gz: c5c7984b42a839bb3c97c469f66660ba1b20ca53c2980bf7be60c8fd1e835ffdcdfbad40268fa779fa4fe3cc536074c1a102ec43566a9d407134bd26be379ee0
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.115.0 (2022-01-05)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Amazon SageMaker now supports running training jobs on ml.g5 instance types.
|
8
|
+
|
9
|
+
1.114.0 (2022-01-03)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* 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.
|
13
|
+
|
14
|
+
1.113.0 (2021-12-21)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
19
|
+
1.112.0 (2021-12-20)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - This release adds a new ContentType field in AutoMLChannel for SageMaker CreateAutoMLJob InputDataConfig.
|
23
|
+
|
4
24
|
1.111.0 (2021-12-08)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.115.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 [
|
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
|
#
|
@@ -764,7 +773,7 @@ module Aws::SageMaker
|
|
764
773
|
# default_value: "HyperParameterValue",
|
765
774
|
# },
|
766
775
|
# ],
|
767
|
-
# supported_training_instance_types: ["ml.m4.xlarge"], # required, accepts ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.12xlarge, ml.m5.24xlarge, ml.c4.xlarge, ml.c4.2xlarge, ml.c4.4xlarge, ml.c4.8xlarge, ml.p2.xlarge, ml.p2.8xlarge, ml.p2.16xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.p4d.24xlarge, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.c5n.xlarge, ml.c5n.2xlarge, ml.c5n.4xlarge, ml.c5n.9xlarge, ml.c5n.18xlarge
|
776
|
+
# supported_training_instance_types: ["ml.m4.xlarge"], # required, accepts ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.12xlarge, ml.m5.24xlarge, ml.c4.xlarge, ml.c4.2xlarge, ml.c4.4xlarge, ml.c4.8xlarge, ml.p2.xlarge, ml.p2.8xlarge, ml.p2.16xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.p4d.24xlarge, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.c5n.xlarge, ml.c5n.2xlarge, ml.c5n.4xlarge, ml.c5n.9xlarge, ml.c5n.18xlarge, ml.g5.xlarge, ml.g5.2xlarge, ml.g5.4xlarge, ml.g5.8xlarge, ml.g5.16xlarge, ml.g5.12xlarge, ml.g5.24xlarge, ml.g5.48xlarge
|
768
777
|
# supports_distributed_training: false,
|
769
778
|
# metric_definitions: [
|
770
779
|
# {
|
@@ -854,7 +863,7 @@ module Aws::SageMaker
|
|
854
863
|
# s3_output_path: "S3Uri", # required
|
855
864
|
# },
|
856
865
|
# resource_config: { # required
|
857
|
-
# instance_type: "ml.m4.xlarge", # required, accepts ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.12xlarge, ml.m5.24xlarge, ml.c4.xlarge, ml.c4.2xlarge, ml.c4.4xlarge, ml.c4.8xlarge, ml.p2.xlarge, ml.p2.8xlarge, ml.p2.16xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.p4d.24xlarge, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.c5n.xlarge, ml.c5n.2xlarge, ml.c5n.4xlarge, ml.c5n.9xlarge, ml.c5n.18xlarge
|
866
|
+
# instance_type: "ml.m4.xlarge", # required, accepts ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.12xlarge, ml.m5.24xlarge, ml.c4.xlarge, ml.c4.2xlarge, ml.c4.4xlarge, ml.c4.8xlarge, ml.p2.xlarge, ml.p2.8xlarge, ml.p2.16xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.p4d.24xlarge, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.c5n.xlarge, ml.c5n.2xlarge, ml.c5n.4xlarge, ml.c5n.9xlarge, ml.c5n.18xlarge, ml.g5.xlarge, ml.g5.2xlarge, ml.g5.4xlarge, ml.g5.8xlarge, ml.g5.16xlarge, ml.g5.12xlarge, ml.g5.24xlarge, ml.g5.48xlarge
|
858
867
|
# instance_count: 1, # required
|
859
868
|
# volume_size_in_gb: 1, # required
|
860
869
|
# volume_kms_key_id: "KmsKeyId",
|
@@ -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
|
@@ -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
|
-
#
|
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
|
@@ -2966,7 +2976,7 @@ module Aws::SageMaker
|
|
2966
2976
|
# s3_output_path: "S3Uri", # required
|
2967
2977
|
# },
|
2968
2978
|
# resource_config: { # required
|
2969
|
-
# instance_type: "ml.m4.xlarge", # required, accepts ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.12xlarge, ml.m5.24xlarge, ml.c4.xlarge, ml.c4.2xlarge, ml.c4.4xlarge, ml.c4.8xlarge, ml.p2.xlarge, ml.p2.8xlarge, ml.p2.16xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.p4d.24xlarge, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.c5n.xlarge, ml.c5n.2xlarge, ml.c5n.4xlarge, ml.c5n.9xlarge, ml.c5n.18xlarge
|
2979
|
+
# instance_type: "ml.m4.xlarge", # required, accepts ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.12xlarge, ml.m5.24xlarge, ml.c4.xlarge, ml.c4.2xlarge, ml.c4.4xlarge, ml.c4.8xlarge, ml.p2.xlarge, ml.p2.8xlarge, ml.p2.16xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.p4d.24xlarge, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.c5n.xlarge, ml.c5n.2xlarge, ml.c5n.4xlarge, ml.c5n.9xlarge, ml.c5n.18xlarge, ml.g5.xlarge, ml.g5.2xlarge, ml.g5.4xlarge, ml.g5.8xlarge, ml.g5.16xlarge, ml.g5.12xlarge, ml.g5.24xlarge, ml.g5.48xlarge
|
2970
2980
|
# instance_count: 1, # required
|
2971
2981
|
# volume_size_in_gb: 1, # required
|
2972
2982
|
# volume_kms_key_id: "KmsKeyId",
|
@@ -3067,7 +3077,7 @@ module Aws::SageMaker
|
|
3067
3077
|
# s3_output_path: "S3Uri", # required
|
3068
3078
|
# },
|
3069
3079
|
# resource_config: { # required
|
3070
|
-
# instance_type: "ml.m4.xlarge", # required, accepts ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.12xlarge, ml.m5.24xlarge, ml.c4.xlarge, ml.c4.2xlarge, ml.c4.4xlarge, ml.c4.8xlarge, ml.p2.xlarge, ml.p2.8xlarge, ml.p2.16xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.p4d.24xlarge, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.c5n.xlarge, ml.c5n.2xlarge, ml.c5n.4xlarge, ml.c5n.9xlarge, ml.c5n.18xlarge
|
3080
|
+
# instance_type: "ml.m4.xlarge", # required, accepts ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.12xlarge, ml.m5.24xlarge, ml.c4.xlarge, ml.c4.2xlarge, ml.c4.4xlarge, ml.c4.8xlarge, ml.p2.xlarge, ml.p2.8xlarge, ml.p2.16xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.p4d.24xlarge, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.c5n.xlarge, ml.c5n.2xlarge, ml.c5n.4xlarge, ml.c5n.9xlarge, ml.c5n.18xlarge, ml.g5.xlarge, ml.g5.2xlarge, ml.g5.4xlarge, ml.g5.8xlarge, ml.g5.16xlarge, ml.g5.12xlarge, ml.g5.24xlarge, ml.g5.48xlarge
|
3071
3081
|
# instance_count: 1, # required
|
3072
3082
|
# volume_size_in_gb: 1, # required
|
3073
3083
|
# volume_kms_key_id: "KmsKeyId",
|
@@ -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 [
|
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",
|
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
|
@@ -5869,7 +5897,7 @@ module Aws::SageMaker
|
|
5869
5897
|
# s3_output_path: "S3Uri", # required
|
5870
5898
|
# },
|
5871
5899
|
# resource_config: { # required
|
5872
|
-
# instance_type: "ml.m4.xlarge", # required, accepts ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.12xlarge, ml.m5.24xlarge, ml.c4.xlarge, ml.c4.2xlarge, ml.c4.4xlarge, ml.c4.8xlarge, ml.p2.xlarge, ml.p2.8xlarge, ml.p2.16xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.p4d.24xlarge, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.c5n.xlarge, ml.c5n.2xlarge, ml.c5n.4xlarge, ml.c5n.9xlarge, ml.c5n.18xlarge
|
5900
|
+
# instance_type: "ml.m4.xlarge", # required, accepts ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.12xlarge, ml.m5.24xlarge, ml.c4.xlarge, ml.c4.2xlarge, ml.c4.4xlarge, ml.c4.8xlarge, ml.p2.xlarge, ml.p2.8xlarge, ml.p2.16xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.p4d.24xlarge, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.c5n.xlarge, ml.c5n.2xlarge, ml.c5n.4xlarge, ml.c5n.9xlarge, ml.c5n.18xlarge, ml.g5.xlarge, ml.g5.2xlarge, ml.g5.4xlarge, ml.g5.8xlarge, ml.g5.16xlarge, ml.g5.12xlarge, ml.g5.24xlarge, ml.g5.48xlarge
|
5873
5901
|
# instance_count: 1, # required
|
5874
5902
|
# volume_size_in_gb: 1, # required
|
5875
5903
|
# volume_kms_key_id: "KmsKeyId",
|
@@ -7884,7 +7912,7 @@ module Aws::SageMaker
|
|
7884
7912
|
# resp.training_specification.supported_hyper_parameters[0].is_required #=> Boolean
|
7885
7913
|
# resp.training_specification.supported_hyper_parameters[0].default_value #=> String
|
7886
7914
|
# resp.training_specification.supported_training_instance_types #=> Array
|
7887
|
-
# resp.training_specification.supported_training_instance_types[0] #=> String, one of "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "ml.c4.xlarge", "ml.c4.2xlarge", "ml.c4.4xlarge", "ml.c4.8xlarge", "ml.p2.xlarge", "ml.p2.8xlarge", "ml.p2.16xlarge", "ml.p3.2xlarge", "ml.p3.8xlarge", "ml.p3.16xlarge", "ml.p3dn.24xlarge", "ml.p4d.24xlarge", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.c5n.xlarge", "ml.c5n.2xlarge", "ml.c5n.4xlarge", "ml.c5n.9xlarge", "ml.c5n.18xlarge"
|
7915
|
+
# resp.training_specification.supported_training_instance_types[0] #=> String, one of "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "ml.c4.xlarge", "ml.c4.2xlarge", "ml.c4.4xlarge", "ml.c4.8xlarge", "ml.p2.xlarge", "ml.p2.8xlarge", "ml.p2.16xlarge", "ml.p3.2xlarge", "ml.p3.8xlarge", "ml.p3.16xlarge", "ml.p3dn.24xlarge", "ml.p4d.24xlarge", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.c5n.xlarge", "ml.c5n.2xlarge", "ml.c5n.4xlarge", "ml.c5n.9xlarge", "ml.c5n.18xlarge", "ml.g5.xlarge", "ml.g5.2xlarge", "ml.g5.4xlarge", "ml.g5.8xlarge", "ml.g5.16xlarge", "ml.g5.12xlarge", "ml.g5.24xlarge", "ml.g5.48xlarge"
|
7888
7916
|
# resp.training_specification.supports_distributed_training #=> Boolean
|
7889
7917
|
# resp.training_specification.metric_definitions #=> Array
|
7890
7918
|
# resp.training_specification.metric_definitions[0].name #=> String
|
@@ -7946,7 +7974,7 @@ module Aws::SageMaker
|
|
7946
7974
|
# resp.validation_specification.validation_profiles[0].training_job_definition.input_data_config[0].shuffle_config.seed #=> Integer
|
7947
7975
|
# resp.validation_specification.validation_profiles[0].training_job_definition.output_data_config.kms_key_id #=> String
|
7948
7976
|
# resp.validation_specification.validation_profiles[0].training_job_definition.output_data_config.s3_output_path #=> String
|
7949
|
-
# resp.validation_specification.validation_profiles[0].training_job_definition.resource_config.instance_type #=> String, one of "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "ml.c4.xlarge", "ml.c4.2xlarge", "ml.c4.4xlarge", "ml.c4.8xlarge", "ml.p2.xlarge", "ml.p2.8xlarge", "ml.p2.16xlarge", "ml.p3.2xlarge", "ml.p3.8xlarge", "ml.p3.16xlarge", "ml.p3dn.24xlarge", "ml.p4d.24xlarge", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.c5n.xlarge", "ml.c5n.2xlarge", "ml.c5n.4xlarge", "ml.c5n.9xlarge", "ml.c5n.18xlarge"
|
7977
|
+
# resp.validation_specification.validation_profiles[0].training_job_definition.resource_config.instance_type #=> String, one of "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "ml.c4.xlarge", "ml.c4.2xlarge", "ml.c4.4xlarge", "ml.c4.8xlarge", "ml.p2.xlarge", "ml.p2.8xlarge", "ml.p2.16xlarge", "ml.p3.2xlarge", "ml.p3.8xlarge", "ml.p3.16xlarge", "ml.p3dn.24xlarge", "ml.p4d.24xlarge", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.c5n.xlarge", "ml.c5n.2xlarge", "ml.c5n.4xlarge", "ml.c5n.9xlarge", "ml.c5n.18xlarge", "ml.g5.xlarge", "ml.g5.2xlarge", "ml.g5.4xlarge", "ml.g5.8xlarge", "ml.g5.16xlarge", "ml.g5.12xlarge", "ml.g5.24xlarge", "ml.g5.48xlarge"
|
7950
7978
|
# resp.validation_specification.validation_profiles[0].training_job_definition.resource_config.instance_count #=> Integer
|
7951
7979
|
# resp.validation_specification.validation_profiles[0].training_job_definition.resource_config.volume_size_in_gb #=> Integer
|
7952
7980
|
# resp.validation_specification.validation_profiles[0].training_job_definition.resource_config.volume_kms_key_id #=> String
|
@@ -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
|
@@ -9276,7 +9305,7 @@ module Aws::SageMaker
|
|
9276
9305
|
# resp.training_job_definition.vpc_config.subnets[0] #=> String
|
9277
9306
|
# resp.training_job_definition.output_data_config.kms_key_id #=> String
|
9278
9307
|
# resp.training_job_definition.output_data_config.s3_output_path #=> String
|
9279
|
-
# resp.training_job_definition.resource_config.instance_type #=> String, one of "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "ml.c4.xlarge", "ml.c4.2xlarge", "ml.c4.4xlarge", "ml.c4.8xlarge", "ml.p2.xlarge", "ml.p2.8xlarge", "ml.p2.16xlarge", "ml.p3.2xlarge", "ml.p3.8xlarge", "ml.p3.16xlarge", "ml.p3dn.24xlarge", "ml.p4d.24xlarge", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.c5n.xlarge", "ml.c5n.2xlarge", "ml.c5n.4xlarge", "ml.c5n.9xlarge", "ml.c5n.18xlarge"
|
9308
|
+
# resp.training_job_definition.resource_config.instance_type #=> String, one of "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "ml.c4.xlarge", "ml.c4.2xlarge", "ml.c4.4xlarge", "ml.c4.8xlarge", "ml.p2.xlarge", "ml.p2.8xlarge", "ml.p2.16xlarge", "ml.p3.2xlarge", "ml.p3.8xlarge", "ml.p3.16xlarge", "ml.p3dn.24xlarge", "ml.p4d.24xlarge", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.c5n.xlarge", "ml.c5n.2xlarge", "ml.c5n.4xlarge", "ml.c5n.9xlarge", "ml.c5n.18xlarge", "ml.g5.xlarge", "ml.g5.2xlarge", "ml.g5.4xlarge", "ml.g5.8xlarge", "ml.g5.16xlarge", "ml.g5.12xlarge", "ml.g5.24xlarge", "ml.g5.48xlarge"
|
9280
9309
|
# resp.training_job_definition.resource_config.instance_count #=> Integer
|
9281
9310
|
# resp.training_job_definition.resource_config.volume_size_in_gb #=> Integer
|
9282
9311
|
# resp.training_job_definition.resource_config.volume_kms_key_id #=> String
|
@@ -9337,7 +9366,7 @@ module Aws::SageMaker
|
|
9337
9366
|
# resp.training_job_definitions[0].vpc_config.subnets[0] #=> String
|
9338
9367
|
# resp.training_job_definitions[0].output_data_config.kms_key_id #=> String
|
9339
9368
|
# resp.training_job_definitions[0].output_data_config.s3_output_path #=> String
|
9340
|
-
# resp.training_job_definitions[0].resource_config.instance_type #=> String, one of "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "ml.c4.xlarge", "ml.c4.2xlarge", "ml.c4.4xlarge", "ml.c4.8xlarge", "ml.p2.xlarge", "ml.p2.8xlarge", "ml.p2.16xlarge", "ml.p3.2xlarge", "ml.p3.8xlarge", "ml.p3.16xlarge", "ml.p3dn.24xlarge", "ml.p4d.24xlarge", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.c5n.xlarge", "ml.c5n.2xlarge", "ml.c5n.4xlarge", "ml.c5n.9xlarge", "ml.c5n.18xlarge"
|
9369
|
+
# resp.training_job_definitions[0].resource_config.instance_type #=> String, one of "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "ml.c4.xlarge", "ml.c4.2xlarge", "ml.c4.4xlarge", "ml.c4.8xlarge", "ml.p2.xlarge", "ml.p2.8xlarge", "ml.p2.16xlarge", "ml.p3.2xlarge", "ml.p3.8xlarge", "ml.p3.16xlarge", "ml.p3dn.24xlarge", "ml.p4d.24xlarge", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.c5n.xlarge", "ml.c5n.2xlarge", "ml.c5n.4xlarge", "ml.c5n.9xlarge", "ml.c5n.18xlarge", "ml.g5.xlarge", "ml.g5.2xlarge", "ml.g5.4xlarge", "ml.g5.8xlarge", "ml.g5.16xlarge", "ml.g5.12xlarge", "ml.g5.24xlarge", "ml.g5.48xlarge"
|
9341
9370
|
# resp.training_job_definitions[0].resource_config.instance_count #=> Integer
|
9342
9371
|
# resp.training_job_definitions[0].resource_config.volume_size_in_gb #=> Integer
|
9343
9372
|
# resp.training_job_definitions[0].resource_config.volume_kms_key_id #=> String
|
@@ -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
|
#
|
@@ -11004,7 +11037,7 @@ module Aws::SageMaker
|
|
11004
11037
|
# resp.input_data_config[0].shuffle_config.seed #=> Integer
|
11005
11038
|
# resp.output_data_config.kms_key_id #=> String
|
11006
11039
|
# resp.output_data_config.s3_output_path #=> String
|
11007
|
-
# resp.resource_config.instance_type #=> String, one of "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "ml.c4.xlarge", "ml.c4.2xlarge", "ml.c4.4xlarge", "ml.c4.8xlarge", "ml.p2.xlarge", "ml.p2.8xlarge", "ml.p2.16xlarge", "ml.p3.2xlarge", "ml.p3.8xlarge", "ml.p3.16xlarge", "ml.p3dn.24xlarge", "ml.p4d.24xlarge", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.c5n.xlarge", "ml.c5n.2xlarge", "ml.c5n.4xlarge", "ml.c5n.9xlarge", "ml.c5n.18xlarge"
|
11040
|
+
# resp.resource_config.instance_type #=> String, one of "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "ml.c4.xlarge", "ml.c4.2xlarge", "ml.c4.4xlarge", "ml.c4.8xlarge", "ml.p2.xlarge", "ml.p2.8xlarge", "ml.p2.16xlarge", "ml.p3.2xlarge", "ml.p3.8xlarge", "ml.p3.16xlarge", "ml.p3dn.24xlarge", "ml.p4d.24xlarge", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.c5n.xlarge", "ml.c5n.2xlarge", "ml.c5n.4xlarge", "ml.c5n.9xlarge", "ml.c5n.18xlarge", "ml.g5.xlarge", "ml.g5.2xlarge", "ml.g5.4xlarge", "ml.g5.8xlarge", "ml.g5.16xlarge", "ml.g5.12xlarge", "ml.g5.24xlarge", "ml.g5.48xlarge"
|
11008
11041
|
# resp.resource_config.instance_count #=> Integer
|
11009
11042
|
# resp.resource_config.volume_size_in_gb #=> Integer
|
11010
11043
|
# resp.resource_config.volume_kms_key_id #=> String
|
@@ -14850,6 +14883,8 @@ 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"
|
@@ -14890,6 +14925,10 @@ module Aws::SageMaker
|
|
14890
14925
|
# resp.pipeline_execution_steps[0].metadata.clarify_check.check_job_arn #=> String
|
14891
14926
|
# resp.pipeline_execution_steps[0].metadata.clarify_check.skip_check #=> Boolean
|
14892
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
|
14893
14932
|
# resp.next_token #=> String
|
14894
14933
|
#
|
14895
14934
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListPipelineExecutionSteps AWS API Documentation
|
@@ -16298,6 +16337,10 @@ module Aws::SageMaker
|
|
16298
16337
|
# **A suitable default value is auto-generated.** You should normally
|
16299
16338
|
# not need to pass this option.**
|
16300
16339
|
#
|
16340
|
+
# @option params [Types::ParallelismConfiguration] :parallelism_configuration
|
16341
|
+
# This configuration, if specified, overrides the parallelism
|
16342
|
+
# configuration of the parent pipeline.
|
16343
|
+
#
|
16301
16344
|
# @return [Types::RetryPipelineExecutionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
16302
16345
|
#
|
16303
16346
|
# * {Types::RetryPipelineExecutionResponse#pipeline_execution_arn #pipeline_execution_arn} => String
|
@@ -16307,6 +16350,9 @@ module Aws::SageMaker
|
|
16307
16350
|
# resp = client.retry_pipeline_execution({
|
16308
16351
|
# pipeline_execution_arn: "PipelineExecutionArn", # required
|
16309
16352
|
# client_request_token: "IdempotencyToken", # required
|
16353
|
+
# parallelism_configuration: {
|
16354
|
+
# max_parallel_execution_steps: 1, # required
|
16355
|
+
# },
|
16310
16356
|
# })
|
16311
16357
|
#
|
16312
16358
|
# @example Response structure
|
@@ -16441,7 +16487,7 @@ module Aws::SageMaker
|
|
16441
16487
|
# resp.results[0].training_job.input_data_config[0].shuffle_config.seed #=> Integer
|
16442
16488
|
# resp.results[0].training_job.output_data_config.kms_key_id #=> String
|
16443
16489
|
# resp.results[0].training_job.output_data_config.s3_output_path #=> String
|
16444
|
-
# resp.results[0].training_job.resource_config.instance_type #=> String, one of "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "ml.c4.xlarge", "ml.c4.2xlarge", "ml.c4.4xlarge", "ml.c4.8xlarge", "ml.p2.xlarge", "ml.p2.8xlarge", "ml.p2.16xlarge", "ml.p3.2xlarge", "ml.p3.8xlarge", "ml.p3.16xlarge", "ml.p3dn.24xlarge", "ml.p4d.24xlarge", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.c5n.xlarge", "ml.c5n.2xlarge", "ml.c5n.4xlarge", "ml.c5n.9xlarge", "ml.c5n.18xlarge"
|
16490
|
+
# resp.results[0].training_job.resource_config.instance_type #=> String, one of "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "ml.c4.xlarge", "ml.c4.2xlarge", "ml.c4.4xlarge", "ml.c4.8xlarge", "ml.p2.xlarge", "ml.p2.8xlarge", "ml.p2.16xlarge", "ml.p3.2xlarge", "ml.p3.8xlarge", "ml.p3.16xlarge", "ml.p3dn.24xlarge", "ml.p4d.24xlarge", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.c5n.xlarge", "ml.c5n.2xlarge", "ml.c5n.4xlarge", "ml.c5n.9xlarge", "ml.c5n.18xlarge", "ml.g5.xlarge", "ml.g5.2xlarge", "ml.g5.4xlarge", "ml.g5.8xlarge", "ml.g5.16xlarge", "ml.g5.12xlarge", "ml.g5.24xlarge", "ml.g5.48xlarge"
|
16445
16491
|
# resp.results[0].training_job.resource_config.instance_count #=> Integer
|
16446
16492
|
# resp.results[0].training_job.resource_config.volume_size_in_gb #=> Integer
|
16447
16493
|
# resp.results[0].training_job.resource_config.volume_kms_key_id #=> String
|
@@ -16630,7 +16676,7 @@ module Aws::SageMaker
|
|
16630
16676
|
# resp.results[0].trial_component.source_detail.training_job.input_data_config[0].shuffle_config.seed #=> Integer
|
16631
16677
|
# resp.results[0].trial_component.source_detail.training_job.output_data_config.kms_key_id #=> String
|
16632
16678
|
# resp.results[0].trial_component.source_detail.training_job.output_data_config.s3_output_path #=> String
|
16633
|
-
# resp.results[0].trial_component.source_detail.training_job.resource_config.instance_type #=> String, one of "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "ml.c4.xlarge", "ml.c4.2xlarge", "ml.c4.4xlarge", "ml.c4.8xlarge", "ml.p2.xlarge", "ml.p2.8xlarge", "ml.p2.16xlarge", "ml.p3.2xlarge", "ml.p3.8xlarge", "ml.p3.16xlarge", "ml.p3dn.24xlarge", "ml.p4d.24xlarge", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.c5n.xlarge", "ml.c5n.2xlarge", "ml.c5n.4xlarge", "ml.c5n.9xlarge", "ml.c5n.18xlarge"
|
16679
|
+
# resp.results[0].trial_component.source_detail.training_job.resource_config.instance_type #=> String, one of "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "ml.c4.xlarge", "ml.c4.2xlarge", "ml.c4.4xlarge", "ml.c4.8xlarge", "ml.p2.xlarge", "ml.p2.8xlarge", "ml.p2.16xlarge", "ml.p3.2xlarge", "ml.p3.8xlarge", "ml.p3.16xlarge", "ml.p3dn.24xlarge", "ml.p4d.24xlarge", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.c5n.xlarge", "ml.c5n.2xlarge", "ml.c5n.4xlarge", "ml.c5n.9xlarge", "ml.c5n.18xlarge", "ml.g5.xlarge", "ml.g5.2xlarge", "ml.g5.4xlarge", "ml.g5.8xlarge", "ml.g5.16xlarge", "ml.g5.12xlarge", "ml.g5.24xlarge", "ml.g5.48xlarge"
|
16634
16680
|
# resp.results[0].trial_component.source_detail.training_job.resource_config.instance_count #=> Integer
|
16635
16681
|
# resp.results[0].trial_component.source_detail.training_job.resource_config.volume_size_in_gb #=> Integer
|
16636
16682
|
# resp.results[0].trial_component.source_detail.training_job.resource_config.volume_kms_key_id #=> String
|
@@ -17091,6 +17137,7 @@ module Aws::SageMaker
|
|
17091
17137
|
# resp.results[0].pipeline.last_modified_by.user_profile_arn #=> String
|
17092
17138
|
# resp.results[0].pipeline.last_modified_by.user_profile_name #=> String
|
17093
17139
|
# resp.results[0].pipeline.last_modified_by.domain_id #=> String
|
17140
|
+
# resp.results[0].pipeline.parallelism_configuration.max_parallel_execution_steps #=> Integer
|
17094
17141
|
# resp.results[0].pipeline.tags #=> Array
|
17095
17142
|
# resp.results[0].pipeline.tags[0].key #=> String
|
17096
17143
|
# resp.results[0].pipeline.tags[0].value #=> String
|
@@ -17110,6 +17157,7 @@ module Aws::SageMaker
|
|
17110
17157
|
# resp.results[0].pipeline_execution.last_modified_by.user_profile_arn #=> String
|
17111
17158
|
# resp.results[0].pipeline_execution.last_modified_by.user_profile_name #=> String
|
17112
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
|
17113
17161
|
# resp.results[0].pipeline_execution.pipeline_parameters #=> Array
|
17114
17162
|
# resp.results[0].pipeline_execution.pipeline_parameters[0].name #=> String
|
17115
17163
|
# resp.results[0].pipeline_execution.pipeline_parameters[0].value #=> String
|
@@ -17342,6 +17390,10 @@ module Aws::SageMaker
|
|
17342
17390
|
# **A suitable default value is auto-generated.** You should normally
|
17343
17391
|
# not need to pass this option.**
|
17344
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
|
+
#
|
17345
17397
|
# @return [Types::StartPipelineExecutionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
17346
17398
|
#
|
17347
17399
|
# * {Types::StartPipelineExecutionResponse#pipeline_execution_arn #pipeline_execution_arn} => String
|
@@ -17359,6 +17411,9 @@ module Aws::SageMaker
|
|
17359
17411
|
# ],
|
17360
17412
|
# pipeline_execution_description: "PipelineExecutionDescription",
|
17361
17413
|
# client_request_token: "IdempotencyToken", # required
|
17414
|
+
# parallelism_configuration: {
|
17415
|
+
# max_parallel_execution_steps: 1, # required
|
17416
|
+
# },
|
17362
17417
|
# })
|
17363
17418
|
#
|
17364
17419
|
# @example Response structure
|
@@ -17584,17 +17639,17 @@ module Aws::SageMaker
|
|
17584
17639
|
#
|
17585
17640
|
# A pipeline execution won't stop while a callback step is running.
|
17586
17641
|
# When you call `StopPipelineExecution` on a pipeline execution with a
|
17587
|
-
# running callback step, SageMaker Pipelines sends an additional
|
17588
|
-
# SQS message to the specified SQS queue. The body of the SQS
|
17589
|
-
# 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".
|
17590
17645
|
#
|
17591
17646
|
# You should add logic to your Amazon SQS message consumer to take any
|
17592
17647
|
# needed action (for example, resource cleanup) upon receipt of the
|
17593
17648
|
# message followed by a call to `SendPipelineExecutionStepSuccess` or
|
17594
17649
|
# `SendPipelineExecutionStepFailure`.
|
17595
17650
|
#
|
17596
|
-
# Only when SageMaker Pipelines receives one of these calls will
|
17597
|
-
# the pipeline execution.
|
17651
|
+
# Only when Amazon SageMaker Pipelines receives one of these calls will
|
17652
|
+
# it stop the pipeline execution.
|
17598
17653
|
#
|
17599
17654
|
# **Lambda Step**
|
17600
17655
|
#
|
@@ -17693,16 +17748,16 @@ module Aws::SageMaker
|
|
17693
17748
|
req.send_request(options)
|
17694
17749
|
end
|
17695
17750
|
|
17696
|
-
# Stops a transform job.
|
17751
|
+
# Stops a batch transform job.
|
17697
17752
|
#
|
17698
17753
|
# When Amazon SageMaker receives a `StopTransformJob` request, the
|
17699
17754
|
# status of the job changes to `Stopping`. After Amazon SageMaker stops
|
17700
|
-
# the job, the status is set to `Stopped`. When you stop a
|
17701
|
-
# before it is completed, Amazon SageMaker doesn't store
|
17702
|
-
# 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.
|
17703
17758
|
#
|
17704
17759
|
# @option params [required, String] :transform_job_name
|
17705
|
-
# The name of the transform job to stop.
|
17760
|
+
# The name of the batch transform job to stop.
|
17706
17761
|
#
|
17707
17762
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
17708
17763
|
#
|
@@ -18742,12 +18797,21 @@ module Aws::SageMaker
|
|
18742
18797
|
# @option params [String] :pipeline_definition
|
18743
18798
|
# The JSON pipeline definition.
|
18744
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
|
+
#
|
18745
18805
|
# @option params [String] :pipeline_description
|
18746
18806
|
# The description of the pipeline.
|
18747
18807
|
#
|
18748
18808
|
# @option params [String] :role_arn
|
18749
18809
|
# The Amazon Resource Name (ARN) that the pipeline uses to execute.
|
18750
18810
|
#
|
18811
|
+
# @option params [Types::ParallelismConfiguration] :parallelism_configuration
|
18812
|
+
# If specified, it applies to all executions of this pipeline by
|
18813
|
+
# default.
|
18814
|
+
#
|
18751
18815
|
# @return [Types::UpdatePipelineResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
18752
18816
|
#
|
18753
18817
|
# * {Types::UpdatePipelineResponse#pipeline_arn #pipeline_arn} => String
|
@@ -18758,8 +18822,16 @@ module Aws::SageMaker
|
|
18758
18822
|
# pipeline_name: "PipelineName", # required
|
18759
18823
|
# pipeline_display_name: "PipelineName",
|
18760
18824
|
# pipeline_definition: "PipelineDefinition",
|
18825
|
+
# pipeline_definition_s3_location: {
|
18826
|
+
# bucket: "BucketName", # required
|
18827
|
+
# object_key: "Key", # required
|
18828
|
+
# version_id: "VersionId",
|
18829
|
+
# },
|
18761
18830
|
# pipeline_description: "PipelineDescription",
|
18762
18831
|
# role_arn: "RoleArn",
|
18832
|
+
# parallelism_configuration: {
|
18833
|
+
# max_parallel_execution_steps: 1, # required
|
18834
|
+
# },
|
18763
18835
|
# })
|
18764
18836
|
#
|
18765
18837
|
# @example Response structure
|
@@ -18786,6 +18858,10 @@ module Aws::SageMaker
|
|
18786
18858
|
# @option params [String] :pipeline_execution_display_name
|
18787
18859
|
# The display name of the pipeline execution.
|
18788
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
|
+
#
|
18789
18865
|
# @return [Types::UpdatePipelineExecutionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
18790
18866
|
#
|
18791
18867
|
# * {Types::UpdatePipelineExecutionResponse#pipeline_execution_arn #pipeline_execution_arn} => String
|
@@ -18796,6 +18872,9 @@ module Aws::SageMaker
|
|
18796
18872
|
# pipeline_execution_arn: "PipelineExecutionArn", # required
|
18797
18873
|
# pipeline_execution_description: "PipelineExecutionDescription",
|
18798
18874
|
# pipeline_execution_display_name: "PipelineExecutionName",
|
18875
|
+
# parallelism_configuration: {
|
18876
|
+
# max_parallel_execution_steps: 1, # required
|
18877
|
+
# },
|
18799
18878
|
# })
|
18800
18879
|
#
|
18801
18880
|
# @example Response structure
|
@@ -19364,7 +19443,7 @@ module Aws::SageMaker
|
|
19364
19443
|
params: params,
|
19365
19444
|
config: config)
|
19366
19445
|
context[:gem_name] = 'aws-sdk-sagemaker'
|
19367
|
-
context[:gem_version] = '1.
|
19446
|
+
context[:gem_version] = '1.115.0'
|
19368
19447
|
Seahorse::Client::Request.new(handlers, context)
|
19369
19448
|
end
|
19370
19449
|
|