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