aws-sdk-sagemaker 1.108.0 → 1.112.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -119,7 +119,9 @@ module Aws::SageMaker
119
119
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
120
  # are very aggressive. Construct and pass an instance of
121
121
  # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
- # enable retries and extended timeouts.
122
+ # enable retries and extended timeouts. Instance profile credential
123
+ # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
124
+ # to true.
123
125
  #
124
126
  # @option options [required, String] :region
125
127
  # The AWS region to connect to. The configured `:region` is
@@ -555,6 +557,10 @@ module Aws::SageMaker
555
557
  # resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].product_id #=> String
556
558
  # resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].environment #=> Hash
557
559
  # resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].environment["EnvironmentKey"] #=> String
560
+ # resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].model_input.data_input_config #=> String
561
+ # resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].framework #=> String
562
+ # resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].framework_version #=> String
563
+ # resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].nearest_model_name #=> String
558
564
  # resp.model_package_summaries["ModelPackageArn"].inference_specification.supported_transform_instance_types #=> Array
559
565
  # 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"
560
566
  # resp.model_package_summaries["ModelPackageArn"].inference_specification.supported_realtime_inference_instance_types #=> Array
@@ -794,6 +800,12 @@ module Aws::SageMaker
794
800
  # environment: {
795
801
  # "EnvironmentKey" => "EnvironmentValue",
796
802
  # },
803
+ # model_input: {
804
+ # data_input_config: "DataInputConfig", # required
805
+ # },
806
+ # framework: "String",
807
+ # framework_version: "FrameworkVersion",
808
+ # nearest_model_name: "String",
797
809
  # },
798
810
  # ],
799
811
  # 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
@@ -1184,6 +1196,7 @@ module Aws::SageMaker
1184
1196
  # },
1185
1197
  # compression_type: "None", # accepts None, Gzip
1186
1198
  # target_attribute_name: "TargetAttributeName", # required
1199
+ # content_type: "ContentType",
1187
1200
  # },
1188
1201
  # ],
1189
1202
  # output_data_config: { # required
@@ -1362,7 +1375,13 @@ module Aws::SageMaker
1362
1375
  #
1363
1376
  # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/sagemaker-roles.html
1364
1377
  #
1365
- # @option params [required, Types::InputConfig] :input_config
1378
+ # @option params [String] :model_package_version_arn
1379
+ # The Amazon Resource Name (ARN) of a versioned model package. Provide
1380
+ # either a `ModelPackageVersionArn` or an `InputConfig` object in the
1381
+ # request syntax. The presence of both objects in the
1382
+ # `CreateCompilationJob` request will return an exception.
1383
+ #
1384
+ # @option params [Types::InputConfig] :input_config
1366
1385
  # Provides information about the location of input model artifacts, the
1367
1386
  # name and shape of the expected data inputs, and the framework in which
1368
1387
  # the model was trained.
@@ -1405,7 +1424,8 @@ module Aws::SageMaker
1405
1424
  # resp = client.create_compilation_job({
1406
1425
  # compilation_job_name: "EntityName", # required
1407
1426
  # role_arn: "RoleArn", # required
1408
- # input_config: { # required
1427
+ # model_package_version_arn: "ModelPackageArn",
1428
+ # input_config: {
1409
1429
  # s3_uri: "S3Uri", # required
1410
1430
  # data_input_config: "DataInputConfig", # required
1411
1431
  # framework: "TENSORFLOW", # required, accepts TENSORFLOW, KERAS, MXNET, ONNX, PYTORCH, XGBOOST, TFLITE, DARKNET, SKLEARN
@@ -1413,7 +1433,7 @@ module Aws::SageMaker
1413
1433
  # },
1414
1434
  # output_config: { # required
1415
1435
  # s3_output_location: "S3Uri", # required
1416
- # 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
1436
+ # 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
1417
1437
  # target_platform: {
1418
1438
  # os: "ANDROID", # required, accepts ANDROID, LINUX
1419
1439
  # arch: "X86_64", # required, accepts X86_64, X86, ARM64, ARM_EABI, ARM_EABIHF
@@ -2297,14 +2317,18 @@ module Aws::SageMaker
2297
2317
  # {
2298
2318
  # variant_name: "VariantName", # required
2299
2319
  # model_name: "ModelName", # required
2300
- # initial_instance_count: 1, # required
2301
- # 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
2320
+ # initial_instance_count: 1,
2321
+ # 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
2302
2322
  # initial_variant_weight: 1.0,
2303
2323
  # accelerator_type: "ml.eia1.medium", # accepts ml.eia1.medium, ml.eia1.large, ml.eia1.xlarge, ml.eia2.medium, ml.eia2.large, ml.eia2.xlarge
2304
2324
  # core_dump_config: {
2305
2325
  # destination_s3_uri: "DestinationS3Uri", # required
2306
2326
  # kms_key_id: "KmsKeyId",
2307
2327
  # },
2328
+ # serverless_config: {
2329
+ # memory_size_in_mb: 1, # required
2330
+ # max_concurrency: 1, # required
2331
+ # },
2308
2332
  # },
2309
2333
  # ],
2310
2334
  # data_capture_config: {
@@ -3200,6 +3224,119 @@ module Aws::SageMaker
3200
3224
  req.send_request(options)
3201
3225
  end
3202
3226
 
3227
+ # Starts a recommendation job. You can create either an instance
3228
+ # recommendation or load test job.
3229
+ #
3230
+ # @option params [required, String] :job_name
3231
+ # A name for the recommendation job. The name must be unique within the
3232
+ # Amazon Web Services Region and within your Amazon Web Services
3233
+ # account.
3234
+ #
3235
+ # @option params [required, String] :job_type
3236
+ # Defines the type of recommendation job. Specify `Default` to initiate
3237
+ # an instance recommendation and `Advanced` to initiate a load test. If
3238
+ # left unspecified, Amazon SageMaker Inference Recommender will run an
3239
+ # instance recommendation (`DEFAULT`) job.
3240
+ #
3241
+ # @option params [required, String] :role_arn
3242
+ # The Amazon Resource Name (ARN) of an IAM role that enables Amazon
3243
+ # SageMaker to perform tasks on your behalf.
3244
+ #
3245
+ # @option params [required, Types::RecommendationJobInputConfig] :input_config
3246
+ # Provides information about the versioned model package Amazon Resource
3247
+ # Name (ARN), the traffic pattern, and endpoint configurations.
3248
+ #
3249
+ # @option params [String] :job_description
3250
+ # Description of the recommendation job.
3251
+ #
3252
+ # @option params [Types::RecommendationJobStoppingConditions] :stopping_conditions
3253
+ # A set of conditions for stopping a recommendation job. If any of the
3254
+ # conditions are met, the job is automatically stopped.
3255
+ #
3256
+ # @option params [Array<Types::Tag>] :tags
3257
+ # The metadata that you apply to Amazon Web Services resources to help
3258
+ # you categorize and organize them. Each tag consists of a key and a
3259
+ # value, both of which you define. For more information, see [Tagging
3260
+ # Amazon Web Services Resources][1] in the Amazon Web Services General
3261
+ # Reference.
3262
+ #
3263
+ #
3264
+ #
3265
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
3266
+ #
3267
+ # @return [Types::CreateInferenceRecommendationsJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3268
+ #
3269
+ # * {Types::CreateInferenceRecommendationsJobResponse#job_arn #job_arn} => String
3270
+ #
3271
+ # @example Request syntax with placeholder values
3272
+ #
3273
+ # resp = client.create_inference_recommendations_job({
3274
+ # job_name: "RecommendationJobName", # required
3275
+ # job_type: "Default", # required, accepts Default, Advanced
3276
+ # role_arn: "RoleArn", # required
3277
+ # input_config: { # required
3278
+ # model_package_version_arn: "ModelPackageArn", # required
3279
+ # job_duration_in_seconds: 1,
3280
+ # traffic_pattern: {
3281
+ # traffic_type: "PHASES", # accepts PHASES
3282
+ # phases: [
3283
+ # {
3284
+ # initial_number_of_users: 1,
3285
+ # spawn_rate: 1,
3286
+ # duration_in_seconds: 1,
3287
+ # },
3288
+ # ],
3289
+ # },
3290
+ # resource_limit: {
3291
+ # max_number_of_tests: 1,
3292
+ # max_parallel_of_tests: 1,
3293
+ # },
3294
+ # endpoint_configurations: [
3295
+ # {
3296
+ # 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
3297
+ # inference_specification_name: "InferenceSpecificationName",
3298
+ # environment_parameter_ranges: {
3299
+ # categorical_parameter_ranges: [
3300
+ # {
3301
+ # name: "String64", # required
3302
+ # value: ["String128"], # required
3303
+ # },
3304
+ # ],
3305
+ # },
3306
+ # },
3307
+ # ],
3308
+ # },
3309
+ # job_description: "RecommendationJobDescription",
3310
+ # stopping_conditions: {
3311
+ # max_invocations: 1,
3312
+ # model_latency_thresholds: [
3313
+ # {
3314
+ # percentile: "String64",
3315
+ # value_in_milliseconds: 1,
3316
+ # },
3317
+ # ],
3318
+ # },
3319
+ # tags: [
3320
+ # {
3321
+ # key: "TagKey", # required
3322
+ # value: "TagValue", # required
3323
+ # },
3324
+ # ],
3325
+ # })
3326
+ #
3327
+ # @example Response structure
3328
+ #
3329
+ # resp.job_arn #=> String
3330
+ #
3331
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateInferenceRecommendationsJob AWS API Documentation
3332
+ #
3333
+ # @overload create_inference_recommendations_job(params = {})
3334
+ # @param [Hash] params ({})
3335
+ def create_inference_recommendations_job(params = {}, options = {})
3336
+ req = build_request(:create_inference_recommendations_job, params)
3337
+ req.send_request(options)
3338
+ end
3339
+
3203
3340
  # Creates a job that uses workers to label the data objects in your
3204
3341
  # input dataset. You can use the labeled data to train machine learning
3205
3342
  # models.
@@ -3623,6 +3760,7 @@ module Aws::SageMaker
3623
3760
  # "EnvironmentKey" => "EnvironmentValue",
3624
3761
  # },
3625
3762
  # model_package_name: "VersionedArnOrName",
3763
+ # inference_specification_name: "InferenceSpecificationName",
3626
3764
  # multi_model_config: {
3627
3765
  # model_cache_setting: "Enabled", # accepts Enabled, Disabled
3628
3766
  # },
