aws-sdk-sagemaker 1.109.0 → 1.113.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -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
  #
@@ -557,6 +566,10 @@ module Aws::SageMaker
557
566
  # resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].product_id #=> String
558
567
  # resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].environment #=> Hash
559
568
  # resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].environment["EnvironmentKey"] #=> String
569
+ # resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].model_input.data_input_config #=> String
570
+ # resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].framework #=> String
571
+ # resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].framework_version #=> String
572
+ # resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].nearest_model_name #=> String
560
573
  # resp.model_package_summaries["ModelPackageArn"].inference_specification.supported_transform_instance_types #=> Array
561
574
  # resp.model_package_summaries["ModelPackageArn"].inference_specification.supported_transform_instance_types[0] #=> String, one of "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "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.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge"
562
575
  # resp.model_package_summaries["ModelPackageArn"].inference_specification.supported_realtime_inference_instance_types #=> Array
@@ -796,6 +809,12 @@ module Aws::SageMaker
796
809
  # environment: {
797
810
  # "EnvironmentKey" => "EnvironmentValue",
798
811
  # },
812
+ # model_input: {
813
+ # data_input_config: "DataInputConfig", # required
814
+ # },
815
+ # framework: "String",
816
+ # framework_version: "FrameworkVersion",
817
+ # nearest_model_name: "String",
799
818
  # },
800
819
  # ],
801
820
  # supported_transform_instance_types: ["ml.m4.xlarge"], # accepts ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, 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.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.12xlarge, ml.m5.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge
@@ -1186,6 +1205,7 @@ module Aws::SageMaker
1186
1205
  # },
1187
1206
  # compression_type: "None", # accepts None, Gzip
1188
1207
  # target_attribute_name: "TargetAttributeName", # required
1208
+ # content_type: "ContentType",
1189
1209
  # },
1190
1210
  # ],
1191
1211
  # output_data_config: { # required
@@ -1364,7 +1384,13 @@ module Aws::SageMaker
1364
1384
  #
1365
1385
  # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/sagemaker-roles.html
1366
1386
  #
1367
- # @option params [required, Types::InputConfig] :input_config
1387
+ # @option params [String] :model_package_version_arn
1388
+ # The Amazon Resource Name (ARN) of a versioned model package. Provide
1389
+ # either a `ModelPackageVersionArn` or an `InputConfig` object in the
1390
+ # request syntax. The presence of both objects in the
1391
+ # `CreateCompilationJob` request will return an exception.
1392
+ #
1393
+ # @option params [Types::InputConfig] :input_config
1368
1394
  # Provides information about the location of input model artifacts, the
1369
1395
  # name and shape of the expected data inputs, and the framework in which
1370
1396
  # the model was trained.
@@ -1407,7 +1433,8 @@ module Aws::SageMaker
1407
1433
  # resp = client.create_compilation_job({
1408
1434
  # compilation_job_name: "EntityName", # required
1409
1435
  # role_arn: "RoleArn", # required
1410
- # input_config: { # required
1436
+ # model_package_version_arn: "ModelPackageArn",
1437
+ # input_config: {
1411
1438
  # s3_uri: "S3Uri", # required
1412
1439
  # data_input_config: "DataInputConfig", # required
1413
1440
  # framework: "TENSORFLOW", # required, accepts TENSORFLOW, KERAS, MXNET, ONNX, PYTORCH, XGBOOST, TFLITE, DARKNET, SKLEARN
@@ -1415,7 +1442,7 @@ module Aws::SageMaker
1415
1442
  # },
1416
1443
  # output_config: { # required
1417
1444
  # s3_output_location: "S3Uri", # required
1418
- # 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
1419
1446
  # target_platform: {
1420
1447
  # os: "ANDROID", # required, accepts ANDROID, LINUX
1421
1448
  # arch: "X86_64", # required, accepts X86_64, X86, ARM64, ARM_EABI, ARM_EABIHF
@@ -2299,14 +2326,18 @@ module Aws::SageMaker
2299
2326
  # {
2300
2327
  # variant_name: "VariantName", # required
2301
2328
  # model_name: "ModelName", # required
2302
- # initial_instance_count: 1, # required
2303
- # instance_type: "ml.t2.medium", # required, accepts ml.t2.medium, ml.t2.large, ml.t2.xlarge, ml.t2.2xlarge, ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.12xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.12xlarge, ml.m5d.24xlarge, ml.c4.large, 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.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.c5d.large, ml.c5d.xlarge, ml.c5d.2xlarge, ml.c5d.4xlarge, ml.c5d.9xlarge, ml.c5d.18xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.12xlarge, ml.r5.24xlarge, ml.r5d.large, ml.r5d.xlarge, ml.r5d.2xlarge, ml.r5d.4xlarge, ml.r5d.12xlarge, ml.r5d.24xlarge, ml.inf1.xlarge, ml.inf1.2xlarge, ml.inf1.6xlarge, ml.inf1.24xlarge
2329
+ # initial_instance_count: 1,
2330
+ # instance_type: "ml.t2.medium", # accepts ml.t2.medium, ml.t2.large, ml.t2.xlarge, ml.t2.2xlarge, ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.12xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.12xlarge, ml.m5d.24xlarge, ml.c4.large, 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.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.c5d.large, ml.c5d.xlarge, ml.c5d.2xlarge, ml.c5d.4xlarge, ml.c5d.9xlarge, ml.c5d.18xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.12xlarge, ml.r5.24xlarge, ml.r5d.large, ml.r5d.xlarge, ml.r5d.2xlarge, ml.r5d.4xlarge, ml.r5d.12xlarge, ml.r5d.24xlarge, ml.inf1.xlarge, ml.inf1.2xlarge, ml.inf1.6xlarge, ml.inf1.24xlarge
2304
2331
  # initial_variant_weight: 1.0,
2305
2332
  # accelerator_type: "ml.eia1.medium", # accepts ml.eia1.medium, ml.eia1.large, ml.eia1.xlarge, ml.eia2.medium, ml.eia2.large, ml.eia2.xlarge
2306
2333
  # core_dump_config: {
2307
2334
  # destination_s3_uri: "DestinationS3Uri", # required
2308
2335
  # kms_key_id: "KmsKeyId",
2309
2336
  # },
2337
+ # serverless_config: {
2338
+ # memory_size_in_mb: 1, # required
2339
+ # max_concurrency: 1, # required
2340
+ # },
2310
2341
  # },
2311
2342
  # ],
2312
2343
  # data_capture_config: {
@@ -3202,6 +3233,119 @@ module Aws::SageMaker
3202
3233
  req.send_request(options)
3203
3234
  end
3204
3235
 
3236
+ # Starts a recommendation job. You can create either an instance
3237
+ # recommendation or load test job.
3238
+ #
3239
+ # @option params [required, String] :job_name
3240
+ # A name for the recommendation job. The name must be unique within the
3241
+ # Amazon Web Services Region and within your Amazon Web Services
3242
+ # account.
3243
+ #
3244
+ # @option params [required, String] :job_type
3245
+ # Defines the type of recommendation job. Specify `Default` to initiate
3246
+ # an instance recommendation and `Advanced` to initiate a load test. If
3247
+ # left unspecified, Amazon SageMaker Inference Recommender will run an
3248
+ # instance recommendation (`DEFAULT`) job.
3249
+ #
3250
+ # @option params [required, String] :role_arn
3251
+ # The Amazon Resource Name (ARN) of an IAM role that enables Amazon
3252
+ # SageMaker to perform tasks on your behalf.
3253
+ #
3254
+ # @option params [required, Types::RecommendationJobInputConfig] :input_config
3255
+ # Provides information about the versioned model package Amazon Resource
3256
+ # Name (ARN), the traffic pattern, and endpoint configurations.
3257
+ #
3258
+ # @option params [String] :job_description
3259
+ # Description of the recommendation job.
3260
+ #
3261
+ # @option params [Types::RecommendationJobStoppingConditions] :stopping_conditions
3262
+ # A set of conditions for stopping a recommendation job. If any of the
3263
+ # conditions are met, the job is automatically stopped.
3264
+ #
3265
+ # @option params [Array<Types::Tag>] :tags
3266
+ # The metadata that you apply to Amazon Web Services resources to help
3267
+ # you categorize and organize them. Each tag consists of a key and a
3268
+ # value, both of which you define. For more information, see [Tagging
3269
+ # Amazon Web Services Resources][1] in the Amazon Web Services General
3270
+ # Reference.
3271
+ #
3272
+ #
3273
+ #
3274
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
3275
+ #
3276
+ # @return [Types::CreateInferenceRecommendationsJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3277
+ #
3278
+ # * {Types::CreateInferenceRecommendationsJobResponse#job_arn #job_arn} => String
3279
+ #
3280
+ # @example Request syntax with placeholder values
3281
+ #
3282
+ # resp = client.create_inference_recommendations_job({
3283
+ # job_name: "RecommendationJobName", # required
3284
+ # job_type: "Default", # required, accepts Default, Advanced
3285
+ # role_arn: "RoleArn", # required
3286
+ # input_config: { # required
3287
+ # model_package_version_arn: "ModelPackageArn", # required
3288
+ # job_duration_in_seconds: 1,
3289
+ # traffic_pattern: {
3290
+ # traffic_type: "PHASES", # accepts PHASES
3291
+ # phases: [
3292
+ # {
3293
+ # initial_number_of_users: 1,
3294
+ # spawn_rate: 1,
3295
+ # duration_in_seconds: 1,
3296
+ # },
3297
+ # ],
3298
+ # },
3299
+ # resource_limit: {
3300
+ # max_number_of_tests: 1,
3301
+ # max_parallel_of_tests: 1,
3302
+ # },
3303
+ # endpoint_configurations: [
3304
+ # {
3305
+ # instance_type: "ml.t2.medium", # required, accepts ml.t2.medium, ml.t2.large, ml.t2.xlarge, ml.t2.2xlarge, ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.12xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.12xlarge, ml.m5d.24xlarge, ml.c4.large, 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.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.c5d.large, ml.c5d.xlarge, ml.c5d.2xlarge, ml.c5d.4xlarge, ml.c5d.9xlarge, ml.c5d.18xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.12xlarge, ml.r5.24xlarge, ml.r5d.large, ml.r5d.xlarge, ml.r5d.2xlarge, ml.r5d.4xlarge, ml.r5d.12xlarge, ml.r5d.24xlarge, ml.inf1.xlarge, ml.inf1.2xlarge, ml.inf1.6xlarge, ml.inf1.24xlarge
3306
+ # inference_specification_name: "InferenceSpecificationName",
3307
+ # environment_parameter_ranges: {
3308
+ # categorical_parameter_ranges: [
3309
+ # {
3310
+ # name: "String64", # required
3311
+ # value: ["String128"], # required
3312
+ # },
3313
+ # ],
3314
+ # },
3315
+ # },
3316
+ # ],
3317
+ # },
3318
+ # job_description: "RecommendationJobDescription",
3319
+ # stopping_conditions: {
3320
+ # max_invocations: 1,
3321
+ # model_latency_thresholds: [
3322
+ # {
3323
+ # percentile: "String64",
3324
+ # value_in_milliseconds: 1,
3325
+ # },
3326
+ # ],
3327
+ # },
3328
+ # tags: [
3329
+ # {
3330
+ # key: "TagKey", # required
3331
+ # value: "TagValue", # required
3332
+ # },
3333
+ # ],
3334
+ # })
3335
+ #
3336
+ # @example Response structure
3337
+ #
3338
+ # resp.job_arn #=> String
3339
+ #
3340
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateInferenceRecommendationsJob AWS API Documentation
3341
+ #
3342
+ # @overload create_inference_recommendations_job(params = {})
3343
+ # @param [Hash] params ({})
3344
+ def create_inference_recommendations_job(params = {}, options = {})
3345
+ req = build_request(:create_inference_recommendations_job, params)
3346
+ req.send_request(options)
3347
+ end
3348
+
3205
3349
  # Creates a job that uses workers to label the data objects in your
