aws-sdk-sagemaker 1.106.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +1087 -11
- data/lib/aws-sdk-sagemaker/client_api.rb +608 -7
- data/lib/aws-sdk-sagemaker/types.rb +2850 -71
- data/lib/aws-sdk-sagemaker.rb +1 -1
- metadata +4 -4
@@ -119,7 +119,9 @@ module Aws::SageMaker
|
|
119
119
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
120
|
# are very aggressive. Construct and pass an instance of
|
121
121
|
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
-
# enable retries and extended timeouts.
|
122
|
+
# enable retries and extended timeouts. Instance profile credential
|
123
|
+
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
124
|
+
# to true.
|
123
125
|
#
|
124
126
|
# @option options [required, String] :region
|
125
127
|
# The AWS region to connect to. The configured `:region` is
|
@@ -285,6 +287,15 @@ module Aws::SageMaker
|
|
285
287
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
286
288
|
# requests are made, and retries are disabled.
|
287
289
|
#
|
290
|
+
# @option options [Boolean] :use_dualstack_endpoint
|
291
|
+
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
292
|
+
# will be used if available.
|
293
|
+
#
|
294
|
+
# @option options [Boolean] :use_fips_endpoint
|
295
|
+
# When set to `true`, fips compatible endpoints will be used if available.
|
296
|
+
# When a `fips` region is used, the region is normalized and this config
|
297
|
+
# is set to `true`.
|
298
|
+
#
|
288
299
|
# @option options [Boolean] :validate_params (true)
|
289
300
|
# When `true`, request parameters are validated before
|
290
301
|
# sending the request.
|
@@ -546,6 +557,10 @@ module Aws::SageMaker
|
|
546
557
|
# resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].product_id #=> String
|
547
558
|
# resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].environment #=> Hash
|
548
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
|
549
564
|
# resp.model_package_summaries["ModelPackageArn"].inference_specification.supported_transform_instance_types #=> Array
|
550
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"
|
551
566
|
# resp.model_package_summaries["ModelPackageArn"].inference_specification.supported_realtime_inference_instance_types #=> Array
|
@@ -785,6 +800,12 @@ module Aws::SageMaker
|
|
785
800
|
# environment: {
|
786
801
|
# "EnvironmentKey" => "EnvironmentValue",
|
787
802
|
# },
|
803
|
+
# model_input: {
|
804
|
+
# data_input_config: "DataInputConfig", # required
|
805
|
+
# },
|
806
|
+
# framework: "String",
|
807
|
+
# framework_version: "FrameworkVersion",
|
808
|
+
# nearest_model_name: "String",
|
788
809
|
# },
|
789
810
|
# ],
|
790
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
|
@@ -1353,7 +1374,13 @@ module Aws::SageMaker
|
|
1353
1374
|
#
|
1354
1375
|
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/sagemaker-roles.html
|
1355
1376
|
#
|
1356
|
-
# @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
|
1357
1384
|
# Provides information about the location of input model artifacts, the
|
1358
1385
|
# name and shape of the expected data inputs, and the framework in which
|
1359
1386
|
# the model was trained.
|
@@ -1396,7 +1423,8 @@ module Aws::SageMaker
|
|
1396
1423
|
# resp = client.create_compilation_job({
|
1397
1424
|
# compilation_job_name: "EntityName", # required
|
1398
1425
|
# role_arn: "RoleArn", # required
|
1399
|
-
#
|
1426
|
+
# model_package_version_arn: "ModelPackageArn",
|
1427
|
+
# input_config: {
|
1400
1428
|
# s3_uri: "S3Uri", # required
|
1401
1429
|
# data_input_config: "DataInputConfig", # required
|
1402
1430
|
# framework: "TENSORFLOW", # required, accepts TENSORFLOW, KERAS, MXNET, ONNX, PYTORCH, XGBOOST, TFLITE, DARKNET, SKLEARN
|
@@ -2091,6 +2119,10 @@ module Aws::SageMaker
|
|
2091
2119
|
# The name of an endpoint configuration. For more information, see
|
2092
2120
|
# CreateEndpointConfig.
|
2093
2121
|
#
|
2122
|
+
# @option params [Types::DeploymentConfig] :deployment_config
|
2123
|
+
# The deployment configuration for an endpoint, which contains the
|
2124
|
+
# desired deployment strategy and rollback configurations.
|
2125
|
+
#
|
2094
2126
|
# @option params [Array<Types::Tag>] :tags
|
2095
2127
|
# An array of key-value pairs. You can use tags to categorize your
|
2096
2128
|
# Amazon Web Services resources in different ways, for example, by
|
@@ -2110,6 +2142,31 @@ module Aws::SageMaker
|
|
2110
2142
|
# resp = client.create_endpoint({
|
2111
2143
|
# endpoint_name: "EndpointName", # required
|
2112
2144
|
# endpoint_config_name: "EndpointConfigName", # required
|
2145
|
+
# deployment_config: {
|
2146
|
+
# blue_green_update_policy: { # required
|
2147
|
+
# traffic_routing_configuration: { # required
|
2148
|
+
# type: "ALL_AT_ONCE", # required, accepts ALL_AT_ONCE, CANARY, LINEAR
|
2149
|
+
# wait_interval_in_seconds: 1, # required
|
2150
|
+
# canary_size: {
|
2151
|
+
# type: "INSTANCE_COUNT", # required, accepts INSTANCE_COUNT, CAPACITY_PERCENT
|
2152
|
+
# value: 1, # required
|
2153
|
+
# },
|
2154
|
+
# linear_step_size: {
|
2155
|
+
# type: "INSTANCE_COUNT", # required, accepts INSTANCE_COUNT, CAPACITY_PERCENT
|
2156
|
+
# value: 1, # required
|
2157
|
+
# },
|
2158
|
+
# },
|
2159
|
+
# termination_wait_in_seconds: 1,
|
2160
|
+
# maximum_execution_timeout_in_seconds: 1,
|
2161
|
+
# },
|
2162
|
+
# auto_rollback_configuration: {
|
2163
|
+
# alarms: [
|
2164
|
+
# {
|
2165
|
+
# alarm_name: "AlarmName",
|
2166
|
+
# },
|
2167
|
+
# ],
|
2168
|
+
# },
|
2169
|
+
# },
|
2113
2170
|
# tags: [
|
2114
2171
|
# {
|
2115
2172
|
# key: "TagKey", # required
|
@@ -2259,14 +2316,18 @@ module Aws::SageMaker
|
|
2259
2316
|
# {
|
2260
2317
|
# variant_name: "VariantName", # required
|
2261
2318
|
# model_name: "ModelName", # required
|
2262
|
-
# initial_instance_count: 1,
|
2263
|
-
# 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
|
2264
2321
|
# initial_variant_weight: 1.0,
|
2265
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
|
2266
2323
|
# core_dump_config: {
|
2267
2324
|
# destination_s3_uri: "DestinationS3Uri", # required
|
2268
2325
|
# kms_key_id: "KmsKeyId",
|
2269
2326
|
# },
|
2327
|
+
# serverless_config: {
|
2328
|
+
# memory_size_in_mb: 1, # required
|
2329
|
+
# max_concurrency: 1, # required
|
2330
|
+
# },
|
2270
2331
|
# },
|
2271
2332
|
# ],
|
2272
2333
|
# data_capture_config: {
|
@@ -3162,6 +3223,119 @@ module Aws::SageMaker
|
|
3162
3223
|
req.send_request(options)
|
3163
3224
|
end
|
3164
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
|
+
|
3165
3339
|
# Creates a job that uses workers to label the data objects in your
|
3166
3340
|
# input dataset. You can use the labeled data to train machine learning
|
3167
3341
|
# models.
|
@@ -3585,6 +3759,7 @@ module Aws::SageMaker
|
|
3585
3759
|
# "EnvironmentKey" => "EnvironmentValue",
|
3586
3760
|
# },
|
3587
3761
|
# model_package_name: "VersionedArnOrName",
|
3762
|
+
# inference_specification_name: "InferenceSpecificationName",
|
3588
3763
|
# multi_model_config: {
|
3589
3764
|
# model_cache_setting: "Enabled", # accepts Enabled, Disabled
|
3590
3765
|
# },
|
@@ -3605,6 +3780,7 @@ module Aws::SageMaker
|
|
3605
3780
|
# "EnvironmentKey" => "EnvironmentValue",
|
3606
3781
|
# },
|
3607
3782
|
# model_package_name: "VersionedArnOrName",
|
3783
|
+
# inference_specification_name: "InferenceSpecificationName",
|
3608
3784
|
# multi_model_config: {
|
3609
3785
|
# model_cache_setting: "Enabled", # accepts Enabled, Disabled
|
3610
3786
|
# },
|
@@ -4004,6 +4180,37 @@ module Aws::SageMaker
|
|
4004
4180
|
# @option params [Hash<String,String>] :customer_metadata_properties
|
4005
4181
|
# The metadata properties associated with the model package versions.
|
4006
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
|
+
#
|
4007
4214
|
# @return [Types::CreateModelPackageOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4008
4215
|
#
|
4009
4216
|
# * {Types::CreateModelPackageOutput#model_package_arn #model_package_arn} => String
|
@@ -4025,6 +4232,12 @@ module Aws::SageMaker
|
|
4025
4232
|
# environment: {
|
4026
4233
|
# "EnvironmentKey" => "EnvironmentValue",
|
4027
4234
|
# },
|
4235
|
+
# model_input: {
|
4236
|
+
# data_input_config: "DataInputConfig", # required
|
4237
|
+
# },
|
4238
|
+
# framework: "String",
|
4239
|
+
# framework_version: "FrameworkVersion",
|
4240
|
+
# nearest_model_name: "String",
|
4028
4241
|
# },
|
4029
4242
|
# ],
|
4030
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
|
@@ -4123,6 +4336,16 @@ module Aws::SageMaker
|
|
4123
4336
|
# content_digest: "ContentDigest",
|
4124
4337
|
# s3_uri: "S3Uri", # required
|
4125
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
|
+
# },
|
4126
4349
|
# },
|
4127
4350
|
# explainability: {
|
4128
4351
|
# report: {
|
@@ -4136,6 +4359,92 @@ module Aws::SageMaker
|
|
4136
4359
|
# customer_metadata_properties: {
|
4137
4360
|
# "CustomerMetadataKey" => "CustomerMetadataValue",
|
4138
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
|
+
# ],
|
4139
4448
|
# })
|
4140
4449
|
#
|
4141
4450
|
# @example Response structure
|
@@ -7484,6 +7793,7 @@ module Aws::SageMaker
|
|
7484
7793
|
# * {Types::DescribeActionResponse#last_modified_time #last_modified_time} => Time
|
7485
7794
|
# * {Types::DescribeActionResponse#last_modified_by #last_modified_by} => Types::UserContext
|
7486
7795
|
# * {Types::DescribeActionResponse#metadata_properties #metadata_properties} => Types::MetadataProperties
|
7796
|
+
# * {Types::DescribeActionResponse#lineage_group_arn #lineage_group_arn} => String
|
7487
7797
|
#
|
7488
7798
|
# @example Request syntax with placeholder values
|
7489
7799
|
#
|
@@ -7515,6 +7825,7 @@ module Aws::SageMaker
|
|
7515
7825
|
# resp.metadata_properties.repository #=> String
|
7516
7826
|
# resp.metadata_properties.generated_by #=> String
|
7517
7827
|
# resp.metadata_properties.project_id #=> String
|
7828
|
+
# resp.lineage_group_arn #=> String
|
7518
7829
|
#
|
7519
7830
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeAction AWS API Documentation
|
7520
7831
|
#
|
@@ -7599,6 +7910,10 @@ module Aws::SageMaker
|
|
7599
7910
|
# resp.inference_specification.containers[0].product_id #=> String
|
7600
7911
|
# resp.inference_specification.containers[0].environment #=> Hash
|
7601
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
|
7602
7917
|
# resp.inference_specification.supported_transform_instance_types #=> Array
|
7603
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"
|
7604
7919
|
# resp.inference_specification.supported_realtime_inference_instance_types #=> Array
|
@@ -7796,6 +8111,7 @@ module Aws::SageMaker
|
|
7796
8111
|
# * {Types::DescribeArtifactResponse#last_modified_time #last_modified_time} => Time
|
7797
8112
|
# * {Types::DescribeArtifactResponse#last_modified_by #last_modified_by} => Types::UserContext
|
7798
8113
|
# * {Types::DescribeArtifactResponse#metadata_properties #metadata_properties} => Types::MetadataProperties
|
8114
|
+
# * {Types::DescribeArtifactResponse#lineage_group_arn #lineage_group_arn} => String
|
7799
8115
|
#
|
7800
8116
|
# @example Request syntax with placeholder values
|
7801
8117
|
#
|
@@ -7826,6 +8142,7 @@ module Aws::SageMaker
|
|
7826
8142
|
# resp.metadata_properties.repository #=> String
|
7827
8143
|
# resp.metadata_properties.generated_by #=> String
|
7828
8144
|
# resp.metadata_properties.project_id #=> String
|
8145
|
+
# resp.lineage_group_arn #=> String
|
7829
8146
|
#
|
7830
8147
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeArtifact AWS API Documentation
|
7831
8148
|
#
|
@@ -8003,6 +8320,7 @@ module Aws::SageMaker
|
|
8003
8320
|
# * {Types::DescribeCompilationJobResponse#compilation_end_time #compilation_end_time} => Time
|
8004
8321
|
# * {Types::DescribeCompilationJobResponse#stopping_condition #stopping_condition} => Types::StoppingCondition
|
8005
8322
|
# * {Types::DescribeCompilationJobResponse#inference_image #inference_image} => String
|
8323
|
+
# * {Types::DescribeCompilationJobResponse#model_package_version_arn #model_package_version_arn} => String
|
8006
8324
|
# * {Types::DescribeCompilationJobResponse#creation_time #creation_time} => Time
|
8007
8325
|
# * {Types::DescribeCompilationJobResponse#last_modified_time #last_modified_time} => Time
|
8008
8326
|
# * {Types::DescribeCompilationJobResponse#failure_reason #failure_reason} => String
|
@@ -8029,6 +8347,7 @@ module Aws::SageMaker
|
|
8029
8347
|
# resp.stopping_condition.max_runtime_in_seconds #=> Integer
|
8030
8348
|
# resp.stopping_condition.max_wait_time_in_seconds #=> Integer
|
8031
8349
|
# resp.inference_image #=> String
|
8350
|
+
# resp.model_package_version_arn #=> String
|
8032
8351
|
# resp.creation_time #=> Time
|
8033
8352
|
# resp.last_modified_time #=> Time
|
8034
8353
|
# resp.failure_reason #=> String
|
@@ -8077,11 +8396,12 @@ module Aws::SageMaker
|
|
8077
8396
|
# * {Types::DescribeContextResponse#created_by #created_by} => Types::UserContext
|
8078
8397
|
# * {Types::DescribeContextResponse#last_modified_time #last_modified_time} => Time
|
8079
8398
|
# * {Types::DescribeContextResponse#last_modified_by #last_modified_by} => Types::UserContext
|
8399
|
+
# * {Types::DescribeContextResponse#lineage_group_arn #lineage_group_arn} => String
|
8080
8400
|
#
|
8081
8401
|
# @example Request syntax with placeholder values
|
8082
8402
|
#
|
8083
8403
|
# resp = client.describe_context({
|
8084
|
-
# context_name: "
|
8404
|
+
# context_name: "ExperimentEntityNameOrArn", # required
|
8085
8405
|
# })
|
8086
8406
|
#
|
8087
8407
|
# @example Response structure
|
@@ -8103,6 +8423,7 @@ module Aws::SageMaker
|
|
8103
8423
|
# resp.last_modified_by.user_profile_arn #=> String
|
8104
8424
|
# resp.last_modified_by.user_profile_name #=> String
|
8105
8425
|
# resp.last_modified_by.domain_id #=> String
|
8426
|
+
# resp.lineage_group_arn #=> String
|
8106
8427
|
#
|
8107
8428
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeContext AWS API Documentation
|
8108
8429
|
#
|
@@ -8215,6 +8536,7 @@ module Aws::SageMaker
|
|
8215
8536
|
# * {Types::DescribeDeviceResponse#models #models} => Array<Types::EdgeModel>
|
8216
8537
|
# * {Types::DescribeDeviceResponse#max_models #max_models} => Integer
|
8217
8538
|
# * {Types::DescribeDeviceResponse#next_token #next_token} => String
|
8539
|
+
# * {Types::DescribeDeviceResponse#agent_version #agent_version} => String
|
8218
8540
|
#
|
8219
8541
|
# @example Request syntax with placeholder values
|
8220
8542
|
#
|
@@ -8240,6 +8562,7 @@ module Aws::SageMaker
|
|
8240
8562
|
# resp.models[0].latest_inference #=> Time
|
8241
8563
|
# resp.max_models #=> Integer
|
8242
8564
|
# resp.next_token #=> String
|
8565
|
+
# resp.agent_version #=> String
|
8243
8566
|
#
|
8244
8567
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeDevice AWS API Documentation
|
8245
8568
|
#
|
@@ -8477,6 +8800,7 @@ module Aws::SageMaker
|
|
8477
8800
|
# * {Types::DescribeEndpointOutput#last_modified_time #last_modified_time} => Time
|
8478
8801
|
# * {Types::DescribeEndpointOutput#last_deployment_config #last_deployment_config} => Types::DeploymentConfig
|
8479
8802
|
# * {Types::DescribeEndpointOutput#async_inference_config #async_inference_config} => Types::AsyncInferenceConfig
|
8803
|
+
# * {Types::DescribeEndpointOutput#pending_deployment_summary #pending_deployment_summary} => Types::PendingDeploymentSummary
|
8480
8804
|
#
|
8481
8805
|
# @example Request syntax with placeholder values
|
8482
8806
|
#
|
@@ -8499,6 +8823,14 @@ module Aws::SageMaker
|
|
8499
8823
|
# resp.production_variants[0].desired_weight #=> Float
|
8500
8824
|
# resp.production_variants[0].current_instance_count #=> Integer
|
8501
8825
|
# resp.production_variants[0].desired_instance_count #=> Integer
|
8826
|
+
# resp.production_variants[0].variant_status #=> Array
|
8827
|
+
# resp.production_variants[0].variant_status[0].status #=> String, one of "Creating", "Updating", "Deleting", "ActivatingTraffic", "Baking"
|
8828
|
+
# resp.production_variants[0].variant_status[0].status_message #=> String
|
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
|
8502
8834
|
# resp.data_capture_config.enable_capture #=> Boolean
|
8503
8835
|
# resp.data_capture_config.capture_status #=> String, one of "Started", "Stopped"
|
8504
8836
|
# resp.data_capture_config.current_sampling_percentage #=> Integer
|
@@ -8508,10 +8840,12 @@ module Aws::SageMaker
|
|
8508
8840
|
# resp.failure_reason #=> String
|
8509
8841
|
# resp.creation_time #=> Time
|
8510
8842
|
# resp.last_modified_time #=> Time
|
8511
|
-
# resp.last_deployment_config.blue_green_update_policy.traffic_routing_configuration.type #=> String, one of "ALL_AT_ONCE", "CANARY"
|
8843
|
+
# resp.last_deployment_config.blue_green_update_policy.traffic_routing_configuration.type #=> String, one of "ALL_AT_ONCE", "CANARY", "LINEAR"
|
8512
8844
|
# resp.last_deployment_config.blue_green_update_policy.traffic_routing_configuration.wait_interval_in_seconds #=> Integer
|
8513
8845
|
# resp.last_deployment_config.blue_green_update_policy.traffic_routing_configuration.canary_size.type #=> String, one of "INSTANCE_COUNT", "CAPACITY_PERCENT"
|
8514
8846
|
# resp.last_deployment_config.blue_green_update_policy.traffic_routing_configuration.canary_size.value #=> Integer
|
8847
|
+
# resp.last_deployment_config.blue_green_update_policy.traffic_routing_configuration.linear_step_size.type #=> String, one of "INSTANCE_COUNT", "CAPACITY_PERCENT"
|
8848
|
+
# resp.last_deployment_config.blue_green_update_policy.traffic_routing_configuration.linear_step_size.value #=> Integer
|
8515
8849
|
# resp.last_deployment_config.blue_green_update_policy.termination_wait_in_seconds #=> Integer
|
8516
8850
|
# resp.last_deployment_config.blue_green_update_policy.maximum_execution_timeout_in_seconds #=> Integer
|
8517
8851
|
# resp.last_deployment_config.auto_rollback_configuration.alarms #=> Array
|
@@ -8521,6 +8855,28 @@ module Aws::SageMaker
|
|
8521
8855
|
# resp.async_inference_config.output_config.s3_output_path #=> String
|
8522
8856
|
# resp.async_inference_config.output_config.notification_config.success_topic #=> String
|
8523
8857
|
# resp.async_inference_config.output_config.notification_config.error_topic #=> String
|
8858
|
+
# resp.pending_deployment_summary.endpoint_config_name #=> String
|
8859
|
+
# resp.pending_deployment_summary.production_variants #=> Array
|
8860
|
+
# resp.pending_deployment_summary.production_variants[0].variant_name #=> String
|
8861
|
+
# resp.pending_deployment_summary.production_variants[0].deployed_images #=> Array
|
8862
|
+
# resp.pending_deployment_summary.production_variants[0].deployed_images[0].specified_image #=> String
|
8863
|
+
# resp.pending_deployment_summary.production_variants[0].deployed_images[0].resolved_image #=> String
|
8864
|
+
# resp.pending_deployment_summary.production_variants[0].deployed_images[0].resolution_time #=> Time
|
8865
|
+
# resp.pending_deployment_summary.production_variants[0].current_weight #=> Float
|
8866
|
+
# resp.pending_deployment_summary.production_variants[0].desired_weight #=> Float
|
8867
|
+
# resp.pending_deployment_summary.production_variants[0].current_instance_count #=> Integer
|
8868
|
+
# resp.pending_deployment_summary.production_variants[0].desired_instance_count #=> Integer
|
8869
|
+
# resp.pending_deployment_summary.production_variants[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"
|
8870
|
+
# resp.pending_deployment_summary.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"
|
8871
|
+
# resp.pending_deployment_summary.production_variants[0].variant_status #=> Array
|
8872
|
+
# resp.pending_deployment_summary.production_variants[0].variant_status[0].status #=> String, one of "Creating", "Updating", "Deleting", "ActivatingTraffic", "Baking"
|
8873
|
+
# resp.pending_deployment_summary.production_variants[0].variant_status[0].status_message #=> String
|
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
|
8879
|
+
# resp.pending_deployment_summary.start_time #=> Time
|
8524
8880
|
#
|
8525
8881
|
#
|
8526
8882
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -8572,6 +8928,8 @@ module Aws::SageMaker
|
|
8572
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"
|
8573
8929
|
# resp.production_variants[0].core_dump_config.destination_s3_uri #=> String
|
8574
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
|
8575
8933
|
# resp.data_capture_config.enable_capture #=> Boolean
|
8576
8934
|
# resp.data_capture_config.initial_sampling_percentage #=> Integer
|
8577
8935
|
# resp.data_capture_config.destination_s3_uri #=> String
|
@@ -9153,6 +9511,91 @@ module Aws::SageMaker
|
|
9153
9511
|
req.send_request(options)
|
9154
9512
|
end
|
9155
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
|
+
|
9156
9599
|
# Gets information about a labeling job.
|
9157
9600
|
#
|
9158
9601
|
# @option params [required, String] :labeling_job_name
|
@@ -9245,6 +9688,58 @@ module Aws::SageMaker
|
|
9245
9688
|
req.send_request(options)
|
9246
9689
|
end
|
9247
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
|
+
|
9248
9743
|
# Describes a model that you created using the `CreateModel` API.
|
9249
9744
|
#
|
9250
9745
|
# @option params [required, String] :model_name
|
@@ -9280,6 +9775,7 @@ module Aws::SageMaker
|
|
9280
9775
|
# resp.primary_container.environment #=> Hash
|
9281
9776
|
# resp.primary_container.environment["EnvironmentKey"] #=> String
|
9282
9777
|
# resp.primary_container.model_package_name #=> String
|
9778
|
+
# resp.primary_container.inference_specification_name #=> String
|
9283
9779
|
# resp.primary_container.multi_model_config.model_cache_setting #=> String, one of "Enabled", "Disabled"
|
9284
9780
|
# resp.containers #=> Array
|
9285
9781
|
# resp.containers[0].container_hostname #=> String
|
@@ -9291,6 +9787,7 @@ module Aws::SageMaker
|
|
9291
9787
|
# resp.containers[0].environment #=> Hash
|
9292
9788
|
# resp.containers[0].environment["EnvironmentKey"] #=> String
|
9293
9789
|
# resp.containers[0].model_package_name #=> String
|
9790
|
+
# resp.containers[0].inference_specification_name #=> String
|
9294
9791
|
# resp.containers[0].multi_model_config.model_cache_setting #=> String, one of "Enabled", "Disabled"
|
9295
9792
|
# resp.inference_execution_config.mode #=> String, one of "Serial", "Direct"
|
9296
9793
|
# resp.execution_role_arn #=> String
|
@@ -9498,6 +9995,11 @@ module Aws::SageMaker
|
|
9498
9995
|
# * {Types::DescribeModelPackageOutput#last_modified_by #last_modified_by} => Types::UserContext
|
9499
9996
|
# * {Types::DescribeModelPackageOutput#approval_description #approval_description} => String
|
9500
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>
|
9501
10003
|
#
|
9502
10004
|
# @example Request syntax with placeholder values
|
9503
10005
|
#
|
@@ -9521,6 +10023,10 @@ module Aws::SageMaker
|
|
9521
10023
|
# resp.inference_specification.containers[0].product_id #=> String
|
9522
10024
|
# resp.inference_specification.containers[0].environment #=> Hash
|
9523
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
|
9524
10030
|
# resp.inference_specification.supported_transform_instance_types #=> Array
|
9525
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"
|
9526
10032
|
# resp.inference_specification.supported_realtime_inference_instance_types #=> Array
|
@@ -9585,6 +10091,12 @@ module Aws::SageMaker
|
|
9585
10091
|
# resp.model_metrics.bias.report.content_type #=> String
|
9586
10092
|
# resp.model_metrics.bias.report.content_digest #=> String
|
9587
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
|
9588
10100
|
# resp.model_metrics.explainability.report.content_type #=> String
|
9589
10101
|
# resp.model_metrics.explainability.report.content_digest #=> String
|
9590
10102
|
# resp.model_metrics.explainability.report.s3_uri #=> String
|
@@ -9595,6 +10107,59 @@ module Aws::SageMaker
|
|
9595
10107
|
# resp.approval_description #=> String
|
9596
10108
|
# resp.customer_metadata_properties #=> Hash
|
9597
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
|
9598
10163
|
#
|
9599
10164
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeModelPackage AWS API Documentation
|
9600
10165
|
#
|
@@ -10698,11 +11263,12 @@ module Aws::SageMaker
|
|
10698
11263
|
# * {Types::DescribeTrialComponentResponse#output_artifacts #output_artifacts} => Hash<String,Types::TrialComponentArtifact>
|
10699
11264
|
# * {Types::DescribeTrialComponentResponse#metadata_properties #metadata_properties} => Types::MetadataProperties
|
10700
11265
|
# * {Types::DescribeTrialComponentResponse#metrics #metrics} => Array<Types::TrialComponentMetricSummary>
|
11266
|
+
# * {Types::DescribeTrialComponentResponse#lineage_group_arn #lineage_group_arn} => String
|
10701
11267
|
#
|
10702
11268
|
# @example Request syntax with placeholder values
|
10703
11269
|
#
|
10704
11270
|
# resp = client.describe_trial_component({
|
10705
|
-
# trial_component_name: "
|
11271
|
+
# trial_component_name: "ExperimentEntityNameOrArn", # required
|
10706
11272
|
# })
|
10707
11273
|
#
|
10708
11274
|
# @example Response structure
|
@@ -10747,6 +11313,7 @@ module Aws::SageMaker
|
|
10747
11313
|
# resp.metrics[0].count #=> Integer
|
10748
11314
|
# resp.metrics[0].avg #=> Float
|
10749
11315
|
# resp.metrics[0].std_dev #=> Float
|
11316
|
+
# resp.lineage_group_arn #=> String
|
10750
11317
|
#
|
10751
11318
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeTrialComponent AWS API Documentation
|
10752
11319
|
#
|
@@ -11061,6 +11628,36 @@ module Aws::SageMaker
|
|
11061
11628
|
req.send_request(options)
|
11062
11629
|
end
|
11063
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
|
+
|
11064
11661
|
# Gets a resource policy that manages access for a model group. For
|
11065
11662
|
# information about resource policies, see [Identity-based policies and
|
11066
11663
|
# resource-based policies][1] in the *Amazon Web Services Identity and
|
@@ -12205,6 +12802,7 @@ module Aws::SageMaker
|
|
12205
12802
|
# resp.device_summaries[0].models #=> Array
|
12206
12803
|
# resp.device_summaries[0].models[0].model_name #=> String
|
12207
12804
|
# resp.device_summaries[0].models[0].model_version #=> String
|
12805
|
+
# resp.device_summaries[0].agent_version #=> String
|
12208
12806
|
# resp.next_token #=> String
|
12209
12807
|
#
|
12210
12808
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListDevices AWS API Documentation
|
@@ -12998,6 +13596,93 @@ module Aws::SageMaker
|
|
12998
13596
|
req.send_request(options)
|
12999
13597
|
end
|
13000
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
|
+
|
13001
13686
|
# Gets a list of labeling jobs.
|
13002
13687
|
#
|
13003
13688
|
# @option params [Time,DateTime,Date,Integer,String] :creation_time_after
|
@@ -13169,6 +13854,74 @@ module Aws::SageMaker
|
|
13169
13854
|
req.send_request(options)
|
13170
13855
|
end
|
13171
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
|
+
|
13172
13925
|
# Lists model bias jobs definitions that satisfy various filters.
|
13173
13926
|
#
|
13174
13927
|
# @option params [String] :endpoint_name
|
@@ -13311,6 +14064,65 @@ module Aws::SageMaker
|
|
13311
14064
|
req.send_request(options)
|
13312
14065
|
end
|
13313
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
|
+
|
13314
14126
|
# Gets a list of the model groups in your Amazon Web Services account.
|
13315
14127
|
#
|
13316
14128
|
# @option params [Time,DateTime,Date,Integer,String] :creation_time_after
|
@@ -14059,6 +14871,24 @@ module Aws::SageMaker
|
|
14059
14871
|
# resp.pipeline_execution_steps[0].metadata.lambda.output_parameters #=> Array
|
14060
14872
|
# resp.pipeline_execution_steps[0].metadata.lambda.output_parameters[0].name #=> String
|
14061
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
|
14062
14892
|
# resp.next_token #=> String
|
14063
14893
|
#
|
14064
14894
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListPipelineExecutionSteps AWS API Documentation
|
@@ -15253,6 +16083,112 @@ module Aws::SageMaker
|
|
15253
16083
|
req.send_request(options)
|
15254
16084
|
end
|
15255
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
|
+
|
15256
16192
|
# Register devices.
|
15257
16193
|
#
|
15258
16194
|
# @option params [required, String] :device_fleet_name
|
@@ -15869,6 +16805,7 @@ module Aws::SageMaker
|
|
15869
16805
|
# resp.results[0].trial_component.source_detail.transform_job.tags #=> Array
|
15870
16806
|
# resp.results[0].trial_component.source_detail.transform_job.tags[0].key #=> String
|
15871
16807
|
# resp.results[0].trial_component.source_detail.transform_job.tags[0].value #=> String
|
16808
|
+
# resp.results[0].trial_component.lineage_group_arn #=> String
|
15872
16809
|
# resp.results[0].trial_component.tags #=> Array
|
15873
16810
|
# resp.results[0].trial_component.tags[0].key #=> String
|
15874
16811
|
# resp.results[0].trial_component.tags[0].value #=> String
|
@@ -15888,6 +16825,14 @@ module Aws::SageMaker
|
|
15888
16825
|
# resp.results[0].endpoint.production_variants[0].desired_weight #=> Float
|
15889
16826
|
# resp.results[0].endpoint.production_variants[0].current_instance_count #=> Integer
|
15890
16827
|
# resp.results[0].endpoint.production_variants[0].desired_instance_count #=> Integer
|
16828
|
+
# resp.results[0].endpoint.production_variants[0].variant_status #=> Array
|
16829
|
+
# resp.results[0].endpoint.production_variants[0].variant_status[0].status #=> String, one of "Creating", "Updating", "Deleting", "ActivatingTraffic", "Baking"
|
16830
|
+
# resp.results[0].endpoint.production_variants[0].variant_status[0].status_message #=> String
|
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
|
15891
16836
|
# resp.results[0].endpoint.data_capture_config.enable_capture #=> Boolean
|
15892
16837
|
# resp.results[0].endpoint.data_capture_config.capture_status #=> String, one of "Started", "Stopped"
|
15893
16838
|
# resp.results[0].endpoint.data_capture_config.current_sampling_percentage #=> Integer
|
@@ -15979,6 +16924,10 @@ module Aws::SageMaker
|
|
15979
16924
|
# resp.results[0].model_package.inference_specification.containers[0].product_id #=> String
|
15980
16925
|
# resp.results[0].model_package.inference_specification.containers[0].environment #=> Hash
|
15981
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
|
15982
16931
|
# resp.results[0].model_package.inference_specification.supported_transform_instance_types #=> Array
|
15983
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"
|
15984
16933
|
# resp.results[0].model_package.inference_specification.supported_realtime_inference_instance_types #=> Array
|
@@ -16043,6 +16992,12 @@ module Aws::SageMaker
|
|
16043
16992
|
# resp.results[0].model_package.model_metrics.bias.report.content_type #=> String
|
16044
16993
|
# resp.results[0].model_package.model_metrics.bias.report.content_digest #=> String
|
16045
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
|
16046
17001
|
# resp.results[0].model_package.model_metrics.explainability.report.content_type #=> String
|
16047
17002
|
# resp.results[0].model_package.model_metrics.explainability.report.content_digest #=> String
|
16048
17003
|
# resp.results[0].model_package.model_metrics.explainability.report.s3_uri #=> String
|
@@ -16051,11 +17006,64 @@ module Aws::SageMaker
|
|
16051
17006
|
# resp.results[0].model_package.last_modified_by.user_profile_name #=> String
|
16052
17007
|
# resp.results[0].model_package.last_modified_by.domain_id #=> String
|
16053
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
|
16054
17035
|
# resp.results[0].model_package.tags #=> Array
|
16055
17036
|
# resp.results[0].model_package.tags[0].key #=> String
|
16056
17037
|
# resp.results[0].model_package.tags[0].value #=> String
|
16057
17038
|
# resp.results[0].model_package.customer_metadata_properties #=> Hash
|
16058
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
|
16059
17067
|
# resp.results[0].model_package_group.model_package_group_name #=> String
|
16060
17068
|
# resp.results[0].model_package_group.model_package_group_arn #=> String
|
16061
17069
|
# resp.results[0].model_package_group.model_package_group_description #=> String
|
@@ -16469,6 +17477,28 @@ module Aws::SageMaker
|
|
16469
17477
|
req.send_request(options)
|
16470
17478
|
end
|
16471
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
|
+
|
16472
17502
|
# Stops a running labeling job. A job that is stopped cannot be
|
16473
17503
|
# restarted. Any results obtained before the job is stopped are placed
|
16474
17504
|
# in the Amazon S3 output bucket.
|
@@ -17127,7 +18157,12 @@ module Aws::SageMaker
|
|
17127
18157
|
# `ExcludeAllVariantProperties`, no variant properties are overridden.
|
17128
18158
|
#
|
17129
18159
|
# @option params [Types::DeploymentConfig] :deployment_config
|
17130
|
-
# The deployment configuration for
|
18160
|
+
# The deployment configuration for an endpoint, which contains the
|
18161
|
+
# desired deployment strategy and rollback configurations.
|
18162
|
+
#
|
18163
|
+
# @option params [Boolean] :retain_deployment_config
|
18164
|
+
# Specifies whether to reuse the last deployment configuration. The
|
18165
|
+
# default value is false (the configuration is not reused).
|
17131
18166
|
#
|
17132
18167
|
# @return [Types::UpdateEndpointOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
17133
18168
|
#
|
@@ -17147,12 +18182,16 @@ module Aws::SageMaker
|
|
17147
18182
|
# deployment_config: {
|
17148
18183
|
# blue_green_update_policy: { # required
|
17149
18184
|
# traffic_routing_configuration: { # required
|
17150
|
-
# type: "ALL_AT_ONCE", # required, accepts ALL_AT_ONCE, CANARY
|
18185
|
+
# type: "ALL_AT_ONCE", # required, accepts ALL_AT_ONCE, CANARY, LINEAR
|
17151
18186
|
# wait_interval_in_seconds: 1, # required
|
17152
18187
|
# canary_size: {
|
17153
18188
|
# type: "INSTANCE_COUNT", # required, accepts INSTANCE_COUNT, CAPACITY_PERCENT
|
17154
18189
|
# value: 1, # required
|
17155
18190
|
# },
|
18191
|
+
# linear_step_size: {
|
18192
|
+
# type: "INSTANCE_COUNT", # required, accepts INSTANCE_COUNT, CAPACITY_PERCENT
|
18193
|
+
# value: 1, # required
|
18194
|
+
# },
|
17156
18195
|
# },
|
17157
18196
|
# termination_wait_in_seconds: 1,
|
17158
18197
|
# maximum_execution_timeout_in_seconds: 1,
|
@@ -17165,6 +18204,7 @@ module Aws::SageMaker
|
|
17165
18204
|
# ],
|
17166
18205
|
# },
|
17167
18206
|
# },
|
18207
|
+
# retain_deployment_config: false,
|
17168
18208
|
# })
|
17169
18209
|
#
|
17170
18210
|
# @example Response structure
|
@@ -17327,6 +18367,14 @@ module Aws::SageMaker
|
|
17327
18367
|
# The metadata properties associated with the model package versions to
|
17328
18368
|
# remove.
|
17329
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
|
+
#
|
17330
18378
|
# @return [Types::UpdateModelPackageOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
17331
18379
|
#
|
17332
18380
|
# * {Types::UpdateModelPackageOutput#model_package_arn #model_package_arn} => String
|
@@ -17341,6 +18389,34 @@ module Aws::SageMaker
|
|
17341
18389
|
# "CustomerMetadataKey" => "CustomerMetadataValue",
|
17342
18390
|
# },
|
17343
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
|
+
# ],
|
17344
18420
|
# })
|
17345
18421
|
#
|
17346
18422
|
# @example Response structure
|
@@ -18287,7 +19363,7 @@ module Aws::SageMaker
|
|
18287
19363
|
params: params,
|
18288
19364
|
config: config)
|
18289
19365
|
context[:gem_name] = 'aws-sdk-sagemaker'
|
18290
|
-
context[:gem_version] = '1.
|
19366
|
+
context[:gem_version] = '1.110.0'
|
18291
19367
|
Seahorse::Client::Request.new(handlers, context)
|
18292
19368
|
end
|
18293
19369
|
|