@@ -3643,6 +3781,7 @@ module Aws::SageMaker
3643
3781
  # "EnvironmentKey" => "EnvironmentValue",
3644
3782
  # },
3645
3783
  # model_package_name: "VersionedArnOrName",
3784
+ # inference_specification_name: "InferenceSpecificationName",
3646
3785
  # multi_model_config: {
3647
3786
  # model_cache_setting: "Enabled", # accepts Enabled, Disabled
3648
3787
  # },
@@ -4042,6 +4181,37 @@ module Aws::SageMaker
4042
4181
  # @option params [Hash<String,String>] :customer_metadata_properties
4043
4182
  # The metadata properties associated with the model package versions.
4044
4183
  #
4184
+ # @option params [Types::DriftCheckBaselines] :drift_check_baselines
4185
+ # Represents the drift check baselines that can be used when the model
4186
+ # monitor is set using the model package. For more information, see the
4187
+ # topic on [Drift Detection against Previous Baselines in SageMaker
4188
+ # Pipelines][1] in the *Amazon SageMaker Developer Guide*.
4189
+ #
4190
+ #
4191
+ #
4192
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/pipelines-quality-clarify-baseline-lifecycle.html#pipelines-quality-clarify-baseline-drift-detection
4193
+ #
4194
+ # @option params [String] :domain
4195
+ # The machine learning domain of your model package and its components.
4196
+ # Common machine learning domains include computer vision and natural
4197
+ # language processing.
4198
+ #
4199
+ # @option params [String] :task
4200
+ # The machine learning task your model package accomplishes. Common
4201
+ # machine learning tasks include object detection and image
4202
+ # classification.
4203
+ #
4204
+ # @option params [String] :sample_payload_url
4205
+ # The Amazon Simple Storage Service (Amazon S3) path where the sample
4206
+ # payload are stored. This path must point to a single gzip compressed
4207
+ # tar archive (.tar.gz suffix).
4208
+ #
4209
+ # @option params [Array<Types::AdditionalInferenceSpecificationDefinition>] :additional_inference_specifications
4210
+ # An array of additional Inference Specification objects. Each
4211
+ # additional Inference Specification specifies artifacts based on this
4212
+ # model package that can be used on inference endpoints. Generally used
4213
+ # with SageMaker Neo to store the compiled artifacts.
4214
+ #
4045
4215
  # @return [Types::CreateModelPackageOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4046
4216
  #
4047
4217
  # * {Types::CreateModelPackageOutput#model_package_arn #model_package_arn} => String
@@ -4063,6 +4233,12 @@ module Aws::SageMaker
4063
4233
  # environment: {
4064
4234
  # "EnvironmentKey" => "EnvironmentValue",
4065
4235
  # },
4236
+ # model_input: {
4237
+ # data_input_config: "DataInputConfig", # required
4238
+ # },
4239
+ # framework: "String",
4240
+ # framework_version: "FrameworkVersion",
4241
+ # nearest_model_name: "String",
4066
4242
  # },
4067
4243
  # ],
4068
4244
  # 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
@@ -4161,6 +4337,16 @@ module Aws::SageMaker
4161
4337
  # content_digest: "ContentDigest",
4162
4338
  # s3_uri: "S3Uri", # required
4163
4339
  # },
4340
+ # pre_training_report: {
4341
+ # content_type: "ContentType", # required
4342
+ # content_digest: "ContentDigest",
4343
+ # s3_uri: "S3Uri", # required
4344
+ # },
4345
+ # post_training_report: {
4346
+ # content_type: "ContentType", # required
4347
+ # content_digest: "ContentDigest",
4348
+ # s3_uri: "S3Uri", # required
4349
+ # },
4164
4350
  # },
4165
4351
  # explainability: {
4166
4352
  # report: {
@@ -4174,6 +4360,92 @@ module Aws::SageMaker
4174
4360
  # customer_metadata_properties: {
4175
4361
  # "CustomerMetadataKey" => "CustomerMetadataValue",
4176
4362
  # },
4363
+ # drift_check_baselines: {
4364
+ # bias: {
4365
+ # config_file: {
4366
+ # content_type: "ContentType",
4367
+ # content_digest: "ContentDigest",
4368
+ # s3_uri: "S3Uri", # required
4369
+ # },
4370
+ # pre_training_constraints: {
4371
+ # content_type: "ContentType", # required
4372
+ # content_digest: "ContentDigest",
4373
+ # s3_uri: "S3Uri", # required
4374
+ # },
4375
+ # post_training_constraints: {
4376
+ # content_type: "ContentType", # required
4377
+ # content_digest: "ContentDigest",
4378
+ # s3_uri: "S3Uri", # required
4379
+ # },
4380
+ # },
4381
+ # explainability: {
4382
+ # constraints: {
4383
+ # content_type: "ContentType", # required
4384
+ # content_digest: "ContentDigest",
4385
+ # s3_uri: "S3Uri", # required
4386
+ # },
4387
+ # config_file: {
4388
+ # content_type: "ContentType",
4389
+ # content_digest: "ContentDigest",
4390
+ # s3_uri: "S3Uri", # required
4391
+ # },
4392
+ # },
4393
+ # model_quality: {
4394
+ # statistics: {
4395
+ # content_type: "ContentType", # required
4396
+ # content_digest: "ContentDigest",
4397
+ # s3_uri: "S3Uri", # required
4398
+ # },
4399
+ # constraints: {
4400
+ # content_type: "ContentType", # required
4401
+ # content_digest: "ContentDigest",
4402
+ # s3_uri: "S3Uri", # required
4403
+ # },
4404
+ # },
4405
+ # model_data_quality: {
4406
+ # statistics: {
4407
+ # content_type: "ContentType", # required
4408
+ # content_digest: "ContentDigest",
4409
+ # s3_uri: "S3Uri", # required
4410
+ # },
4411
+ # constraints: {
4412
+ # content_type: "ContentType", # required
4413
+ # content_digest: "ContentDigest",
4414
+ # s3_uri: "S3Uri", # required
4415
+ # },
4416
+ # },
4417
+ # },
4418
+ # domain: "String",
4419
+ # task: "String",
4420
+ # sample_payload_url: "S3Uri",
4421
+ # additional_inference_specifications: [
4422
+ # {
4423
+ # name: "EntityName", # required
4424
+ # description: "EntityDescription",
4425
+ # containers: [ # required
4426
+ # {
4427
+ # container_hostname: "ContainerHostname",
4428
+ # image: "ContainerImage", # required
4429
+ # image_digest: "ImageDigest",
4430
+ # model_data_url: "Url",
4431
+ # product_id: "ProductId",
4432
+ # environment: {
4433
+ # "EnvironmentKey" => "EnvironmentValue",
4434
+ # },
4435
+ # model_input: {
4436
+ # data_input_config: "DataInputConfig", # required
4437
+ # },
4438
+ # framework: "String",
4439
+ # framework_version: "FrameworkVersion",
4440
+ # nearest_model_name: "String",
4441
+ # },
4442
+ # ],
4443
+ # 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
4444
+ # 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
4445
+ # supported_content_types: ["ContentType"],
4446
+ # supported_response_mime_types: ["ResponseMIMEType"],
4447
+ # },
4448
+ # ],
4177
4449
  # })
4178
4450
  #
4179
4451
  # @example Response structure
@@ -7522,6 +7794,7 @@ module Aws::SageMaker
7522
7794
  # * {Types::DescribeActionResponse#last_modified_time #last_modified_time} => Time
7523
7795
  # * {Types::DescribeActionResponse#last_modified_by #last_modified_by} => Types::UserContext
7524
7796
  # * {Types::DescribeActionResponse#metadata_properties #metadata_properties} => Types::MetadataProperties
7797
+ # * {Types::DescribeActionResponse#lineage_group_arn #lineage_group_arn} => String
7525
7798
  #
7526
7799
  # @example Request syntax with placeholder values
7527
7800
  #
@@ -7553,6 +7826,7 @@ module Aws::SageMaker
7553
7826
  # resp.metadata_properties.repository #=> String
7554
7827
  # resp.metadata_properties.generated_by #=> String
7555
7828
  # resp.metadata_properties.project_id #=> String
7829
+ # resp.lineage_group_arn #=> String
7556
7830
  #
7557
7831
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeAction AWS API Documentation
7558
7832
  #
@@ -7637,6 +7911,10 @@ module Aws::SageMaker
7637
7911
  # resp.inference_specification.containers[0].product_id #=> String
7638
7912
  # resp.inference_specification.containers[0].environment #=> Hash
7639
7913
  # resp.inference_specification.containers[0].environment["EnvironmentKey"] #=> String
7914
+ # resp.inference_specification.containers[0].model_input.data_input_config #=> String
7915
+ # resp.inference_specification.containers[0].framework #=> String
7916
+ # resp.inference_specification.containers[0].framework_version #=> String
7917
+ # resp.inference_specification.containers[0].nearest_model_name #=> String
7640
7918
  # resp.inference_specification.supported_transform_instance_types #=> Array
7641
7919
  # 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"
7642
7920
  # resp.inference_specification.supported_realtime_inference_instance_types #=> Array
@@ -7834,6 +8112,7 @@ module Aws::SageMaker
7834
8112
  # * {Types::DescribeArtifactResponse#last_modified_time #last_modified_time} => Time
7835
8113
  # * {Types::DescribeArtifactResponse#last_modified_by #last_modified_by} => Types::UserContext
7836
8114
  # * {Types::DescribeArtifactResponse#metadata_properties #metadata_properties} => Types::MetadataProperties
8115
+ # * {Types::DescribeArtifactResponse#lineage_group_arn #lineage_group_arn} => String
7837
8116
  #
7838
8117
  # @example Request syntax with placeholder values
7839
8118
  #
@@ -7864,6 +8143,7 @@ module Aws::SageMaker
7864
8143
  # resp.metadata_properties.repository #=> String
7865
8144
  # resp.metadata_properties.generated_by #=> String
7866
8145
  # resp.metadata_properties.project_id #=> String
8146
+ # resp.lineage_group_arn #=> String
7867
8147
  #
7868
8148
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeArtifact AWS API Documentation
7869
8149
  #
@@ -7918,6 +8198,7 @@ module Aws::SageMaker
7918
8198
  # resp.input_data_config[0].data_source.s3_data_source.s3_uri #=> String
7919
8199
  # resp.input_data_config[0].compression_type #=> String, one of "None", "Gzip"
7920
8200
  # resp.input_data_config[0].target_attribute_name #=> String
8201
+ # resp.input_data_config[0].content_type #=> String
7921
8202
  # resp.output_data_config.kms_key_id #=> String