3206
3350
  # input dataset. You can use the labeled data to train machine learning
3207
3351
  # models.
@@ -3625,6 +3769,7 @@ module Aws::SageMaker
3625
3769
  # "EnvironmentKey" => "EnvironmentValue",
3626
3770
  # },
3627
3771
  # model_package_name: "VersionedArnOrName",
3772
+ # inference_specification_name: "InferenceSpecificationName",
3628
3773
  # multi_model_config: {
3629
3774
  # model_cache_setting: "Enabled", # accepts Enabled, Disabled
3630
3775
  # },
@@ -3645,6 +3790,7 @@ module Aws::SageMaker
3645
3790
  # "EnvironmentKey" => "EnvironmentValue",
3646
3791
  # },
3647
3792
  # model_package_name: "VersionedArnOrName",
3793
+ # inference_specification_name: "InferenceSpecificationName",
3648
3794
  # multi_model_config: {
3649
3795
  # model_cache_setting: "Enabled", # accepts Enabled, Disabled
3650
3796
  # },
@@ -4044,6 +4190,37 @@ module Aws::SageMaker
4044
4190
  # @option params [Hash<String,String>] :customer_metadata_properties
4045
4191
  # The metadata properties associated with the model package versions.
4046
4192
  #
4193
+ # @option params [Types::DriftCheckBaselines] :drift_check_baselines
4194
+ # Represents the drift check baselines that can be used when the model
4195
+ # monitor is set using the model package. For more information, see the
4196
+ # topic on [Drift Detection against Previous Baselines in SageMaker
4197
+ # Pipelines][1] in the *Amazon SageMaker Developer Guide*.
4198
+ #
4199
+ #
4200
+ #
4201
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/pipelines-quality-clarify-baseline-lifecycle.html#pipelines-quality-clarify-baseline-drift-detection
4202
+ #
4203
+ # @option params [String] :domain
4204
+ # The machine learning domain of your model package and its components.
4205
+ # Common machine learning domains include computer vision and natural
4206
+ # language processing.
4207
+ #
4208
+ # @option params [String] :task
4209
+ # The machine learning task your model package accomplishes. Common
4210
+ # machine learning tasks include object detection and image
4211
+ # classification.
4212
+ #
4213
+ # @option params [String] :sample_payload_url
4214
+ # The Amazon Simple Storage Service (Amazon S3) path where the sample
4215
+ # payload are stored. This path must point to a single gzip compressed
4216
+ # tar archive (.tar.gz suffix).
4217
+ #
4218
+ # @option params [Array<Types::AdditionalInferenceSpecificationDefinition>] :additional_inference_specifications
4219
+ # An array of additional Inference Specification objects. Each
4220
+ # additional Inference Specification specifies artifacts based on this
4221
+ # model package that can be used on inference endpoints. Generally used
4222
+ # with SageMaker Neo to store the compiled artifacts.
4223
+ #
4047
4224
  # @return [Types::CreateModelPackageOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4048
4225
  #
4049
4226
  # * {Types::CreateModelPackageOutput#model_package_arn #model_package_arn} => String
@@ -4065,6 +4242,12 @@ module Aws::SageMaker
4065
4242
  # environment: {
4066
4243
  # "EnvironmentKey" => "EnvironmentValue",
4067
4244
  # },
4245
+ # model_input: {
4246
+ # data_input_config: "DataInputConfig", # required
4247
+ # },
4248
+ # framework: "String",
4249
+ # framework_version: "FrameworkVersion",
4250
+ # nearest_model_name: "String",
4068
4251
  # },
4069
4252
  # ],
4070
4253
  # supported_transform_instance_types: ["ml.m4.xlarge"], # accepts ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, 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.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.12xlarge, ml.m5.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge
@@ -4163,6 +4346,16 @@ module Aws::SageMaker
4163
4346
  # content_digest: "ContentDigest",
4164
4347
  # s3_uri: "S3Uri", # required
4165
4348
  # },
4349
+ # pre_training_report: {
4350
+ # content_type: "ContentType", # required
4351
+ # content_digest: "ContentDigest",
4352
+ # s3_uri: "S3Uri", # required
4353
+ # },
4354
+ # post_training_report: {
4355
+ # content_type: "ContentType", # required
4356
+ # content_digest: "ContentDigest",
4357
+ # s3_uri: "S3Uri", # required
4358
+ # },
4166
4359
  # },
4167
4360
  # explainability: {
4168
4361
  # report: {
@@ -4176,6 +4369,92 @@ module Aws::SageMaker
4176
4369
  # customer_metadata_properties: {
4177
4370
  # "CustomerMetadataKey" => "CustomerMetadataValue",
4178
4371
  # },
4372
+ # drift_check_baselines: {
4373
+ # bias: {
4374
+ # config_file: {
4375
+ # content_type: "ContentType",
4376
+ # content_digest: "ContentDigest",
4377
+ # s3_uri: "S3Uri", # required
4378
+ # },
4379
+ # pre_training_constraints: {
4380
+ # content_type: "ContentType", # required
4381
+ # content_digest: "ContentDigest",
4382
+ # s3_uri: "S3Uri", # required
4383
+ # },
4384
+ # post_training_constraints: {
4385
+ # content_type: "ContentType", # required
4386
+ # content_digest: "ContentDigest",
4387
+ # s3_uri: "S3Uri", # required
4388
+ # },
4389
+ # },
4390
+ # explainability: {
4391
+ # constraints: {
4392
+ # content_type: "ContentType", # required
4393
+ # content_digest: "ContentDigest",
4394
+ # s3_uri: "S3Uri", # required
4395
+ # },
4396
+ # config_file: {
4397
+ # content_type: "ContentType",
4398
+ # content_digest: "ContentDigest",
4399
+ # s3_uri: "S3Uri", # required
4400
+ # },
4401
+ # },
4402
+ # model_quality: {
4403
+ # statistics: {
4404
+ # content_type: "ContentType", # required
4405
+ # content_digest: "ContentDigest",
4406
+ # s3_uri: "S3Uri", # required
4407
+ # },
4408
+ # constraints: {
4409
+ # content_type: "ContentType", # required
4410
+ # content_digest: "ContentDigest",
4411
+ # s3_uri: "S3Uri", # required
4412
+ # },
4413
+ # },
4414
+ # model_data_quality: {
4415
+ # statistics: {
4416
+ # content_type: "ContentType", # required
4417
+ # content_digest: "ContentDigest",
4418
+ # s3_uri: "S3Uri", # required
4419
+ # },
4420
+ # constraints: {
4421
+ # content_type: "ContentType", # required
4422
+ # content_digest: "ContentDigest",
4423
+ # s3_uri: "S3Uri", # required
4424
+ # },
4425
+ # },
4426
+ # },
4427
+ # domain: "String",
4428
+ # task: "String",
4429
+ # sample_payload_url: "S3Uri",
4430
+ # additional_inference_specifications: [
4431
+ # {
4432
+ # name: "EntityName", # required
4433
+ # description: "EntityDescription",
4434
+ # containers: [ # required
4435
+ # {
4436
+ # container_hostname: "ContainerHostname",
4437
+ # image: "ContainerImage", # required
4438
+ # image_digest: "ImageDigest",
4439
+ # model_data_url: "Url",
4440
+ # product_id: "ProductId",
4441
+ # environment: {
4442
+ # "EnvironmentKey" => "EnvironmentValue",
4443
+ # },
4444
+ # model_input: {
4445
+ # data_input_config: "DataInputConfig", # required
4446
+ # },
4447
+ # framework: "String",
4448
+ # framework_version: "FrameworkVersion",
4449
+ # nearest_model_name: "String",
4450
+ # },
4451
+ # ],
4452
+ # supported_transform_instance_types: ["ml.m4.xlarge"], # accepts ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, 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.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.12xlarge, ml.m5.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge
4453
+ # supported_realtime_inference_instance_types: ["ml.t2.medium"], # accepts ml.t2.medium, ml.t2.large, ml.t2.xlarge, ml.t2.2xlarge, ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.12xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.12xlarge, ml.m5d.24xlarge, ml.c4.large, 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.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.c5d.large, ml.c5d.xlarge, ml.c5d.2xlarge, ml.c5d.4xlarge, ml.c5d.9xlarge, ml.c5d.18xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.12xlarge, ml.r5.24xlarge, ml.r5d.large, ml.r5d.xlarge, ml.r5d.2xlarge, ml.r5d.4xlarge, ml.r5d.12xlarge, ml.r5d.24xlarge, ml.inf1.xlarge, ml.inf1.2xlarge, ml.inf1.6xlarge, ml.inf1.24xlarge
4454
+ # supported_content_types: ["ContentType"],
4455
+ # supported_response_mime_types: ["ResponseMIMEType"],
4456
+ # },
4457
+ # ],
4179
4458
  # })
4180
4459
  #
4181
4460
  # @example Response structure
@@ -7524,6 +7803,7 @@ module Aws::SageMaker
7524
7803
  # * {Types::DescribeActionResponse#last_modified_time #last_modified_time} => Time
7525
7804
  # * {Types::DescribeActionResponse#last_modified_by #last_modified_by} => Types::UserContext
7526
7805
  # * {Types::DescribeActionResponse#metadata_properties #metadata_properties} => Types::MetadataProperties
7806
+ # * {Types::DescribeActionResponse#lineage_group_arn #lineage_group_arn} => String
7527
7807
  #
7528
7808
  # @example Request syntax with placeholder values
7529
7809
  #
@@ -7555,6 +7835,7 @@ module Aws::SageMaker
7555
7835
  # resp.metadata_properties.repository #=> String
7556
7836
  # resp.metadata_properties.generated_by #=> String
7557
7837
  # resp.metadata_properties.project_id #=> String
7838
+ # resp.lineage_group_arn #=> String
7558
7839
  #
7559
7840
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeAction AWS API Documentation
7560
7841
  #
@@ -7639,6 +7920,10 @@ module Aws::SageMaker
7639
7920
  # resp.inference_specification.containers[0].product_id #=> String
7640
7921
  # resp.inference_specification.containers[0].environment #=> Hash
7641
7922
  # resp.inference_specification.containers[0].environment["EnvironmentKey"] #=> String
7923
+ # resp.inference_specification.containers[0].model_input.data_input_config #=> String
7924
+ # resp.inference_specification.containers[0].framework #=> String
7925
+ # resp.inference_specification.containers[0].framework_version #=> String
7926
+ # resp.inference_specification.containers[0].nearest_model_name #=> String
7642
7927
  # resp.inference_specification.supported_transform_instance_types #=> Array
7643
7928
  # resp.inference_specification.supported_transform_instance_types[0] #=> String, one of "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "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.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge"
7644
7929
  # resp.inference_specification.supported_realtime_inference_instance_types #=> Array
@@ -7836,6 +8121,7 @@ module Aws::SageMaker
7836
8121
  # * {Types::DescribeArtifactResponse#last_modified_time #last_modified_time} => Time
7837
8122
  # * {Types::DescribeArtifactResponse#last_modified_by #last_modified_by} => Types::UserContext
7838
8123
  # * {Types::DescribeArtifactResponse#metadata_properties #metadata_properties} => Types::MetadataProperties
8124
+ # * {Types::DescribeArtifactResponse#lineage_group_arn #lineage_group_arn} => String
7839
8125
  #
7840
8126
  # @example Request syntax with placeholder values
7841
8127
  #
@@ -7866,6 +8152,7 @@ module Aws::SageMaker
7866
8152
  # resp.metadata_properties.repository #=> String
7867
8153
  # resp.metadata_properties.generated_by #=> String
7868
8154
  # resp.metadata_properties.project_id #=> String
8155
+ # resp.lineage_group_arn #=> String
7869
8156
  #
7870
8157
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeArtifact AWS API Documentation
7871
8158
  #
@@ -7920,6 +8207,7 @@ module Aws::SageMaker
7920
8207
  # resp.input_data_config[0].data_source.s3_data_source.s3_uri #=> String
7921
8208
  # resp.input_data_config[0].compression_type #=> String, one of "None", "Gzip"
7922
8209
  # resp.input_data_config[0].target_attribute_name #=> String
8210
+ # resp.input_data_config[0].content_type #=> String
7923
8211
  # resp.output_data_config.kms_key_id #=> String
7924
8212
  # resp.output_data_config.s3_output_path #=> String
7925
8213
  # resp.role_arn #=> String
@@ -8043,6 +8331,7 @@ module Aws::SageMaker
8043
8331
  # * {Types::DescribeCompilationJobResponse#compilation_end_time #compilation_end_time} => Time
8044
8332
  # * {Types::DescribeCompilationJobResponse#stopping_condition #stopping_condition} => Types::StoppingCondition
8045
8333
  # * {Types::DescribeCompilationJobResponse#inference_image #inference_image} => String
8334
+ # * {Types::DescribeCompilationJobResponse#model_package_version_arn #model_package_version_arn} => String
8046
8335
  # * {Types::DescribeCompilationJobResponse#creation_time #creation_time} => Time
8047
8336
  # * {Types::DescribeCompilationJobResponse#last_modified_time #last_modified_time} => Time
8048
8337
  # * {Types::DescribeCompilationJobResponse#failure_reason #failure_reason} => String
@@ -8069,6 +8358,7 @@ module Aws::SageMaker
8069
8358
  # resp.stopping_condition.max_runtime_in_seconds #=> Integer
8070
8359
  # resp.stopping_condition.max_wait_time_in_seconds #=> Integer
8071
8360
  # resp.inference_image #=> String
8361
+ # resp.model_package_version_arn #=> String
8072
8362
  # resp.creation_time #=> Time
8073
8363
  # resp.last_modified_time #=> Time
8074
8364
  # resp.failure_reason #=> String
@@ -8080,7 +8370,7 @@ module Aws::SageMaker
8080
8370
  # resp.input_config.framework #=> String, one of "TENSORFLOW", "KERAS", "MXNET", "ONNX", "PYTORCH", "XGBOOST", "TFLITE", "DARKNET", "SKLEARN"
8081
8371
  # resp.input_config.framework_version #=> String
8082
8372
  # resp.output_config.s3_output_location #=> String
8083
- # 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"
8373
+ # 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"
8084
8374
  # resp.output_config.target_platform.os #=> String, one of "ANDROID", "LINUX"
8085
8375
  # resp.output_config.target_platform.arch #=> String, one of "X86_64", "X86", "ARM64", "ARM_EABI", "ARM_EABIHF"
8086
8376
  # resp.output_config.target_platform.accelerator #=> String, one of "INTEL_GRAPHICS", "MALI", "NVIDIA"
@@ -8117,11 +8407,12 @@ module Aws::SageMaker
8117
8407
  # * {Types::DescribeContextResponse#created_by #created_by} => Types::UserContext
8118
8408
  # * {Types::DescribeContextResponse#last_modified_time #last_modified_time} => Time
8119
8409
  # * {Types::DescribeContextResponse#last_modified_by #last_modified_by} => Types::UserContext
8410
+ # * {Types::DescribeContextResponse#lineage_group_arn #lineage_group_arn} => String
8120
8411
  #
8121
8412
  # @example Request syntax with placeholder values
8122
8413
  #
8123
8414
  # resp = client.describe_context({
8124
- # context_name: "ExperimentEntityName", # required
8415
+ # context_name: "ExperimentEntityNameOrArn", # required
8125
8416
  # })
8126
8417
  #
8127
8418
  # @example Response structure
@@ -8143,6 +8434,7 @@ module Aws::SageMaker
8143
8434
  # resp.last_modified_by.user_profile_arn #=> String
8144
8435
  # resp.last_modified_by.user_profile_name #=> String
8145
8436
  # resp.last_modified_by.domain_id #=> String
8437
+ # resp.lineage_group_arn #=> String
8146
8438
  #
8147
8439
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeContext AWS API Documentation
8148
8440
  #
@@ -8546,6 +8838,10 @@ module Aws::SageMaker
8546
8838
  # resp.production_variants[0].variant_status[0].status #=> String, one of "Creating", "Updating", "Deleting", "ActivatingTraffic", "Baking"
8547
8839
  # resp.production_variants[0].variant_status[0].status_message #=> String
8548
8840
  # resp.production_variants[0].variant_status[0].start_time #=> Time
8841
+ # resp.production_variants[0].current_serverless_config.memory_size_in_mb #=> Integer
8842
+ # resp.production_variants[0].current_serverless_config.max_concurrency #=> Integer
8843
+ # resp.production_variants[0].desired_serverless_config.memory_size_in_mb #=> Integer
8844
+ # resp.production_variants[0].desired_serverless_config.max_concurrency #=> Integer
8549
8845
  # resp.data_capture_config.enable_capture #=> Boolean
8550
8846
  # resp.data_capture_config.capture_status #=> String, one of "Started", "Stopped"
8551
8847
  # resp.data_capture_config.current_sampling_percentage #=> Integer
@@ -8587,6 +8883,10 @@ module Aws::SageMaker
8587
8883
  # resp.pending_deployment_summary.production_variants[0].variant_status[0].status #=> String, one of "Creating", "Updating", "Deleting", "ActivatingTraffic", "Baking"
8588
8884
  # resp.pending_deployment_summary.production_variants[0].variant_status[0].status_message #=> String
8589
8885
  # resp.pending_deployment_summary.production_variants[0].variant_status[0].start_time #=> Time
8886
+ # resp.pending_deployment_summary.production_variants[0].current_serverless_config.memory_size_in_mb #=> Integer
8887
+ # resp.pending_deployment_summary.production_variants[0].current_serverless_config.max_concurrency #=> Integer
8888
+ # resp.pending_deployment_summary.production_variants[0].desired_serverless_config.memory_size_in_mb #=> Integer
8889
+ # resp.pending_deployment_summary.production_variants[0].desired_serverless_config.max_concurrency #=> Integer
8590
8890
  # resp.pending_deployment_summary.start_time #=> Time
8591
8891
  #
8592
8892
  #
@@ -8639,6 +8939,8 @@ module Aws::SageMaker
8639
8939
  # resp.production_variants[0].accelerator_type #=> String, one of "ml.eia1.medium", "ml.eia1.large", "ml.eia1.xlarge", "ml.eia2.medium", "ml.eia2.large", "ml.eia2.xlarge"
8640
8940
  # resp.production_variants[0].core_dump_config.destination_s3_uri #=> String
8641
8941
  # resp.production_variants[0].core_dump_config.kms_key_id #=> String
8942
+ # resp.production_variants[0].serverless_config.memory_size_in_mb #=> Integer
8943
+ # resp.production_variants[0].serverless_config.max_concurrency #=> Integer
8642
8944
  # resp.data_capture_config.enable_capture #=> Boolean
8643
8945
  # resp.data_capture_config.initial_sampling_percentage #=> Integer
8644
8946
  # resp.data_capture_config.destination_s3_uri #=> String
@@ -9220,6 +9522,91 @@ module Aws::SageMaker
9220
9522
  req.send_request(options)
9221
9523
  end
9222
9524
 