7922
8203
  # resp.output_data_config.s3_output_path #=> String
7923
8204
  # resp.role_arn #=> String
@@ -8041,6 +8322,7 @@ module Aws::SageMaker
8041
8322
  # * {Types::DescribeCompilationJobResponse#compilation_end_time #compilation_end_time} => Time
8042
8323
  # * {Types::DescribeCompilationJobResponse#stopping_condition #stopping_condition} => Types::StoppingCondition
8043
8324
  # * {Types::DescribeCompilationJobResponse#inference_image #inference_image} => String
8325
+ # * {Types::DescribeCompilationJobResponse#model_package_version_arn #model_package_version_arn} => String
8044
8326
  # * {Types::DescribeCompilationJobResponse#creation_time #creation_time} => Time
8045
8327
  # * {Types::DescribeCompilationJobResponse#last_modified_time #last_modified_time} => Time
8046
8328
  # * {Types::DescribeCompilationJobResponse#failure_reason #failure_reason} => String
@@ -8067,6 +8349,7 @@ module Aws::SageMaker
8067
8349
  # resp.stopping_condition.max_runtime_in_seconds #=> Integer
8068
8350
  # resp.stopping_condition.max_wait_time_in_seconds #=> Integer
8069
8351
  # resp.inference_image #=> String
8352
+ # resp.model_package_version_arn #=> String
8070
8353
  # resp.creation_time #=> Time
8071
8354
  # resp.last_modified_time #=> Time
8072
8355
  # resp.failure_reason #=> String
@@ -8078,7 +8361,7 @@ module Aws::SageMaker
8078
8361
  # resp.input_config.framework #=> String, one of "TENSORFLOW", "KERAS", "MXNET", "ONNX", "PYTORCH", "XGBOOST", "TFLITE", "DARKNET", "SKLEARN"
8079
8362
  # resp.input_config.framework_version #=> String
8080
8363
  # resp.output_config.s3_output_location #=> String
8081
- # 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"
8364
+ # 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"
8082
8365
  # resp.output_config.target_platform.os #=> String, one of "ANDROID", "LINUX"
8083
8366
  # resp.output_config.target_platform.arch #=> String, one of "X86_64", "X86", "ARM64", "ARM_EABI", "ARM_EABIHF"
8084
8367
  # resp.output_config.target_platform.accelerator #=> String, one of "INTEL_GRAPHICS", "MALI", "NVIDIA"
@@ -8115,11 +8398,12 @@ module Aws::SageMaker
8115
8398
  # * {Types::DescribeContextResponse#created_by #created_by} => Types::UserContext
8116
8399
  # * {Types::DescribeContextResponse#last_modified_time #last_modified_time} => Time
8117
8400
  # * {Types::DescribeContextResponse#last_modified_by #last_modified_by} => Types::UserContext
8401
+ # * {Types::DescribeContextResponse#lineage_group_arn #lineage_group_arn} => String
8118
8402
  #
8119
8403
  # @example Request syntax with placeholder values
8120
8404
  #
8121
8405
  # resp = client.describe_context({
8122
- # context_name: "ExperimentEntityName", # required
8406
+ # context_name: "ExperimentEntityNameOrArn", # required
8123
8407
  # })
8124
8408
  #
8125
8409
  # @example Response structure
@@ -8141,6 +8425,7 @@ module Aws::SageMaker
8141
8425
  # resp.last_modified_by.user_profile_arn #=> String
8142
8426
  # resp.last_modified_by.user_profile_name #=> String
8143
8427
  # resp.last_modified_by.domain_id #=> String
8428
+ # resp.lineage_group_arn #=> String
8144
8429
  #
8145
8430
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeContext AWS API Documentation
8146
8431
  #
@@ -8544,6 +8829,10 @@ module Aws::SageMaker
8544
8829
  # resp.production_variants[0].variant_status[0].status #=> String, one of "Creating", "Updating", "Deleting", "ActivatingTraffic", "Baking"
8545
8830
  # resp.production_variants[0].variant_status[0].status_message #=> String
8546
8831
  # resp.production_variants[0].variant_status[0].start_time #=> Time
8832
+ # resp.production_variants[0].current_serverless_config.memory_size_in_mb #=> Integer
8833
+ # resp.production_variants[0].current_serverless_config.max_concurrency #=> Integer
8834
+ # resp.production_variants[0].desired_serverless_config.memory_size_in_mb #=> Integer
8835
+ # resp.production_variants[0].desired_serverless_config.max_concurrency #=> Integer
8547
8836
  # resp.data_capture_config.enable_capture #=> Boolean
8548
8837
  # resp.data_capture_config.capture_status #=> String, one of "Started", "Stopped"
8549
8838
  # resp.data_capture_config.current_sampling_percentage #=> Integer
@@ -8585,6 +8874,10 @@ module Aws::SageMaker
8585
8874
  # resp.pending_deployment_summary.production_variants[0].variant_status[0].status #=> String, one of "Creating", "Updating", "Deleting", "ActivatingTraffic", "Baking"
8586
8875
  # resp.pending_deployment_summary.production_variants[0].variant_status[0].status_message #=> String
8587
8876
  # resp.pending_deployment_summary.production_variants[0].variant_status[0].start_time #=> Time
8877
+ # resp.pending_deployment_summary.production_variants[0].current_serverless_config.memory_size_in_mb #=> Integer
8878
+ # resp.pending_deployment_summary.production_variants[0].current_serverless_config.max_concurrency #=> Integer
8879
+ # resp.pending_deployment_summary.production_variants[0].desired_serverless_config.memory_size_in_mb #=> Integer
8880
+ # resp.pending_deployment_summary.production_variants[0].desired_serverless_config.max_concurrency #=> Integer
8588
8881
  # resp.pending_deployment_summary.start_time #=> Time
8589
8882
  #
8590
8883
  #
@@ -8637,6 +8930,8 @@ module Aws::SageMaker
8637
8930
  # 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"
8638
8931
  # resp.production_variants[0].core_dump_config.destination_s3_uri #=> String
8639
8932
  # resp.production_variants[0].core_dump_config.kms_key_id #=> String
8933
+ # resp.production_variants[0].serverless_config.memory_size_in_mb #=> Integer
8934
+ # resp.production_variants[0].serverless_config.max_concurrency #=> Integer
8640
8935
  # resp.data_capture_config.enable_capture #=> Boolean
8641
8936
  # resp.data_capture_config.initial_sampling_percentage #=> Integer
8642
8937
  # resp.data_capture_config.destination_s3_uri #=> String
@@ -9218,6 +9513,91 @@ module Aws::SageMaker
9218
9513
  req.send_request(options)
9219
9514
  end
9220
9515
 
9516
+ # Provides the results of the Inference Recommender job. One or more
9517
+ # recommendation jobs are returned.
9518
+ #
9519
+ # @option params [required, String] :job_name
9520
+ # The name of the job. The name must be unique within an Amazon Web
9521
+ # Services Region in the Amazon Web Services account.
9522
+ #
9523
+ # @return [Types::DescribeInferenceRecommendationsJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9524
+ #
9525
+ # * {Types::DescribeInferenceRecommendationsJobResponse#job_name #job_name} => String
9526
+ # * {Types::DescribeInferenceRecommendationsJobResponse#job_description #job_description} => String
9527
+ # * {Types::DescribeInferenceRecommendationsJobResponse#job_type #job_type} => String
9528
+ # * {Types::DescribeInferenceRecommendationsJobResponse#job_arn #job_arn} => String
9529
+ # * {Types::DescribeInferenceRecommendationsJobResponse#role_arn #role_arn} => String
9530
+ # * {Types::DescribeInferenceRecommendationsJobResponse#status #status} => String
9531
+ # * {Types::DescribeInferenceRecommendationsJobResponse#creation_time #creation_time} => Time
9532
+ # * {Types::DescribeInferenceRecommendationsJobResponse#completion_time #completion_time} => Time
9533
+ # * {Types::DescribeInferenceRecommendationsJobResponse#last_modified_time #last_modified_time} => Time
9534
+ # * {Types::DescribeInferenceRecommendationsJobResponse#failure_reason #failure_reason} => String
9535
+ # * {Types::DescribeInferenceRecommendationsJobResponse#input_config #input_config} => Types::RecommendationJobInputConfig
9536
+ # * {Types::DescribeInferenceRecommendationsJobResponse#stopping_conditions #stopping_conditions} => Types::RecommendationJobStoppingConditions
9537
+ # * {Types::DescribeInferenceRecommendationsJobResponse#inference_recommendations #inference_recommendations} => Array&lt;Types::InferenceRecommendation&gt;
9538
+ #
9539
+ # @example Request syntax with placeholder values
9540
+ #
9541
+ # resp = client.describe_inference_recommendations_job({
9542
+ # job_name: "RecommendationJobName", # required
9543
+ # })
9544
+ #
9545
+ # @example Response structure
9546
+ #
9547
+ # resp.job_name #=> String
9548
+ # resp.job_description #=> String
9549
+ # resp.job_type #=> String, one of "Default", "Advanced"
9550
+ # resp.job_arn #=> String
9551
+ # resp.role_arn #=> String
9552
+ # resp.status #=> String, one of "PENDING", "IN_PROGRESS", "COMPLETED", "FAILED", "STOPPING", "STOPPED"
9553
+ # resp.creation_time #=> Time
9554
+ # resp.completion_time #=> Time
9555
+ # resp.last_modified_time #=> Time
9556
+ # resp.failure_reason #=> String
9557
+ # resp.input_config.model_package_version_arn #=> String
9558
+ # resp.input_config.job_duration_in_seconds #=> Integer
9559
+ # resp.input_config.traffic_pattern.traffic_type #=> String, one of "PHASES"
9560
+ # resp.input_config.traffic_pattern.phases #=> Array
9561
+ # resp.input_config.traffic_pattern.phases[0].initial_number_of_users #=> Integer
9562
+ # resp.input_config.traffic_pattern.phases[0].spawn_rate #=> Integer
9563
+ # resp.input_config.traffic_pattern.phases[0].duration_in_seconds #=> Integer
9564
+ # resp.input_config.resource_limit.max_number_of_tests #=> Integer
9565
+ # resp.input_config.resource_limit.max_parallel_of_tests #=> Integer
9566
+ # resp.input_config.endpoint_configurations #=> Array
9567
+ # 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"
9568
+ # resp.input_config.endpoint_configurations[0].inference_specification_name #=> String
9569
+ # resp.input_config.endpoint_configurations[0].environment_parameter_ranges.categorical_parameter_ranges #=> Array
9570
+ # resp.input_config.endpoint_configurations[0].environment_parameter_ranges.categorical_parameter_ranges[0].name #=> String
9571
+ # resp.input_config.endpoint_configurations[0].environment_parameter_ranges.categorical_parameter_ranges[0].value #=> Array
9572
+ # resp.input_config.endpoint_configurations[0].environment_parameter_ranges.categorical_parameter_ranges[0].value[0] #=> String
9573
+ # resp.stopping_conditions.max_invocations #=> Integer
9574
+ # resp.stopping_conditions.model_latency_thresholds #=> Array
9575
+ # resp.stopping_conditions.model_latency_thresholds[0].percentile #=> String
9576
+ # resp.stopping_conditions.model_latency_thresholds[0].value_in_milliseconds #=> Integer
9577
+ # resp.inference_recommendations #=> Array
9578
+ # resp.inference_recommendations[0].metrics.cost_per_hour #=> Float
9579
+ # resp.inference_recommendations[0].metrics.cost_per_inference #=> Float
9580
+ # resp.inference_recommendations[0].metrics.max_invocations #=> Integer
9581
+ # resp.inference_recommendations[0].metrics.model_latency #=> Integer
9582
+ # resp.inference_recommendations[0].endpoint_configuration.endpoint_name #=> String
9583
+ # resp.inference_recommendations[0].endpoint_configuration.variant_name #=> String
9584
+ # 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"
9585
+ # resp.inference_recommendations[0].endpoint_configuration.initial_instance_count #=> Integer
9586
+ # resp.inference_recommendations[0].model_configuration.inference_specification_name #=> String
9587
+ # resp.inference_recommendations[0].model_configuration.environment_parameters #=> Array
9588
+ # resp.inference_recommendations[0].model_configuration.environment_parameters[0].key #=> String
9589
+ # resp.inference_recommendations[0].model_configuration.environment_parameters[0].value_type #=> String
9590
+ # resp.inference_recommendations[0].model_configuration.environment_parameters[0].value #=> String
9591
+ #
9592
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeInferenceRecommendationsJob AWS API Documentation
9593
+ #
9594
+ # @overload describe_inference_recommendations_job(params = {})
9595
+ # @param [Hash] params ({})
9596
+ def describe_inference_recommendations_job(params = {}, options = {})
9597
+ req = build_request(:describe_inference_recommendations_job, params)
9598
+ req.send_request(options)
9599
+ end
9600
+
9221
9601
  # Gets information about a labeling job.
9222
9602
  #
9223
9603
  # @option params [required, String] :labeling_job_name
@@ -9310,6 +9690,58 @@ module Aws::SageMaker
9310
9690
  req.send_request(options)
9311
9691
  end
9312
9692
 
9693
+ # Provides a list of properties for the requested lineage group. For
9694
+ # more information, see [ Cross-Account Lineage Tracking ][1] in the
9695
+ # *Amazon SageMaker Developer Guide*.
9696
+ #
9697
+ #
9698
+ #
9699
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/xaccount-lineage-tracking.html
9700
+ #
9701
+ # @option params [required, String] :lineage_group_name
9702
+ # The name of the lineage group.
9703
+ #
9704
+ # @return [Types::DescribeLineageGroupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9705
+ #
9706
+ # * {Types::DescribeLineageGroupResponse#lineage_group_name #lineage_group_name} => String
9707
+ # * {Types::DescribeLineageGroupResponse#lineage_group_arn #lineage_group_arn} => String
9708
+ # * {Types::DescribeLineageGroupResponse#display_name #display_name} => String
9709
+ # * {Types::DescribeLineageGroupResponse#description #description} => String
9710
+ # * {Types::DescribeLineageGroupResponse#creation_time #creation_time} => Time
9711
+ # * {Types::DescribeLineageGroupResponse#created_by #created_by} => Types::UserContext
9712
+ # * {Types::DescribeLineageGroupResponse#last_modified_time #last_modified_time} => Time
9713
+ # * {Types::DescribeLineageGroupResponse#last_modified_by #last_modified_by} => Types::UserContext
9714
+ #
9715
+ # @example Request syntax with placeholder values
9716
+ #
9717
+ # resp = client.describe_lineage_group({
9718
+ # lineage_group_name: "ExperimentEntityName", # required
9719
+ # })
9720
+ #
9721
+ # @example Response structure
9722
+ #
9723
+ # resp.lineage_group_name #=> String
9724
+ # resp.lineage_group_arn #=> String
9725
+ # resp.display_name #=> String
9726
+ # resp.description #=> String
9727
+ # resp.creation_time #=> Time
9728
+ # resp.created_by.user_profile_arn #=> String
9729
+ # resp.created_by.user_profile_name #=> String
9730
+ # resp.created_by.domain_id #=> String
9731
+ # resp.last_modified_time #=> Time
9732
+ # resp.last_modified_by.user_profile_arn #=> String
9733
+ # resp.last_modified_by.user_profile_name #=> String
9734
+ # resp.last_modified_by.domain_id #=> String
9735
+ #
9736
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeLineageGroup AWS API Documentation
9737
+ #
9738
+ # @overload describe_lineage_group(params = {})
9739
+ # @param [Hash] params ({})
9740
+ def describe_lineage_group(params = {}, options = {})
9741
+ req = build_request(:describe_lineage_group, params)
9742
+ req.send_request(options)
9743
+ end
9744
+
9313
9745
  # Describes a model that you created using the `CreateModel` API.
9314
9746
  #
9315
9747
  # @option params [required, String] :model_name
@@ -9345,6 +9777,7 @@ module Aws::SageMaker
9345
9777
  # resp.primary_container.environment #=> Hash
9346
9778
  # resp.primary_container.environment["EnvironmentKey"] #=> String
9347
9779
  # resp.primary_container.model_package_name #=> String
9780
+ # resp.primary_container.inference_specification_name #=> String
9348
9781
  # resp.primary_container.multi_model_config.model_cache_setting #=> String, one of "Enabled", "Disabled"
9349
9782
  # resp.containers #=> Array
9350
9783
  # resp.containers[0].container_hostname #=> String
@@ -9356,6 +9789,7 @@ module Aws::SageMaker
9356
9789
  # resp.containers[0].environment #=> Hash
9357
9790
  # resp.containers[0].environment["EnvironmentKey"] #=> String
9358
9791
  # resp.containers[0].model_package_name #=> String
9792
+ # resp.containers[0].inference_specification_name #=> String
9359
9793
  # resp.containers[0].multi_model_config.model_cache_setting #=> String, one of "Enabled", "Disabled"
9360
9794
  # resp.inference_execution_config.mode #=> String, one of "Serial", "Direct"
9361
9795
  # resp.execution_role_arn #=> String
@@ -9563,6 +9997,11 @@ module Aws::SageMaker
9563
9997
  # * {Types::DescribeModelPackageOutput#last_modified_by #last_modified_by} => Types::UserContext
9564
9998
  # * {Types::DescribeModelPackageOutput#approval_description #approval_description} => String
9565
9999
  # * {Types::DescribeModelPackageOutput#customer_metadata_properties #customer_metadata_properties} => Hash&lt;String,String&gt;
10000
+ # * {Types::DescribeModelPackageOutput#drift_check_baselines #drift_check_baselines} => Types::DriftCheckBaselines
10001
+ # * {Types::DescribeModelPackageOutput#domain #domain} => String
10002
+ # * {Types::DescribeModelPackageOutput#task #task} => String
10003
+ # * {Types::DescribeModelPackageOutput#sample_payload_url #sample_payload_url} => String
10004
+ # * {Types::DescribeModelPackageOutput#additional_inference_specifications #additional_inference_specifications} => Array&lt;Types::AdditionalInferenceSpecificationDefinition&gt;
9566
10005
  #
9567
10006
  # @example Request syntax with placeholder values
9568
10007
  #
@@ -9586,6 +10025,10 @@ module Aws::SageMaker
9586
10025
  # resp.inference_specification.containers[0].product_id #=> String
9587
10026
  # resp.inference_specification.containers[0].environment #=> Hash
9588
10027
  # resp.inference_specification.containers[0].environment["EnvironmentKey"] #=> String
10028
+ # resp.inference_specification.containers[0].model_input.data_input_config #=> String
10029
+ # resp.inference_specification.containers[0].framework #=> String
10030
+ # resp.inference_specification.containers[0].framework_version #=> String
10031
+ # resp.inference_specification.containers[0].nearest_model_name #=> String
9589
10032
  # resp.inference_specification.supported_transform_instance_types #=> Array
9590
10033
  # 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"
9591
10034
  # resp.inference_specification.supported_realtime_inference_instance_types #=> Array
@@ -9650,6 +10093,12 @@ module Aws::SageMaker
9650
10093
  # resp.model_metrics.bias.report.content_type #=> String
9651
10094
  # resp.model_metrics.bias.report.content_digest #=> String
9652
10095
  # resp.model_metrics.bias.report.s3_uri #=> String
10096
+ # resp.model_metrics.bias.pre_training_report.content_type #=> String
10097
+ # resp.model_metrics.bias.pre_training_report.content_digest #=> String
10098
+ # resp.model_metrics.bias.pre_training_report.s3_uri #=> String
10099
+ # resp.model_metrics.bias.post_training_report.content_type #=> String
10100
+ # resp.model_metrics.bias.post_training_report.content_digest #=> String
10101
+ # resp.model_metrics.bias.post_training_report.s3_uri #=> String
9653
10102
  # resp.model_metrics.explainability.report.content_type #=> String
9654
10103
  # resp.model_metrics.explainability.report.content_digest #=> String
9655
10104
  # resp.model_metrics.explainability.report.s3_uri #=> String
@@ -9660,6 +10109,59 @@ module Aws::SageMaker
9660
10109
  # resp.approval_description #=> String
9661
10110
  # resp.customer_metadata_properties #=> Hash
9662
10111
  # resp.customer_metadata_properties["CustomerMetadataKey"] #=> String