9525
+ # Provides the results of the Inference Recommender job. One or more
9526
+ # recommendation jobs are returned.
9527
+ #
9528
+ # @option params [required, String] :job_name
9529
+ # The name of the job. The name must be unique within an Amazon Web
9530
+ # Services Region in the Amazon Web Services account.
9531
+ #
9532
+ # @return [Types::DescribeInferenceRecommendationsJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9533
+ #
9534
+ # * {Types::DescribeInferenceRecommendationsJobResponse#job_name #job_name} => String
9535
+ # * {Types::DescribeInferenceRecommendationsJobResponse#job_description #job_description} => String
9536
+ # * {Types::DescribeInferenceRecommendationsJobResponse#job_type #job_type} => String
9537
+ # * {Types::DescribeInferenceRecommendationsJobResponse#job_arn #job_arn} => String
9538
+ # * {Types::DescribeInferenceRecommendationsJobResponse#role_arn #role_arn} => String
9539
+ # * {Types::DescribeInferenceRecommendationsJobResponse#status #status} => String
9540
+ # * {Types::DescribeInferenceRecommendationsJobResponse#creation_time #creation_time} => Time
9541
+ # * {Types::DescribeInferenceRecommendationsJobResponse#completion_time #completion_time} => Time
9542
+ # * {Types::DescribeInferenceRecommendationsJobResponse#last_modified_time #last_modified_time} => Time
9543
+ # * {Types::DescribeInferenceRecommendationsJobResponse#failure_reason #failure_reason} => String
9544
+ # * {Types::DescribeInferenceRecommendationsJobResponse#input_config #input_config} => Types::RecommendationJobInputConfig
9545
+ # * {Types::DescribeInferenceRecommendationsJobResponse#stopping_conditions #stopping_conditions} => Types::RecommendationJobStoppingConditions
9546
+ # * {Types::DescribeInferenceRecommendationsJobResponse#inference_recommendations #inference_recommendations} => Array&lt;Types::InferenceRecommendation&gt;
9547
+ #
9548
+ # @example Request syntax with placeholder values
9549
+ #
9550
+ # resp = client.describe_inference_recommendations_job({
9551
+ # job_name: "RecommendationJobName", # required
9552
+ # })
9553
+ #
9554
+ # @example Response structure
9555
+ #
9556
+ # resp.job_name #=> String
9557
+ # resp.job_description #=> String
9558
+ # resp.job_type #=> String, one of "Default", "Advanced"
9559
+ # resp.job_arn #=> String
9560
+ # resp.role_arn #=> String
9561
+ # resp.status #=> String, one of "PENDING", "IN_PROGRESS", "COMPLETED", "FAILED", "STOPPING", "STOPPED"
9562
+ # resp.creation_time #=> Time
9563
+ # resp.completion_time #=> Time
9564
+ # resp.last_modified_time #=> Time
9565
+ # resp.failure_reason #=> String
9566
+ # resp.input_config.model_package_version_arn #=> String
9567
+ # resp.input_config.job_duration_in_seconds #=> Integer
9568
+ # resp.input_config.traffic_pattern.traffic_type #=> String, one of "PHASES"
9569
+ # resp.input_config.traffic_pattern.phases #=> Array
9570
+ # resp.input_config.traffic_pattern.phases[0].initial_number_of_users #=> Integer
9571
+ # resp.input_config.traffic_pattern.phases[0].spawn_rate #=> Integer
9572
+ # resp.input_config.traffic_pattern.phases[0].duration_in_seconds #=> Integer
9573
+ # resp.input_config.resource_limit.max_number_of_tests #=> Integer
9574
+ # resp.input_config.resource_limit.max_parallel_of_tests #=> Integer
9575
+ # resp.input_config.endpoint_configurations #=> Array
9576
+ # resp.input_config.endpoint_configurations[0].instance_type #=> String, one of "ml.t2.medium", "ml.t2.large", "ml.t2.xlarge", "ml.t2.2xlarge", "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "ml.m5d.large", "ml.m5d.xlarge", "ml.m5d.2xlarge", "ml.m5d.4xlarge", "ml.m5d.12xlarge", "ml.m5d.24xlarge", "ml.c4.large", "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.c5.large", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.c5d.large", "ml.c5d.xlarge", "ml.c5d.2xlarge", "ml.c5d.4xlarge", "ml.c5d.9xlarge", "ml.c5d.18xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge", "ml.r5.large", "ml.r5.xlarge", "ml.r5.2xlarge", "ml.r5.4xlarge", "ml.r5.12xlarge", "ml.r5.24xlarge", "ml.r5d.large", "ml.r5d.xlarge", "ml.r5d.2xlarge", "ml.r5d.4xlarge", "ml.r5d.12xlarge", "ml.r5d.24xlarge", "ml.inf1.xlarge", "ml.inf1.2xlarge", "ml.inf1.6xlarge", "ml.inf1.24xlarge"
9577
+ # resp.input_config.endpoint_configurations[0].inference_specification_name #=> String
9578
+ # resp.input_config.endpoint_configurations[0].environment_parameter_ranges.categorical_parameter_ranges #=> Array
9579
+ # resp.input_config.endpoint_configurations[0].environment_parameter_ranges.categorical_parameter_ranges[0].name #=> String
9580
+ # resp.input_config.endpoint_configurations[0].environment_parameter_ranges.categorical_parameter_ranges[0].value #=> Array
9581
+ # resp.input_config.endpoint_configurations[0].environment_parameter_ranges.categorical_parameter_ranges[0].value[0] #=> String
9582
+ # resp.stopping_conditions.max_invocations #=> Integer
9583
+ # resp.stopping_conditions.model_latency_thresholds #=> Array
9584
+ # resp.stopping_conditions.model_latency_thresholds[0].percentile #=> String
9585
+ # resp.stopping_conditions.model_latency_thresholds[0].value_in_milliseconds #=> Integer
9586
+ # resp.inference_recommendations #=> Array
9587
+ # resp.inference_recommendations[0].metrics.cost_per_hour #=> Float
9588
+ # resp.inference_recommendations[0].metrics.cost_per_inference #=> Float
9589
+ # resp.inference_recommendations[0].metrics.max_invocations #=> Integer
9590
+ # resp.inference_recommendations[0].metrics.model_latency #=> Integer
9591
+ # resp.inference_recommendations[0].endpoint_configuration.endpoint_name #=> String
9592
+ # resp.inference_recommendations[0].endpoint_configuration.variant_name #=> String
9593
+ # resp.inference_recommendations[0].endpoint_configuration.instance_type #=> String, one of "ml.t2.medium", "ml.t2.large", "ml.t2.xlarge", "ml.t2.2xlarge", "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "ml.m5d.large", "ml.m5d.xlarge", "ml.m5d.2xlarge", "ml.m5d.4xlarge", "ml.m5d.12xlarge", "ml.m5d.24xlarge", "ml.c4.large", "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.c5.large", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.c5d.large", "ml.c5d.xlarge", "ml.c5d.2xlarge", "ml.c5d.4xlarge", "ml.c5d.9xlarge", "ml.c5d.18xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge", "ml.r5.large", "ml.r5.xlarge", "ml.r5.2xlarge", "ml.r5.4xlarge", "ml.r5.12xlarge", "ml.r5.24xlarge", "ml.r5d.large", "ml.r5d.xlarge", "ml.r5d.2xlarge", "ml.r5d.4xlarge", "ml.r5d.12xlarge", "ml.r5d.24xlarge", "ml.inf1.xlarge", "ml.inf1.2xlarge", "ml.inf1.6xlarge", "ml.inf1.24xlarge"
9594
+ # resp.inference_recommendations[0].endpoint_configuration.initial_instance_count #=> Integer
9595
+ # resp.inference_recommendations[0].model_configuration.inference_specification_name #=> String
9596
+ # resp.inference_recommendations[0].model_configuration.environment_parameters #=> Array
9597
+ # resp.inference_recommendations[0].model_configuration.environment_parameters[0].key #=> String
9598
+ # resp.inference_recommendations[0].model_configuration.environment_parameters[0].value_type #=> String
9599
+ # resp.inference_recommendations[0].model_configuration.environment_parameters[0].value #=> String
9600
+ #
9601
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeInferenceRecommendationsJob AWS API Documentation
9602
+ #
9603
+ # @overload describe_inference_recommendations_job(params = {})
9604
+ # @param [Hash] params ({})
9605
+ def describe_inference_recommendations_job(params = {}, options = {})
9606
+ req = build_request(:describe_inference_recommendations_job, params)
9607
+ req.send_request(options)
9608
+ end
9609
+
9223
9610
  # Gets information about a labeling job.
9224
9611
  #
9225
9612
  # @option params [required, String] :labeling_job_name
@@ -9312,6 +9699,58 @@ module Aws::SageMaker
9312
9699
  req.send_request(options)
9313
9700
  end
9314
9701
 
9702
+ # Provides a list of properties for the requested lineage group. For
9703
+ # more information, see [ Cross-Account Lineage Tracking ][1] in the
9704
+ # *Amazon SageMaker Developer Guide*.
9705
+ #
9706
+ #
9707
+ #
9708
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/xaccount-lineage-tracking.html
9709
+ #
9710
+ # @option params [required, String] :lineage_group_name
9711
+ # The name of the lineage group.
9712
+ #
9713
+ # @return [Types::DescribeLineageGroupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9714
+ #
9715
+ # * {Types::DescribeLineageGroupResponse#lineage_group_name #lineage_group_name} => String
9716
+ # * {Types::DescribeLineageGroupResponse#lineage_group_arn #lineage_group_arn} => String
9717
+ # * {Types::DescribeLineageGroupResponse#display_name #display_name} => String
9718
+ # * {Types::DescribeLineageGroupResponse#description #description} => String
9719
+ # * {Types::DescribeLineageGroupResponse#creation_time #creation_time} => Time
9720
+ # * {Types::DescribeLineageGroupResponse#created_by #created_by} => Types::UserContext
9721
+ # * {Types::DescribeLineageGroupResponse#last_modified_time #last_modified_time} => Time
9722
+ # * {Types::DescribeLineageGroupResponse#last_modified_by #last_modified_by} => Types::UserContext
9723
+ #
9724
+ # @example Request syntax with placeholder values
9725
+ #
9726
+ # resp = client.describe_lineage_group({
9727
+ # lineage_group_name: "ExperimentEntityName", # required
9728
+ # })
9729
+ #
9730
+ # @example Response structure
9731
+ #
9732
+ # resp.lineage_group_name #=> String
9733
+ # resp.lineage_group_arn #=> String
9734
+ # resp.display_name #=> String
9735
+ # resp.description #=> String
9736
+ # resp.creation_time #=> Time
9737
+ # resp.created_by.user_profile_arn #=> String
9738
+ # resp.created_by.user_profile_name #=> String
9739
+ # resp.created_by.domain_id #=> String
9740
+ # resp.last_modified_time #=> Time
9741
+ # resp.last_modified_by.user_profile_arn #=> String
9742
+ # resp.last_modified_by.user_profile_name #=> String
9743
+ # resp.last_modified_by.domain_id #=> String
9744
+ #
9745
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeLineageGroup AWS API Documentation
9746
+ #
9747
+ # @overload describe_lineage_group(params = {})
9748
+ # @param [Hash] params ({})
9749
+ def describe_lineage_group(params = {}, options = {})
9750
+ req = build_request(:describe_lineage_group, params)
9751
+ req.send_request(options)
9752
+ end
9753
+
9315
9754
  # Describes a model that you created using the `CreateModel` API.
9316
9755
  #
9317
9756
  # @option params [required, String] :model_name
@@ -9347,6 +9786,7 @@ module Aws::SageMaker
9347
9786
  # resp.primary_container.environment #=> Hash
9348
9787
  # resp.primary_container.environment["EnvironmentKey"] #=> String
9349
9788
  # resp.primary_container.model_package_name #=> String
9789
+ # resp.primary_container.inference_specification_name #=> String
9350
9790
  # resp.primary_container.multi_model_config.model_cache_setting #=> String, one of "Enabled", "Disabled"
9351
9791
  # resp.containers #=> Array
9352
9792
  # resp.containers[0].container_hostname #=> String
@@ -9358,6 +9798,7 @@ module Aws::SageMaker
9358
9798
  # resp.containers[0].environment #=> Hash
9359
9799
  # resp.containers[0].environment["EnvironmentKey"] #=> String
9360
9800
  # resp.containers[0].model_package_name #=> String
9801
+ # resp.containers[0].inference_specification_name #=> String
9361
9802
  # resp.containers[0].multi_model_config.model_cache_setting #=> String, one of "Enabled", "Disabled"
9362
9803
  # resp.inference_execution_config.mode #=> String, one of "Serial", "Direct"
9363
9804
  # resp.execution_role_arn #=> String
@@ -9565,6 +10006,11 @@ module Aws::SageMaker
9565
10006
  # * {Types::DescribeModelPackageOutput#last_modified_by #last_modified_by} => Types::UserContext
9566
10007
  # * {Types::DescribeModelPackageOutput#approval_description #approval_description} => String
9567
10008
  # * {Types::DescribeModelPackageOutput#customer_metadata_properties #customer_metadata_properties} => Hash&lt;String,String&gt;
10009
+ # * {Types::DescribeModelPackageOutput#drift_check_baselines #drift_check_baselines} => Types::DriftCheckBaselines
10010
+ # * {Types::DescribeModelPackageOutput#domain #domain} => String
10011
+ # * {Types::DescribeModelPackageOutput#task #task} => String
10012
+ # * {Types::DescribeModelPackageOutput#sample_payload_url #sample_payload_url} => String
10013
+ # * {Types::DescribeModelPackageOutput#additional_inference_specifications #additional_inference_specifications} => Array&lt;Types::AdditionalInferenceSpecificationDefinition&gt;
9568
10014
  #
9569
10015
  # @example Request syntax with placeholder values
9570
10016
  #
@@ -9588,6 +10034,10 @@ module Aws::SageMaker
9588
10034
  # resp.inference_specification.containers[0].product_id #=> String
9589
10035
  # resp.inference_specification.containers[0].environment #=> Hash
9590
10036
  # resp.inference_specification.containers[0].environment["EnvironmentKey"] #=> String
10037
+ # resp.inference_specification.containers[0].model_input.data_input_config #=> String
10038
+ # resp.inference_specification.containers[0].framework #=> String
10039
+ # resp.inference_specification.containers[0].framework_version #=> String
10040
+ # resp.inference_specification.containers[0].nearest_model_name #=> String
9591
10041
  # resp.inference_specification.supported_transform_instance_types #=> Array
9592
10042
  # resp.inference_specification.supported_transform_instance_types[0] #=> String, one of "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "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.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge"
9593
10043
  # resp.inference_specification.supported_realtime_inference_instance_types #=> Array
@@ -9652,6 +10102,12 @@ module Aws::SageMaker
9652
10102
  # resp.model_metrics.bias.report.content_type #=> String
9653
10103
  # resp.model_metrics.bias.report.content_digest #=> String
9654
10104
  # resp.model_metrics.bias.report.s3_uri #=> String
10105
+ # resp.model_metrics.bias.pre_training_report.content_type #=> String
10106
+ # resp.model_metrics.bias.pre_training_report.content_digest #=> String
10107
+ # resp.model_metrics.bias.pre_training_report.s3_uri #=> String
10108
+ # resp.model_metrics.bias.post_training_report.content_type #=> String
10109
+ # resp.model_metrics.bias.post_training_report.content_digest #=> String
10110
+ # resp.model_metrics.bias.post_training_report.s3_uri #=> String
9655
10111
  # resp.model_metrics.explainability.report.content_type #=> String
9656
10112
  # resp.model_metrics.explainability.report.content_digest #=> String
9657
10113
  # resp.model_metrics.explainability.report.s3_uri #=> String
@@ -9662,6 +10118,59 @@ module Aws::SageMaker
9662
10118
  # resp.approval_description #=> String
9663
10119
  # resp.customer_metadata_properties #=> Hash
9664
10120
  # resp.customer_metadata_properties["CustomerMetadataKey"] #=> String
10121
+ # resp.drift_check_baselines.bias.config_file.content_type #=> String
10122
+ # resp.drift_check_baselines.bias.config_file.content_digest #=> String
10123
+ # resp.drift_check_baselines.bias.config_file.s3_uri #=> String
10124
+ # resp.drift_check_baselines.bias.pre_training_constraints.content_type #=> String
10125
+ # resp.drift_check_baselines.bias.pre_training_constraints.content_digest #=> String
10126
+ # resp.drift_check_baselines.bias.pre_training_constraints.s3_uri #=> String
10127
+ # resp.drift_check_baselines.bias.post_training_constraints.content_type #=> String
10128
+ # resp.drift_check_baselines.bias.post_training_constraints.content_digest #=> String
10129
+ # resp.drift_check_baselines.bias.post_training_constraints.s3_uri #=> String
10130
+ # resp.drift_check_baselines.explainability.constraints.content_type #=> String
10131
+ # resp.drift_check_baselines.explainability.constraints.content_digest #=> String
10132
+ # resp.drift_check_baselines.explainability.constraints.s3_uri #=> String
10133
+ # resp.drift_check_baselines.explainability.config_file.content_type #=> String
10134
+ # resp.drift_check_baselines.explainability.config_file.content_digest #=> String
10135
+ # resp.drift_check_baselines.explainability.config_file.s3_uri #=> String
10136
+ # resp.drift_check_baselines.model_quality.statistics.content_type #=> String
10137
+ # resp.drift_check_baselines.model_quality.statistics.content_digest #=> String
10138
+ # resp.drift_check_baselines.model_quality.statistics.s3_uri #=> String
10139
+ # resp.drift_check_baselines.model_quality.constraints.content_type #=> String
10140
+ # resp.drift_check_baselines.model_quality.constraints.content_digest #=> String
10141
+ # resp.drift_check_baselines.model_quality.constraints.s3_uri #=> String
10142
+ # resp.drift_check_baselines.model_data_quality.statistics.content_type #=> String
10143
+ # resp.drift_check_baselines.model_data_quality.statistics.content_digest #=> String
10144
+ # resp.drift_check_baselines.model_data_quality.statistics.s3_uri #=> String
10145
+ # resp.drift_check_baselines.model_data_quality.constraints.content_type #=> String
10146
+ # resp.drift_check_baselines.model_data_quality.constraints.content_digest #=> String
10147
+ # resp.drift_check_baselines.model_data_quality.constraints.s3_uri #=> String
10148
+ # resp.domain #=> String
10149
+ # resp.task #=> String
10150
+ # resp.sample_payload_url #=> String
10151
+ # resp.additional_inference_specifications #=> Array
10152
+ # resp.additional_inference_specifications[0].name #=> String
10153
+ # resp.additional_inference_specifications[0].description #=> String
10154
+ # resp.additional_inference_specifications[0].containers #=> Array
10155
+ # resp.additional_inference_specifications[0].containers[0].container_hostname #=> String
10156
+ # resp.additional_inference_specifications[0].containers[0].image #=> String
10157
+ # resp.additional_inference_specifications[0].containers[0].image_digest #=> String
10158
+ # resp.additional_inference_specifications[0].containers[0].model_data_url #=> String
10159
+ # resp.additional_inference_specifications[0].containers[0].product_id #=> String
10160
+ # resp.additional_inference_specifications[0].containers[0].environment #=> Hash
10161
+ # resp.additional_inference_specifications[0].containers[0].environment["EnvironmentKey"] #=> String
10162
+ # resp.additional_inference_specifications[0].containers[0].model_input.data_input_config #=> String
10163
+ # resp.additional_inference_specifications[0].containers[0].framework #=> String
10164
+ # resp.additional_inference_specifications[0].containers[0].framework_version #=> String
10165
+ # resp.additional_inference_specifications[0].containers[0].nearest_model_name #=> String
10166
+ # resp.additional_inference_specifications[0].supported_transform_instance_types #=> Array
10167
+ # resp.additional_inference_specifications[0].supported_transform_instance_types[0] #=> String, one of "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "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.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge"
10168
+ # resp.additional_inference_specifications[0].supported_realtime_inference_instance_types #=> Array
10169
+ # resp.additional_inference_specifications[0].supported_realtime_inference_instance_types[0] #=> String, one of "ml.t2.medium", "ml.t2.large", "ml.t2.xlarge", "ml.t2.2xlarge", "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "ml.m5d.large", "ml.m5d.xlarge", "ml.m5d.2xlarge", "ml.m5d.4xlarge", "ml.m5d.12xlarge", "ml.m5d.24xlarge", "ml.c4.large", "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.c5.large", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.c5d.large", "ml.c5d.xlarge", "ml.c5d.2xlarge", "ml.c5d.4xlarge", "ml.c5d.9xlarge", "ml.c5d.18xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge", "ml.r5.large", "ml.r5.xlarge", "ml.r5.2xlarge", "ml.r5.4xlarge", "ml.r5.12xlarge", "ml.r5.24xlarge", "ml.r5d.large", "ml.r5d.xlarge", "ml.r5d.2xlarge", "ml.r5d.4xlarge", "ml.r5d.12xlarge", "ml.r5d.24xlarge", "ml.inf1.xlarge", "ml.inf1.2xlarge", "ml.inf1.6xlarge", "ml.inf1.24xlarge"
10170
+ # resp.additional_inference_specifications[0].supported_content_types #=> Array
10171
+ # resp.additional_inference_specifications[0].supported_content_types[0] #=> String
10172
+ # resp.additional_inference_specifications[0].supported_response_mime_types #=> Array
10173
+ # resp.additional_inference_specifications[0].supported_response_mime_types[0] #=> String
9665
10174
  #
9666
10175
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeModelPackage AWS API Documentation
9667
10176
  #
@@ -10765,11 +11274,12 @@ module Aws::SageMaker
10765
11274
  # * {Types::DescribeTrialComponentResponse#output_artifacts #output_artifacts} => Hash&lt;String,Types::TrialComponentArtifact&gt;
10766
11275
  # * {Types::DescribeTrialComponentResponse#metadata_properties #metadata_properties} => Types::MetadataProperties
10767
11276
  # * {Types::DescribeTrialComponentResponse#metrics #metrics} => Array&lt;Types::TrialComponentMetricSummary&gt;
11277
+ # * {Types::DescribeTrialComponentResponse#lineage_group_arn #lineage_group_arn} => String
10768
11278
  #
10769
11279
  # @example Request syntax with placeholder values
10770
11280
  #
10771
11281
  # resp = client.describe_trial_component({
10772
- # trial_component_name: "ExperimentEntityName", # required
11282
+ # trial_component_name: "ExperimentEntityNameOrArn", # required
10773
11283
  # })
10774
11284
  #
10775
11285
  # @example Response structure
@@ -10814,6 +11324,7 @@ module Aws::SageMaker
10814
11324
  # resp.metrics[0].count #=> Integer
10815
11325
  # resp.metrics[0].avg #=> Float
10816
11326
  # resp.metrics[0].std_dev #=> Float
11327
+ # resp.lineage_group_arn #=> String
10817
11328
  #
10818
11329
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeTrialComponent AWS API Documentation
10819
11330
  #
@@ -11128,6 +11639,36 @@ module Aws::SageMaker
11128
11639
  req.send_request(options)
11129
11640
  end
11130
11641
 
11642
+ # The resource policy for the lineage group.
11643
+ #
11644
+ # @option params [required, String] :lineage_group_name
11645
+ # The name or Amazon Resource Name (ARN) of the lineage group.
11646
+ #
11647
+ # @return [Types::GetLineageGroupPolicyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
11648
+ #
11649
+ # * {Types::GetLineageGroupPolicyResponse#lineage_group_arn #lineage_group_arn} => String
11650
+ # * {Types::GetLineageGroupPolicyResponse#resource_policy #resource_policy} => String
11651
+ #
11652
+ # @example Request syntax with placeholder values
11653
+ #
11654
+ # resp = client.get_lineage_group_policy({
11655
+ # lineage_group_name: "LineageGroupNameOrArn", # required
11656
+ # })
11657
+ #
11658
+ # @example Response structure
11659
+ #
11660
+ # resp.lineage_group_arn #=> String
11661
+ # resp.resource_policy #=> String
11662
+ #
11663
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/GetLineageGroupPolicy AWS API Documentation
11664
+ #
11665
+ # @overload get_lineage_group_policy(params = {})
11666
+ # @param [Hash] params ({})
11667
+ def get_lineage_group_policy(params = {}, options = {})
11668
+ req = build_request(:get_lineage_group_policy, params)
11669
+ req.send_request(options)
11670
+ end
11671
+
11131
11672
  # Gets a resource policy that manages access for a model group. For
11132
11673
  # information about resource policies, see [Identity-based policies and
11133
11674
  # resource-based policies][1] in the *Amazon Web Services Identity and
@@ -11990,7 +12531,7 @@ module Aws::SageMaker
11990
12531
  # resp.compilation_job_summaries[0].creation_time #=> Time
11991
12532
  # resp.compilation_job_summaries[0].compilation_start_time #=> Time
11992
12533
  # resp.compilation_job_summaries[0].compilation_end_time #=> Time
11993
- # 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"
12534
+ # 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"
11994
12535
  # resp.compilation_job_summaries[0].compilation_target_platform_os #=> String, one of "ANDROID", "LINUX"
11995
12536
  # resp.compilation_job_summaries[0].compilation_target_platform_arch #=> String, one of "X86_64", "X86", "ARM64", "ARM_EABI", "ARM_EABIHF"
11996
12537
  # resp.compilation_job_summaries[0].compilation_target_platform_accelerator #=> String, one of "INTEL_GRAPHICS", "MALI", "NVIDIA"
@@ -13066,6 +13607,93 @@ module Aws::SageMaker
13066
13607
  req.send_request(options)
13067
13608
  end
13068
13609
 