10112
+ # resp.drift_check_baselines.bias.config_file.content_type #=> String
10113
+ # resp.drift_check_baselines.bias.config_file.content_digest #=> String
10114
+ # resp.drift_check_baselines.bias.config_file.s3_uri #=> String
10115
+ # resp.drift_check_baselines.bias.pre_training_constraints.content_type #=> String
10116
+ # resp.drift_check_baselines.bias.pre_training_constraints.content_digest #=> String
10117
+ # resp.drift_check_baselines.bias.pre_training_constraints.s3_uri #=> String
10118
+ # resp.drift_check_baselines.bias.post_training_constraints.content_type #=> String
10119
+ # resp.drift_check_baselines.bias.post_training_constraints.content_digest #=> String
10120
+ # resp.drift_check_baselines.bias.post_training_constraints.s3_uri #=> String
10121
+ # resp.drift_check_baselines.explainability.constraints.content_type #=> String
10122
+ # resp.drift_check_baselines.explainability.constraints.content_digest #=> String
10123
+ # resp.drift_check_baselines.explainability.constraints.s3_uri #=> String
10124
+ # resp.drift_check_baselines.explainability.config_file.content_type #=> String
10125
+ # resp.drift_check_baselines.explainability.config_file.content_digest #=> String
10126
+ # resp.drift_check_baselines.explainability.config_file.s3_uri #=> String
10127
+ # resp.drift_check_baselines.model_quality.statistics.content_type #=> String
10128
+ # resp.drift_check_baselines.model_quality.statistics.content_digest #=> String
10129
+ # resp.drift_check_baselines.model_quality.statistics.s3_uri #=> String
10130
+ # resp.drift_check_baselines.model_quality.constraints.content_type #=> String
10131
+ # resp.drift_check_baselines.model_quality.constraints.content_digest #=> String
10132
+ # resp.drift_check_baselines.model_quality.constraints.s3_uri #=> String
10133
+ # resp.drift_check_baselines.model_data_quality.statistics.content_type #=> String
10134
+ # resp.drift_check_baselines.model_data_quality.statistics.content_digest #=> String
10135
+ # resp.drift_check_baselines.model_data_quality.statistics.s3_uri #=> String
10136
+ # resp.drift_check_baselines.model_data_quality.constraints.content_type #=> String
10137
+ # resp.drift_check_baselines.model_data_quality.constraints.content_digest #=> String
10138
+ # resp.drift_check_baselines.model_data_quality.constraints.s3_uri #=> String
10139
+ # resp.domain #=> String
10140
+ # resp.task #=> String
10141
+ # resp.sample_payload_url #=> String
10142
+ # resp.additional_inference_specifications #=> Array
10143
+ # resp.additional_inference_specifications[0].name #=> String
10144
+ # resp.additional_inference_specifications[0].description #=> String
10145
+ # resp.additional_inference_specifications[0].containers #=> Array
10146
+ # resp.additional_inference_specifications[0].containers[0].container_hostname #=> String
10147
+ # resp.additional_inference_specifications[0].containers[0].image #=> String
10148
+ # resp.additional_inference_specifications[0].containers[0].image_digest #=> String
10149
+ # resp.additional_inference_specifications[0].containers[0].model_data_url #=> String
10150
+ # resp.additional_inference_specifications[0].containers[0].product_id #=> String
10151
+ # resp.additional_inference_specifications[0].containers[0].environment #=> Hash
10152
+ # resp.additional_inference_specifications[0].containers[0].environment["EnvironmentKey"] #=> String
10153
+ # resp.additional_inference_specifications[0].containers[0].model_input.data_input_config #=> String
10154
+ # resp.additional_inference_specifications[0].containers[0].framework #=> String
10155
+ # resp.additional_inference_specifications[0].containers[0].framework_version #=> String
10156
+ # resp.additional_inference_specifications[0].containers[0].nearest_model_name #=> String
10157
+ # resp.additional_inference_specifications[0].supported_transform_instance_types #=> Array
10158
+ # 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"
10159
+ # resp.additional_inference_specifications[0].supported_realtime_inference_instance_types #=> Array
10160
+ # 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"
10161
+ # resp.additional_inference_specifications[0].supported_content_types #=> Array
10162
+ # resp.additional_inference_specifications[0].supported_content_types[0] #=> String
10163
+ # resp.additional_inference_specifications[0].supported_response_mime_types #=> Array
10164
+ # resp.additional_inference_specifications[0].supported_response_mime_types[0] #=> String
9663
10165
  #
9664
10166
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeModelPackage AWS API Documentation
9665
10167
  #
@@ -10763,11 +11265,12 @@ module Aws::SageMaker
10763
11265
  # * {Types::DescribeTrialComponentResponse#output_artifacts #output_artifacts} => Hash&lt;String,Types::TrialComponentArtifact&gt;
10764
11266
  # * {Types::DescribeTrialComponentResponse#metadata_properties #metadata_properties} => Types::MetadataProperties
10765
11267
  # * {Types::DescribeTrialComponentResponse#metrics #metrics} => Array&lt;Types::TrialComponentMetricSummary&gt;
11268
+ # * {Types::DescribeTrialComponentResponse#lineage_group_arn #lineage_group_arn} => String
10766
11269
  #
10767
11270
  # @example Request syntax with placeholder values
10768
11271
  #
10769
11272
  # resp = client.describe_trial_component({
10770
- # trial_component_name: "ExperimentEntityName", # required
11273
+ # trial_component_name: "ExperimentEntityNameOrArn", # required
10771
11274
  # })
10772
11275
  #
10773
11276
  # @example Response structure
@@ -10812,6 +11315,7 @@ module Aws::SageMaker
10812
11315
  # resp.metrics[0].count #=> Integer
10813
11316
  # resp.metrics[0].avg #=> Float
10814
11317
  # resp.metrics[0].std_dev #=> Float
11318
+ # resp.lineage_group_arn #=> String
10815
11319
  #
10816
11320
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeTrialComponent AWS API Documentation
10817
11321
  #
@@ -11126,6 +11630,36 @@ module Aws::SageMaker
11126
11630
  req.send_request(options)
11127
11631
  end
11128
11632
 
11633
+ # The resource policy for the lineage group.
11634
+ #
11635
+ # @option params [required, String] :lineage_group_name
11636
+ # The name or Amazon Resource Name (ARN) of the lineage group.
11637
+ #
11638
+ # @return [Types::GetLineageGroupPolicyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
11639
+ #
11640
+ # * {Types::GetLineageGroupPolicyResponse#lineage_group_arn #lineage_group_arn} => String
11641
+ # * {Types::GetLineageGroupPolicyResponse#resource_policy #resource_policy} => String
11642
+ #
11643
+ # @example Request syntax with placeholder values
11644
+ #
11645
+ # resp = client.get_lineage_group_policy({
11646
+ # lineage_group_name: "LineageGroupNameOrArn", # required
11647
+ # })
11648
+ #
11649
+ # @example Response structure
11650
+ #
11651
+ # resp.lineage_group_arn #=> String
11652
+ # resp.resource_policy #=> String
11653
+ #
11654
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/GetLineageGroupPolicy AWS API Documentation
11655
+ #
11656
+ # @overload get_lineage_group_policy(params = {})
11657
+ # @param [Hash] params ({})
11658
+ def get_lineage_group_policy(params = {}, options = {})
11659
+ req = build_request(:get_lineage_group_policy, params)
11660
+ req.send_request(options)
11661
+ end
11662
+
11129
11663
  # Gets a resource policy that manages access for a model group. For
11130
11664
  # information about resource policies, see [Identity-based policies and
11131
11665
  # resource-based policies][1] in the *Amazon Web Services Identity and
@@ -11988,7 +12522,7 @@ module Aws::SageMaker
11988
12522
  # resp.compilation_job_summaries[0].creation_time #=> Time
11989
12523
  # resp.compilation_job_summaries[0].compilation_start_time #=> Time
11990
12524
  # resp.compilation_job_summaries[0].compilation_end_time #=> Time
11991
- # 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"
12525
+ # 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"
11992
12526
  # resp.compilation_job_summaries[0].compilation_target_platform_os #=> String, one of "ANDROID", "LINUX"
11993
12527
  # resp.compilation_job_summaries[0].compilation_target_platform_arch #=> String, one of "X86_64", "X86", "ARM64", "ARM_EABI", "ARM_EABIHF"
11994
12528
  # resp.compilation_job_summaries[0].compilation_target_platform_accelerator #=> String, one of "INTEL_GRAPHICS", "MALI", "NVIDIA"
@@ -13064,6 +13598,93 @@ module Aws::SageMaker
13064
13598
  req.send_request(options)
13065
13599
  end
13066
13600
 
13601
+ # Lists recommendation jobs that satisfy various filters.
13602
+ #
13603
+ # @option params [Time,DateTime,Date,Integer,String] :creation_time_after
13604
+ # A filter that returns only jobs created after the specified time
13605
+ # (timestamp).
13606
+ #
13607
+ # @option params [Time,DateTime,Date,Integer,String] :creation_time_before
13608
+ # A filter that returns only jobs created before the specified time
13609
+ # (timestamp).
13610
+ #
13611
+ # @option params [Time,DateTime,Date,Integer,String] :last_modified_time_after
13612
+ # A filter that returns only jobs that were last modified after the
13613
+ # specified time (timestamp).
13614
+ #
13615
+ # @option params [Time,DateTime,Date,Integer,String] :last_modified_time_before
13616
+ # A filter that returns only jobs that were last modified before the
13617
+ # specified time (timestamp).
13618
+ #
13619
+ # @option params [String] :name_contains
13620
+ # A string in the job name. This filter returns only recommendations
13621
+ # whose name contains the specified string.
13622
+ #
13623
+ # @option params [String] :status_equals
13624
+ # A filter that retrieves only inference recommendations jobs with a
13625
+ # specific status.
13626
+ #
13627
+ # @option params [String] :sort_by
13628
+ # The parameter by which to sort the results.
13629
+ #
13630
+ # @option params [String] :sort_order
13631
+ # The sort order for the results.
13632
+ #
13633
+ # @option params [String] :next_token
13634
+ # If the response to a previous
13635
+ # `ListInferenceRecommendationsJobsRequest` request was truncated, the
13636
+ # response includes a `NextToken`. To retrieve the next set of
13637
+ # recommendations, use the token in the next request.
13638
+ #
13639
+ # @option params [Integer] :max_results
13640
+ # The maximum number of recommendations to return in the response.
13641
+ #
13642
+ # @return [Types::ListInferenceRecommendationsJobsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
13643
+ #
13644
+ # * {Types::ListInferenceRecommendationsJobsResponse#inference_recommendations_jobs #inference_recommendations_jobs} => Array&lt;Types::InferenceRecommendationsJob&gt;
13645
+ # * {Types::ListInferenceRecommendationsJobsResponse#next_token #next_token} => String
13646
+ #
13647
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
13648
+ #
13649
+ # @example Request syntax with placeholder values
13650
+ #
13651
+ # resp = client.list_inference_recommendations_jobs({
13652
+ # creation_time_after: Time.now,
13653
+ # creation_time_before: Time.now,
13654
+ # last_modified_time_after: Time.now,
13655
+ # last_modified_time_before: Time.now,
13656
+ # name_contains: "NameContains",
13657
+ # status_equals: "PENDING", # accepts PENDING, IN_PROGRESS, COMPLETED, FAILED, STOPPING, STOPPED
13658
+ # sort_by: "Name", # accepts Name, CreationTime, Status
13659
+ # sort_order: "Ascending", # accepts Ascending, Descending
13660
+ # next_token: "NextToken",
13661
+ # max_results: 1,
13662
+ # })
13663
+ #
13664
+ # @example Response structure
13665
+ #
13666
+ # resp.inference_recommendations_jobs #=> Array
13667
+ # resp.inference_recommendations_jobs[0].job_name #=> String
13668
+ # resp.inference_recommendations_jobs[0].job_description #=> String
13669
+ # resp.inference_recommendations_jobs[0].job_type #=> String, one of "Default", "Advanced"
13670
+ # resp.inference_recommendations_jobs[0].job_arn #=> String
13671
+ # resp.inference_recommendations_jobs[0].status #=> String, one of "PENDING", "IN_PROGRESS", "COMPLETED", "FAILED", "STOPPING", "STOPPED"
13672
+ # resp.inference_recommendations_jobs[0].creation_time #=> Time
13673
+ # resp.inference_recommendations_jobs[0].completion_time #=> Time
13674
+ # resp.inference_recommendations_jobs[0].role_arn #=> String
13675
+ # resp.inference_recommendations_jobs[0].last_modified_time #=> Time
13676
+ # resp.inference_recommendations_jobs[0].failure_reason #=> String
13677
+ # resp.next_token #=> String
13678
+ #
13679
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListInferenceRecommendationsJobs AWS API Documentation
13680
+ #
13681
+ # @overload list_inference_recommendations_jobs(params = {})
13682
+ # @param [Hash] params ({})
13683
+ def list_inference_recommendations_jobs(params = {}, options = {})
13684
+ req = build_request(:list_inference_recommendations_jobs, params)
13685
+ req.send_request(options)
13686
+ end
13687
+
13067
13688
  # Gets a list of labeling jobs.
13068
13689
  #
13069
13690
  # @option params [Time,DateTime,Date,Integer,String] :creation_time_after
@@ -13235,6 +13856,74 @@ module Aws::SageMaker
13235
13856
  req.send_request(options)
13236
13857
  end
13237
13858
 
13859
+ # A list of lineage groups shared with your Amazon Web Services account.
13860
+ # For more information, see [ Cross-Account Lineage Tracking ][1] in the
13861
+ # *Amazon SageMaker Developer Guide*.
13862
+ #
13863
+ #
13864
+ #
13865
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/xaccount-lineage-tracking.html
13866
+ #
13867
+ # @option params [Time,DateTime,Date,Integer,String] :created_after
13868
+ # A timestamp to filter against lineage groups created after a certain
13869
+ # point in time.
13870
+ #
13871
+ # @option params [Time,DateTime,Date,Integer,String] :created_before
13872
+ # A timestamp to filter against lineage groups created before a certain
13873
+ # point in time.
13874
+ #
13875
+ # @option params [String] :sort_by
13876
+ # The parameter by which to sort the results. The default is
13877
+ # `CreationTime`.
13878
+ #
13879
+ # @option params [String] :sort_order
13880
+ # The sort order for the results. The default is `Ascending`.
13881
+ #
13882
+ # @option params [String] :next_token
13883
+ # If the response is truncated, SageMaker returns this token. To
13884
+ # retrieve the next set of algorithms, use it in the subsequent request.
13885
+ #
13886
+ # @option params [Integer] :max_results
13887
+ # The maximum number of endpoints to return in the response. This value
13888
+ # defaults to 10.
13889
+ #
13890
+ # @return [Types::ListLineageGroupsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
13891
+ #
13892
+ # * {Types::ListLineageGroupsResponse#lineage_group_summaries #lineage_group_summaries} => Array&lt;Types::LineageGroupSummary&gt;
13893
+ # * {Types::ListLineageGroupsResponse#next_token #next_token} => String
13894
+ #
13895
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
13896
+ #
13897
+ # @example Request syntax with placeholder values
13898
+ #
13899
+ # resp = client.list_lineage_groups({
13900
+ # created_after: Time.now,
13901
+ # created_before: Time.now,
13902
+ # sort_by: "Name", # accepts Name, CreationTime
13903
+ # sort_order: "Ascending", # accepts Ascending, Descending
13904
+ # next_token: "NextToken",
13905
+ # max_results: 1,
13906
+ # })
13907
+ #
13908
+ # @example Response structure
13909
+ #
13910
+ # resp.lineage_group_summaries #=> Array
13911
+ # resp.lineage_group_summaries[0].lineage_group_arn #=> String
13912
+ # resp.lineage_group_summaries[0].lineage_group_name #=> String
13913
+ # resp.lineage_group_summaries[0].display_name #=> String
13914
+ # resp.lineage_group_summaries[0].creation_time #=> Time
13915
+ # resp.lineage_group_summaries[0].last_modified_time #=> Time
13916
+ # resp.next_token #=> String
13917
+ #
13918
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListLineageGroups AWS API Documentation
13919
+ #
13920
+ # @overload list_lineage_groups(params = {})
13921
+ # @param [Hash] params ({})
13922
+ def list_lineage_groups(params = {}, options = {})
13923
+ req = build_request(:list_lineage_groups, params)
13924
+ req.send_request(options)
13925
+ end
13926
+
13238
13927
  # Lists model bias jobs definitions that satisfy various filters.
13239
13928
  #
13240
13929
  # @option params [String] :endpoint_name
@@ -13377,6 +14066,65 @@ module Aws::SageMaker
13377
14066
  req.send_request(options)
13378
14067
  end
13379
14068
 
14069
+ # Lists the domain, framework, task, and model name of standard machine
14070
+ # learning models found in common model zoos.
14071
+ #
14072
+ # @option params [Types::ModelMetadataSearchExpression] :search_expression
14073
+ # One or more filters that searches for the specified resource or
14074
+ # resources in a search. All resource objects that satisfy the
14075
+ # expression's condition are included in the search results. Specify
14076
+ # the Framework, FrameworkVersion, Domain or Task to filter supported.
14077
+ # Filter names and values are case-sensitive.
14078
+ #
14079
+ # @option params [String] :next_token
14080
+ # If the response to a previous `ListModelMetadataResponse` request was
14081
+ # truncated, the response includes a NextToken. To retrieve the next set
14082
+ # of model metadata, use the token in the next request.
14083
+ #
14084
+ # @option params [Integer] :max_results
14085
+ # The maximum number of models to return in the response.
14086
+ #
14087
+ # @return [Types::ListModelMetadataResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
14088
+ #
14089
+ # * {Types::ListModelMetadataResponse#model_metadata_summaries #model_metadata_summaries} => Array&lt;Types::ModelMetadataSummary&gt;
14090
+ # * {Types::ListModelMetadataResponse#next_token #next_token} => String
14091
+ #
14092
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
14093
+ #
14094
+ # @example Request syntax with placeholder values
14095
+ #
14096
+ # resp = client.list_model_metadata({
14097
+ # search_expression: {
14098
+ # filters: [
14099
+ # {
14100
+ # name: "Domain", # required, accepts Domain, Framework, Task, FrameworkVersion
14101
+ # value: "String256", # required
14102
+ # },
14103
+ # ],
14104
+ # },
14105
+ # next_token: "NextToken",
14106
+ # max_results: 1,
14107
+ # })
14108
+ #
14109
+ # @example Response structure
14110
+ #
14111
+ # resp.model_metadata_summaries #=> Array
14112
+ # resp.model_metadata_summaries[0].domain #=> String
14113
+ # resp.model_metadata_summaries[0].framework #=> String
14114
+ # resp.model_metadata_summaries[0].task #=> String
14115
+ # resp.model_metadata_summaries[0].model #=> String
14116
+ # resp.model_metadata_summaries[0].framework_version #=> String
14117
+ # resp.next_token #=> String
14118
+ #
14119
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListModelMetadata AWS API Documentation
14120
+ #
14121
+ # @overload list_model_metadata(params = {})
14122
+ # @param [Hash] params ({})
14123
+ def list_model_metadata(params = {}, options = {})
14124
+ req = build_request(:list_model_metadata, params)
14125
+ req.send_request(options)
14126
+ end
14127
+
13380
14128
  # Gets a list of the model groups in your Amazon Web Services account.
13381
14129
  #
13382
14130
  # @option params [Time,DateTime,Date,Integer,String] :creation_time_after
@@ -14108,6 +14856,7 @@ module Aws::SageMaker
14108
14856
  # resp.pipeline_execution_steps[0].end_time #=> Time
14109
14857
  # resp.pipeline_execution_steps[0].step_status #=> String, one of "Starting", "Executing", "Stopping", "Stopped", "Failed", "Succeeded"
14110
14858
  # resp.pipeline_execution_steps[0].cache_hit_result.source_pipeline_execution_arn #=> String
14859
+ # resp.pipeline_execution_steps[0].attempt_count #=> Integer
14111
14860
  # resp.pipeline_execution_steps[0].failure_reason #=> String
14112
14861
  # resp.pipeline_execution_steps[0].metadata.training_job.arn #=> String
14113
14862
  # resp.pipeline_execution_steps[0].metadata.processing_job.arn #=> String
@@ -14125,6 +14874,24 @@ module Aws::SageMaker
14125
14874
  # resp.pipeline_execution_steps[0].metadata.lambda.output_parameters #=> Array
14126
14875
  # resp.pipeline_execution_steps[0].metadata.lambda.output_parameters[0].name #=> String
14127
14876
  # resp.pipeline_execution_steps[0].metadata.lambda.output_parameters[0].value #=> String