13610
+ # Lists recommendation jobs that satisfy various filters.
13611
+ #
13612
+ # @option params [Time,DateTime,Date,Integer,String] :creation_time_after
13613
+ # A filter that returns only jobs created after the specified time
13614
+ # (timestamp).
13615
+ #
13616
+ # @option params [Time,DateTime,Date,Integer,String] :creation_time_before
13617
+ # A filter that returns only jobs created before the specified time
13618
+ # (timestamp).
13619
+ #
13620
+ # @option params [Time,DateTime,Date,Integer,String] :last_modified_time_after
13621
+ # A filter that returns only jobs that were last modified after the
13622
+ # specified time (timestamp).
13623
+ #
13624
+ # @option params [Time,DateTime,Date,Integer,String] :last_modified_time_before
13625
+ # A filter that returns only jobs that were last modified before the
13626
+ # specified time (timestamp).
13627
+ #
13628
+ # @option params [String] :name_contains
13629
+ # A string in the job name. This filter returns only recommendations
13630
+ # whose name contains the specified string.
13631
+ #
13632
+ # @option params [String] :status_equals
13633
+ # A filter that retrieves only inference recommendations jobs with a
13634
+ # specific status.
13635
+ #
13636
+ # @option params [String] :sort_by
13637
+ # The parameter by which to sort the results.
13638
+ #
13639
+ # @option params [String] :sort_order
13640
+ # The sort order for the results.
13641
+ #
13642
+ # @option params [String] :next_token
13643
+ # If the response to a previous
13644
+ # `ListInferenceRecommendationsJobsRequest` request was truncated, the
13645
+ # response includes a `NextToken`. To retrieve the next set of
13646
+ # recommendations, use the token in the next request.
13647
+ #
13648
+ # @option params [Integer] :max_results
13649
+ # The maximum number of recommendations to return in the response.
13650
+ #
13651
+ # @return [Types::ListInferenceRecommendationsJobsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
13652
+ #
13653
+ # * {Types::ListInferenceRecommendationsJobsResponse#inference_recommendations_jobs #inference_recommendations_jobs} => Array&lt;Types::InferenceRecommendationsJob&gt;
13654
+ # * {Types::ListInferenceRecommendationsJobsResponse#next_token #next_token} => String
13655
+ #
13656
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
13657
+ #
13658
+ # @example Request syntax with placeholder values
13659
+ #
13660
+ # resp = client.list_inference_recommendations_jobs({
13661
+ # creation_time_after: Time.now,
13662
+ # creation_time_before: Time.now,
13663
+ # last_modified_time_after: Time.now,
13664
+ # last_modified_time_before: Time.now,
13665
+ # name_contains: "NameContains",
13666
+ # status_equals: "PENDING", # accepts PENDING, IN_PROGRESS, COMPLETED, FAILED, STOPPING, STOPPED
13667
+ # sort_by: "Name", # accepts Name, CreationTime, Status
13668
+ # sort_order: "Ascending", # accepts Ascending, Descending
13669
+ # next_token: "NextToken",
13670
+ # max_results: 1,
13671
+ # })
13672
+ #
13673
+ # @example Response structure
13674
+ #
13675
+ # resp.inference_recommendations_jobs #=> Array
13676
+ # resp.inference_recommendations_jobs[0].job_name #=> String
13677
+ # resp.inference_recommendations_jobs[0].job_description #=> String
13678
+ # resp.inference_recommendations_jobs[0].job_type #=> String, one of "Default", "Advanced"
13679
+ # resp.inference_recommendations_jobs[0].job_arn #=> String
13680
+ # resp.inference_recommendations_jobs[0].status #=> String, one of "PENDING", "IN_PROGRESS", "COMPLETED", "FAILED", "STOPPING", "STOPPED"
13681
+ # resp.inference_recommendations_jobs[0].creation_time #=> Time
13682
+ # resp.inference_recommendations_jobs[0].completion_time #=> Time
13683
+ # resp.inference_recommendations_jobs[0].role_arn #=> String
13684
+ # resp.inference_recommendations_jobs[0].last_modified_time #=> Time
13685
+ # resp.inference_recommendations_jobs[0].failure_reason #=> String
13686
+ # resp.next_token #=> String
13687
+ #
13688
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListInferenceRecommendationsJobs AWS API Documentation
13689
+ #
13690
+ # @overload list_inference_recommendations_jobs(params = {})
13691
+ # @param [Hash] params ({})
13692
+ def list_inference_recommendations_jobs(params = {}, options = {})
13693
+ req = build_request(:list_inference_recommendations_jobs, params)
13694
+ req.send_request(options)
13695
+ end
13696
+
13069
13697
  # Gets a list of labeling jobs.
13070
13698
  #
13071
13699
  # @option params [Time,DateTime,Date,Integer,String] :creation_time_after
@@ -13237,6 +13865,74 @@ module Aws::SageMaker
13237
13865
  req.send_request(options)
13238
13866
  end
13239
13867
 
13868
+ # A list of lineage groups shared with your Amazon Web Services account.
13869
+ # For more information, see [ Cross-Account Lineage Tracking ][1] in the
13870
+ # *Amazon SageMaker Developer Guide*.
13871
+ #
13872
+ #
13873
+ #
13874
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/xaccount-lineage-tracking.html
13875
+ #
13876
+ # @option params [Time,DateTime,Date,Integer,String] :created_after
13877
+ # A timestamp to filter against lineage groups created after a certain
13878
+ # point in time.
13879
+ #
13880
+ # @option params [Time,DateTime,Date,Integer,String] :created_before
13881
+ # A timestamp to filter against lineage groups created before a certain
13882
+ # point in time.
13883
+ #
13884
+ # @option params [String] :sort_by
13885
+ # The parameter by which to sort the results. The default is
13886
+ # `CreationTime`.
13887
+ #
13888
+ # @option params [String] :sort_order
13889
+ # The sort order for the results. The default is `Ascending`.
13890
+ #
13891
+ # @option params [String] :next_token
13892
+ # If the response is truncated, SageMaker returns this token. To
13893
+ # retrieve the next set of algorithms, use it in the subsequent request.
13894
+ #
13895
+ # @option params [Integer] :max_results
13896
+ # The maximum number of endpoints to return in the response. This value
13897
+ # defaults to 10.
13898
+ #
13899
+ # @return [Types::ListLineageGroupsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
13900
+ #
13901
+ # * {Types::ListLineageGroupsResponse#lineage_group_summaries #lineage_group_summaries} => Array&lt;Types::LineageGroupSummary&gt;
13902
+ # * {Types::ListLineageGroupsResponse#next_token #next_token} => String
13903
+ #
13904
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
13905
+ #
13906
+ # @example Request syntax with placeholder values
13907
+ #
13908
+ # resp = client.list_lineage_groups({
13909
+ # created_after: Time.now,
13910
+ # created_before: Time.now,
13911
+ # sort_by: "Name", # accepts Name, CreationTime
13912
+ # sort_order: "Ascending", # accepts Ascending, Descending
13913
+ # next_token: "NextToken",
13914
+ # max_results: 1,
13915
+ # })
13916
+ #
13917
+ # @example Response structure
13918
+ #
13919
+ # resp.lineage_group_summaries #=> Array
13920
+ # resp.lineage_group_summaries[0].lineage_group_arn #=> String
13921
+ # resp.lineage_group_summaries[0].lineage_group_name #=> String
13922
+ # resp.lineage_group_summaries[0].display_name #=> String
13923
+ # resp.lineage_group_summaries[0].creation_time #=> Time
13924
+ # resp.lineage_group_summaries[0].last_modified_time #=> Time
13925
+ # resp.next_token #=> String
13926
+ #
13927
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListLineageGroups AWS API Documentation
13928
+ #
13929
+ # @overload list_lineage_groups(params = {})
13930
+ # @param [Hash] params ({})
13931
+ def list_lineage_groups(params = {}, options = {})
13932
+ req = build_request(:list_lineage_groups, params)
13933
+ req.send_request(options)
13934
+ end
13935
+
13240
13936
  # Lists model bias jobs definitions that satisfy various filters.
13241
13937
  #
13242
13938
  # @option params [String] :endpoint_name
@@ -13379,6 +14075,65 @@ module Aws::SageMaker
13379
14075
  req.send_request(options)
13380
14076
  end
13381
14077
 
14078
+ # Lists the domain, framework, task, and model name of standard machine
14079
+ # learning models found in common model zoos.
14080
+ #
14081
+ # @option params [Types::ModelMetadataSearchExpression] :search_expression
14082
+ # One or more filters that searches for the specified resource or
14083
+ # resources in a search. All resource objects that satisfy the
14084
+ # expression's condition are included in the search results. Specify
14085
+ # the Framework, FrameworkVersion, Domain or Task to filter supported.
14086
+ # Filter names and values are case-sensitive.
14087
+ #
14088
+ # @option params [String] :next_token
14089
+ # If the response to a previous `ListModelMetadataResponse` request was
14090
+ # truncated, the response includes a NextToken. To retrieve the next set
14091
+ # of model metadata, use the token in the next request.
14092
+ #
14093
+ # @option params [Integer] :max_results
14094
+ # The maximum number of models to return in the response.
14095
+ #
14096
+ # @return [Types::ListModelMetadataResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
14097
+ #
14098
+ # * {Types::ListModelMetadataResponse#model_metadata_summaries #model_metadata_summaries} => Array&lt;Types::ModelMetadataSummary&gt;
14099
+ # * {Types::ListModelMetadataResponse#next_token #next_token} => String
14100
+ #
14101
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
14102
+ #
14103
+ # @example Request syntax with placeholder values
14104
+ #
14105
+ # resp = client.list_model_metadata({
14106
+ # search_expression: {
14107
+ # filters: [
14108
+ # {
14109
+ # name: "Domain", # required, accepts Domain, Framework, Task, FrameworkVersion
14110
+ # value: "String256", # required
14111
+ # },
14112
+ # ],
14113
+ # },
14114
+ # next_token: "NextToken",
14115
+ # max_results: 1,
14116
+ # })
14117
+ #
14118
+ # @example Response structure
14119
+ #
14120
+ # resp.model_metadata_summaries #=> Array
14121
+ # resp.model_metadata_summaries[0].domain #=> String
14122
+ # resp.model_metadata_summaries[0].framework #=> String
14123
+ # resp.model_metadata_summaries[0].task #=> String
14124
+ # resp.model_metadata_summaries[0].model #=> String
14125
+ # resp.model_metadata_summaries[0].framework_version #=> String
14126
+ # resp.next_token #=> String
14127
+ #
14128
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListModelMetadata AWS API Documentation
14129
+ #
14130
+ # @overload list_model_metadata(params = {})
14131
+ # @param [Hash] params ({})
14132
+ def list_model_metadata(params = {}, options = {})
14133
+ req = build_request(:list_model_metadata, params)
14134
+ req.send_request(options)
14135
+ end
14136
+
13382
14137
  # Gets a list of the model groups in your Amazon Web Services account.
13383
14138
  #
13384
14139
  # @option params [Time,DateTime,Date,Integer,String] :creation_time_after
@@ -14110,6 +14865,7 @@ module Aws::SageMaker
14110
14865
  # resp.pipeline_execution_steps[0].end_time #=> Time
14111
14866
  # resp.pipeline_execution_steps[0].step_status #=> String, one of "Starting", "Executing", "Stopping", "Stopped", "Failed", "Succeeded"
14112
14867
  # resp.pipeline_execution_steps[0].cache_hit_result.source_pipeline_execution_arn #=> String
14868
+ # resp.pipeline_execution_steps[0].attempt_count #=> Integer
14113
14869
  # resp.pipeline_execution_steps[0].failure_reason #=> String
14114
14870
  # resp.pipeline_execution_steps[0].metadata.training_job.arn #=> String
14115
14871
  # resp.pipeline_execution_steps[0].metadata.processing_job.arn #=> String
@@ -14127,6 +14883,24 @@ module Aws::SageMaker
14127
14883
  # resp.pipeline_execution_steps[0].metadata.lambda.output_parameters #=> Array
14128
14884
  # resp.pipeline_execution_steps[0].metadata.lambda.output_parameters[0].name #=> String
14129
14885
  # resp.pipeline_execution_steps[0].metadata.lambda.output_parameters[0].value #=> String