14877
+ # resp.pipeline_execution_steps[0].metadata.quality_check.check_type #=> String
14878
+ # resp.pipeline_execution_steps[0].metadata.quality_check.baseline_used_for_drift_check_statistics #=> String
14879
+ # resp.pipeline_execution_steps[0].metadata.quality_check.baseline_used_for_drift_check_constraints #=> String
14880
+ # resp.pipeline_execution_steps[0].metadata.quality_check.calculated_baseline_statistics #=> String
14881
+ # resp.pipeline_execution_steps[0].metadata.quality_check.calculated_baseline_constraints #=> String
14882
+ # resp.pipeline_execution_steps[0].metadata.quality_check.model_package_group_name #=> String
14883
+ # resp.pipeline_execution_steps[0].metadata.quality_check.violation_report #=> String
14884
+ # resp.pipeline_execution_steps[0].metadata.quality_check.check_job_arn #=> String
14885
+ # resp.pipeline_execution_steps[0].metadata.quality_check.skip_check #=> Boolean
14886
+ # resp.pipeline_execution_steps[0].metadata.quality_check.register_new_baseline #=> Boolean
14887
+ # resp.pipeline_execution_steps[0].metadata.clarify_check.check_type #=> String
14888
+ # resp.pipeline_execution_steps[0].metadata.clarify_check.baseline_used_for_drift_check_constraints #=> String
14889
+ # resp.pipeline_execution_steps[0].metadata.clarify_check.calculated_baseline_constraints #=> String
14890
+ # resp.pipeline_execution_steps[0].metadata.clarify_check.model_package_group_name #=> String
14891
+ # resp.pipeline_execution_steps[0].metadata.clarify_check.violation_report #=> String
14892
+ # resp.pipeline_execution_steps[0].metadata.clarify_check.check_job_arn #=> String
14893
+ # resp.pipeline_execution_steps[0].metadata.clarify_check.skip_check #=> Boolean
14894
+ # resp.pipeline_execution_steps[0].metadata.clarify_check.register_new_baseline #=> Boolean
14128
14895
  # resp.next_token #=> String
14129
14896
  #
14130
14897
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListPipelineExecutionSteps AWS API Documentation
@@ -15319,6 +16086,112 @@ module Aws::SageMaker
15319
16086
  req.send_request(options)
15320
16087
  end
15321
16088
 
16089
+ # Use this action to inspect your lineage and discover relationships
16090
+ # between entities. For more information, see [ Querying Lineage
16091
+ # Entities][1] in the *Amazon SageMaker Developer Guide*.
16092
+ #
16093
+ #
16094
+ #
16095
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/querying-lineage-entities.html
16096
+ #
16097
+ # @option params [required, Array<String>] :start_arns
16098
+ # A list of resource Amazon Resource Name (ARN) that represent the
16099
+ # starting point for your lineage query.
16100
+ #
16101
+ # @option params [String] :direction
16102
+ # Associations between lineage entities are directed. This parameter
16103
+ # determines the direction from the StartArn(s) the query will look.
16104
+ #
16105
+ # @option params [Boolean] :include_edges
16106
+ # Setting this value to `True` will retrieve not only the entities of
16107
+ # interest but also the [Associations][1] and lineage entities on the
16108
+ # path. Set to `False` to only return lineage entities that match your
16109
+ # query.
16110
+ #
16111
+ #
16112
+ #
16113
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/lineage-tracking-entities.html
16114
+ #
16115
+ # @option params [Types::QueryFilters] :filters
16116
+ # A set of filtering parameters that allow you to specify which entities
16117
+ # should be returned.
16118
+ #
16119
+ # * Properties - Key-value pairs to match on the lineage entities'
16120
+ # properties.
16121
+ #
16122
+ # * LineageTypes - A set of lineage entity types to match on. For
16123
+ # example: `TrialComponent`, `Artifact`, or `Context`.
16124
+ #
16125
+ # * CreatedBefore - Filter entities created before this date.
16126
+ #
16127
+ # * ModifiedBefore - Filter entities modified before this date.
16128
+ #
16129
+ # * ModifiedAfter - Filter entities modified after this date.
16130
+ #
16131
+ # @option params [Integer] :max_depth
16132
+ # The maximum depth in lineage relationships from the `StartArns` that
16133
+ # will be traversed. Depth is a measure of the number of `Associations`
16134
+ # from the `StartArn` entity to the matched results.
16135
+ #
16136
+ # @option params [Integer] :max_results
16137
+ # Limits the number of vertices in the results. Use the `NextToken` in a
16138
+ # response to to retrieve the next page of results.
16139
+ #
16140
+ # @option params [String] :next_token
16141
+ # Limits the number of vertices in the request. Use the `NextToken` in a
16142
+ # response to to retrieve the next page of results.
16143
+ #
16144
+ # @return [Types::QueryLineageResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
16145
+ #
16146
+ # * {Types::QueryLineageResponse#vertices #vertices} => Array&lt;Types::Vertex&gt;
16147
+ # * {Types::QueryLineageResponse#edges #edges} => Array&lt;Types::Edge&gt;
16148
+ # * {Types::QueryLineageResponse#next_token #next_token} => String
16149
+ #
16150
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
16151
+ #
16152
+ # @example Request syntax with placeholder values
16153
+ #
16154
+ # resp = client.query_lineage({
16155
+ # start_arns: ["AssociationEntityArn"], # required
16156
+ # direction: "Both", # accepts Both, Ascendants, Descendants
16157
+ # include_edges: false,
16158
+ # filters: {
16159
+ # types: ["String40"],
16160
+ # lineage_types: ["TrialComponent"], # accepts TrialComponent, Artifact, Context, Action
16161
+ # created_before: Time.now,
16162
+ # created_after: Time.now,
16163
+ # modified_before: Time.now,
16164
+ # modified_after: Time.now,
16165
+ # properties: {
16166
+ # "String256" => "String256",
16167
+ # },
16168
+ # },
16169
+ # max_depth: 1,
16170
+ # max_results: 1,
16171
+ # next_token: "String8192",
16172
+ # })
16173
+ #
16174
+ # @example Response structure
16175
+ #
16176
+ # resp.vertices #=> Array
16177
+ # resp.vertices[0].arn #=> String
16178
+ # resp.vertices[0].type #=> String
16179
+ # resp.vertices[0].lineage_type #=> String, one of "TrialComponent", "Artifact", "Context", "Action"
16180
+ # resp.edges #=> Array
16181
+ # resp.edges[0].source_arn #=> String
16182
+ # resp.edges[0].destination_arn #=> String
16183
+ # resp.edges[0].association_type #=> String, one of "ContributedTo", "AssociatedWith", "DerivedFrom", "Produced"
16184
+ # resp.next_token #=> String
16185
+ #
16186
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/QueryLineage AWS API Documentation
16187
+ #
16188
+ # @overload query_lineage(params = {})
16189
+ # @param [Hash] params ({})
16190
+ def query_lineage(params = {}, options = {})
16191
+ req = build_request(:query_lineage, params)
16192
+ req.send_request(options)
16193
+ end
16194
+
15322
16195
  # Register devices.
15323
16196
  #
15324
16197
  # @option params [required, String] :device_fleet_name
@@ -15935,6 +16808,7 @@ module Aws::SageMaker
15935
16808
  # resp.results[0].trial_component.source_detail.transform_job.tags #=> Array
15936
16809
  # resp.results[0].trial_component.source_detail.transform_job.tags[0].key #=> String
15937
16810
  # resp.results[0].trial_component.source_detail.transform_job.tags[0].value #=> String
16811
+ # resp.results[0].trial_component.lineage_group_arn #=> String
15938
16812
  # resp.results[0].trial_component.tags #=> Array
15939
16813
  # resp.results[0].trial_component.tags[0].key #=> String
15940
16814
  # resp.results[0].trial_component.tags[0].value #=> String
@@ -15958,6 +16832,10 @@ module Aws::SageMaker
15958
16832
  # resp.results[0].endpoint.production_variants[0].variant_status[0].status #=> String, one of "Creating", "Updating", "Deleting", "ActivatingTraffic", "Baking"
15959
16833
  # resp.results[0].endpoint.production_variants[0].variant_status[0].status_message #=> String
15960
16834
  # resp.results[0].endpoint.production_variants[0].variant_status[0].start_time #=> Time
16835
+ # resp.results[0].endpoint.production_variants[0].current_serverless_config.memory_size_in_mb #=> Integer
16836
+ # resp.results[0].endpoint.production_variants[0].current_serverless_config.max_concurrency #=> Integer
16837
+ # resp.results[0].endpoint.production_variants[0].desired_serverless_config.memory_size_in_mb #=> Integer
16838
+ # resp.results[0].endpoint.production_variants[0].desired_serverless_config.max_concurrency #=> Integer
15961
16839
  # resp.results[0].endpoint.data_capture_config.enable_capture #=> Boolean
15962
16840
  # resp.results[0].endpoint.data_capture_config.capture_status #=> String, one of "Started", "Stopped"
15963
16841
  # resp.results[0].endpoint.data_capture_config.current_sampling_percentage #=> Integer
@@ -16049,6 +16927,10 @@ module Aws::SageMaker
16049
16927
  # resp.results[0].model_package.inference_specification.containers[0].product_id #=> String
16050
16928
  # resp.results[0].model_package.inference_specification.containers[0].environment #=> Hash
16051
16929
  # resp.results[0].model_package.inference_specification.containers[0].environment["EnvironmentKey"] #=> String
16930
+ # resp.results[0].model_package.inference_specification.containers[0].model_input.data_input_config #=> String
16931
+ # resp.results[0].model_package.inference_specification.containers[0].framework #=> String
16932
+ # resp.results[0].model_package.inference_specification.containers[0].framework_version #=> String
16933
+ # resp.results[0].model_package.inference_specification.containers[0].nearest_model_name #=> String
16052
16934
  # resp.results[0].model_package.inference_specification.supported_transform_instance_types #=> Array
16053
16935
  # 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"
16054
16936
  # resp.results[0].model_package.inference_specification.supported_realtime_inference_instance_types #=> Array
@@ -16113,6 +16995,12 @@ module Aws::SageMaker
16113
16995
  # resp.results[0].model_package.model_metrics.bias.report.content_type #=> String
16114
16996
  # resp.results[0].model_package.model_metrics.bias.report.content_digest #=> String
16115
16997
  # resp.results[0].model_package.model_metrics.bias.report.s3_uri #=> String
16998
+ # resp.results[0].model_package.model_metrics.bias.pre_training_report.content_type #=> String
16999
+ # resp.results[0].model_package.model_metrics.bias.pre_training_report.content_digest #=> String
17000
+ # resp.results[0].model_package.model_metrics.bias.pre_training_report.s3_uri #=> String
17001
+ # resp.results[0].model_package.model_metrics.bias.post_training_report.content_type #=> String
17002
+ # resp.results[0].model_package.model_metrics.bias.post_training_report.content_digest #=> String
17003
+ # resp.results[0].model_package.model_metrics.bias.post_training_report.s3_uri #=> String
16116
17004
  # resp.results[0].model_package.model_metrics.explainability.report.content_type #=> String