14886
+ # resp.pipeline_execution_steps[0].metadata.quality_check.check_type #=> String
14887
+ # resp.pipeline_execution_steps[0].metadata.quality_check.baseline_used_for_drift_check_statistics #=> String
14888
+ # resp.pipeline_execution_steps[0].metadata.quality_check.baseline_used_for_drift_check_constraints #=> String
14889
+ # resp.pipeline_execution_steps[0].metadata.quality_check.calculated_baseline_statistics #=> String
14890
+ # resp.pipeline_execution_steps[0].metadata.quality_check.calculated_baseline_constraints #=> String
14891
+ # resp.pipeline_execution_steps[0].metadata.quality_check.model_package_group_name #=> String
14892
+ # resp.pipeline_execution_steps[0].metadata.quality_check.violation_report #=> String
14893
+ # resp.pipeline_execution_steps[0].metadata.quality_check.check_job_arn #=> String
14894
+ # resp.pipeline_execution_steps[0].metadata.quality_check.skip_check #=> Boolean
14895
+ # resp.pipeline_execution_steps[0].metadata.quality_check.register_new_baseline #=> Boolean
14896
+ # resp.pipeline_execution_steps[0].metadata.clarify_check.check_type #=> String
14897
+ # resp.pipeline_execution_steps[0].metadata.clarify_check.baseline_used_for_drift_check_constraints #=> String
14898
+ # resp.pipeline_execution_steps[0].metadata.clarify_check.calculated_baseline_constraints #=> String
14899
+ # resp.pipeline_execution_steps[0].metadata.clarify_check.model_package_group_name #=> String
14900
+ # resp.pipeline_execution_steps[0].metadata.clarify_check.violation_report #=> String
14901
+ # resp.pipeline_execution_steps[0].metadata.clarify_check.check_job_arn #=> String
14902
+ # resp.pipeline_execution_steps[0].metadata.clarify_check.skip_check #=> Boolean
14903
+ # resp.pipeline_execution_steps[0].metadata.clarify_check.register_new_baseline #=> Boolean
14130
14904
  # resp.next_token #=> String
14131
14905
  #
14132
14906
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListPipelineExecutionSteps AWS API Documentation
@@ -15321,6 +16095,112 @@ module Aws::SageMaker
15321
16095
  req.send_request(options)
15322
16096
  end
15323
16097
 
16098
+ # Use this action to inspect your lineage and discover relationships
16099
+ # between entities. For more information, see [ Querying Lineage
16100
+ # Entities][1] in the *Amazon SageMaker Developer Guide*.
16101
+ #
16102
+ #
16103
+ #
16104
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/querying-lineage-entities.html
16105
+ #
16106
+ # @option params [required, Array<String>] :start_arns
16107
+ # A list of resource Amazon Resource Name (ARN) that represent the
16108
+ # starting point for your lineage query.
16109
+ #
16110
+ # @option params [String] :direction
16111
+ # Associations between lineage entities are directed. This parameter
16112
+ # determines the direction from the StartArn(s) the query will look.
16113
+ #
16114
+ # @option params [Boolean] :include_edges
16115
+ # Setting this value to `True` will retrieve not only the entities of
16116
+ # interest but also the [Associations][1] and lineage entities on the
16117
+ # path. Set to `False` to only return lineage entities that match your
16118
+ # query.
16119
+ #
16120
+ #
16121
+ #
16122
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/lineage-tracking-entities.html
16123
+ #
16124
+ # @option params [Types::QueryFilters] :filters
16125
+ # A set of filtering parameters that allow you to specify which entities
16126
+ # should be returned.
16127
+ #
16128
+ # * Properties - Key-value pairs to match on the lineage entities'
16129
+ # properties.
16130
+ #
16131
+ # * LineageTypes - A set of lineage entity types to match on. For
16132
+ # example: `TrialComponent`, `Artifact`, or `Context`.
16133
+ #
16134
+ # * CreatedBefore - Filter entities created before this date.
16135
+ #
16136
+ # * ModifiedBefore - Filter entities modified before this date.
16137
+ #
16138
+ # * ModifiedAfter - Filter entities modified after this date.
16139
+ #
16140
+ # @option params [Integer] :max_depth
16141
+ # The maximum depth in lineage relationships from the `StartArns` that
16142
+ # will be traversed. Depth is a measure of the number of `Associations`
16143
+ # from the `StartArn` entity to the matched results.
16144
+ #
16145
+ # @option params [Integer] :max_results
16146
+ # Limits the number of vertices in the results. Use the `NextToken` in a
16147
+ # response to to retrieve the next page of results.
16148
+ #
16149
+ # @option params [String] :next_token
16150
+ # Limits the number of vertices in the request. Use the `NextToken` in a
16151
+ # response to to retrieve the next page of results.
16152
+ #
16153
+ # @return [Types::QueryLineageResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
16154
+ #
16155
+ # * {Types::QueryLineageResponse#vertices #vertices} => Array&lt;Types::Vertex&gt;
16156
+ # * {Types::QueryLineageResponse#edges #edges} => Array&lt;Types::Edge&gt;
16157
+ # * {Types::QueryLineageResponse#next_token #next_token} => String
16158
+ #
16159
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
16160
+ #
16161
+ # @example Request syntax with placeholder values
16162
+ #
16163
+ # resp = client.query_lineage({
16164
+ # start_arns: ["AssociationEntityArn"], # required
16165
+ # direction: "Both", # accepts Both, Ascendants, Descendants
16166
+ # include_edges: false,
16167
+ # filters: {
16168
+ # types: ["String40"],
16169
+ # lineage_types: ["TrialComponent"], # accepts TrialComponent, Artifact, Context, Action
16170
+ # created_before: Time.now,
16171
+ # created_after: Time.now,
16172
+ # modified_before: Time.now,
16173
+ # modified_after: Time.now,
16174
+ # properties: {
16175
+ # "String256" => "String256",
16176
+ # },
16177
+ # },
16178
+ # max_depth: 1,
16179
+ # max_results: 1,
16180
+ # next_token: "String8192",
16181
+ # })
16182
+ #
16183
+ # @example Response structure
16184
+ #
16185
+ # resp.vertices #=> Array
16186
+ # resp.vertices[0].arn #=> String
16187
+ # resp.vertices[0].type #=> String
16188
+ # resp.vertices[0].lineage_type #=> String, one of "TrialComponent", "Artifact", "Context", "Action"
16189
+ # resp.edges #=> Array
16190
+ # resp.edges[0].source_arn #=> String
16191
+ # resp.edges[0].destination_arn #=> String
16192
+ # resp.edges[0].association_type #=> String, one of "ContributedTo", "AssociatedWith", "DerivedFrom", "Produced"
16193
+ # resp.next_token #=> String
16194
+ #
16195
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/QueryLineage AWS API Documentation
16196
+ #
16197
+ # @overload query_lineage(params = {})
16198
+ # @param [Hash] params ({})
16199
+ def query_lineage(params = {}, options = {})
16200
+ req = build_request(:query_lineage, params)
16201
+ req.send_request(options)
16202
+ end
16203
+
15324
16204
  # Register devices.
15325
16205
  #
15326
16206
  # @option params [required, String] :device_fleet_name
@@ -15937,6 +16817,7 @@ module Aws::SageMaker
15937
16817
  # resp.results[0].trial_component.source_detail.transform_job.tags #=> Array
15938
16818
  # resp.results[0].trial_component.source_detail.transform_job.tags[0].key #=> String
15939
16819
  # resp.results[0].trial_component.source_detail.transform_job.tags[0].value #=> String
16820
+ # resp.results[0].trial_component.lineage_group_arn #=> String
15940
16821
  # resp.results[0].trial_component.tags #=> Array
15941
16822
  # resp.results[0].trial_component.tags[0].key #=> String
15942
16823
  # resp.results[0].trial_component.tags[0].value #=> String
@@ -15960,6 +16841,10 @@ module Aws::SageMaker
15960
16841
  # resp.results[0].endpoint.production_variants[0].variant_status[0].status #=> String, one of "Creating", "Updating", "Deleting", "ActivatingTraffic", "Baking"
15961
16842
  # resp.results[0].endpoint.production_variants[0].variant_status[0].status_message #=> String
15962
16843
  # resp.results[0].endpoint.production_variants[0].variant_status[0].start_time #=> Time
16844
+ # resp.results[0].endpoint.production_variants[0].current_serverless_config.memory_size_in_mb #=> Integer
16845
+ # resp.results[0].endpoint.production_variants[0].current_serverless_config.max_concurrency #=> Integer
16846
+ # resp.results[0].endpoint.production_variants[0].desired_serverless_config.memory_size_in_mb #=> Integer
16847
+ # resp.results[0].endpoint.production_variants[0].desired_serverless_config.max_concurrency #=> Integer
15963
16848
  # resp.results[0].endpoint.data_capture_config.enable_capture #=> Boolean
15964
16849
  # resp.results[0].endpoint.data_capture_config.capture_status #=> String, one of "Started", "Stopped"
15965
16850
  # resp.results[0].endpoint.data_capture_config.current_sampling_percentage #=> Integer
@@ -16051,6 +16936,10 @@ module Aws::SageMaker
16051
16936
  # resp.results[0].model_package.inference_specification.containers[0].product_id #=> String
16052
16937
  # resp.results[0].model_package.inference_specification.containers[0].environment #=> Hash
16053
16938
  # resp.results[0].model_package.inference_specification.containers[0].environment["EnvironmentKey"] #=> String
16939
+ # resp.results[0].model_package.inference_specification.containers[0].model_input.data_input_config #=> String
16940
+ # resp.results[0].model_package.inference_specification.containers[0].framework #=> String
16941
+ # resp.results[0].model_package.inference_specification.containers[0].framework_version #=> String
16942
+ # resp.results[0].model_package.inference_specification.containers[0].nearest_model_name #=> String
16054
16943
  # resp.results[0].model_package.inference_specification.supported_transform_instance_types #=> Array
16055
16944
  # resp.results[0].model_package.inference_specification.supported_transform_instance_types[0] #=> String, one of "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "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.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge"
16056
16945
  # resp.results[0].model_package.inference_specification.supported_realtime_inference_instance_types #=> Array
@@ -16115,6 +17004,12 @@ module Aws::SageMaker
16115
17004
  # resp.results[0].model_package.model_metrics.bias.report.content_type #=> String
16116
17005
  # resp.results[0].model_package.model_metrics.bias.report.content_digest #=> String
16117
17006
  # resp.results[0].model_package.model_metrics.bias.report.s3_uri #=> String
17007
+ # resp.results[0].model_package.model_metrics.bias.pre_training_report.content_type #=> String
17008
+ # resp.results[0].model_package.model_metrics.bias.pre_training_report.content_digest #=> String
17009
+ # resp.results[0].model_package.model_metrics.bias.pre_training_report.s3_uri #=> String
17010
+ # resp.results[0].model_package.model_metrics.bias.post_training_report.content_type #=> String
17011
+ # resp.results[0].model_package.model_metrics.bias.post_training_report.content_digest #=> String
17012
+ # resp.results[0].model_package.model_metrics.bias.post_training_report.s3_uri #=> String
16118
17013
  # resp.results[0].model_package.model_metrics.explainability.report.content_type #=> String
16119
17014
  # resp.results[0].model_package.model_metrics.explainability.report.content_digest #=> String
16120
17015
  # resp.results[0].model_package.model_metrics.explainability.report.s3_uri #=> String
@@ -16123,11 +17018,64 @@ module Aws::SageMaker
16123
17018
  # resp.results[0].model_package.last_modified_by.user_profile_name #=> String
16124
17019
  # resp.results[0].model_package.last_modified_by.domain_id #=> String
16125
17020
  # resp.results[0].model_package.approval_description #=> String