16117
17005
  # resp.results[0].model_package.model_metrics.explainability.report.content_digest #=> String
16118
17006
  # resp.results[0].model_package.model_metrics.explainability.report.s3_uri #=> String
@@ -16121,11 +17009,64 @@ module Aws::SageMaker
16121
17009
  # resp.results[0].model_package.last_modified_by.user_profile_name #=> String
16122
17010
  # resp.results[0].model_package.last_modified_by.domain_id #=> String
16123
17011
  # resp.results[0].model_package.approval_description #=> String
17012
+ # resp.results[0].model_package.domain #=> String
17013
+ # resp.results[0].model_package.task #=> String
17014
+ # resp.results[0].model_package.sample_payload_url #=> String
17015
+ # resp.results[0].model_package.additional_inference_specifications #=> Array
17016
+ # resp.results[0].model_package.additional_inference_specifications[0].name #=> String
17017
+ # resp.results[0].model_package.additional_inference_specifications[0].description #=> String
17018
+ # resp.results[0].model_package.additional_inference_specifications[0].containers #=> Array
17019
+ # resp.results[0].model_package.additional_inference_specifications[0].containers[0].container_hostname #=> String
17020
+ # resp.results[0].model_package.additional_inference_specifications[0].containers[0].image #=> String
17021
+ # resp.results[0].model_package.additional_inference_specifications[0].containers[0].image_digest #=> String
17022
+ # resp.results[0].model_package.additional_inference_specifications[0].containers[0].model_data_url #=> String
17023
+ # resp.results[0].model_package.additional_inference_specifications[0].containers[0].product_id #=> String
17024
+ # resp.results[0].model_package.additional_inference_specifications[0].containers[0].environment #=> Hash
17025
+ # resp.results[0].model_package.additional_inference_specifications[0].containers[0].environment["EnvironmentKey"] #=> String
17026
+ # resp.results[0].model_package.additional_inference_specifications[0].containers[0].model_input.data_input_config #=> String
17027
+ # resp.results[0].model_package.additional_inference_specifications[0].containers[0].framework #=> String
17028
+ # resp.results[0].model_package.additional_inference_specifications[0].containers[0].framework_version #=> String
17029
+ # resp.results[0].model_package.additional_inference_specifications[0].containers[0].nearest_model_name #=> String
17030
+ # resp.results[0].model_package.additional_inference_specifications[0].supported_transform_instance_types #=> Array
17031
+ # 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"
17032
+ # resp.results[0].model_package.additional_inference_specifications[0].supported_realtime_inference_instance_types #=> Array
17033
+ # 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"
17034
+ # resp.results[0].model_package.additional_inference_specifications[0].supported_content_types #=> Array
17035
+ # resp.results[0].model_package.additional_inference_specifications[0].supported_content_types[0] #=> String
17036
+ # resp.results[0].model_package.additional_inference_specifications[0].supported_response_mime_types #=> Array
17037
+ # resp.results[0].model_package.additional_inference_specifications[0].supported_response_mime_types[0] #=> String
16124
17038
  # resp.results[0].model_package.tags #=> Array
16125
17039
  # resp.results[0].model_package.tags[0].key #=> String
16126
17040
  # resp.results[0].model_package.tags[0].value #=> String
16127
17041
  # resp.results[0].model_package.customer_metadata_properties #=> Hash
16128
17042
  # resp.results[0].model_package.customer_metadata_properties["CustomerMetadataKey"] #=> String
17043
+ # resp.results[0].model_package.drift_check_baselines.bias.config_file.content_type #=> String
17044
+ # resp.results[0].model_package.drift_check_baselines.bias.config_file.content_digest #=> String
17045
+ # resp.results[0].model_package.drift_check_baselines.bias.config_file.s3_uri #=> String
17046
+ # resp.results[0].model_package.drift_check_baselines.bias.pre_training_constraints.content_type #=> String
17047
+ # resp.results[0].model_package.drift_check_baselines.bias.pre_training_constraints.content_digest #=> String
17048
+ # resp.results[0].model_package.drift_check_baselines.bias.pre_training_constraints.s3_uri #=> String
17049
+ # resp.results[0].model_package.drift_check_baselines.bias.post_training_constraints.content_type #=> String
17050
+ # resp.results[0].model_package.drift_check_baselines.bias.post_training_constraints.content_digest #=> String
17051
+ # resp.results[0].model_package.drift_check_baselines.bias.post_training_constraints.s3_uri #=> String
17052
+ # resp.results[0].model_package.drift_check_baselines.explainability.constraints.content_type #=> String
17053
+ # resp.results[0].model_package.drift_check_baselines.explainability.constraints.content_digest #=> String
17054
+ # resp.results[0].model_package.drift_check_baselines.explainability.constraints.s3_uri #=> String
17055
+ # resp.results[0].model_package.drift_check_baselines.explainability.config_file.content_type #=> String
17056
+ # resp.results[0].model_package.drift_check_baselines.explainability.config_file.content_digest #=> String
17057
+ # resp.results[0].model_package.drift_check_baselines.explainability.config_file.s3_uri #=> String
17058
+ # resp.results[0].model_package.drift_check_baselines.model_quality.statistics.content_type #=> String
17059
+ # resp.results[0].model_package.drift_check_baselines.model_quality.statistics.content_digest #=> String
17060
+ # resp.results[0].model_package.drift_check_baselines.model_quality.statistics.s3_uri #=> String
17061
+ # resp.results[0].model_package.drift_check_baselines.model_quality.constraints.content_type #=> String
17062
+ # resp.results[0].model_package.drift_check_baselines.model_quality.constraints.content_digest #=> String
17063
+ # resp.results[0].model_package.drift_check_baselines.model_quality.constraints.s3_uri #=> String
17064
+ # resp.results[0].model_package.drift_check_baselines.model_data_quality.statistics.content_type #=> String
17065
+ # resp.results[0].model_package.drift_check_baselines.model_data_quality.statistics.content_digest #=> String
17066
+ # resp.results[0].model_package.drift_check_baselines.model_data_quality.statistics.s3_uri #=> String
17067
+ # resp.results[0].model_package.drift_check_baselines.model_data_quality.constraints.content_type #=> String
17068
+ # resp.results[0].model_package.drift_check_baselines.model_data_quality.constraints.content_digest #=> String
17069
+ # resp.results[0].model_package.drift_check_baselines.model_data_quality.constraints.s3_uri #=> String
16129
17070
  # resp.results[0].model_package_group.model_package_group_name #=> String
16130
17071
  # resp.results[0].model_package_group.model_package_group_arn #=> String
16131
17072
  # resp.results[0].model_package_group.model_package_group_description #=> String
@@ -16539,6 +17480,28 @@ module Aws::SageMaker
16539
17480
  req.send_request(options)
16540
17481
  end
16541
17482
 
17483
+ # Stops an Inference Recommender job.
17484
+ #
17485
+ # @option params [required, String] :job_name
17486
+ # The name of the job you want to stop.
17487
+ #
17488
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
17489
+ #
17490
+ # @example Request syntax with placeholder values
17491
+ #
17492
+ # resp = client.stop_inference_recommendations_job({
17493
+ # job_name: "RecommendationJobName", # required
17494
+ # })
17495
+ #
17496
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/StopInferenceRecommendationsJob AWS API Documentation
17497
+ #
17498
+ # @overload stop_inference_recommendations_job(params = {})
17499
+ # @param [Hash] params ({})
17500
+ def stop_inference_recommendations_job(params = {}, options = {})
17501
+ req = build_request(:stop_inference_recommendations_job, params)
17502
+ req.send_request(options)
17503
+ end
17504
+
16542
17505
  # Stops a running labeling job. A job that is stopped cannot be
16543
17506
  # restarted. Any results obtained before the job is stopped are placed
16544
17507
  # in the Amazon S3 output bucket.
@@ -17407,6 +18370,14 @@ module Aws::SageMaker
17407
18370
  # The metadata properties associated with the model package versions to
17408
18371
  # remove.
17409
18372
  #
18373
+ # @option params [Array<Types::AdditionalInferenceSpecificationDefinition>] :additional_inference_specifications_to_add
18374
+ # An array of additional Inference Specification objects to be added to
18375
+ # the existing array additional Inference Specification. Total number of
18376
+ # additional Inference Specifications can not exceed 15. Each additional
18377
+ # Inference Specification specifies artifacts based on this model
18378
+ # package that can be used on inference endpoints. Generally used with
18379
+ # SageMaker Neo to store the compiled artifacts.
18380
+ #
17410
18381
  # @return [Types::UpdateModelPackageOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
17411
18382
  #
17412
18383
  # * {Types::UpdateModelPackageOutput#model_package_arn #model_package_arn} => String
@@ -17421,6 +18392,34 @@ module Aws::SageMaker
17421
18392
  # "CustomerMetadataKey" => "CustomerMetadataValue",
17422
18393
  # },
17423
18394
  # customer_metadata_properties_to_remove: ["CustomerMetadataKey"],
18395
+ # additional_inference_specifications_to_add: [
18396
+ # {
18397
+ # name: "EntityName", # required
18398
+ # description: "EntityDescription",
18399
+ # containers: [ # required
18400
+ # {
18401
+ # container_hostname: "ContainerHostname",
18402
+ # image: "ContainerImage", # required
18403
+ # image_digest: "ImageDigest",
18404
+ # model_data_url: "Url",
18405
+ # product_id: "ProductId",
18406
+ # environment: {
18407
+ # "EnvironmentKey" => "EnvironmentValue",
18408
+ # },
18409
+ # model_input: {
18410
+ # data_input_config: "DataInputConfig", # required
18411
+ # },
18412
+ # framework: "String",
18413
+ # framework_version: "FrameworkVersion",
18414
+ # nearest_model_name: "String",
18415
+ # },
18416
+ # ],
18417
+ # 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
18418
+ # 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
18419
+ # supported_content_types: ["ContentType"],
18420
+ # supported_response_mime_types: ["ResponseMIMEType"],
18421
+ # },
18422
+ # ],
17424
18423
  # })
17425
18424
  #
17426
18425
  # @example Response structure
@@ -18367,7 +19366,7 @@ module Aws::SageMaker
18367
19366
  params: params,
18368
19367
  config: config)
18369
19368
  context[:gem_name] = 'aws-sdk-sagemaker'
18370
- context[:gem_version] = '1.108.0'
19369
+ context[:gem_version] = '1.112.0'
18371
19370
  Seahorse::Client::Request.new(handlers, context)
18372
19371
  end
18373
19372