17021
+ # resp.results[0].model_package.domain #=> String
17022
+ # resp.results[0].model_package.task #=> String
17023
+ # resp.results[0].model_package.sample_payload_url #=> String
17024
+ # resp.results[0].model_package.additional_inference_specifications #=> Array
17025
+ # resp.results[0].model_package.additional_inference_specifications[0].name #=> String
17026
+ # resp.results[0].model_package.additional_inference_specifications[0].description #=> String
17027
+ # resp.results[0].model_package.additional_inference_specifications[0].containers #=> Array
17028
+ # resp.results[0].model_package.additional_inference_specifications[0].containers[0].container_hostname #=> String
17029
+ # resp.results[0].model_package.additional_inference_specifications[0].containers[0].image #=> String
17030
+ # resp.results[0].model_package.additional_inference_specifications[0].containers[0].image_digest #=> String
17031
+ # resp.results[0].model_package.additional_inference_specifications[0].containers[0].model_data_url #=> String
17032
+ # resp.results[0].model_package.additional_inference_specifications[0].containers[0].product_id #=> String
17033
+ # resp.results[0].model_package.additional_inference_specifications[0].containers[0].environment #=> Hash
17034
+ # resp.results[0].model_package.additional_inference_specifications[0].containers[0].environment["EnvironmentKey"] #=> String
17035
+ # resp.results[0].model_package.additional_inference_specifications[0].containers[0].model_input.data_input_config #=> String
17036
+ # resp.results[0].model_package.additional_inference_specifications[0].containers[0].framework #=> String
17037
+ # resp.results[0].model_package.additional_inference_specifications[0].containers[0].framework_version #=> String
17038
+ # resp.results[0].model_package.additional_inference_specifications[0].containers[0].nearest_model_name #=> String
17039
+ # resp.results[0].model_package.additional_inference_specifications[0].supported_transform_instance_types #=> Array
17040
+ # resp.results[0].model_package.additional_inference_specifications[0].supported_transform_instance_types[0] #=> String, one of "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "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.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge"
17041
+ # resp.results[0].model_package.additional_inference_specifications[0].supported_realtime_inference_instance_types #=> Array
17042
+ # resp.results[0].model_package.additional_inference_specifications[0].supported_realtime_inference_instance_types[0] #=> String, one of "ml.t2.medium", "ml.t2.large", "ml.t2.xlarge", "ml.t2.2xlarge", "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "ml.m5d.large", "ml.m5d.xlarge", "ml.m5d.2xlarge", "ml.m5d.4xlarge", "ml.m5d.12xlarge", "ml.m5d.24xlarge", "ml.c4.large", "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.c5.large", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.c5d.large", "ml.c5d.xlarge", "ml.c5d.2xlarge", "ml.c5d.4xlarge", "ml.c5d.9xlarge", "ml.c5d.18xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge", "ml.r5.large", "ml.r5.xlarge", "ml.r5.2xlarge", "ml.r5.4xlarge", "ml.r5.12xlarge", "ml.r5.24xlarge", "ml.r5d.large", "ml.r5d.xlarge", "ml.r5d.2xlarge", "ml.r5d.4xlarge", "ml.r5d.12xlarge", "ml.r5d.24xlarge", "ml.inf1.xlarge", "ml.inf1.2xlarge", "ml.inf1.6xlarge", "ml.inf1.24xlarge"
17043
+ # resp.results[0].model_package.additional_inference_specifications[0].supported_content_types #=> Array
17044
+ # resp.results[0].model_package.additional_inference_specifications[0].supported_content_types[0] #=> String
17045
+ # resp.results[0].model_package.additional_inference_specifications[0].supported_response_mime_types #=> Array
17046
+ # resp.results[0].model_package.additional_inference_specifications[0].supported_response_mime_types[0] #=> String
16126
17047
  # resp.results[0].model_package.tags #=> Array
16127
17048
  # resp.results[0].model_package.tags[0].key #=> String
16128
17049
  # resp.results[0].model_package.tags[0].value #=> String
16129
17050
  # resp.results[0].model_package.customer_metadata_properties #=> Hash
16130
17051
  # resp.results[0].model_package.customer_metadata_properties["CustomerMetadataKey"] #=> String
17052
+ # resp.results[0].model_package.drift_check_baselines.bias.config_file.content_type #=> String
17053
+ # resp.results[0].model_package.drift_check_baselines.bias.config_file.content_digest #=> String
17054
+ # resp.results[0].model_package.drift_check_baselines.bias.config_file.s3_uri #=> String
17055
+ # resp.results[0].model_package.drift_check_baselines.bias.pre_training_constraints.content_type #=> String
17056
+ # resp.results[0].model_package.drift_check_baselines.bias.pre_training_constraints.content_digest #=> String
17057
+ # resp.results[0].model_package.drift_check_baselines.bias.pre_training_constraints.s3_uri #=> String
17058
+ # resp.results[0].model_package.drift_check_baselines.bias.post_training_constraints.content_type #=> String
17059
+ # resp.results[0].model_package.drift_check_baselines.bias.post_training_constraints.content_digest #=> String
17060
+ # resp.results[0].model_package.drift_check_baselines.bias.post_training_constraints.s3_uri #=> String
17061
+ # resp.results[0].model_package.drift_check_baselines.explainability.constraints.content_type #=> String
17062
+ # resp.results[0].model_package.drift_check_baselines.explainability.constraints.content_digest #=> String
17063
+ # resp.results[0].model_package.drift_check_baselines.explainability.constraints.s3_uri #=> String
17064
+ # resp.results[0].model_package.drift_check_baselines.explainability.config_file.content_type #=> String
17065
+ # resp.results[0].model_package.drift_check_baselines.explainability.config_file.content_digest #=> String
17066
+ # resp.results[0].model_package.drift_check_baselines.explainability.config_file.s3_uri #=> String
17067
+ # resp.results[0].model_package.drift_check_baselines.model_quality.statistics.content_type #=> String
17068
+ # resp.results[0].model_package.drift_check_baselines.model_quality.statistics.content_digest #=> String
17069
+ # resp.results[0].model_package.drift_check_baselines.model_quality.statistics.s3_uri #=> String
17070
+ # resp.results[0].model_package.drift_check_baselines.model_quality.constraints.content_type #=> String
17071
+ # resp.results[0].model_package.drift_check_baselines.model_quality.constraints.content_digest #=> String
17072
+ # resp.results[0].model_package.drift_check_baselines.model_quality.constraints.s3_uri #=> String
17073
+ # resp.results[0].model_package.drift_check_baselines.model_data_quality.statistics.content_type #=> String
17074
+ # resp.results[0].model_package.drift_check_baselines.model_data_quality.statistics.content_digest #=> String
17075
+ # resp.results[0].model_package.drift_check_baselines.model_data_quality.statistics.s3_uri #=> String
17076
+ # resp.results[0].model_package.drift_check_baselines.model_data_quality.constraints.content_type #=> String
17077
+ # resp.results[0].model_package.drift_check_baselines.model_data_quality.constraints.content_digest #=> String
17078
+ # resp.results[0].model_package.drift_check_baselines.model_data_quality.constraints.s3_uri #=> String
16131
17079
  # resp.results[0].model_package_group.model_package_group_name #=> String
16132
17080
  # resp.results[0].model_package_group.model_package_group_arn #=> String
16133
17081
  # resp.results[0].model_package_group.model_package_group_description #=> String
@@ -16541,6 +17489,28 @@ module Aws::SageMaker
16541
17489
  req.send_request(options)
16542
17490
  end
16543
17491
 
17492
+ # Stops an Inference Recommender job.
17493
+ #
17494
+ # @option params [required, String] :job_name
17495
+ # The name of the job you want to stop.
17496
+ #
17497
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
17498
+ #
17499
+ # @example Request syntax with placeholder values
17500
+ #
17501
+ # resp = client.stop_inference_recommendations_job({
17502
+ # job_name: "RecommendationJobName", # required
17503
+ # })
17504
+ #
17505
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/StopInferenceRecommendationsJob AWS API Documentation
17506
+ #
17507
+ # @overload stop_inference_recommendations_job(params = {})
17508
+ # @param [Hash] params ({})
17509
+ def stop_inference_recommendations_job(params = {}, options = {})
17510
+ req = build_request(:stop_inference_recommendations_job, params)
17511
+ req.send_request(options)
17512
+ end
17513
+
16544
17514
  # Stops a running labeling job. A job that is stopped cannot be
16545
17515
  # restarted. Any results obtained before the job is stopped are placed
16546
17516
  # in the Amazon S3 output bucket.
@@ -17409,6 +18379,14 @@ module Aws::SageMaker
17409
18379
  # The metadata properties associated with the model package versions to
17410
18380
  # remove.
17411
18381
  #
18382
+ # @option params [Array<Types::AdditionalInferenceSpecificationDefinition>] :additional_inference_specifications_to_add
18383
+ # An array of additional Inference Specification objects to be added to
18384
+ # the existing array additional Inference Specification. Total number of
18385
+ # additional Inference Specifications can not exceed 15. Each additional
18386
+ # Inference Specification specifies artifacts based on this model
18387
+ # package that can be used on inference endpoints. Generally used with
18388
+ # SageMaker Neo to store the compiled artifacts.
18389
+ #
17412
18390
  # @return [Types::UpdateModelPackageOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
17413
18391
  #
17414
18392
  # * {Types::UpdateModelPackageOutput#model_package_arn #model_package_arn} => String
@@ -17423,6 +18401,34 @@ module Aws::SageMaker
17423
18401
  # "CustomerMetadataKey" => "CustomerMetadataValue",
17424
18402
  # },
17425
18403
  # customer_metadata_properties_to_remove: ["CustomerMetadataKey"],
18404
+ # additional_inference_specifications_to_add: [
18405
+ # {
18406
+ # name: "EntityName", # required
18407
+ # description: "EntityDescription",
18408
+ # containers: [ # required
18409
+ # {
18410
+ # container_hostname: "ContainerHostname",
18411
+ # image: "ContainerImage", # required
18412
+ # image_digest: "ImageDigest",
18413
+ # model_data_url: "Url",
18414
+ # product_id: "ProductId",
18415
+ # environment: {
18416
+ # "EnvironmentKey" => "EnvironmentValue",
18417
+ # },
18418
+ # model_input: {
18419
+ # data_input_config: "DataInputConfig", # required
18420
+ # },
18421
+ # framework: "String",
18422
+ # framework_version: "FrameworkVersion",
18423
+ # nearest_model_name: "String",
18424
+ # },
18425
+ # ],
18426
+ # supported_transform_instance_types: ["ml.m4.xlarge"], # accepts ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, 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.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.12xlarge, ml.m5.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge
18427
+ # supported_realtime_inference_instance_types: ["ml.t2.medium"], # accepts ml.t2.medium, ml.t2.large, ml.t2.xlarge, ml.t2.2xlarge, ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.12xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.12xlarge, ml.m5d.24xlarge, ml.c4.large, 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.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.c5d.large, ml.c5d.xlarge, ml.c5d.2xlarge, ml.c5d.4xlarge, ml.c5d.9xlarge, ml.c5d.18xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.12xlarge, ml.r5.24xlarge, ml.r5d.large, ml.r5d.xlarge, ml.r5d.2xlarge, ml.r5d.4xlarge, ml.r5d.12xlarge, ml.r5d.24xlarge, ml.inf1.xlarge, ml.inf1.2xlarge, ml.inf1.6xlarge, ml.inf1.24xlarge
18428
+ # supported_content_types: ["ContentType"],
18429
+ # supported_response_mime_types: ["ResponseMIMEType"],
18430
+ # },
18431
+ # ],
17426
18432
  # })
17427
18433
  #
17428
18434
  # @example Response structure
@@ -18369,7 +19375,7 @@ module Aws::SageMaker
18369
19375
  params: params,
18370
19376
  config: config)
18371
19377
  context[:gem_name] = 'aws-sdk-sagemaker'
18372
- context[:gem_version] = '1.109.0'
19378
+ context[:gem_version] = '1.113.0'
18373
19379
  Seahorse::Client::Request.new(handlers, context)
18374
19380
  end
18375
19381