aws-sdk-sagemaker 1.109.0 → 1.113.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +1017 -11
- data/lib/aws-sdk-sagemaker/client_api.rb +572 -7
- data/lib/aws-sdk-sagemaker/types.rb +2573 -57
- data/lib/aws-sdk-sagemaker.rb +1 -1
- metadata +4 -4
@@ -203,6 +203,87 @@ module Aws::SageMaker
|
|
203
203
|
include Aws::Structure
|
204
204
|
end
|
205
205
|
|
206
|
+
# A structure of additional Inference Specification. Additional
|
207
|
+
# Inference Specification specifies details about inference jobs that
|
208
|
+
# can be run with models based on this model package
|
209
|
+
#
|
210
|
+
# @note When making an API call, you may pass AdditionalInferenceSpecificationDefinition
|
211
|
+
# data as a hash:
|
212
|
+
#
|
213
|
+
# {
|
214
|
+
# name: "EntityName", # required
|
215
|
+
# description: "EntityDescription",
|
216
|
+
# containers: [ # required
|
217
|
+
# {
|
218
|
+
# container_hostname: "ContainerHostname",
|
219
|
+
# image: "ContainerImage", # required
|
220
|
+
# image_digest: "ImageDigest",
|
221
|
+
# model_data_url: "Url",
|
222
|
+
# product_id: "ProductId",
|
223
|
+
# environment: {
|
224
|
+
# "EnvironmentKey" => "EnvironmentValue",
|
225
|
+
# },
|
226
|
+
# model_input: {
|
227
|
+
# data_input_config: "DataInputConfig", # required
|
228
|
+
# },
|
229
|
+
# framework: "String",
|
230
|
+
# framework_version: "FrameworkVersion",
|
231
|
+
# nearest_model_name: "String",
|
232
|
+
# },
|
233
|
+
# ],
|
234
|
+
# 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
|
235
|
+
# 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
|
236
|
+
# supported_content_types: ["ContentType"],
|
237
|
+
# supported_response_mime_types: ["ResponseMIMEType"],
|
238
|
+
# }
|
239
|
+
#
|
240
|
+
# @!attribute [rw] name
|
241
|
+
# A unique name to identify the additional inference specification.
|
242
|
+
# The name must be unique within the list of your additional inference
|
243
|
+
# specifications for a particular model package.
|
244
|
+
# @return [String]
|
245
|
+
#
|
246
|
+
# @!attribute [rw] description
|
247
|
+
# A description of the additional Inference specification
|
248
|
+
# @return [String]
|
249
|
+
#
|
250
|
+
# @!attribute [rw] containers
|
251
|
+
# The Amazon ECR registry path of the Docker image that contains the
|
252
|
+
# inference code.
|
253
|
+
# @return [Array<Types::ModelPackageContainerDefinition>]
|
254
|
+
#
|
255
|
+
# @!attribute [rw] supported_transform_instance_types
|
256
|
+
# A list of the instance types on which a transformation job can be
|
257
|
+
# run or on which an endpoint can be deployed.
|
258
|
+
# @return [Array<String>]
|
259
|
+
#
|
260
|
+
# @!attribute [rw] supported_realtime_inference_instance_types
|
261
|
+
# A list of the instance types that are used to generate inferences in
|
262
|
+
# real-time.
|
263
|
+
# @return [Array<String>]
|
264
|
+
#
|
265
|
+
# @!attribute [rw] supported_content_types
|
266
|
+
# The supported MIME types for the input data.
|
267
|
+
# @return [Array<String>]
|
268
|
+
#
|
269
|
+
# @!attribute [rw] supported_response_mime_types
|
270
|
+
# The supported MIME types for the output data.
|
271
|
+
# @return [Array<String>]
|
272
|
+
#
|
273
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/AdditionalInferenceSpecificationDefinition AWS API Documentation
|
274
|
+
#
|
275
|
+
class AdditionalInferenceSpecificationDefinition < Struct.new(
|
276
|
+
:name,
|
277
|
+
:description,
|
278
|
+
:containers,
|
279
|
+
:supported_transform_instance_types,
|
280
|
+
:supported_realtime_inference_instance_types,
|
281
|
+
:supported_content_types,
|
282
|
+
:supported_response_mime_types)
|
283
|
+
SENSITIVE = []
|
284
|
+
include Aws::Structure
|
285
|
+
end
|
286
|
+
|
206
287
|
# Edge Manager agent version.
|
207
288
|
#
|
208
289
|
# @!attribute [rw] version
|
@@ -1642,7 +1723,7 @@ module Aws::SageMaker
|
|
1642
1723
|
#
|
1643
1724
|
# @!attribute [rw] created_by
|
1644
1725
|
# Information about the user who created or modified an experiment,
|
1645
|
-
# trial, trial component, or project.
|
1726
|
+
# trial, trial component, lineage group, or project.
|
1646
1727
|
# @return [Types::UserContext]
|
1647
1728
|
#
|
1648
1729
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/AssociationSummary AWS API Documentation
|
@@ -1967,6 +2048,7 @@ module Aws::SageMaker
|
|
1967
2048
|
# },
|
1968
2049
|
# compression_type: "None", # accepts None, Gzip
|
1969
2050
|
# target_attribute_name: "TargetAttributeName", # required
|
2051
|
+
# content_type: "ContentType",
|
1970
2052
|
# }
|
1971
2053
|
#
|
1972
2054
|
# @!attribute [rw] data_source
|
@@ -1982,12 +2064,19 @@ module Aws::SageMaker
|
|
1982
2064
|
# represented by 'y'.
|
1983
2065
|
# @return [String]
|
1984
2066
|
#
|
2067
|
+
# @!attribute [rw] content_type
|
2068
|
+
# The content type of the data from the input source. You can use
|
2069
|
+
# `text/csv;header=present` or `x-application/vnd.amazon+parquet`. The
|
2070
|
+
# default value is `text/csv;header=present`.
|
2071
|
+
# @return [String]
|
2072
|
+
#
|
1985
2073
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/AutoMLChannel AWS API Documentation
|
1986
2074
|
#
|
1987
2075
|
class AutoMLChannel < Struct.new(
|
1988
2076
|
:data_source,
|
1989
2077
|
:compression_type,
|
1990
|
-
:target_attribute_name
|
2078
|
+
:target_attribute_name,
|
2079
|
+
:content_type)
|
1991
2080
|
SENSITIVE = []
|
1992
2081
|
include Aws::Structure
|
1993
2082
|
end
|
@@ -2547,16 +2636,34 @@ module Aws::SageMaker
|
|
2547
2636
|
# content_digest: "ContentDigest",
|
2548
2637
|
# s3_uri: "S3Uri", # required
|
2549
2638
|
# },
|
2639
|
+
# pre_training_report: {
|
2640
|
+
# content_type: "ContentType", # required
|
2641
|
+
# content_digest: "ContentDigest",
|
2642
|
+
# s3_uri: "S3Uri", # required
|
2643
|
+
# },
|
2644
|
+
# post_training_report: {
|
2645
|
+
# content_type: "ContentType", # required
|
2646
|
+
# content_digest: "ContentDigest",
|
2647
|
+
# s3_uri: "S3Uri", # required
|
2648
|
+
# },
|
2550
2649
|
# }
|
2551
2650
|
#
|
2552
2651
|
# @!attribute [rw] report
|
2553
2652
|
# The bias report for a model
|
2554
2653
|
# @return [Types::MetricsSource]
|
2555
2654
|
#
|
2655
|
+
# @!attribute [rw] pre_training_report
|
2656
|
+
# @return [Types::MetricsSource]
|
2657
|
+
#
|
2658
|
+
# @!attribute [rw] post_training_report
|
2659
|
+
# @return [Types::MetricsSource]
|
2660
|
+
#
|
2556
2661
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/Bias AWS API Documentation
|
2557
2662
|
#
|
2558
2663
|
class Bias < Struct.new(
|
2559
|
-
:report
|
2664
|
+
:report,
|
2665
|
+
:pre_training_report,
|
2666
|
+
:post_training_report)
|
2560
2667
|
SENSITIVE = []
|
2561
2668
|
include Aws::Structure
|
2562
2669
|
end
|
@@ -2765,6 +2872,33 @@ module Aws::SageMaker
|
|
2765
2872
|
include Aws::Structure
|
2766
2873
|
end
|
2767
2874
|
|
2875
|
+
# Environment parameters you want to benchmark your load test against.
|
2876
|
+
#
|
2877
|
+
# @note When making an API call, you may pass CategoricalParameter
|
2878
|
+
# data as a hash:
|
2879
|
+
#
|
2880
|
+
# {
|
2881
|
+
# name: "String64", # required
|
2882
|
+
# value: ["String128"], # required
|
2883
|
+
# }
|
2884
|
+
#
|
2885
|
+
# @!attribute [rw] name
|
2886
|
+
# The Name of the environment variable.
|
2887
|
+
# @return [String]
|
2888
|
+
#
|
2889
|
+
# @!attribute [rw] value
|
2890
|
+
# The list of values you can pass.
|
2891
|
+
# @return [Array<String>]
|
2892
|
+
#
|
2893
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CategoricalParameter AWS API Documentation
|
2894
|
+
#
|
2895
|
+
class CategoricalParameter < Struct.new(
|
2896
|
+
:name,
|
2897
|
+
:value)
|
2898
|
+
SENSITIVE = []
|
2899
|
+
include Aws::Structure
|
2900
|
+
end
|
2901
|
+
|
2768
2902
|
# A list of categorical hyperparameters to tune.
|
2769
2903
|
#
|
2770
2904
|
# @note When making an API call, you may pass CategoricalParameterRange
|
@@ -3015,6 +3149,71 @@ module Aws::SageMaker
|
|
3015
3149
|
include Aws::Structure
|
3016
3150
|
end
|
3017
3151
|
|
3152
|
+
# The container for the metadata for the ClarifyCheck step. For more
|
3153
|
+
# information, see the topic on [ClarifyCheck step][1] in the *Amazon
|
3154
|
+
# SageMaker Developer Guide*.
|
3155
|
+
#
|
3156
|
+
#
|
3157
|
+
#
|
3158
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/build-and-manage-steps.html#step-type-clarify-check
|
3159
|
+
#
|
3160
|
+
# @!attribute [rw] check_type
|
3161
|
+
# The type of the Clarify Check step
|
3162
|
+
# @return [String]
|
3163
|
+
#
|
3164
|
+
# @!attribute [rw] baseline_used_for_drift_check_constraints
|
3165
|
+
# The Amazon S3 URI of baseline constraints file to be used for the
|
3166
|
+
# drift check.
|
3167
|
+
# @return [String]
|
3168
|
+
#
|
3169
|
+
# @!attribute [rw] calculated_baseline_constraints
|
3170
|
+
# The Amazon S3 URI of the newly calculated baseline constraints file.
|
3171
|
+
# @return [String]
|
3172
|
+
#
|
3173
|
+
# @!attribute [rw] model_package_group_name
|
3174
|
+
# The model package group name.
|
3175
|
+
# @return [String]
|
3176
|
+
#
|
3177
|
+
# @!attribute [rw] violation_report
|
3178
|
+
# The Amazon S3 URI of the violation report if violations are
|
3179
|
+
# detected.
|
3180
|
+
# @return [String]
|
3181
|
+
#
|
3182
|
+
# @!attribute [rw] check_job_arn
|
3183
|
+
# The Amazon Resource Name (ARN) of the check processing job that was
|
3184
|
+
# run by this step's execution.
|
3185
|
+
# @return [String]
|
3186
|
+
#
|
3187
|
+
# @!attribute [rw] skip_check
|
3188
|
+
# This flag indicates if the drift check against the previous baseline
|
3189
|
+
# will be skipped or not. If it is set to `False`, the previous
|
3190
|
+
# baseline of the configured check type must be available.
|
3191
|
+
# @return [Boolean]
|
3192
|
+
#
|
3193
|
+
# @!attribute [rw] register_new_baseline
|
3194
|
+
# This flag indicates if a newly calculated baseline can be accessed
|
3195
|
+
# through step properties `BaselineUsedForDriftCheckConstraints` and
|
3196
|
+
# `BaselineUsedForDriftCheckStatistics`. If it is set to `False`, the
|
3197
|
+
# previous baseline of the configured check type must also be
|
3198
|
+
# available. These can be accessed through the
|
3199
|
+
# `BaselineUsedForDriftCheckConstraints` property.
|
3200
|
+
# @return [Boolean]
|
3201
|
+
#
|
3202
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClarifyCheckStepMetadata AWS API Documentation
|
3203
|
+
#
|
3204
|
+
class ClarifyCheckStepMetadata < Struct.new(
|
3205
|
+
:check_type,
|
3206
|
+
:baseline_used_for_drift_check_constraints,
|
3207
|
+
:calculated_baseline_constraints,
|
3208
|
+
:model_package_group_name,
|
3209
|
+
:violation_report,
|
3210
|
+
:check_job_arn,
|
3211
|
+
:skip_check,
|
3212
|
+
:register_new_baseline)
|
3213
|
+
SENSITIVE = []
|
3214
|
+
include Aws::Structure
|
3215
|
+
end
|
3216
|
+
|
3018
3217
|
# Specifies summary information about a Git repository.
|
3019
3218
|
#
|
3020
3219
|
# @!attribute [rw] code_repository_name
|
@@ -3277,6 +3476,7 @@ module Aws::SageMaker
|
|
3277
3476
|
# "EnvironmentKey" => "EnvironmentValue",
|
3278
3477
|
# },
|
3279
3478
|
# model_package_name: "VersionedArnOrName",
|
3479
|
+
# inference_specification_name: "InferenceSpecificationName",
|
3280
3480
|
# multi_model_config: {
|
3281
3481
|
# model_cache_setting: "Enabled", # accepts Enabled, Disabled
|
3282
3482
|
# },
|
@@ -3379,6 +3579,10 @@ module Aws::SageMaker
|
|
3379
3579
|
# to create the model.
|
3380
3580
|
# @return [String]
|
3381
3581
|
#
|
3582
|
+
# @!attribute [rw] inference_specification_name
|
3583
|
+
# The inference specification name in the model package version.
|
3584
|
+
# @return [String]
|
3585
|
+
#
|
3382
3586
|
# @!attribute [rw] multi_model_config
|
3383
3587
|
# Specifies additional configuration for multi-model endpoints.
|
3384
3588
|
# @return [Types::MultiModelConfig]
|
@@ -3393,6 +3597,7 @@ module Aws::SageMaker
|
|
3393
3597
|
:model_data_url,
|
3394
3598
|
:environment,
|
3395
3599
|
:model_package_name,
|
3600
|
+
:inference_specification_name,
|
3396
3601
|
:multi_model_config)
|
3397
3602
|
SENSITIVE = []
|
3398
3603
|
include Aws::Structure
|
@@ -3732,6 +3937,12 @@ module Aws::SageMaker
|
|
3732
3937
|
# environment: {
|
3733
3938
|
# "EnvironmentKey" => "EnvironmentValue",
|
3734
3939
|
# },
|
3940
|
+
# model_input: {
|
3941
|
+
# data_input_config: "DataInputConfig", # required
|
3942
|
+
# },
|
3943
|
+
# framework: "String",
|
3944
|
+
# framework_version: "FrameworkVersion",
|
3945
|
+
# nearest_model_name: "String",
|
3735
3946
|
# },
|
3736
3947
|
# ],
|
3737
3948
|
# 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
|
@@ -4158,6 +4369,7 @@ module Aws::SageMaker
|
|
4158
4369
|
# },
|
4159
4370
|
# compression_type: "None", # accepts None, Gzip
|
4160
4371
|
# target_attribute_name: "TargetAttributeName", # required
|
4372
|
+
# content_type: "ContentType",
|
4161
4373
|
# },
|
4162
4374
|
# ],
|
4163
4375
|
# output_data_config: { # required
|
@@ -4355,7 +4567,8 @@ module Aws::SageMaker
|
|
4355
4567
|
# {
|
4356
4568
|
# compilation_job_name: "EntityName", # required
|
4357
4569
|
# role_arn: "RoleArn", # required
|
4358
|
-
#
|
4570
|
+
# model_package_version_arn: "ModelPackageArn",
|
4571
|
+
# input_config: {
|
4359
4572
|
# s3_uri: "S3Uri", # required
|
4360
4573
|
# data_input_config: "DataInputConfig", # required
|
4361
4574
|
# framework: "TENSORFLOW", # required, accepts TENSORFLOW, KERAS, MXNET, ONNX, PYTORCH, XGBOOST, TFLITE, DARKNET, SKLEARN
|
@@ -4363,7 +4576,7 @@ module Aws::SageMaker
|
|
4363
4576
|
# },
|
4364
4577
|
# output_config: { # required
|
4365
4578
|
# s3_output_location: "S3Uri", # required
|
4366
|
-
# target_device: "lambda", # accepts lambda, ml_m4, ml_m5, ml_c4, ml_c5, ml_p2, ml_p3, ml_g4dn, ml_inf1, ml_eia2, jetson_tx1, jetson_tx2, jetson_nano, jetson_xavier, rasp3b, imx8qm, deeplens, rk3399, rk3288, aisage, sbe_c, qcs605, qcs603, sitara_am57x, amba_cv22, amba_cv25, x86_win32, x86_win64, coreml, jacinto_tda4vm, imx8mplus
|
4579
|
+
# target_device: "lambda", # accepts lambda, ml_m4, ml_m5, ml_c4, ml_c5, ml_p2, ml_p3, ml_g4dn, ml_inf1, ml_eia2, jetson_tx1, jetson_tx2, jetson_nano, jetson_xavier, rasp3b, imx8qm, deeplens, rk3399, rk3288, aisage, sbe_c, qcs605, qcs603, sitara_am57x, amba_cv2, amba_cv22, amba_cv25, x86_win32, x86_win64, coreml, jacinto_tda4vm, imx8mplus
|
4367
4580
|
# target_platform: {
|
4368
4581
|
# os: "ANDROID", # required, accepts ANDROID, LINUX
|
4369
4582
|
# arch: "X86_64", # required, accepts X86_64, X86, ARM64, ARM_EABI, ARM_EABIHF
|
@@ -4418,6 +4631,13 @@ module Aws::SageMaker
|
|
4418
4631
|
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/sagemaker-roles.html
|
4419
4632
|
# @return [String]
|
4420
4633
|
#
|
4634
|
+
# @!attribute [rw] model_package_version_arn
|
4635
|
+
# The Amazon Resource Name (ARN) of a versioned model package. Provide
|
4636
|
+
# either a `ModelPackageVersionArn` or an `InputConfig` object in the
|
4637
|
+
# request syntax. The presence of both objects in the
|
4638
|
+
# `CreateCompilationJob` request will return an exception.
|
4639
|
+
# @return [String]
|
4640
|
+
#
|
4421
4641
|
# @!attribute [rw] input_config
|
4422
4642
|
# Provides information about the location of input model artifacts,
|
4423
4643
|
# the name and shape of the expected data inputs, and the framework in
|
@@ -4462,6 +4682,7 @@ module Aws::SageMaker
|
|
4462
4682
|
class CreateCompilationJobRequest < Struct.new(
|
4463
4683
|
:compilation_job_name,
|
4464
4684
|
:role_arn,
|
4685
|
+
:model_package_version_arn,
|
4465
4686
|
:input_config,
|
4466
4687
|
:output_config,
|
4467
4688
|
:vpc_config,
|
@@ -5057,14 +5278,18 @@ module Aws::SageMaker
|
|
5057
5278
|
# {
|
5058
5279
|
# variant_name: "VariantName", # required
|
5059
5280
|
# model_name: "ModelName", # required
|
5060
|
-
# initial_instance_count: 1,
|
5061
|
-
# instance_type: "ml.t2.medium", #
|
5281
|
+
# initial_instance_count: 1,
|
5282
|
+
# 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
|
5062
5283
|
# initial_variant_weight: 1.0,
|
5063
5284
|
# accelerator_type: "ml.eia1.medium", # accepts ml.eia1.medium, ml.eia1.large, ml.eia1.xlarge, ml.eia2.medium, ml.eia2.large, ml.eia2.xlarge
|
5064
5285
|
# core_dump_config: {
|
5065
5286
|
# destination_s3_uri: "DestinationS3Uri", # required
|
5066
5287
|
# kms_key_id: "KmsKeyId",
|
5067
5288
|
# },
|
5289
|
+
# serverless_config: {
|
5290
|
+
# memory_size_in_mb: 1, # required
|
5291
|
+
# max_concurrency: 1, # required
|
5292
|
+
# },
|
5068
5293
|
# },
|
5069
5294
|
# ],
|
5070
5295
|
# data_capture_config: {
|
@@ -6173,6 +6398,134 @@ module Aws::SageMaker
|
|
6173
6398
|
include Aws::Structure
|
6174
6399
|
end
|
6175
6400
|
|
6401
|
+
# @note When making an API call, you may pass CreateInferenceRecommendationsJobRequest
|
6402
|
+
# data as a hash:
|
6403
|
+
#
|
6404
|
+
# {
|
6405
|
+
# job_name: "RecommendationJobName", # required
|
6406
|
+
# job_type: "Default", # required, accepts Default, Advanced
|
6407
|
+
# role_arn: "RoleArn", # required
|
6408
|
+
# input_config: { # required
|
6409
|
+
# model_package_version_arn: "ModelPackageArn", # required
|
6410
|
+
# job_duration_in_seconds: 1,
|
6411
|
+
# traffic_pattern: {
|
6412
|
+
# traffic_type: "PHASES", # accepts PHASES
|
6413
|
+
# phases: [
|
6414
|
+
# {
|
6415
|
+
# initial_number_of_users: 1,
|
6416
|
+
# spawn_rate: 1,
|
6417
|
+
# duration_in_seconds: 1,
|
6418
|
+
# },
|
6419
|
+
# ],
|
6420
|
+
# },
|
6421
|
+
# resource_limit: {
|
6422
|
+
# max_number_of_tests: 1,
|
6423
|
+
# max_parallel_of_tests: 1,
|
6424
|
+
# },
|
6425
|
+
# endpoint_configurations: [
|
6426
|
+
# {
|
6427
|
+
# 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
|
6428
|
+
# inference_specification_name: "InferenceSpecificationName",
|
6429
|
+
# environment_parameter_ranges: {
|
6430
|
+
# categorical_parameter_ranges: [
|
6431
|
+
# {
|
6432
|
+
# name: "String64", # required
|
6433
|
+
# value: ["String128"], # required
|
6434
|
+
# },
|
6435
|
+
# ],
|
6436
|
+
# },
|
6437
|
+
# },
|
6438
|
+
# ],
|
6439
|
+
# },
|
6440
|
+
# job_description: "RecommendationJobDescription",
|
6441
|
+
# stopping_conditions: {
|
6442
|
+
# max_invocations: 1,
|
6443
|
+
# model_latency_thresholds: [
|
6444
|
+
# {
|
6445
|
+
# percentile: "String64",
|
6446
|
+
# value_in_milliseconds: 1,
|
6447
|
+
# },
|
6448
|
+
# ],
|
6449
|
+
# },
|
6450
|
+
# tags: [
|
6451
|
+
# {
|
6452
|
+
# key: "TagKey", # required
|
6453
|
+
# value: "TagValue", # required
|
6454
|
+
# },
|
6455
|
+
# ],
|
6456
|
+
# }
|
6457
|
+
#
|
6458
|
+
# @!attribute [rw] job_name
|
6459
|
+
# A name for the recommendation job. The name must be unique within
|
6460
|
+
# the Amazon Web Services Region and within your Amazon Web Services
|
6461
|
+
# account.
|
6462
|
+
# @return [String]
|
6463
|
+
#
|
6464
|
+
# @!attribute [rw] job_type
|
6465
|
+
# Defines the type of recommendation job. Specify `Default` to
|
6466
|
+
# initiate an instance recommendation and `Advanced` to initiate a
|
6467
|
+
# load test. If left unspecified, Amazon SageMaker Inference
|
6468
|
+
# Recommender will run an instance recommendation (`DEFAULT`) job.
|
6469
|
+
# @return [String]
|
6470
|
+
#
|
6471
|
+
# @!attribute [rw] role_arn
|
6472
|
+
# The Amazon Resource Name (ARN) of an IAM role that enables Amazon
|
6473
|
+
# SageMaker to perform tasks on your behalf.
|
6474
|
+
# @return [String]
|
6475
|
+
#
|
6476
|
+
# @!attribute [rw] input_config
|
6477
|
+
# Provides information about the versioned model package Amazon
|
6478
|
+
# Resource Name (ARN), the traffic pattern, and endpoint
|
6479
|
+
# configurations.
|
6480
|
+
# @return [Types::RecommendationJobInputConfig]
|
6481
|
+
#
|
6482
|
+
# @!attribute [rw] job_description
|
6483
|
+
# Description of the recommendation job.
|
6484
|
+
# @return [String]
|
6485
|
+
#
|
6486
|
+
# @!attribute [rw] stopping_conditions
|
6487
|
+
# A set of conditions for stopping a recommendation job. If any of the
|
6488
|
+
# conditions are met, the job is automatically stopped.
|
6489
|
+
# @return [Types::RecommendationJobStoppingConditions]
|
6490
|
+
#
|
6491
|
+
# @!attribute [rw] tags
|
6492
|
+
# The metadata that you apply to Amazon Web Services resources to help
|
6493
|
+
# you categorize and organize them. Each tag consists of a key and a
|
6494
|
+
# value, both of which you define. For more information, see [Tagging
|
6495
|
+
# Amazon Web Services Resources][1] in the Amazon Web Services General
|
6496
|
+
# Reference.
|
6497
|
+
#
|
6498
|
+
#
|
6499
|
+
#
|
6500
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
|
6501
|
+
# @return [Array<Types::Tag>]
|
6502
|
+
#
|
6503
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateInferenceRecommendationsJobRequest AWS API Documentation
|
6504
|
+
#
|
6505
|
+
class CreateInferenceRecommendationsJobRequest < Struct.new(
|
6506
|
+
:job_name,
|
6507
|
+
:job_type,
|
6508
|
+
:role_arn,
|
6509
|
+
:input_config,
|
6510
|
+
:job_description,
|
6511
|
+
:stopping_conditions,
|
6512
|
+
:tags)
|
6513
|
+
SENSITIVE = []
|
6514
|
+
include Aws::Structure
|
6515
|
+
end
|
6516
|
+
|
6517
|
+
# @!attribute [rw] job_arn
|
6518
|
+
# The Amazon Resource Name (ARN) of the recommendation job.
|
6519
|
+
# @return [String]
|
6520
|
+
#
|
6521
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateInferenceRecommendationsJobResponse AWS API Documentation
|
6522
|
+
#
|
6523
|
+
class CreateInferenceRecommendationsJobResponse < Struct.new(
|
6524
|
+
:job_arn)
|
6525
|
+
SENSITIVE = []
|
6526
|
+
include Aws::Structure
|
6527
|
+
end
|
6528
|
+
|
6176
6529
|
# @note When making an API call, you may pass CreateLabelingJobRequest
|
6177
6530
|
# data as a hash:
|
6178
6531
|
#
|
@@ -6780,6 +7133,7 @@ module Aws::SageMaker
|
|
6780
7133
|
# "EnvironmentKey" => "EnvironmentValue",
|
6781
7134
|
# },
|
6782
7135
|
# model_package_name: "VersionedArnOrName",
|
7136
|
+
# inference_specification_name: "InferenceSpecificationName",
|
6783
7137
|
# multi_model_config: {
|
6784
7138
|
# model_cache_setting: "Enabled", # accepts Enabled, Disabled
|
6785
7139
|
# },
|
@@ -6800,6 +7154,7 @@ module Aws::SageMaker
|
|
6800
7154
|
# "EnvironmentKey" => "EnvironmentValue",
|
6801
7155
|
# },
|
6802
7156
|
# model_package_name: "VersionedArnOrName",
|
7157
|
+
# inference_specification_name: "InferenceSpecificationName",
|
6803
7158
|
# multi_model_config: {
|
6804
7159
|
# model_cache_setting: "Enabled", # accepts Enabled, Disabled
|
6805
7160
|
# },
|
@@ -6987,6 +7342,12 @@ module Aws::SageMaker
|
|
6987
7342
|
# environment: {
|
6988
7343
|
# "EnvironmentKey" => "EnvironmentValue",
|
6989
7344
|
# },
|
7345
|
+
# model_input: {
|
7346
|
+
# data_input_config: "DataInputConfig", # required
|
7347
|
+
# },
|
7348
|
+
# framework: "String",
|
7349
|
+
# framework_version: "FrameworkVersion",
|
7350
|
+
# nearest_model_name: "String",
|
6990
7351
|
# },
|
6991
7352
|
# ],
|
6992
7353
|
# 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
|
@@ -7085,6 +7446,16 @@ module Aws::SageMaker
|
|
7085
7446
|
# content_digest: "ContentDigest",
|
7086
7447
|
# s3_uri: "S3Uri", # required
|
7087
7448
|
# },
|
7449
|
+
# pre_training_report: {
|
7450
|
+
# content_type: "ContentType", # required
|
7451
|
+
# content_digest: "ContentDigest",
|
7452
|
+
# s3_uri: "S3Uri", # required
|
7453
|
+
# },
|
7454
|
+
# post_training_report: {
|
7455
|
+
# content_type: "ContentType", # required
|
7456
|
+
# content_digest: "ContentDigest",
|
7457
|
+
# s3_uri: "S3Uri", # required
|
7458
|
+
# },
|
7088
7459
|
# },
|
7089
7460
|
# explainability: {
|
7090
7461
|
# report: {
|
@@ -7098,6 +7469,92 @@ module Aws::SageMaker
|
|
7098
7469
|
# customer_metadata_properties: {
|
7099
7470
|
# "CustomerMetadataKey" => "CustomerMetadataValue",
|
7100
7471
|
# },
|
7472
|
+
# drift_check_baselines: {
|
7473
|
+
# bias: {
|
7474
|
+
# config_file: {
|
7475
|
+
# content_type: "ContentType",
|
7476
|
+
# content_digest: "ContentDigest",
|
7477
|
+
# s3_uri: "S3Uri", # required
|
7478
|
+
# },
|
7479
|
+
# pre_training_constraints: {
|
7480
|
+
# content_type: "ContentType", # required
|
7481
|
+
# content_digest: "ContentDigest",
|
7482
|
+
# s3_uri: "S3Uri", # required
|
7483
|
+
# },
|
7484
|
+
# post_training_constraints: {
|
7485
|
+
# content_type: "ContentType", # required
|
7486
|
+
# content_digest: "ContentDigest",
|
7487
|
+
# s3_uri: "S3Uri", # required
|
7488
|
+
# },
|
7489
|
+
# },
|
7490
|
+
# explainability: {
|
7491
|
+
# constraints: {
|
7492
|
+
# content_type: "ContentType", # required
|
7493
|
+
# content_digest: "ContentDigest",
|
7494
|
+
# s3_uri: "S3Uri", # required
|
7495
|
+
# },
|
7496
|
+
# config_file: {
|
7497
|
+
# content_type: "ContentType",
|
7498
|
+
# content_digest: "ContentDigest",
|
7499
|
+
# s3_uri: "S3Uri", # required
|
7500
|
+
# },
|
7501
|
+
# },
|
7502
|
+
# model_quality: {
|
7503
|
+
# statistics: {
|
7504
|
+
# content_type: "ContentType", # required
|
7505
|
+
# content_digest: "ContentDigest",
|
7506
|
+
# s3_uri: "S3Uri", # required
|
7507
|
+
# },
|
7508
|
+
# constraints: {
|
7509
|
+
# content_type: "ContentType", # required
|
7510
|
+
# content_digest: "ContentDigest",
|
7511
|
+
# s3_uri: "S3Uri", # required
|
7512
|
+
# },
|
7513
|
+
# },
|
7514
|
+
# model_data_quality: {
|
7515
|
+
# statistics: {
|
7516
|
+
# content_type: "ContentType", # required
|
7517
|
+
# content_digest: "ContentDigest",
|
7518
|
+
# s3_uri: "S3Uri", # required
|
7519
|
+
# },
|
7520
|
+
# constraints: {
|
7521
|
+
# content_type: "ContentType", # required
|
7522
|
+
# content_digest: "ContentDigest",
|
7523
|
+
# s3_uri: "S3Uri", # required
|
7524
|
+
# },
|
7525
|
+
# },
|
7526
|
+
# },
|
7527
|
+
# domain: "String",
|
7528
|
+
# task: "String",
|
7529
|
+
# sample_payload_url: "S3Uri",
|
7530
|
+
# additional_inference_specifications: [
|
7531
|
+
# {
|
7532
|
+
# name: "EntityName", # required
|
7533
|
+
# description: "EntityDescription",
|
7534
|
+
# containers: [ # required
|
7535
|
+
# {
|
7536
|
+
# container_hostname: "ContainerHostname",
|
7537
|
+
# image: "ContainerImage", # required
|
7538
|
+
# image_digest: "ImageDigest",
|
7539
|
+
# model_data_url: "Url",
|
7540
|
+
# product_id: "ProductId",
|
7541
|
+
# environment: {
|
7542
|
+
# "EnvironmentKey" => "EnvironmentValue",
|
7543
|
+
# },
|
7544
|
+
# model_input: {
|
7545
|
+
# data_input_config: "DataInputConfig", # required
|
7546
|
+
# },
|
7547
|
+
# framework: "String",
|
7548
|
+
# framework_version: "FrameworkVersion",
|
7549
|
+
# nearest_model_name: "String",
|
7550
|
+
# },
|
7551
|
+
# ],
|
7552
|
+
# 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
|
7553
|
+
# 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
|
7554
|
+
# supported_content_types: ["ContentType"],
|
7555
|
+
# supported_response_mime_types: ["ResponseMIMEType"],
|
7556
|
+
# },
|
7557
|
+
# ],
|
7101
7558
|
# }
|
7102
7559
|
#
|
7103
7560
|
# @!attribute [rw] model_package_name
|
@@ -7193,6 +7650,42 @@ module Aws::SageMaker
|
|
7193
7650
|
# The metadata properties associated with the model package versions.
|
7194
7651
|
# @return [Hash<String,String>]
|
7195
7652
|
#
|
7653
|
+
# @!attribute [rw] drift_check_baselines
|
7654
|
+
# Represents the drift check baselines that can be used when the model
|
7655
|
+
# monitor is set using the model package. For more information, see
|
7656
|
+
# the topic on [Drift Detection against Previous Baselines in
|
7657
|
+
# SageMaker Pipelines][1] in the *Amazon SageMaker Developer Guide*.
|
7658
|
+
#
|
7659
|
+
#
|
7660
|
+
#
|
7661
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/pipelines-quality-clarify-baseline-lifecycle.html#pipelines-quality-clarify-baseline-drift-detection
|
7662
|
+
# @return [Types::DriftCheckBaselines]
|
7663
|
+
#
|
7664
|
+
# @!attribute [rw] domain
|
7665
|
+
# The machine learning domain of your model package and its
|
7666
|
+
# components. Common machine learning domains include computer vision
|
7667
|
+
# and natural language processing.
|
7668
|
+
# @return [String]
|
7669
|
+
#
|
7670
|
+
# @!attribute [rw] task
|
7671
|
+
# The machine learning task your model package accomplishes. Common
|
7672
|
+
# machine learning tasks include object detection and image
|
7673
|
+
# classification.
|
7674
|
+
# @return [String]
|
7675
|
+
#
|
7676
|
+
# @!attribute [rw] sample_payload_url
|
7677
|
+
# The Amazon Simple Storage Service (Amazon S3) path where the sample
|
7678
|
+
# payload are stored. This path must point to a single gzip compressed
|
7679
|
+
# tar archive (.tar.gz suffix).
|
7680
|
+
# @return [String]
|
7681
|
+
#
|
7682
|
+
# @!attribute [rw] additional_inference_specifications
|
7683
|
+
# An array of additional Inference Specification objects. Each
|
7684
|
+
# additional Inference Specification specifies artifacts based on this
|
7685
|
+
# model package that can be used on inference endpoints. Generally
|
7686
|
+
# used with SageMaker Neo to store the compiled artifacts.
|
7687
|
+
# @return [Array<Types::AdditionalInferenceSpecificationDefinition>]
|
7688
|
+
#
|
7196
7689
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateModelPackageInput AWS API Documentation
|
7197
7690
|
#
|
7198
7691
|
class CreateModelPackageInput < Struct.new(
|
@@ -7208,7 +7701,12 @@ module Aws::SageMaker
|
|
7208
7701
|
:metadata_properties,
|
7209
7702
|
:model_metrics,
|
7210
7703
|
:client_token,
|
7211
|
-
:customer_metadata_properties
|
7704
|
+
:customer_metadata_properties,
|
7705
|
+
:drift_check_baselines,
|
7706
|
+
:domain,
|
7707
|
+
:task,
|
7708
|
+
:sample_payload_url,
|
7709
|
+
:additional_inference_specifications)
|
7212
7710
|
SENSITIVE = []
|
7213
7711
|
include Aws::Structure
|
7214
7712
|
end
|
@@ -11201,7 +11699,7 @@ module Aws::SageMaker
|
|
11201
11699
|
#
|
11202
11700
|
# @!attribute [rw] created_by
|
11203
11701
|
# Information about the user who created or modified an experiment,
|
11204
|
-
# trial, trial component, or project.
|
11702
|
+
# trial, trial component, lineage group, or project.
|
11205
11703
|
# @return [Types::UserContext]
|
11206
11704
|
#
|
11207
11705
|
# @!attribute [rw] last_modified_time
|
@@ -11210,7 +11708,7 @@ module Aws::SageMaker
|
|
11210
11708
|
#
|
11211
11709
|
# @!attribute [rw] last_modified_by
|
11212
11710
|
# Information about the user who created or modified an experiment,
|
11213
|
-
# trial, trial component, or project.
|
11711
|
+
# trial, trial component, lineage group, or project.
|
11214
11712
|
# @return [Types::UserContext]
|
11215
11713
|
#
|
11216
11714
|
# @!attribute [rw] metadata_properties
|
@@ -11218,6 +11716,10 @@ module Aws::SageMaker
|
|
11218
11716
|
# component.
|
11219
11717
|
# @return [Types::MetadataProperties]
|
11220
11718
|
#
|
11719
|
+
# @!attribute [rw] lineage_group_arn
|
11720
|
+
# The Amazon Resource Name (ARN) of the lineage group.
|
11721
|
+
# @return [String]
|
11722
|
+
#
|
11221
11723
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeActionResponse AWS API Documentation
|
11222
11724
|
#
|
11223
11725
|
class DescribeActionResponse < Struct.new(
|
@@ -11232,7 +11734,8 @@ module Aws::SageMaker
|
|
11232
11734
|
:created_by,
|
11233
11735
|
:last_modified_time,
|
11234
11736
|
:last_modified_by,
|
11235
|
-
:metadata_properties
|
11737
|
+
:metadata_properties,
|
11738
|
+
:lineage_group_arn)
|
11236
11739
|
SENSITIVE = []
|
11237
11740
|
include Aws::Structure
|
11238
11741
|
end
|
@@ -11519,7 +12022,7 @@ module Aws::SageMaker
|
|
11519
12022
|
#
|
11520
12023
|
# @!attribute [rw] created_by
|
11521
12024
|
# Information about the user who created or modified an experiment,
|
11522
|
-
# trial, trial component, or project.
|
12025
|
+
# trial, trial component, lineage group, or project.
|
11523
12026
|
# @return [Types::UserContext]
|
11524
12027
|
#
|
11525
12028
|
# @!attribute [rw] last_modified_time
|
@@ -11528,7 +12031,7 @@ module Aws::SageMaker
|
|
11528
12031
|
#
|
11529
12032
|
# @!attribute [rw] last_modified_by
|
11530
12033
|
# Information about the user who created or modified an experiment,
|
11531
|
-
# trial, trial component, or project.
|
12034
|
+
# trial, trial component, lineage group, or project.
|
11532
12035
|
# @return [Types::UserContext]
|
11533
12036
|
#
|
11534
12037
|
# @!attribute [rw] metadata_properties
|
@@ -11536,6 +12039,10 @@ module Aws::SageMaker
|
|
11536
12039
|
# component.
|
11537
12040
|
# @return [Types::MetadataProperties]
|
11538
12041
|
#
|
12042
|
+
# @!attribute [rw] lineage_group_arn
|
12043
|
+
# The Amazon Resource Name (ARN) of the lineage group.
|
12044
|
+
# @return [String]
|
12045
|
+
#
|
11539
12046
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeArtifactResponse AWS API Documentation
|
11540
12047
|
#
|
11541
12048
|
class DescribeArtifactResponse < Struct.new(
|
@@ -11548,7 +12055,8 @@ module Aws::SageMaker
|
|
11548
12055
|
:created_by,
|
11549
12056
|
:last_modified_time,
|
11550
12057
|
:last_modified_by,
|
11551
|
-
:metadata_properties
|
12058
|
+
:metadata_properties,
|
12059
|
+
:lineage_group_arn)
|
11552
12060
|
SENSITIVE = []
|
11553
12061
|
include Aws::Structure
|
11554
12062
|
end
|
@@ -11808,6 +12316,11 @@ module Aws::SageMaker
|
|
11808
12316
|
# only if the target device is a cloud instance.
|
11809
12317
|
# @return [String]
|
11810
12318
|
#
|
12319
|
+
# @!attribute [rw] model_package_version_arn
|
12320
|
+
# The Amazon Resource Name (ARN) of the versioned model package that
|
12321
|
+
# was provided to SageMaker Neo when you initiated a compilation job.
|
12322
|
+
# @return [String]
|
12323
|
+
#
|
11811
12324
|
# @!attribute [rw] creation_time
|
11812
12325
|
# The time that the model compilation job was created.
|
11813
12326
|
# @return [Time]
|
@@ -11868,6 +12381,7 @@ module Aws::SageMaker
|
|
11868
12381
|
:compilation_end_time,
|
11869
12382
|
:stopping_condition,
|
11870
12383
|
:inference_image,
|
12384
|
+
:model_package_version_arn,
|
11871
12385
|
:creation_time,
|
11872
12386
|
:last_modified_time,
|
11873
12387
|
:failure_reason,
|
@@ -11885,7 +12399,7 @@ module Aws::SageMaker
|
|
11885
12399
|
# data as a hash:
|
11886
12400
|
#
|
11887
12401
|
# {
|
11888
|
-
# context_name: "
|
12402
|
+
# context_name: "ExperimentEntityNameOrArn", # required
|
11889
12403
|
# }
|
11890
12404
|
#
|
11891
12405
|
# @!attribute [rw] context_name
|
@@ -11930,7 +12444,7 @@ module Aws::SageMaker
|
|
11930
12444
|
#
|
11931
12445
|
# @!attribute [rw] created_by
|
11932
12446
|
# Information about the user who created or modified an experiment,
|
11933
|
-
# trial, trial component, or project.
|
12447
|
+
# trial, trial component, lineage group, or project.
|
11934
12448
|
# @return [Types::UserContext]
|
11935
12449
|
#
|
11936
12450
|
# @!attribute [rw] last_modified_time
|
@@ -11939,9 +12453,13 @@ module Aws::SageMaker
|
|
11939
12453
|
#
|
11940
12454
|
# @!attribute [rw] last_modified_by
|
11941
12455
|
# Information about the user who created or modified an experiment,
|
11942
|
-
# trial, trial component, or project.
|
12456
|
+
# trial, trial component, lineage group, or project.
|
11943
12457
|
# @return [Types::UserContext]
|
11944
12458
|
#
|
12459
|
+
# @!attribute [rw] lineage_group_arn
|
12460
|
+
# The Amazon Resource Name (ARN) of the lineage group.
|
12461
|
+
# @return [String]
|
12462
|
+
#
|
11945
12463
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeContextResponse AWS API Documentation
|
11946
12464
|
#
|
11947
12465
|
class DescribeContextResponse < Struct.new(
|
@@ -11954,7 +12472,8 @@ module Aws::SageMaker
|
|
11954
12472
|
:creation_time,
|
11955
12473
|
:created_by,
|
11956
12474
|
:last_modified_time,
|
11957
|
-
:last_modified_by
|
12475
|
+
:last_modified_by,
|
12476
|
+
:lineage_group_arn)
|
11958
12477
|
SENSITIVE = []
|
11959
12478
|
include Aws::Structure
|
11960
12479
|
end
|
@@ -13250,6 +13769,104 @@ module Aws::SageMaker
|
|
13250
13769
|
include Aws::Structure
|
13251
13770
|
end
|
13252
13771
|
|
13772
|
+
# @note When making an API call, you may pass DescribeInferenceRecommendationsJobRequest
|
13773
|
+
# data as a hash:
|
13774
|
+
#
|
13775
|
+
# {
|
13776
|
+
# job_name: "RecommendationJobName", # required
|
13777
|
+
# }
|
13778
|
+
#
|
13779
|
+
# @!attribute [rw] job_name
|
13780
|
+
# The name of the job. The name must be unique within an Amazon Web
|
13781
|
+
# Services Region in the Amazon Web Services account.
|
13782
|
+
# @return [String]
|
13783
|
+
#
|
13784
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeInferenceRecommendationsJobRequest AWS API Documentation
|
13785
|
+
#
|
13786
|
+
class DescribeInferenceRecommendationsJobRequest < Struct.new(
|
13787
|
+
:job_name)
|
13788
|
+
SENSITIVE = []
|
13789
|
+
include Aws::Structure
|
13790
|
+
end
|
13791
|
+
|
13792
|
+
# @!attribute [rw] job_name
|
13793
|
+
# The name of the job. The name must be unique within an Amazon Web
|
13794
|
+
# Services Region in the Amazon Web Services account.
|
13795
|
+
# @return [String]
|
13796
|
+
#
|
13797
|
+
# @!attribute [rw] job_description
|
13798
|
+
# The job description that you provided when you initiated the job.
|
13799
|
+
# @return [String]
|
13800
|
+
#
|
13801
|
+
# @!attribute [rw] job_type
|
13802
|
+
# The job type that you provided when you initiated the job.
|
13803
|
+
# @return [String]
|
13804
|
+
#
|
13805
|
+
# @!attribute [rw] job_arn
|
13806
|
+
# The Amazon Resource Name (ARN) of the job.
|
13807
|
+
# @return [String]
|
13808
|
+
#
|
13809
|
+
# @!attribute [rw] role_arn
|
13810
|
+
# The Amazon Resource Name (ARN) of the Amazon Web Services Identity
|
13811
|
+
# and Access Management (IAM) role you provided when you initiated the
|
13812
|
+
# job.
|
13813
|
+
# @return [String]
|
13814
|
+
#
|
13815
|
+
# @!attribute [rw] status
|
13816
|
+
# The status of the job.
|
13817
|
+
# @return [String]
|
13818
|
+
#
|
13819
|
+
# @!attribute [rw] creation_time
|
13820
|
+
# A timestamp that shows when the job was created.
|
13821
|
+
# @return [Time]
|
13822
|
+
#
|
13823
|
+
# @!attribute [rw] completion_time
|
13824
|
+
# A timestamp that shows when the job completed.
|
13825
|
+
# @return [Time]
|
13826
|
+
#
|
13827
|
+
# @!attribute [rw] last_modified_time
|
13828
|
+
# A timestamp that shows when the job was last modified.
|
13829
|
+
# @return [Time]
|
13830
|
+
#
|
13831
|
+
# @!attribute [rw] failure_reason
|
13832
|
+
# If the job fails, provides information why the job failed.
|
13833
|
+
# @return [String]
|
13834
|
+
#
|
13835
|
+
# @!attribute [rw] input_config
|
13836
|
+
# Returns information about the versioned model package Amazon
|
13837
|
+
# Resource Name (ARN), the traffic pattern, and endpoint
|
13838
|
+
# configurations you provided when you initiated the job.
|
13839
|
+
# @return [Types::RecommendationJobInputConfig]
|
13840
|
+
#
|
13841
|
+
# @!attribute [rw] stopping_conditions
|
13842
|
+
# The stopping conditions that you provided when you initiated the
|
13843
|
+
# job.
|
13844
|
+
# @return [Types::RecommendationJobStoppingConditions]
|
13845
|
+
#
|
13846
|
+
# @!attribute [rw] inference_recommendations
|
13847
|
+
# The recommendations made by Inference Recommender.
|
13848
|
+
# @return [Array<Types::InferenceRecommendation>]
|
13849
|
+
#
|
13850
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeInferenceRecommendationsJobResponse AWS API Documentation
|
13851
|
+
#
|
13852
|
+
class DescribeInferenceRecommendationsJobResponse < Struct.new(
|
13853
|
+
:job_name,
|
13854
|
+
:job_description,
|
13855
|
+
:job_type,
|
13856
|
+
:job_arn,
|
13857
|
+
:role_arn,
|
13858
|
+
:status,
|
13859
|
+
:creation_time,
|
13860
|
+
:completion_time,
|
13861
|
+
:last_modified_time,
|
13862
|
+
:failure_reason,
|
13863
|
+
:input_config,
|
13864
|
+
:stopping_conditions,
|
13865
|
+
:inference_recommendations)
|
13866
|
+
SENSITIVE = []
|
13867
|
+
include Aws::Structure
|
13868
|
+
end
|
13869
|
+
|
13253
13870
|
# @note When making an API call, you may pass DescribeLabelingJobRequest
|
13254
13871
|
# data as a hash:
|
13255
13872
|
#
|
@@ -13421,6 +14038,74 @@ module Aws::SageMaker
|
|
13421
14038
|
include Aws::Structure
|
13422
14039
|
end
|
13423
14040
|
|
14041
|
+
# @note When making an API call, you may pass DescribeLineageGroupRequest
|
14042
|
+
# data as a hash:
|
14043
|
+
#
|
14044
|
+
# {
|
14045
|
+
# lineage_group_name: "ExperimentEntityName", # required
|
14046
|
+
# }
|
14047
|
+
#
|
14048
|
+
# @!attribute [rw] lineage_group_name
|
14049
|
+
# The name of the lineage group.
|
14050
|
+
# @return [String]
|
14051
|
+
#
|
14052
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeLineageGroupRequest AWS API Documentation
|
14053
|
+
#
|
14054
|
+
class DescribeLineageGroupRequest < Struct.new(
|
14055
|
+
:lineage_group_name)
|
14056
|
+
SENSITIVE = []
|
14057
|
+
include Aws::Structure
|
14058
|
+
end
|
14059
|
+
|
14060
|
+
# @!attribute [rw] lineage_group_name
|
14061
|
+
# The name of the lineage group.
|
14062
|
+
# @return [String]
|
14063
|
+
#
|
14064
|
+
# @!attribute [rw] lineage_group_arn
|
14065
|
+
# The Amazon Resource Name (ARN) of the lineage group.
|
14066
|
+
# @return [String]
|
14067
|
+
#
|
14068
|
+
# @!attribute [rw] display_name
|
14069
|
+
# The display name of the lineage group.
|
14070
|
+
# @return [String]
|
14071
|
+
#
|
14072
|
+
# @!attribute [rw] description
|
14073
|
+
# The description of the lineage group.
|
14074
|
+
# @return [String]
|
14075
|
+
#
|
14076
|
+
# @!attribute [rw] creation_time
|
14077
|
+
# The creation time of lineage group.
|
14078
|
+
# @return [Time]
|
14079
|
+
#
|
14080
|
+
# @!attribute [rw] created_by
|
14081
|
+
# Information about the user who created or modified an experiment,
|
14082
|
+
# trial, trial component, lineage group, or project.
|
14083
|
+
# @return [Types::UserContext]
|
14084
|
+
#
|
14085
|
+
# @!attribute [rw] last_modified_time
|
14086
|
+
# The last modified time of the lineage group.
|
14087
|
+
# @return [Time]
|
14088
|
+
#
|
14089
|
+
# @!attribute [rw] last_modified_by
|
14090
|
+
# Information about the user who created or modified an experiment,
|
14091
|
+
# trial, trial component, lineage group, or project.
|
14092
|
+
# @return [Types::UserContext]
|
14093
|
+
#
|
14094
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeLineageGroupResponse AWS API Documentation
|
14095
|
+
#
|
14096
|
+
class DescribeLineageGroupResponse < Struct.new(
|
14097
|
+
:lineage_group_name,
|
14098
|
+
:lineage_group_arn,
|
14099
|
+
:display_name,
|
14100
|
+
:description,
|
14101
|
+
:creation_time,
|
14102
|
+
:created_by,
|
14103
|
+
:last_modified_time,
|
14104
|
+
:last_modified_by)
|
14105
|
+
SENSITIVE = []
|
14106
|
+
include Aws::Structure
|
14107
|
+
end
|
14108
|
+
|
13424
14109
|
# @note When making an API call, you may pass DescribeModelBiasJobDefinitionRequest
|
13425
14110
|
# data as a hash:
|
13426
14111
|
#
|
@@ -13719,7 +14404,7 @@ module Aws::SageMaker
|
|
13719
14404
|
#
|
13720
14405
|
# @!attribute [rw] created_by
|
13721
14406
|
# Information about the user who created or modified an experiment,
|
13722
|
-
# trial, trial component, or project.
|
14407
|
+
# trial, trial component, lineage group, or project.
|
13723
14408
|
# @return [Types::UserContext]
|
13724
14409
|
#
|
13725
14410
|
# @!attribute [rw] model_package_group_status
|
@@ -13821,7 +14506,7 @@ module Aws::SageMaker
|
|
13821
14506
|
#
|
13822
14507
|
# @!attribute [rw] created_by
|
13823
14508
|
# Information about the user who created or modified an experiment,
|
13824
|
-
# trial, trial component, or project.
|
14509
|
+
# trial, trial component, lineage group, or project.
|
13825
14510
|
# @return [Types::UserContext]
|
13826
14511
|
#
|
13827
14512
|
# @!attribute [rw] metadata_properties
|
@@ -13839,7 +14524,7 @@ module Aws::SageMaker
|
|
13839
14524
|
#
|
13840
14525
|
# @!attribute [rw] last_modified_by
|
13841
14526
|
# Information about the user who created or modified an experiment,
|
13842
|
-
# trial, trial component, or project.
|
14527
|
+
# trial, trial component, lineage group, or project.
|
13843
14528
|
# @return [Types::UserContext]
|
13844
14529
|
#
|
13845
14530
|
# @!attribute [rw] approval_description
|
@@ -13850,6 +14535,42 @@ module Aws::SageMaker
|
|
13850
14535
|
# The metadata properties associated with the model package versions.
|
13851
14536
|
# @return [Hash<String,String>]
|
13852
14537
|
#
|
14538
|
+
# @!attribute [rw] drift_check_baselines
|
14539
|
+
# Represents the drift check baselines that can be used when the model
|
14540
|
+
# monitor is set using the model package. For more information, see
|
14541
|
+
# the topic on [Drift Detection against Previous Baselines in
|
14542
|
+
# SageMaker Pipelines][1] in the *Amazon SageMaker Developer Guide*.
|
14543
|
+
#
|
14544
|
+
#
|
14545
|
+
#
|
14546
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/pipelines-quality-clarify-baseline-lifecycle.html#pipelines-quality-clarify-baseline-drift-detection
|
14547
|
+
# @return [Types::DriftCheckBaselines]
|
14548
|
+
#
|
14549
|
+
# @!attribute [rw] domain
|
14550
|
+
# The machine learning domain of the model package you specified.
|
14551
|
+
# Common machine learning domains include computer vision and natural
|
14552
|
+
# language processing.
|
14553
|
+
# @return [String]
|
14554
|
+
#
|
14555
|
+
# @!attribute [rw] task
|
14556
|
+
# The machine learning task you specified that your model package
|
14557
|
+
# accomplishes. Common machine learning tasks include object detection
|
14558
|
+
# and image classification.
|
14559
|
+
# @return [String]
|
14560
|
+
#
|
14561
|
+
# @!attribute [rw] sample_payload_url
|
14562
|
+
# The Amazon Simple Storage Service (Amazon S3) path where the sample
|
14563
|
+
# payload are stored. This path points to a single gzip compressed tar
|
14564
|
+
# archive (.tar.gz suffix).
|
14565
|
+
# @return [String]
|
14566
|
+
#
|
14567
|
+
# @!attribute [rw] additional_inference_specifications
|
14568
|
+
# An array of additional Inference Specification objects. Each
|
14569
|
+
# additional Inference Specification specifies artifacts based on this
|
14570
|
+
# model package that can be used on inference endpoints. Generally
|
14571
|
+
# used with SageMaker Neo to store the compiled artifacts.
|
14572
|
+
# @return [Array<Types::AdditionalInferenceSpecificationDefinition>]
|
14573
|
+
#
|
13853
14574
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeModelPackageOutput AWS API Documentation
|
13854
14575
|
#
|
13855
14576
|
class DescribeModelPackageOutput < Struct.new(
|
@@ -13872,7 +14593,12 @@ module Aws::SageMaker
|
|
13872
14593
|
:last_modified_time,
|
13873
14594
|
:last_modified_by,
|
13874
14595
|
:approval_description,
|
13875
|
-
:customer_metadata_properties
|
14596
|
+
:customer_metadata_properties,
|
14597
|
+
:drift_check_baselines,
|
14598
|
+
:domain,
|
14599
|
+
:task,
|
14600
|
+
:sample_payload_url,
|
14601
|
+
:additional_inference_specifications)
|
13876
14602
|
SENSITIVE = []
|
13877
14603
|
include Aws::Structure
|
13878
14604
|
end
|
@@ -14403,12 +15129,12 @@ module Aws::SageMaker
|
|
14403
15129
|
#
|
14404
15130
|
# @!attribute [rw] created_by
|
14405
15131
|
# Information about the user who created or modified an experiment,
|
14406
|
-
# trial, trial component, or project.
|
15132
|
+
# trial, trial component, lineage group, or project.
|
14407
15133
|
# @return [Types::UserContext]
|
14408
15134
|
#
|
14409
15135
|
# @!attribute [rw] last_modified_by
|
14410
15136
|
# Information about the user who created or modified an experiment,
|
14411
|
-
# trial, trial component, or project.
|
15137
|
+
# trial, trial component, lineage group, or project.
|
14412
15138
|
# @return [Types::UserContext]
|
14413
15139
|
#
|
14414
15140
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribePipelineExecutionResponse AWS API Documentation
|
@@ -14490,12 +15216,12 @@ module Aws::SageMaker
|
|
14490
15216
|
#
|
14491
15217
|
# @!attribute [rw] created_by
|
14492
15218
|
# Information about the user who created or modified an experiment,
|
14493
|
-
# trial, trial component, or project.
|
15219
|
+
# trial, trial component, lineage group, or project.
|
14494
15220
|
# @return [Types::UserContext]
|
14495
15221
|
#
|
14496
15222
|
# @!attribute [rw] last_modified_by
|
14497
15223
|
# Information about the user who created or modified an experiment,
|
14498
|
-
# trial, trial component, or project.
|
15224
|
+
# trial, trial component, lineage group, or project.
|
14499
15225
|
# @return [Types::UserContext]
|
14500
15226
|
#
|
14501
15227
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribePipelineResponse AWS API Documentation
|
@@ -14710,7 +15436,7 @@ module Aws::SageMaker
|
|
14710
15436
|
#
|
14711
15437
|
# @!attribute [rw] created_by
|
14712
15438
|
# Information about the user who created or modified an experiment,
|
14713
|
-
# trial, trial component, or project.
|
15439
|
+
# trial, trial component, lineage group, or project.
|
14714
15440
|
# @return [Types::UserContext]
|
14715
15441
|
#
|
14716
15442
|
# @!attribute [rw] creation_time
|
@@ -14723,7 +15449,7 @@ module Aws::SageMaker
|
|
14723
15449
|
#
|
14724
15450
|
# @!attribute [rw] last_modified_by
|
14725
15451
|
# Information about the user who created or modified an experiment,
|
14726
|
-
# trial, trial component, or project.
|
15452
|
+
# trial, trial component, lineage group, or project.
|
14727
15453
|
# @return [Types::UserContext]
|
14728
15454
|
#
|
14729
15455
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeProjectOutput AWS API Documentation
|
@@ -15387,7 +16113,7 @@ module Aws::SageMaker
|
|
15387
16113
|
# data as a hash:
|
15388
16114
|
#
|
15389
16115
|
# {
|
15390
|
-
# trial_component_name: "
|
16116
|
+
# trial_component_name: "ExperimentEntityNameOrArn", # required
|
15391
16117
|
# }
|
15392
16118
|
#
|
15393
16119
|
# @!attribute [rw] trial_component_name
|
@@ -15475,6 +16201,10 @@ module Aws::SageMaker
|
|
15475
16201
|
# The metrics for the component.
|
15476
16202
|
# @return [Array<Types::TrialComponentMetricSummary>]
|
15477
16203
|
#
|
16204
|
+
# @!attribute [rw] lineage_group_arn
|
16205
|
+
# The Amazon Resource Name (ARN) of the lineage group.
|
16206
|
+
# @return [String]
|
16207
|
+
#
|
15478
16208
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeTrialComponentResponse AWS API Documentation
|
15479
16209
|
#
|
15480
16210
|
class DescribeTrialComponentResponse < Struct.new(
|
@@ -15493,7 +16223,8 @@ module Aws::SageMaker
|
|
15493
16223
|
:input_artifacts,
|
15494
16224
|
:output_artifacts,
|
15495
16225
|
:metadata_properties,
|
15496
|
-
:metrics
|
16226
|
+
:metrics,
|
16227
|
+
:lineage_group_arn)
|
15497
16228
|
SENSITIVE = []
|
15498
16229
|
include Aws::Structure
|
15499
16230
|
end
|
@@ -16074,6 +16805,274 @@ module Aws::SageMaker
|
|
16074
16805
|
include Aws::Structure
|
16075
16806
|
end
|
16076
16807
|
|
16808
|
+
# Represents the drift check baselines that can be used when the model
|
16809
|
+
# monitor is set using the model package.
|
16810
|
+
#
|
16811
|
+
# @note When making an API call, you may pass DriftCheckBaselines
|
16812
|
+
# data as a hash:
|
16813
|
+
#
|
16814
|
+
# {
|
16815
|
+
# bias: {
|
16816
|
+
# config_file: {
|
16817
|
+
# content_type: "ContentType",
|
16818
|
+
# content_digest: "ContentDigest",
|
16819
|
+
# s3_uri: "S3Uri", # required
|
16820
|
+
# },
|
16821
|
+
# pre_training_constraints: {
|
16822
|
+
# content_type: "ContentType", # required
|
16823
|
+
# content_digest: "ContentDigest",
|
16824
|
+
# s3_uri: "S3Uri", # required
|
16825
|
+
# },
|
16826
|
+
# post_training_constraints: {
|
16827
|
+
# content_type: "ContentType", # required
|
16828
|
+
# content_digest: "ContentDigest",
|
16829
|
+
# s3_uri: "S3Uri", # required
|
16830
|
+
# },
|
16831
|
+
# },
|
16832
|
+
# explainability: {
|
16833
|
+
# constraints: {
|
16834
|
+
# content_type: "ContentType", # required
|
16835
|
+
# content_digest: "ContentDigest",
|
16836
|
+
# s3_uri: "S3Uri", # required
|
16837
|
+
# },
|
16838
|
+
# config_file: {
|
16839
|
+
# content_type: "ContentType",
|
16840
|
+
# content_digest: "ContentDigest",
|
16841
|
+
# s3_uri: "S3Uri", # required
|
16842
|
+
# },
|
16843
|
+
# },
|
16844
|
+
# model_quality: {
|
16845
|
+
# statistics: {
|
16846
|
+
# content_type: "ContentType", # required
|
16847
|
+
# content_digest: "ContentDigest",
|
16848
|
+
# s3_uri: "S3Uri", # required
|
16849
|
+
# },
|
16850
|
+
# constraints: {
|
16851
|
+
# content_type: "ContentType", # required
|
16852
|
+
# content_digest: "ContentDigest",
|
16853
|
+
# s3_uri: "S3Uri", # required
|
16854
|
+
# },
|
16855
|
+
# },
|
16856
|
+
# model_data_quality: {
|
16857
|
+
# statistics: {
|
16858
|
+
# content_type: "ContentType", # required
|
16859
|
+
# content_digest: "ContentDigest",
|
16860
|
+
# s3_uri: "S3Uri", # required
|
16861
|
+
# },
|
16862
|
+
# constraints: {
|
16863
|
+
# content_type: "ContentType", # required
|
16864
|
+
# content_digest: "ContentDigest",
|
16865
|
+
# s3_uri: "S3Uri", # required
|
16866
|
+
# },
|
16867
|
+
# },
|
16868
|
+
# }
|
16869
|
+
#
|
16870
|
+
# @!attribute [rw] bias
|
16871
|
+
# Represents the drift check bias baselines that can be used when the
|
16872
|
+
# model monitor is set using the model package.
|
16873
|
+
# @return [Types::DriftCheckBias]
|
16874
|
+
#
|
16875
|
+
# @!attribute [rw] explainability
|
16876
|
+
# Represents the drift check explainability baselines that can be used
|
16877
|
+
# when the model monitor is set using the model package.
|
16878
|
+
# @return [Types::DriftCheckExplainability]
|
16879
|
+
#
|
16880
|
+
# @!attribute [rw] model_quality
|
16881
|
+
# Represents the drift check model quality baselines that can be used
|
16882
|
+
# when the model monitor is set using the model package.
|
16883
|
+
# @return [Types::DriftCheckModelQuality]
|
16884
|
+
#
|
16885
|
+
# @!attribute [rw] model_data_quality
|
16886
|
+
# Represents the drift check model data quality baselines that can be
|
16887
|
+
# used when the model monitor is set using the model package.
|
16888
|
+
# @return [Types::DriftCheckModelDataQuality]
|
16889
|
+
#
|
16890
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DriftCheckBaselines AWS API Documentation
|
16891
|
+
#
|
16892
|
+
class DriftCheckBaselines < Struct.new(
|
16893
|
+
:bias,
|
16894
|
+
:explainability,
|
16895
|
+
:model_quality,
|
16896
|
+
:model_data_quality)
|
16897
|
+
SENSITIVE = []
|
16898
|
+
include Aws::Structure
|
16899
|
+
end
|
16900
|
+
|
16901
|
+
# Represents the drift check bias baselines that can be used when the
|
16902
|
+
# model monitor is set using the model package.
|
16903
|
+
#
|
16904
|
+
# @note When making an API call, you may pass DriftCheckBias
|
16905
|
+
# data as a hash:
|
16906
|
+
#
|
16907
|
+
# {
|
16908
|
+
# config_file: {
|
16909
|
+
# content_type: "ContentType",
|
16910
|
+
# content_digest: "ContentDigest",
|
16911
|
+
# s3_uri: "S3Uri", # required
|
16912
|
+
# },
|
16913
|
+
# pre_training_constraints: {
|
16914
|
+
# content_type: "ContentType", # required
|
16915
|
+
# content_digest: "ContentDigest",
|
16916
|
+
# s3_uri: "S3Uri", # required
|
16917
|
+
# },
|
16918
|
+
# post_training_constraints: {
|
16919
|
+
# content_type: "ContentType", # required
|
16920
|
+
# content_digest: "ContentDigest",
|
16921
|
+
# s3_uri: "S3Uri", # required
|
16922
|
+
# },
|
16923
|
+
# }
|
16924
|
+
#
|
16925
|
+
# @!attribute [rw] config_file
|
16926
|
+
# The bias config file for a model.
|
16927
|
+
# @return [Types::FileSource]
|
16928
|
+
#
|
16929
|
+
# @!attribute [rw] pre_training_constraints
|
16930
|
+
# @return [Types::MetricsSource]
|
16931
|
+
#
|
16932
|
+
# @!attribute [rw] post_training_constraints
|
16933
|
+
# @return [Types::MetricsSource]
|
16934
|
+
#
|
16935
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DriftCheckBias AWS API Documentation
|
16936
|
+
#
|
16937
|
+
class DriftCheckBias < Struct.new(
|
16938
|
+
:config_file,
|
16939
|
+
:pre_training_constraints,
|
16940
|
+
:post_training_constraints)
|
16941
|
+
SENSITIVE = []
|
16942
|
+
include Aws::Structure
|
16943
|
+
end
|
16944
|
+
|
16945
|
+
# Represents the drift check explainability baselines that can be used
|
16946
|
+
# when the model monitor is set using the model package.
|
16947
|
+
#
|
16948
|
+
# @note When making an API call, you may pass DriftCheckExplainability
|
16949
|
+
# data as a hash:
|
16950
|
+
#
|
16951
|
+
# {
|
16952
|
+
# constraints: {
|
16953
|
+
# content_type: "ContentType", # required
|
16954
|
+
# content_digest: "ContentDigest",
|
16955
|
+
# s3_uri: "S3Uri", # required
|
16956
|
+
# },
|
16957
|
+
# config_file: {
|
16958
|
+
# content_type: "ContentType",
|
16959
|
+
# content_digest: "ContentDigest",
|
16960
|
+
# s3_uri: "S3Uri", # required
|
16961
|
+
# },
|
16962
|
+
# }
|
16963
|
+
#
|
16964
|
+
# @!attribute [rw] constraints
|
16965
|
+
# @return [Types::MetricsSource]
|
16966
|
+
#
|
16967
|
+
# @!attribute [rw] config_file
|
16968
|
+
# The explainability config file for the model.
|
16969
|
+
# @return [Types::FileSource]
|
16970
|
+
#
|
16971
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DriftCheckExplainability AWS API Documentation
|
16972
|
+
#
|
16973
|
+
class DriftCheckExplainability < Struct.new(
|
16974
|
+
:constraints,
|
16975
|
+
:config_file)
|
16976
|
+
SENSITIVE = []
|
16977
|
+
include Aws::Structure
|
16978
|
+
end
|
16979
|
+
|
16980
|
+
# Represents the drift check data quality baselines that can be used
|
16981
|
+
# when the model monitor is set using the model package.
|
16982
|
+
#
|
16983
|
+
# @note When making an API call, you may pass DriftCheckModelDataQuality
|
16984
|
+
# data as a hash:
|
16985
|
+
#
|
16986
|
+
# {
|
16987
|
+
# statistics: {
|
16988
|
+
# content_type: "ContentType", # required
|
16989
|
+
# content_digest: "ContentDigest",
|
16990
|
+
# s3_uri: "S3Uri", # required
|
16991
|
+
# },
|
16992
|
+
# constraints: {
|
16993
|
+
# content_type: "ContentType", # required
|
16994
|
+
# content_digest: "ContentDigest",
|
16995
|
+
# s3_uri: "S3Uri", # required
|
16996
|
+
# },
|
16997
|
+
# }
|
16998
|
+
#
|
16999
|
+
# @!attribute [rw] statistics
|
17000
|
+
# @return [Types::MetricsSource]
|
17001
|
+
#
|
17002
|
+
# @!attribute [rw] constraints
|
17003
|
+
# @return [Types::MetricsSource]
|
17004
|
+
#
|
17005
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DriftCheckModelDataQuality AWS API Documentation
|
17006
|
+
#
|
17007
|
+
class DriftCheckModelDataQuality < Struct.new(
|
17008
|
+
:statistics,
|
17009
|
+
:constraints)
|
17010
|
+
SENSITIVE = []
|
17011
|
+
include Aws::Structure
|
17012
|
+
end
|
17013
|
+
|
17014
|
+
# Represents the drift check model quality baselines that can be used
|
17015
|
+
# when the model monitor is set using the model package.
|
17016
|
+
#
|
17017
|
+
# @note When making an API call, you may pass DriftCheckModelQuality
|
17018
|
+
# data as a hash:
|
17019
|
+
#
|
17020
|
+
# {
|
17021
|
+
# statistics: {
|
17022
|
+
# content_type: "ContentType", # required
|
17023
|
+
# content_digest: "ContentDigest",
|
17024
|
+
# s3_uri: "S3Uri", # required
|
17025
|
+
# },
|
17026
|
+
# constraints: {
|
17027
|
+
# content_type: "ContentType", # required
|
17028
|
+
# content_digest: "ContentDigest",
|
17029
|
+
# s3_uri: "S3Uri", # required
|
17030
|
+
# },
|
17031
|
+
# }
|
17032
|
+
#
|
17033
|
+
# @!attribute [rw] statistics
|
17034
|
+
# @return [Types::MetricsSource]
|
17035
|
+
#
|
17036
|
+
# @!attribute [rw] constraints
|
17037
|
+
# @return [Types::MetricsSource]
|
17038
|
+
#
|
17039
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DriftCheckModelQuality AWS API Documentation
|
17040
|
+
#
|
17041
|
+
class DriftCheckModelQuality < Struct.new(
|
17042
|
+
:statistics,
|
17043
|
+
:constraints)
|
17044
|
+
SENSITIVE = []
|
17045
|
+
include Aws::Structure
|
17046
|
+
end
|
17047
|
+
|
17048
|
+
# A directed edge connecting two lineage entities.
|
17049
|
+
#
|
17050
|
+
# @!attribute [rw] source_arn
|
17051
|
+
# The Amazon Resource Name (ARN) of the source lineage entity of the
|
17052
|
+
# directed edge.
|
17053
|
+
# @return [String]
|
17054
|
+
#
|
17055
|
+
# @!attribute [rw] destination_arn
|
17056
|
+
# The Amazon Resource Name (ARN) of the destination lineage entity of
|
17057
|
+
# the directed edge.
|
17058
|
+
# @return [String]
|
17059
|
+
#
|
17060
|
+
# @!attribute [rw] association_type
|
17061
|
+
# The type of the Association(Edge) between the source and
|
17062
|
+
# destination. For example `ContributedTo`, `Produced`, or
|
17063
|
+
# `DerivedFrom`.
|
17064
|
+
# @return [String]
|
17065
|
+
#
|
17066
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/Edge AWS API Documentation
|
17067
|
+
#
|
17068
|
+
class Edge < Struct.new(
|
17069
|
+
:source_arn,
|
17070
|
+
:destination_arn,
|
17071
|
+
:association_type)
|
17072
|
+
SENSITIVE = []
|
17073
|
+
include Aws::Structure
|
17074
|
+
end
|
17075
|
+
|
16077
17076
|
# The model on the edge device.
|
16078
17077
|
#
|
16079
17078
|
# @!attribute [rw] model_name
|
@@ -16530,6 +17529,78 @@ module Aws::SageMaker
|
|
16530
17529
|
include Aws::Structure
|
16531
17530
|
end
|
16532
17531
|
|
17532
|
+
# The endpoint configuration for the load test.
|
17533
|
+
#
|
17534
|
+
# @note When making an API call, you may pass EndpointInputConfiguration
|
17535
|
+
# data as a hash:
|
17536
|
+
#
|
17537
|
+
# {
|
17538
|
+
# 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
|
17539
|
+
# inference_specification_name: "InferenceSpecificationName",
|
17540
|
+
# environment_parameter_ranges: {
|
17541
|
+
# categorical_parameter_ranges: [
|
17542
|
+
# {
|
17543
|
+
# name: "String64", # required
|
17544
|
+
# value: ["String128"], # required
|
17545
|
+
# },
|
17546
|
+
# ],
|
17547
|
+
# },
|
17548
|
+
# }
|
17549
|
+
#
|
17550
|
+
# @!attribute [rw] instance_type
|
17551
|
+
# The instance types to use for the load test.
|
17552
|
+
# @return [String]
|
17553
|
+
#
|
17554
|
+
# @!attribute [rw] inference_specification_name
|
17555
|
+
# The inference specification name in the model package version.
|
17556
|
+
# @return [String]
|
17557
|
+
#
|
17558
|
+
# @!attribute [rw] environment_parameter_ranges
|
17559
|
+
# The parameter you want to benchmark against.
|
17560
|
+
# @return [Types::EnvironmentParameterRanges]
|
17561
|
+
#
|
17562
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/EndpointInputConfiguration AWS API Documentation
|
17563
|
+
#
|
17564
|
+
class EndpointInputConfiguration < Struct.new(
|
17565
|
+
:instance_type,
|
17566
|
+
:inference_specification_name,
|
17567
|
+
:environment_parameter_ranges)
|
17568
|
+
SENSITIVE = []
|
17569
|
+
include Aws::Structure
|
17570
|
+
end
|
17571
|
+
|
17572
|
+
# The endpoint configuration made by Inference Recommender during a
|
17573
|
+
# recommendation job.
|
17574
|
+
#
|
17575
|
+
# @!attribute [rw] endpoint_name
|
17576
|
+
# The name of the endpoint made during a recommendation job.
|
17577
|
+
# @return [String]
|
17578
|
+
#
|
17579
|
+
# @!attribute [rw] variant_name
|
17580
|
+
# The name of the production variant (deployed model) made during a
|
17581
|
+
# recommendation job.
|
17582
|
+
# @return [String]
|
17583
|
+
#
|
17584
|
+
# @!attribute [rw] instance_type
|
17585
|
+
# The instance type recommended by Amazon SageMaker Inference
|
17586
|
+
# Recommender.
|
17587
|
+
# @return [String]
|
17588
|
+
#
|
17589
|
+
# @!attribute [rw] initial_instance_count
|
17590
|
+
# The number of instances recommended to launch initially.
|
17591
|
+
# @return [Integer]
|
17592
|
+
#
|
17593
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/EndpointOutputConfiguration AWS API Documentation
|
17594
|
+
#
|
17595
|
+
class EndpointOutputConfiguration < Struct.new(
|
17596
|
+
:endpoint_name,
|
17597
|
+
:variant_name,
|
17598
|
+
:instance_type,
|
17599
|
+
:initial_instance_count)
|
17600
|
+
SENSITIVE = []
|
17601
|
+
include Aws::Structure
|
17602
|
+
end
|
17603
|
+
|
16533
17604
|
# Provides summary information for an endpoint.
|
16534
17605
|
#
|
16535
17606
|
# @!attribute [rw] endpoint_name
|
@@ -16599,6 +17670,59 @@ module Aws::SageMaker
|
|
16599
17670
|
include Aws::Structure
|
16600
17671
|
end
|
16601
17672
|
|
17673
|
+
# A list of environment parameters suggested by the Amazon SageMaker
|
17674
|
+
# Inference Recommender.
|
17675
|
+
#
|
17676
|
+
# @!attribute [rw] key
|
17677
|
+
# The environment key suggested by the Amazon SageMaker Inference
|
17678
|
+
# Recommender.
|
17679
|
+
# @return [String]
|
17680
|
+
#
|
17681
|
+
# @!attribute [rw] value_type
|
17682
|
+
# The value type suggested by the Amazon SageMaker Inference
|
17683
|
+
# Recommender.
|
17684
|
+
# @return [String]
|
17685
|
+
#
|
17686
|
+
# @!attribute [rw] value
|
17687
|
+
# The value suggested by the Amazon SageMaker Inference Recommender.
|
17688
|
+
# @return [String]
|
17689
|
+
#
|
17690
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/EnvironmentParameter AWS API Documentation
|
17691
|
+
#
|
17692
|
+
class EnvironmentParameter < Struct.new(
|
17693
|
+
:key,
|
17694
|
+
:value_type,
|
17695
|
+
:value)
|
17696
|
+
SENSITIVE = []
|
17697
|
+
include Aws::Structure
|
17698
|
+
end
|
17699
|
+
|
17700
|
+
# Specifies the range of environment parameters
|
17701
|
+
#
|
17702
|
+
# @note When making an API call, you may pass EnvironmentParameterRanges
|
17703
|
+
# data as a hash:
|
17704
|
+
#
|
17705
|
+
# {
|
17706
|
+
# categorical_parameter_ranges: [
|
17707
|
+
# {
|
17708
|
+
# name: "String64", # required
|
17709
|
+
# value: ["String128"], # required
|
17710
|
+
# },
|
17711
|
+
# ],
|
17712
|
+
# }
|
17713
|
+
#
|
17714
|
+
# @!attribute [rw] categorical_parameter_ranges
|
17715
|
+
# Specified a list of parameters for each category.
|
17716
|
+
# @return [Array<Types::CategoricalParameter>]
|
17717
|
+
#
|
17718
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/EnvironmentParameterRanges AWS API Documentation
|
17719
|
+
#
|
17720
|
+
class EnvironmentParameterRanges < Struct.new(
|
17721
|
+
:categorical_parameter_ranges)
|
17722
|
+
SENSITIVE = []
|
17723
|
+
include Aws::Structure
|
17724
|
+
end
|
17725
|
+
|
16602
17726
|
# The properties of an experiment as returned by the Search API.
|
16603
17727
|
#
|
16604
17728
|
# @!attribute [rw] experiment_name
|
@@ -16636,7 +17760,7 @@ module Aws::SageMaker
|
|
16636
17760
|
#
|
16637
17761
|
# @!attribute [rw] last_modified_by
|
16638
17762
|
# Information about the user who created or modified an experiment,
|
16639
|
-
# trial, trial component, or project.
|
17763
|
+
# trial, trial component, lineage group, or project.
|
16640
17764
|
# @return [Types::UserContext]
|
16641
17765
|
#
|
16642
17766
|
# @!attribute [rw] tags
|
@@ -16974,6 +18098,39 @@ module Aws::SageMaker
|
|
16974
18098
|
include Aws::Structure
|
16975
18099
|
end
|
16976
18100
|
|
18101
|
+
# Contains details regarding the file source.
|
18102
|
+
#
|
18103
|
+
# @note When making an API call, you may pass FileSource
|
18104
|
+
# data as a hash:
|
18105
|
+
#
|
18106
|
+
# {
|
18107
|
+
# content_type: "ContentType",
|
18108
|
+
# content_digest: "ContentDigest",
|
18109
|
+
# s3_uri: "S3Uri", # required
|
18110
|
+
# }
|
18111
|
+
#
|
18112
|
+
# @!attribute [rw] content_type
|
18113
|
+
# The type of content stored in the file source.
|
18114
|
+
# @return [String]
|
18115
|
+
#
|
18116
|
+
# @!attribute [rw] content_digest
|
18117
|
+
# The digest of the file source.
|
18118
|
+
# @return [String]
|
18119
|
+
#
|
18120
|
+
# @!attribute [rw] s3_uri
|
18121
|
+
# The Amazon S3 URI for the file source.
|
18122
|
+
# @return [String]
|
18123
|
+
#
|
18124
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/FileSource AWS API Documentation
|
18125
|
+
#
|
18126
|
+
class FileSource < Struct.new(
|
18127
|
+
:content_type,
|
18128
|
+
:content_digest,
|
18129
|
+
:s3_uri)
|
18130
|
+
SENSITIVE = []
|
18131
|
+
include Aws::Structure
|
18132
|
+
end
|
18133
|
+
|
16977
18134
|
# The Amazon Elastic File System (EFS) storage configuration for a
|
16978
18135
|
# SageMaker image.
|
16979
18136
|
#
|
@@ -17409,6 +18566,43 @@ module Aws::SageMaker
|
|
17409
18566
|
include Aws::Structure
|
17410
18567
|
end
|
17411
18568
|
|
18569
|
+
# @note When making an API call, you may pass GetLineageGroupPolicyRequest
|
18570
|
+
# data as a hash:
|
18571
|
+
#
|
18572
|
+
# {
|
18573
|
+
# lineage_group_name: "LineageGroupNameOrArn", # required
|
18574
|
+
# }
|
18575
|
+
#
|
18576
|
+
# @!attribute [rw] lineage_group_name
|
18577
|
+
# The name or Amazon Resource Name (ARN) of the lineage group.
|
18578
|
+
# @return [String]
|
18579
|
+
#
|
18580
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/GetLineageGroupPolicyRequest AWS API Documentation
|
18581
|
+
#
|
18582
|
+
class GetLineageGroupPolicyRequest < Struct.new(
|
18583
|
+
:lineage_group_name)
|
18584
|
+
SENSITIVE = []
|
18585
|
+
include Aws::Structure
|
18586
|
+
end
|
18587
|
+
|
18588
|
+
# @!attribute [rw] lineage_group_arn
|
18589
|
+
# The Amazon Resource Name (ARN) of the lineage group.
|
18590
|
+
# @return [String]
|
18591
|
+
#
|
18592
|
+
# @!attribute [rw] resource_policy
|
18593
|
+
# The resource policy that gives access to the lineage group in
|
18594
|
+
# another account.
|
18595
|
+
# @return [String]
|
18596
|
+
#
|
18597
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/GetLineageGroupPolicyResponse AWS API Documentation
|
18598
|
+
#
|
18599
|
+
class GetLineageGroupPolicyResponse < Struct.new(
|
18600
|
+
:lineage_group_arn,
|
18601
|
+
:resource_policy)
|
18602
|
+
SENSITIVE = []
|
18603
|
+
include Aws::Structure
|
18604
|
+
end
|
18605
|
+
|
17412
18606
|
# @note When making an API call, you may pass GetModelPackageGroupPolicyInput
|
17413
18607
|
# data as a hash:
|
17414
18608
|
#
|
@@ -18682,8 +19876,7 @@ module Aws::SageMaker
|
|
18682
19876
|
#
|
18683
19877
|
# * For [3D point cloud][4] and [video frame][5] labeling jobs, the
|
18684
19878
|
# maximum is 30 days (2952,000 seconds) for non-AL mode. For most
|
18685
|
-
# users, the maximum is also 30 days.
|
18686
|
-
# limits, contact Amazon Web Services Support.
|
19879
|
+
# users, the maximum is also 30 days.
|
18687
19880
|
#
|
18688
19881
|
#
|
18689
19882
|
#
|
@@ -18705,8 +19898,7 @@ module Aws::SageMaker
|
|
18705
19898
|
#
|
18706
19899
|
# * If you choose a private or vendor workforce, the default value is
|
18707
19900
|
# 30 days (2592,000 seconds) for non-AL mode. For most users, the
|
18708
|
-
# maximum is also 30 days.
|
18709
|
-
# Amazon Web Services Support.
|
19901
|
+
# maximum is also 30 days.
|
18710
19902
|
# @return [Integer]
|
18711
19903
|
#
|
18712
19904
|
# @!attribute [rw] max_concurrent_task_count
|
@@ -19742,6 +20934,91 @@ module Aws::SageMaker
|
|
19742
20934
|
include Aws::Structure
|
19743
20935
|
end
|
19744
20936
|
|
20937
|
+
# A list of recommendations made by Amazon SageMaker Inference
|
20938
|
+
# Recommender.
|
20939
|
+
#
|
20940
|
+
# @!attribute [rw] metrics
|
20941
|
+
# The metrics used to decide what recommendation to make.
|
20942
|
+
# @return [Types::RecommendationMetrics]
|
20943
|
+
#
|
20944
|
+
# @!attribute [rw] endpoint_configuration
|
20945
|
+
# Defines the endpoint configuration parameters.
|
20946
|
+
# @return [Types::EndpointOutputConfiguration]
|
20947
|
+
#
|
20948
|
+
# @!attribute [rw] model_configuration
|
20949
|
+
# Defines the model configuration.
|
20950
|
+
# @return [Types::ModelConfiguration]
|
20951
|
+
#
|
20952
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/InferenceRecommendation AWS API Documentation
|
20953
|
+
#
|
20954
|
+
class InferenceRecommendation < Struct.new(
|
20955
|
+
:metrics,
|
20956
|
+
:endpoint_configuration,
|
20957
|
+
:model_configuration)
|
20958
|
+
SENSITIVE = []
|
20959
|
+
include Aws::Structure
|
20960
|
+
end
|
20961
|
+
|
20962
|
+
# A structure that contains a list of recommendation jobs.
|
20963
|
+
#
|
20964
|
+
# @!attribute [rw] job_name
|
20965
|
+
# The name of the job.
|
20966
|
+
# @return [String]
|
20967
|
+
#
|
20968
|
+
# @!attribute [rw] job_description
|
20969
|
+
# The job description.
|
20970
|
+
# @return [String]
|
20971
|
+
#
|
20972
|
+
# @!attribute [rw] job_type
|
20973
|
+
# The recommendation job type.
|
20974
|
+
# @return [String]
|
20975
|
+
#
|
20976
|
+
# @!attribute [rw] job_arn
|
20977
|
+
# The Amazon Resource Name (ARN) of the recommendation job.
|
20978
|
+
# @return [String]
|
20979
|
+
#
|
20980
|
+
# @!attribute [rw] status
|
20981
|
+
# The status of the job.
|
20982
|
+
# @return [String]
|
20983
|
+
#
|
20984
|
+
# @!attribute [rw] creation_time
|
20985
|
+
# A timestamp that shows when the job was created.
|
20986
|
+
# @return [Time]
|
20987
|
+
#
|
20988
|
+
# @!attribute [rw] completion_time
|
20989
|
+
# A timestamp that shows when the job completed.
|
20990
|
+
# @return [Time]
|
20991
|
+
#
|
20992
|
+
# @!attribute [rw] role_arn
|
20993
|
+
# The Amazon Resource Name (ARN) of an IAM role that enables Amazon
|
20994
|
+
# SageMaker to perform tasks on your behalf.
|
20995
|
+
# @return [String]
|
20996
|
+
#
|
20997
|
+
# @!attribute [rw] last_modified_time
|
20998
|
+
# A timestamp that shows when the job was last modified.
|
20999
|
+
# @return [Time]
|
21000
|
+
#
|
21001
|
+
# @!attribute [rw] failure_reason
|
21002
|
+
# If the job fails, provides information why the job failed.
|
21003
|
+
# @return [String]
|
21004
|
+
#
|
21005
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/InferenceRecommendationsJob AWS API Documentation
|
21006
|
+
#
|
21007
|
+
class InferenceRecommendationsJob < Struct.new(
|
21008
|
+
:job_name,
|
21009
|
+
:job_description,
|
21010
|
+
:job_type,
|
21011
|
+
:job_arn,
|
21012
|
+
:status,
|
21013
|
+
:creation_time,
|
21014
|
+
:completion_time,
|
21015
|
+
:role_arn,
|
21016
|
+
:last_modified_time,
|
21017
|
+
:failure_reason)
|
21018
|
+
SENSITIVE = []
|
21019
|
+
include Aws::Structure
|
21020
|
+
end
|
21021
|
+
|
19745
21022
|
# Defines how to perform inference generation after a training job is
|
19746
21023
|
# run.
|
19747
21024
|
#
|
@@ -19759,6 +21036,12 @@ module Aws::SageMaker
|
|
19759
21036
|
# environment: {
|
19760
21037
|
# "EnvironmentKey" => "EnvironmentValue",
|
19761
21038
|
# },
|
21039
|
+
# model_input: {
|
21040
|
+
# data_input_config: "DataInputConfig", # required
|
21041
|
+
# },
|
21042
|
+
# framework: "String",
|
21043
|
+
# framework_version: "FrameworkVersion",
|
21044
|
+
# nearest_model_name: "String",
|
19762
21045
|
# },
|
19763
21046
|
# ],
|
19764
21047
|
# 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
|
@@ -20880,6 +22163,41 @@ module Aws::SageMaker
|
|
20880
22163
|
include Aws::Structure
|
20881
22164
|
end
|
20882
22165
|
|
22166
|
+
# Lists a summary of the properties of a lineage group. A lineage group
|
22167
|
+
# provides a group of shareable lineage entity resources.
|
22168
|
+
#
|
22169
|
+
# @!attribute [rw] lineage_group_arn
|
22170
|
+
# The Amazon Resource Name (ARN) of the lineage group resource.
|
22171
|
+
# @return [String]
|
22172
|
+
#
|
22173
|
+
# @!attribute [rw] lineage_group_name
|
22174
|
+
# The name or Amazon Resource Name (ARN) of the lineage group.
|
22175
|
+
# @return [String]
|
22176
|
+
#
|
22177
|
+
# @!attribute [rw] display_name
|
22178
|
+
# The display name of the lineage group summary.
|
22179
|
+
# @return [String]
|
22180
|
+
#
|
22181
|
+
# @!attribute [rw] creation_time
|
22182
|
+
# The creation time of the lineage group summary.
|
22183
|
+
# @return [Time]
|
22184
|
+
#
|
22185
|
+
# @!attribute [rw] last_modified_time
|
22186
|
+
# The last modified time of the lineage group summary.
|
22187
|
+
# @return [Time]
|
22188
|
+
#
|
22189
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/LineageGroupSummary AWS API Documentation
|
22190
|
+
#
|
22191
|
+
class LineageGroupSummary < Struct.new(
|
22192
|
+
:lineage_group_arn,
|
22193
|
+
:lineage_group_name,
|
22194
|
+
:display_name,
|
22195
|
+
:creation_time,
|
22196
|
+
:last_modified_time)
|
22197
|
+
SENSITIVE = []
|
22198
|
+
include Aws::Structure
|
22199
|
+
end
|
22200
|
+
|
20883
22201
|
# @note When making an API call, you may pass ListActionsRequest
|
20884
22202
|
# data as a hash:
|
20885
22203
|
#
|
@@ -22997,6 +24315,107 @@ module Aws::SageMaker
|
|
22997
24315
|
include Aws::Structure
|
22998
24316
|
end
|
22999
24317
|
|
24318
|
+
# @note When making an API call, you may pass ListInferenceRecommendationsJobsRequest
|
24319
|
+
# data as a hash:
|
24320
|
+
#
|
24321
|
+
# {
|
24322
|
+
# creation_time_after: Time.now,
|
24323
|
+
# creation_time_before: Time.now,
|
24324
|
+
# last_modified_time_after: Time.now,
|
24325
|
+
# last_modified_time_before: Time.now,
|
24326
|
+
# name_contains: "NameContains",
|
24327
|
+
# status_equals: "PENDING", # accepts PENDING, IN_PROGRESS, COMPLETED, FAILED, STOPPING, STOPPED
|
24328
|
+
# sort_by: "Name", # accepts Name, CreationTime, Status
|
24329
|
+
# sort_order: "Ascending", # accepts Ascending, Descending
|
24330
|
+
# next_token: "NextToken",
|
24331
|
+
# max_results: 1,
|
24332
|
+
# }
|
24333
|
+
#
|
24334
|
+
# @!attribute [rw] creation_time_after
|
24335
|
+
# A filter that returns only jobs created after the specified time
|
24336
|
+
# (timestamp).
|
24337
|
+
# @return [Time]
|
24338
|
+
#
|
24339
|
+
# @!attribute [rw] creation_time_before
|
24340
|
+
# A filter that returns only jobs created before the specified time
|
24341
|
+
# (timestamp).
|
24342
|
+
# @return [Time]
|
24343
|
+
#
|
24344
|
+
# @!attribute [rw] last_modified_time_after
|
24345
|
+
# A filter that returns only jobs that were last modified after the
|
24346
|
+
# specified time (timestamp).
|
24347
|
+
# @return [Time]
|
24348
|
+
#
|
24349
|
+
# @!attribute [rw] last_modified_time_before
|
24350
|
+
# A filter that returns only jobs that were last modified before the
|
24351
|
+
# specified time (timestamp).
|
24352
|
+
# @return [Time]
|
24353
|
+
#
|
24354
|
+
# @!attribute [rw] name_contains
|
24355
|
+
# A string in the job name. This filter returns only recommendations
|
24356
|
+
# whose name contains the specified string.
|
24357
|
+
# @return [String]
|
24358
|
+
#
|
24359
|
+
# @!attribute [rw] status_equals
|
24360
|
+
# A filter that retrieves only inference recommendations jobs with a
|
24361
|
+
# specific status.
|
24362
|
+
# @return [String]
|
24363
|
+
#
|
24364
|
+
# @!attribute [rw] sort_by
|
24365
|
+
# The parameter by which to sort the results.
|
24366
|
+
# @return [String]
|
24367
|
+
#
|
24368
|
+
# @!attribute [rw] sort_order
|
24369
|
+
# The sort order for the results.
|
24370
|
+
# @return [String]
|
24371
|
+
#
|
24372
|
+
# @!attribute [rw] next_token
|
24373
|
+
# If the response to a previous
|
24374
|
+
# `ListInferenceRecommendationsJobsRequest` request was truncated, the
|
24375
|
+
# response includes a `NextToken`. To retrieve the next set of
|
24376
|
+
# recommendations, use the token in the next request.
|
24377
|
+
# @return [String]
|
24378
|
+
#
|
24379
|
+
# @!attribute [rw] max_results
|
24380
|
+
# The maximum number of recommendations to return in the response.
|
24381
|
+
# @return [Integer]
|
24382
|
+
#
|
24383
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListInferenceRecommendationsJobsRequest AWS API Documentation
|
24384
|
+
#
|
24385
|
+
class ListInferenceRecommendationsJobsRequest < Struct.new(
|
24386
|
+
:creation_time_after,
|
24387
|
+
:creation_time_before,
|
24388
|
+
:last_modified_time_after,
|
24389
|
+
:last_modified_time_before,
|
24390
|
+
:name_contains,
|
24391
|
+
:status_equals,
|
24392
|
+
:sort_by,
|
24393
|
+
:sort_order,
|
24394
|
+
:next_token,
|
24395
|
+
:max_results)
|
24396
|
+
SENSITIVE = []
|
24397
|
+
include Aws::Structure
|
24398
|
+
end
|
24399
|
+
|
24400
|
+
# @!attribute [rw] inference_recommendations_jobs
|
24401
|
+
# The recommendations created from the Amazon SageMaker Inference
|
24402
|
+
# Recommender job.
|
24403
|
+
# @return [Array<Types::InferenceRecommendationsJob>]
|
24404
|
+
#
|
24405
|
+
# @!attribute [rw] next_token
|
24406
|
+
# A token for getting the next set of recommendations, if there are
|
24407
|
+
# any.
|
24408
|
+
# @return [String]
|
24409
|
+
#
|
24410
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListInferenceRecommendationsJobsResponse AWS API Documentation
|
24411
|
+
#
|
24412
|
+
class ListInferenceRecommendationsJobsResponse < Struct.new(
|
24413
|
+
:inference_recommendations_jobs,
|
24414
|
+
:next_token)
|
24415
|
+
SENSITIVE = []
|
24416
|
+
include Aws::Structure
|
24417
|
+
end
|
24418
|
+
|
23000
24419
|
# @note When making an API call, you may pass ListLabelingJobsForWorkteamRequest
|
23001
24420
|
# data as a hash:
|
23002
24421
|
#
|
@@ -23186,6 +24605,80 @@ module Aws::SageMaker
|
|
23186
24605
|
include Aws::Structure
|
23187
24606
|
end
|
23188
24607
|
|
24608
|
+
# @note When making an API call, you may pass ListLineageGroupsRequest
|
24609
|
+
# data as a hash:
|
24610
|
+
#
|
24611
|
+
# {
|
24612
|
+
# created_after: Time.now,
|
24613
|
+
# created_before: Time.now,
|
24614
|
+
# sort_by: "Name", # accepts Name, CreationTime
|
24615
|
+
# sort_order: "Ascending", # accepts Ascending, Descending
|
24616
|
+
# next_token: "NextToken",
|
24617
|
+
# max_results: 1,
|
24618
|
+
# }
|
24619
|
+
#
|
24620
|
+
# @!attribute [rw] created_after
|
24621
|
+
# A timestamp to filter against lineage groups created after a certain
|
24622
|
+
# point in time.
|
24623
|
+
# @return [Time]
|
24624
|
+
#
|
24625
|
+
# @!attribute [rw] created_before
|
24626
|
+
# A timestamp to filter against lineage groups created before a
|
24627
|
+
# certain point in time.
|
24628
|
+
# @return [Time]
|
24629
|
+
#
|
24630
|
+
# @!attribute [rw] sort_by
|
24631
|
+
# The parameter by which to sort the results. The default is
|
24632
|
+
# `CreationTime`.
|
24633
|
+
# @return [String]
|
24634
|
+
#
|
24635
|
+
# @!attribute [rw] sort_order
|
24636
|
+
# The sort order for the results. The default is `Ascending`.
|
24637
|
+
# @return [String]
|
24638
|
+
#
|
24639
|
+
# @!attribute [rw] next_token
|
24640
|
+
# If the response is truncated, SageMaker returns this token. To
|
24641
|
+
# retrieve the next set of algorithms, use it in the subsequent
|
24642
|
+
# request.
|
24643
|
+
# @return [String]
|
24644
|
+
#
|
24645
|
+
# @!attribute [rw] max_results
|
24646
|
+
# The maximum number of endpoints to return in the response. This
|
24647
|
+
# value defaults to 10.
|
24648
|
+
# @return [Integer]
|
24649
|
+
#
|
24650
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListLineageGroupsRequest AWS API Documentation
|
24651
|
+
#
|
24652
|
+
class ListLineageGroupsRequest < Struct.new(
|
24653
|
+
:created_after,
|
24654
|
+
:created_before,
|
24655
|
+
:sort_by,
|
24656
|
+
:sort_order,
|
24657
|
+
:next_token,
|
24658
|
+
:max_results)
|
24659
|
+
SENSITIVE = []
|
24660
|
+
include Aws::Structure
|
24661
|
+
end
|
24662
|
+
|
24663
|
+
# @!attribute [rw] lineage_group_summaries
|
24664
|
+
# A list of lineage groups and their properties.
|
24665
|
+
# @return [Array<Types::LineageGroupSummary>]
|
24666
|
+
#
|
24667
|
+
# @!attribute [rw] next_token
|
24668
|
+
# If the response is truncated, SageMaker returns this token. To
|
24669
|
+
# retrieve the next set of algorithms, use it in the subsequent
|
24670
|
+
# request.
|
24671
|
+
# @return [String]
|
24672
|
+
#
|
24673
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListLineageGroupsResponse AWS API Documentation
|
24674
|
+
#
|
24675
|
+
class ListLineageGroupsResponse < Struct.new(
|
24676
|
+
:lineage_group_summaries,
|
24677
|
+
:next_token)
|
24678
|
+
SENSITIVE = []
|
24679
|
+
include Aws::Structure
|
24680
|
+
end
|
24681
|
+
|
23189
24682
|
# @note When making an API call, you may pass ListModelBiasJobDefinitionsRequest
|
23190
24683
|
# data as a hash:
|
23191
24684
|
#
|
@@ -23359,6 +24852,68 @@ module Aws::SageMaker
|
|
23359
24852
|
include Aws::Structure
|
23360
24853
|
end
|
23361
24854
|
|
24855
|
+
# @note When making an API call, you may pass ListModelMetadataRequest
|
24856
|
+
# data as a hash:
|
24857
|
+
#
|
24858
|
+
# {
|
24859
|
+
# search_expression: {
|
24860
|
+
# filters: [
|
24861
|
+
# {
|
24862
|
+
# name: "Domain", # required, accepts Domain, Framework, Task, FrameworkVersion
|
24863
|
+
# value: "String256", # required
|
24864
|
+
# },
|
24865
|
+
# ],
|
24866
|
+
# },
|
24867
|
+
# next_token: "NextToken",
|
24868
|
+
# max_results: 1,
|
24869
|
+
# }
|
24870
|
+
#
|
24871
|
+
# @!attribute [rw] search_expression
|
24872
|
+
# One or more filters that searches for the specified resource or
|
24873
|
+
# resources in a search. All resource objects that satisfy the
|
24874
|
+
# expression's condition are included in the search results. Specify
|
24875
|
+
# the Framework, FrameworkVersion, Domain or Task to filter supported.
|
24876
|
+
# Filter names and values are case-sensitive.
|
24877
|
+
# @return [Types::ModelMetadataSearchExpression]
|
24878
|
+
#
|
24879
|
+
# @!attribute [rw] next_token
|
24880
|
+
# If the response to a previous `ListModelMetadataResponse` request
|
24881
|
+
# was truncated, the response includes a NextToken. To retrieve the
|
24882
|
+
# next set of model metadata, use the token in the next request.
|
24883
|
+
# @return [String]
|
24884
|
+
#
|
24885
|
+
# @!attribute [rw] max_results
|
24886
|
+
# The maximum number of models to return in the response.
|
24887
|
+
# @return [Integer]
|
24888
|
+
#
|
24889
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListModelMetadataRequest AWS API Documentation
|
24890
|
+
#
|
24891
|
+
class ListModelMetadataRequest < Struct.new(
|
24892
|
+
:search_expression,
|
24893
|
+
:next_token,
|
24894
|
+
:max_results)
|
24895
|
+
SENSITIVE = []
|
24896
|
+
include Aws::Structure
|
24897
|
+
end
|
24898
|
+
|
24899
|
+
# @!attribute [rw] model_metadata_summaries
|
24900
|
+
# A structure that holds model metadata.
|
24901
|
+
# @return [Array<Types::ModelMetadataSummary>]
|
24902
|
+
#
|
24903
|
+
# @!attribute [rw] next_token
|
24904
|
+
# A token for getting the next set of recommendations, if there are
|
24905
|
+
# any.
|
24906
|
+
# @return [String]
|
24907
|
+
#
|
24908
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListModelMetadataResponse AWS API Documentation
|
24909
|
+
#
|
24910
|
+
class ListModelMetadataResponse < Struct.new(
|
24911
|
+
:model_metadata_summaries,
|
24912
|
+
:next_token)
|
24913
|
+
SENSITIVE = []
|
24914
|
+
include Aws::Structure
|
24915
|
+
end
|
24916
|
+
|
23362
24917
|
# @note When making an API call, you may pass ListModelPackageGroupsInput
|
23363
24918
|
# data as a hash:
|
23364
24919
|
#
|
@@ -25867,6 +27422,27 @@ module Aws::SageMaker
|
|
25867
27422
|
include Aws::Structure
|
25868
27423
|
end
|
25869
27424
|
|
27425
|
+
# Defines the model configuration. Includes the specification name and
|
27426
|
+
# environment parameters.
|
27427
|
+
#
|
27428
|
+
# @!attribute [rw] inference_specification_name
|
27429
|
+
# The inference specification name in the model package version.
|
27430
|
+
# @return [String]
|
27431
|
+
#
|
27432
|
+
# @!attribute [rw] environment_parameters
|
27433
|
+
# Defines the environment parameters that includes key, value types,
|
27434
|
+
# and values.
|
27435
|
+
# @return [Array<Types::EnvironmentParameter>]
|
27436
|
+
#
|
27437
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ModelConfiguration AWS API Documentation
|
27438
|
+
#
|
27439
|
+
class ModelConfiguration < Struct.new(
|
27440
|
+
:inference_specification_name,
|
27441
|
+
:environment_parameters)
|
27442
|
+
SENSITIVE = []
|
27443
|
+
include Aws::Structure
|
27444
|
+
end
|
27445
|
+
|
25870
27446
|
# Data quality constraints and statistics for a model.
|
25871
27447
|
#
|
25872
27448
|
# @note When making an API call, you may pass ModelDataQuality
|
@@ -26081,6 +27657,144 @@ module Aws::SageMaker
|
|
26081
27657
|
include Aws::Structure
|
26082
27658
|
end
|
26083
27659
|
|
27660
|
+
# Input object for the model.
|
27661
|
+
#
|
27662
|
+
# @note When making an API call, you may pass ModelInput
|
27663
|
+
# data as a hash:
|
27664
|
+
#
|
27665
|
+
# {
|
27666
|
+
# data_input_config: "DataInputConfig", # required
|
27667
|
+
# }
|
27668
|
+
#
|
27669
|
+
# @!attribute [rw] data_input_config
|
27670
|
+
# The input configuration object for the model.
|
27671
|
+
# @return [String]
|
27672
|
+
#
|
27673
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ModelInput AWS API Documentation
|
27674
|
+
#
|
27675
|
+
class ModelInput < Struct.new(
|
27676
|
+
:data_input_config)
|
27677
|
+
SENSITIVE = []
|
27678
|
+
include Aws::Structure
|
27679
|
+
end
|
27680
|
+
|
27681
|
+
# The model latency threshold.
|
27682
|
+
#
|
27683
|
+
# @note When making an API call, you may pass ModelLatencyThreshold
|
27684
|
+
# data as a hash:
|
27685
|
+
#
|
27686
|
+
# {
|
27687
|
+
# percentile: "String64",
|
27688
|
+
# value_in_milliseconds: 1,
|
27689
|
+
# }
|
27690
|
+
#
|
27691
|
+
# @!attribute [rw] percentile
|
27692
|
+
# The model latency percentile threshold.
|
27693
|
+
# @return [String]
|
27694
|
+
#
|
27695
|
+
# @!attribute [rw] value_in_milliseconds
|
27696
|
+
# The model latency percentile value in milliseconds.
|
27697
|
+
# @return [Integer]
|
27698
|
+
#
|
27699
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ModelLatencyThreshold AWS API Documentation
|
27700
|
+
#
|
27701
|
+
class ModelLatencyThreshold < Struct.new(
|
27702
|
+
:percentile,
|
27703
|
+
:value_in_milliseconds)
|
27704
|
+
SENSITIVE = []
|
27705
|
+
include Aws::Structure
|
27706
|
+
end
|
27707
|
+
|
27708
|
+
# Part of the search expression. You can specify the name and value
|
27709
|
+
# (domain, task, framework, framework version, task, and model).
|
27710
|
+
#
|
27711
|
+
# @note When making an API call, you may pass ModelMetadataFilter
|
27712
|
+
# data as a hash:
|
27713
|
+
#
|
27714
|
+
# {
|
27715
|
+
# name: "Domain", # required, accepts Domain, Framework, Task, FrameworkVersion
|
27716
|
+
# value: "String256", # required
|
27717
|
+
# }
|
27718
|
+
#
|
27719
|
+
# @!attribute [rw] name
|
27720
|
+
# The name of the of the model to filter by.
|
27721
|
+
# @return [String]
|
27722
|
+
#
|
27723
|
+
# @!attribute [rw] value
|
27724
|
+
# The value to filter the model metadata.
|
27725
|
+
# @return [String]
|
27726
|
+
#
|
27727
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ModelMetadataFilter AWS API Documentation
|
27728
|
+
#
|
27729
|
+
class ModelMetadataFilter < Struct.new(
|
27730
|
+
:name,
|
27731
|
+
:value)
|
27732
|
+
SENSITIVE = []
|
27733
|
+
include Aws::Structure
|
27734
|
+
end
|
27735
|
+
|
27736
|
+
# One or more filters that searches for the specified resource or
|
27737
|
+
# resources in a search. All resource objects that satisfy the
|
27738
|
+
# expression's condition are included in the search results
|
27739
|
+
#
|
27740
|
+
# @note When making an API call, you may pass ModelMetadataSearchExpression
|
27741
|
+
# data as a hash:
|
27742
|
+
#
|
27743
|
+
# {
|
27744
|
+
# filters: [
|
27745
|
+
# {
|
27746
|
+
# name: "Domain", # required, accepts Domain, Framework, Task, FrameworkVersion
|
27747
|
+
# value: "String256", # required
|
27748
|
+
# },
|
27749
|
+
# ],
|
27750
|
+
# }
|
27751
|
+
#
|
27752
|
+
# @!attribute [rw] filters
|
27753
|
+
# A list of filter objects.
|
27754
|
+
# @return [Array<Types::ModelMetadataFilter>]
|
27755
|
+
#
|
27756
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ModelMetadataSearchExpression AWS API Documentation
|
27757
|
+
#
|
27758
|
+
class ModelMetadataSearchExpression < Struct.new(
|
27759
|
+
:filters)
|
27760
|
+
SENSITIVE = []
|
27761
|
+
include Aws::Structure
|
27762
|
+
end
|
27763
|
+
|
27764
|
+
# A summary of the model metadata.
|
27765
|
+
#
|
27766
|
+
# @!attribute [rw] domain
|
27767
|
+
# The machine learning domain of the model.
|
27768
|
+
# @return [String]
|
27769
|
+
#
|
27770
|
+
# @!attribute [rw] framework
|
27771
|
+
# The machine learning framework of the model.
|
27772
|
+
# @return [String]
|
27773
|
+
#
|
27774
|
+
# @!attribute [rw] task
|
27775
|
+
# The machine learning task of the model.
|
27776
|
+
# @return [String]
|
27777
|
+
#
|
27778
|
+
# @!attribute [rw] model
|
27779
|
+
# The name of the model.
|
27780
|
+
# @return [String]
|
27781
|
+
#
|
27782
|
+
# @!attribute [rw] framework_version
|
27783
|
+
# The framework version of the model.
|
27784
|
+
# @return [String]
|
27785
|
+
#
|
27786
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ModelMetadataSummary AWS API Documentation
|
27787
|
+
#
|
27788
|
+
class ModelMetadataSummary < Struct.new(
|
27789
|
+
:domain,
|
27790
|
+
:framework,
|
27791
|
+
:task,
|
27792
|
+
:model,
|
27793
|
+
:framework_version)
|
27794
|
+
SENSITIVE = []
|
27795
|
+
include Aws::Structure
|
27796
|
+
end
|
27797
|
+
|
26084
27798
|
# Contains metrics captured from a model.
|
26085
27799
|
#
|
26086
27800
|
# @note When making an API call, you may pass ModelMetrics
|
@@ -26117,6 +27831,16 @@ module Aws::SageMaker
|
|
26117
27831
|
# content_digest: "ContentDigest",
|
26118
27832
|
# s3_uri: "S3Uri", # required
|
26119
27833
|
# },
|
27834
|
+
# pre_training_report: {
|
27835
|
+
# content_type: "ContentType", # required
|
27836
|
+
# content_digest: "ContentDigest",
|
27837
|
+
# s3_uri: "S3Uri", # required
|
27838
|
+
# },
|
27839
|
+
# post_training_report: {
|
27840
|
+
# content_type: "ContentType", # required
|
27841
|
+
# content_digest: "ContentDigest",
|
27842
|
+
# s3_uri: "S3Uri", # required
|
27843
|
+
# },
|
26120
27844
|
# },
|
26121
27845
|
# explainability: {
|
26122
27846
|
# report: {
|
@@ -26240,7 +27964,7 @@ module Aws::SageMaker
|
|
26240
27964
|
#
|
26241
27965
|
# @!attribute [rw] created_by
|
26242
27966
|
# Information about the user who created or modified an experiment,
|
26243
|
-
# trial, trial component, or project.
|
27967
|
+
# trial, trial component, lineage group, or project.
|
26244
27968
|
# @return [Types::UserContext]
|
26245
27969
|
#
|
26246
27970
|
# @!attribute [rw] metadata_properties
|
@@ -26258,13 +27982,35 @@ module Aws::SageMaker
|
|
26258
27982
|
#
|
26259
27983
|
# @!attribute [rw] last_modified_by
|
26260
27984
|
# Information about the user who created or modified an experiment,
|
26261
|
-
# trial, trial component, or project.
|
27985
|
+
# trial, trial component, lineage group, or project.
|
26262
27986
|
# @return [Types::UserContext]
|
26263
27987
|
#
|
26264
27988
|
# @!attribute [rw] approval_description
|
26265
27989
|
# A description provided when the model approval is set.
|
26266
27990
|
# @return [String]
|
26267
27991
|
#
|
27992
|
+
# @!attribute [rw] domain
|
27993
|
+
# The machine learning domain of your model package and its
|
27994
|
+
# components. Common machine learning domains include computer vision
|
27995
|
+
# and natural language processing.
|
27996
|
+
# @return [String]
|
27997
|
+
#
|
27998
|
+
# @!attribute [rw] task
|
27999
|
+
# The machine learning task your model package accomplishes. Common
|
28000
|
+
# machine learning tasks include object detection and image
|
28001
|
+
# classification.
|
28002
|
+
# @return [String]
|
28003
|
+
#
|
28004
|
+
# @!attribute [rw] sample_payload_url
|
28005
|
+
# The Amazon Simple Storage Service path where the sample payload are
|
28006
|
+
# stored. This path must point to a single gzip compressed tar archive
|
28007
|
+
# (.tar.gz suffix).
|
28008
|
+
# @return [String]
|
28009
|
+
#
|
28010
|
+
# @!attribute [rw] additional_inference_specifications
|
28011
|
+
# An array of additional Inference Specification objects.
|
28012
|
+
# @return [Array<Types::AdditionalInferenceSpecificationDefinition>]
|
28013
|
+
#
|
26268
28014
|
# @!attribute [rw] tags
|
26269
28015
|
# A list of the tags associated with the model package. For more
|
26270
28016
|
# information, see [Tagging Amazon Web Services resources][1] in the
|
@@ -26279,6 +28025,11 @@ module Aws::SageMaker
|
|
26279
28025
|
# The metadata properties for the model package.
|
26280
28026
|
# @return [Hash<String,String>]
|
26281
28027
|
#
|
28028
|
+
# @!attribute [rw] drift_check_baselines
|
28029
|
+
# Represents the drift check baselines that can be used when the model
|
28030
|
+
# monitor is set using the model package.
|
28031
|
+
# @return [Types::DriftCheckBaselines]
|
28032
|
+
#
|
26282
28033
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ModelPackage AWS API Documentation
|
26283
28034
|
#
|
26284
28035
|
class ModelPackage < Struct.new(
|
@@ -26301,8 +28052,13 @@ module Aws::SageMaker
|
|
26301
28052
|
:last_modified_time,
|
26302
28053
|
:last_modified_by,
|
26303
28054
|
:approval_description,
|
28055
|
+
:domain,
|
28056
|
+
:task,
|
28057
|
+
:sample_payload_url,
|
28058
|
+
:additional_inference_specifications,
|
26304
28059
|
:tags,
|
26305
|
-
:customer_metadata_properties
|
28060
|
+
:customer_metadata_properties,
|
28061
|
+
:drift_check_baselines)
|
26306
28062
|
SENSITIVE = []
|
26307
28063
|
include Aws::Structure
|
26308
28064
|
end
|
@@ -26321,6 +28077,12 @@ module Aws::SageMaker
|
|
26321
28077
|
# environment: {
|
26322
28078
|
# "EnvironmentKey" => "EnvironmentValue",
|
26323
28079
|
# },
|
28080
|
+
# model_input: {
|
28081
|
+
# data_input_config: "DataInputConfig", # required
|
28082
|
+
# },
|
28083
|
+
# framework: "String",
|
28084
|
+
# framework_version: "FrameworkVersion",
|
28085
|
+
# nearest_model_name: "String",
|
26324
28086
|
# }
|
26325
28087
|
#
|
26326
28088
|
# @!attribute [rw] container_hostname
|
@@ -26369,6 +28131,25 @@ module Aws::SageMaker
|
|
26369
28131
|
# of up to 1024. We support up to 16 entries in the map.
|
26370
28132
|
# @return [Hash<String,String>]
|
26371
28133
|
#
|
28134
|
+
# @!attribute [rw] model_input
|
28135
|
+
# A structure with Model Input details.
|
28136
|
+
# @return [Types::ModelInput]
|
28137
|
+
#
|
28138
|
+
# @!attribute [rw] framework
|
28139
|
+
# The machine learning framework of the model package container image.
|
28140
|
+
# @return [String]
|
28141
|
+
#
|
28142
|
+
# @!attribute [rw] framework_version
|
28143
|
+
# The framework version of the Model Package Container Image.
|
28144
|
+
# @return [String]
|
28145
|
+
#
|
28146
|
+
# @!attribute [rw] nearest_model_name
|
28147
|
+
# The name of a pre-trained machine learning benchmarked by Amazon
|
28148
|
+
# SageMaker Inference Recommender model that matches your model. You
|
28149
|
+
# can find a list of benchmarked models by calling
|
28150
|
+
# `ListModelMetadata`.
|
28151
|
+
# @return [String]
|
28152
|
+
#
|
26372
28153
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ModelPackageContainerDefinition AWS API Documentation
|
26373
28154
|
#
|
26374
28155
|
class ModelPackageContainerDefinition < Struct.new(
|
@@ -26377,7 +28158,11 @@ module Aws::SageMaker
|
|
26377
28158
|
:image_digest,
|
26378
28159
|
:model_data_url,
|
26379
28160
|
:product_id,
|
26380
|
-
:environment
|
28161
|
+
:environment,
|
28162
|
+
:model_input,
|
28163
|
+
:framework,
|
28164
|
+
:framework_version,
|
28165
|
+
:nearest_model_name)
|
26381
28166
|
SENSITIVE = []
|
26382
28167
|
include Aws::Structure
|
26383
28168
|
end
|
@@ -26402,7 +28187,7 @@ module Aws::SageMaker
|
|
26402
28187
|
#
|
26403
28188
|
# @!attribute [rw] created_by
|
26404
28189
|
# Information about the user who created or modified an experiment,
|
26405
|
-
# trial, trial component, or project.
|
28190
|
+
# trial, trial component, lineage group, or project.
|
26406
28191
|
# @return [Types::UserContext]
|
26407
28192
|
#
|
26408
28193
|
# @!attribute [rw] model_package_group_status
|
@@ -28543,7 +30328,7 @@ module Aws::SageMaker
|
|
28543
30328
|
#
|
28544
30329
|
# {
|
28545
30330
|
# s3_output_location: "S3Uri", # required
|
28546
|
-
# target_device: "lambda", # accepts lambda, ml_m4, ml_m5, ml_c4, ml_c5, ml_p2, ml_p3, ml_g4dn, ml_inf1, ml_eia2, jetson_tx1, jetson_tx2, jetson_nano, jetson_xavier, rasp3b, imx8qm, deeplens, rk3399, rk3288, aisage, sbe_c, qcs605, qcs603, sitara_am57x, amba_cv22, amba_cv25, x86_win32, x86_win64, coreml, jacinto_tda4vm, imx8mplus
|
30331
|
+
# target_device: "lambda", # accepts lambda, ml_m4, ml_m5, ml_c4, ml_c5, ml_p2, ml_p3, ml_g4dn, ml_inf1, ml_eia2, jetson_tx1, jetson_tx2, jetson_nano, jetson_xavier, rasp3b, imx8qm, deeplens, rk3399, rk3288, aisage, sbe_c, qcs605, qcs603, sitara_am57x, amba_cv2, amba_cv22, amba_cv25, x86_win32, x86_win64, coreml, jacinto_tda4vm, imx8mplus
|
28547
30332
|
# target_platform: {
|
28548
30333
|
# os: "ANDROID", # required, accepts ANDROID, LINUX
|
28549
30334
|
# arch: "X86_64", # required, accepts X86_64, X86, ARM64, ARM_EABI, ARM_EABIHF
|
@@ -29114,6 +30899,27 @@ module Aws::SageMaker
|
|
29114
30899
|
# stage status or operational status.
|
29115
30900
|
# @return [Array<Types::ProductionVariantStatus>]
|
29116
30901
|
#
|
30902
|
+
# @!attribute [rw] current_serverless_config
|
30903
|
+
# The serverless configuration for the endpoint.
|
30904
|
+
#
|
30905
|
+
# <note markdown="1"> Serverless Inference is in preview release for Amazon SageMaker and
|
30906
|
+
# is subject to change. We do not recommend using this feature in
|
30907
|
+
# production environments.
|
30908
|
+
#
|
30909
|
+
# </note>
|
30910
|
+
# @return [Types::ProductionVariantServerlessConfig]
|
30911
|
+
#
|
30912
|
+
# @!attribute [rw] desired_serverless_config
|
30913
|
+
# The serverless configuration requested for this deployment, as
|
30914
|
+
# specified in the endpoint configuration for the endpoint.
|
30915
|
+
#
|
30916
|
+
# <note markdown="1"> Serverless Inference is in preview release for Amazon SageMaker and
|
30917
|
+
# is subject to change. We do not recommend using this feature in
|
30918
|
+
# production environments.
|
30919
|
+
#
|
30920
|
+
# </note>
|
30921
|
+
# @return [Types::ProductionVariantServerlessConfig]
|
30922
|
+
#
|
29117
30923
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/PendingProductionVariantSummary AWS API Documentation
|
29118
30924
|
#
|
29119
30925
|
class PendingProductionVariantSummary < Struct.new(
|
@@ -29125,7 +30931,42 @@ module Aws::SageMaker
|
|
29125
30931
|
:desired_instance_count,
|
29126
30932
|
:instance_type,
|
29127
30933
|
:accelerator_type,
|
29128
|
-
:variant_status
|
30934
|
+
:variant_status,
|
30935
|
+
:current_serverless_config,
|
30936
|
+
:desired_serverless_config)
|
30937
|
+
SENSITIVE = []
|
30938
|
+
include Aws::Structure
|
30939
|
+
end
|
30940
|
+
|
30941
|
+
# Defines the traffic pattern.
|
30942
|
+
#
|
30943
|
+
# @note When making an API call, you may pass Phase
|
30944
|
+
# data as a hash:
|
30945
|
+
#
|
30946
|
+
# {
|
30947
|
+
# initial_number_of_users: 1,
|
30948
|
+
# spawn_rate: 1,
|
30949
|
+
# duration_in_seconds: 1,
|
30950
|
+
# }
|
30951
|
+
#
|
30952
|
+
# @!attribute [rw] initial_number_of_users
|
30953
|
+
# Specifies how many concurrent users to start with.
|
30954
|
+
# @return [Integer]
|
30955
|
+
#
|
30956
|
+
# @!attribute [rw] spawn_rate
|
30957
|
+
# Specified how many new users to spawn in a minute.
|
30958
|
+
# @return [Integer]
|
30959
|
+
#
|
30960
|
+
# @!attribute [rw] duration_in_seconds
|
30961
|
+
# Specifies how long traffic phase should be.
|
30962
|
+
# @return [Integer]
|
30963
|
+
#
|
30964
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/Phase AWS API Documentation
|
30965
|
+
#
|
30966
|
+
class Phase < Struct.new(
|
30967
|
+
:initial_number_of_users,
|
30968
|
+
:spawn_rate,
|
30969
|
+
:duration_in_seconds)
|
29129
30970
|
SENSITIVE = []
|
29130
30971
|
include Aws::Structure
|
29131
30972
|
end
|
@@ -29171,12 +31012,12 @@ module Aws::SageMaker
|
|
29171
31012
|
#
|
29172
31013
|
# @!attribute [rw] created_by
|
29173
31014
|
# Information about the user who created or modified an experiment,
|
29174
|
-
# trial, trial component, or project.
|
31015
|
+
# trial, trial component, lineage group, or project.
|
29175
31016
|
# @return [Types::UserContext]
|
29176
31017
|
#
|
29177
31018
|
# @!attribute [rw] last_modified_by
|
29178
31019
|
# Information about the user who created or modified an experiment,
|
29179
|
-
# trial, trial component, or project.
|
31020
|
+
# trial, trial component, lineage group, or project.
|
29180
31021
|
# @return [Types::UserContext]
|
29181
31022
|
#
|
29182
31023
|
# @!attribute [rw] tags
|
@@ -29243,12 +31084,12 @@ module Aws::SageMaker
|
|
29243
31084
|
#
|
29244
31085
|
# @!attribute [rw] created_by
|
29245
31086
|
# Information about the user who created or modified an experiment,
|
29246
|
-
# trial, trial component, or project.
|
31087
|
+
# trial, trial component, lineage group, or project.
|
29247
31088
|
# @return [Types::UserContext]
|
29248
31089
|
#
|
29249
31090
|
# @!attribute [rw] last_modified_by
|
29250
31091
|
# Information about the user who created or modified an experiment,
|
29251
|
-
# trial, trial component, or project.
|
31092
|
+
# trial, trial component, lineage group, or project.
|
29252
31093
|
# @return [Types::UserContext]
|
29253
31094
|
#
|
29254
31095
|
# @!attribute [rw] pipeline_parameters
|
@@ -29297,6 +31138,9 @@ module Aws::SageMaker
|
|
29297
31138
|
# hit.
|
29298
31139
|
# @return [Types::CacheHitResult]
|
29299
31140
|
#
|
31141
|
+
# @!attribute [rw] attempt_count
|
31142
|
+
# @return [Integer]
|
31143
|
+
#
|
29300
31144
|
# @!attribute [rw] failure_reason
|
29301
31145
|
# The reason why the step failed execution. This is only returned if
|
29302
31146
|
# the step failed its execution.
|
@@ -29314,6 +31158,7 @@ module Aws::SageMaker
|
|
29314
31158
|
:end_time,
|
29315
31159
|
:step_status,
|
29316
31160
|
:cache_hit_result,
|
31161
|
+
:attempt_count,
|
29317
31162
|
:failure_reason,
|
29318
31163
|
:metadata)
|
29319
31164
|
SENSITIVE = []
|
@@ -29367,6 +31212,57 @@ module Aws::SageMaker
|
|
29367
31212
|
# by this step execution and a list of output parameters.
|
29368
31213
|
# @return [Types::LambdaStepMetadata]
|
29369
31214
|
#
|
31215
|
+
# @!attribute [rw] quality_check
|
31216
|
+
# The configurations and outcomes of the check step execution. This
|
31217
|
+
# includes:
|
31218
|
+
#
|
31219
|
+
# * The type of the check conducted,
|
31220
|
+
#
|
31221
|
+
# * The Amazon S3 URIs of baseline constraints and statistics files to
|
31222
|
+
# be used for the drift check.
|
31223
|
+
#
|
31224
|
+
# * The Amazon S3 URIs of newly calculated baseline constraints and
|
31225
|
+
# statistics.
|
31226
|
+
#
|
31227
|
+
# * The model package group name provided.
|
31228
|
+
#
|
31229
|
+
# * The Amazon S3 URI of the violation report if violations detected.
|
31230
|
+
#
|
31231
|
+
# * The Amazon Resource Name (ARN) of check processing job initiated
|
31232
|
+
# by the step execution.
|
31233
|
+
#
|
31234
|
+
# * The boolean flags indicating if the drift check is skipped.
|
31235
|
+
#
|
31236
|
+
# * If step property `BaselineUsedForDriftCheck` is set the same as
|
31237
|
+
# `CalculatedBaseline`.
|
31238
|
+
# @return [Types::QualityCheckStepMetadata]
|
31239
|
+
#
|
31240
|
+
# @!attribute [rw] clarify_check
|
31241
|
+
# Container for the metadata for a Clarify check step. The
|
31242
|
+
# configurations and outcomes of the check step execution. This
|
31243
|
+
# includes:
|
31244
|
+
#
|
31245
|
+
# * The type of the check conducted,
|
31246
|
+
#
|
31247
|
+
# * The Amazon S3 URIs of baseline constraints and statistics files to
|
31248
|
+
# be used for the drift check.
|
31249
|
+
#
|
31250
|
+
# * The Amazon S3 URIs of newly calculated baseline constraints and
|
31251
|
+
# statistics.
|
31252
|
+
#
|
31253
|
+
# * The model package group name provided.
|
31254
|
+
#
|
31255
|
+
# * The Amazon S3 URI of the violation report if violations detected.
|
31256
|
+
#
|
31257
|
+
# * The Amazon Resource Name (ARN) of check processing job initiated
|
31258
|
+
# by the step execution.
|
31259
|
+
#
|
31260
|
+
# * The boolean flags indicating if the drift check is skipped.
|
31261
|
+
#
|
31262
|
+
# * If step property `BaselineUsedForDriftCheck` is set the same as
|
31263
|
+
# `CalculatedBaseline`.
|
31264
|
+
# @return [Types::ClarifyCheckStepMetadata]
|
31265
|
+
#
|
29370
31266
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/PipelineExecutionStepMetadata AWS API Documentation
|
29371
31267
|
#
|
29372
31268
|
class PipelineExecutionStepMetadata < Struct.new(
|
@@ -29378,7 +31274,9 @@ module Aws::SageMaker
|
|
29378
31274
|
:register_model,
|
29379
31275
|
:condition,
|
29380
31276
|
:callback,
|
29381
|
-
:lambda
|
31277
|
+
:lambda,
|
31278
|
+
:quality_check,
|
31279
|
+
:clarify_check)
|
29382
31280
|
SENSITIVE = []
|
29383
31281
|
include Aws::Structure
|
29384
31282
|
end
|
@@ -30153,14 +32051,18 @@ module Aws::SageMaker
|
|
30153
32051
|
# {
|
30154
32052
|
# variant_name: "VariantName", # required
|
30155
32053
|
# model_name: "ModelName", # required
|
30156
|
-
# initial_instance_count: 1,
|
30157
|
-
# instance_type: "ml.t2.medium", #
|
32054
|
+
# initial_instance_count: 1,
|
32055
|
+
# 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
|
30158
32056
|
# initial_variant_weight: 1.0,
|
30159
32057
|
# accelerator_type: "ml.eia1.medium", # accepts ml.eia1.medium, ml.eia1.large, ml.eia1.xlarge, ml.eia2.medium, ml.eia2.large, ml.eia2.xlarge
|
30160
32058
|
# core_dump_config: {
|
30161
32059
|
# destination_s3_uri: "DestinationS3Uri", # required
|
30162
32060
|
# kms_key_id: "KmsKeyId",
|
30163
32061
|
# },
|
32062
|
+
# serverless_config: {
|
32063
|
+
# memory_size_in_mb: 1, # required
|
32064
|
+
# max_concurrency: 1, # required
|
32065
|
+
# },
|
30164
32066
|
# }
|
30165
32067
|
#
|
30166
32068
|
# @!attribute [rw] variant_name
|
@@ -30204,6 +32106,18 @@ module Aws::SageMaker
|
|
30204
32106
|
# when the process crashes.
|
30205
32107
|
# @return [Types::ProductionVariantCoreDumpConfig]
|
30206
32108
|
#
|
32109
|
+
# @!attribute [rw] serverless_config
|
32110
|
+
# The serverless configuration for an endpoint. Specifies a serverless
|
32111
|
+
# endpoint configuration instead of an instance-based endpoint
|
32112
|
+
# configuration.
|
32113
|
+
#
|
32114
|
+
# <note markdown="1"> Serverless Inference is in preview release for Amazon SageMaker and
|
32115
|
+
# is subject to change. We do not recommend using this feature in
|
32116
|
+
# production environments.
|
32117
|
+
#
|
32118
|
+
# </note>
|
32119
|
+
# @return [Types::ProductionVariantServerlessConfig]
|
32120
|
+
#
|
30207
32121
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ProductionVariant AWS API Documentation
|
30208
32122
|
#
|
30209
32123
|
class ProductionVariant < Struct.new(
|
@@ -30213,7 +32127,8 @@ module Aws::SageMaker
|
|
30213
32127
|
:instance_type,
|
30214
32128
|
:initial_variant_weight,
|
30215
32129
|
:accelerator_type,
|
30216
|
-
:core_dump_config
|
32130
|
+
:core_dump_config,
|
32131
|
+
:serverless_config)
|
30217
32132
|
SENSITIVE = []
|
30218
32133
|
include Aws::Structure
|
30219
32134
|
end
|
@@ -30288,6 +32203,40 @@ module Aws::SageMaker
|
|
30288
32203
|
include Aws::Structure
|
30289
32204
|
end
|
30290
32205
|
|
32206
|
+
# Serverless Inference is in preview release for Amazon SageMaker and is
|
32207
|
+
# subject to change. We do not recommend using this feature in
|
32208
|
+
# production environments.
|
32209
|
+
#
|
32210
|
+
# Specifies the serverless configuration for an endpoint variant.
|
32211
|
+
#
|
32212
|
+
# @note When making an API call, you may pass ProductionVariantServerlessConfig
|
32213
|
+
# data as a hash:
|
32214
|
+
#
|
32215
|
+
# {
|
32216
|
+
# memory_size_in_mb: 1, # required
|
32217
|
+
# max_concurrency: 1, # required
|
32218
|
+
# }
|
32219
|
+
#
|
32220
|
+
# @!attribute [rw] memory_size_in_mb
|
32221
|
+
# The memory size of your serverless endpoint. Valid values are in 1
|
32222
|
+
# GB increments: 1024 MB, 2048 MB, 3072 MB, 4096 MB, 5120 MB, or 6144
|
32223
|
+
# MB.
|
32224
|
+
# @return [Integer]
|
32225
|
+
#
|
32226
|
+
# @!attribute [rw] max_concurrency
|
32227
|
+
# The maximum number of concurrent invocations your serverless
|
32228
|
+
# endpoint can process.
|
32229
|
+
# @return [Integer]
|
32230
|
+
#
|
32231
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ProductionVariantServerlessConfig AWS API Documentation
|
32232
|
+
#
|
32233
|
+
class ProductionVariantServerlessConfig < Struct.new(
|
32234
|
+
:memory_size_in_mb,
|
32235
|
+
:max_concurrency)
|
32236
|
+
SENSITIVE = []
|
32237
|
+
include Aws::Structure
|
32238
|
+
end
|
32239
|
+
|
30291
32240
|
# Describes the status of the production variant.
|
30292
32241
|
#
|
30293
32242
|
# @!attribute [rw] status
|
@@ -30365,6 +32314,26 @@ module Aws::SageMaker
|
|
30365
32314
|
# stage status or operational status.
|
30366
32315
|
# @return [Array<Types::ProductionVariantStatus>]
|
30367
32316
|
#
|
32317
|
+
# @!attribute [rw] current_serverless_config
|
32318
|
+
# The serverless configuration for the endpoint.
|
32319
|
+
#
|
32320
|
+
# <note markdown="1"> Serverless Inference is in preview release for Amazon SageMaker and
|
32321
|
+
# is subject to change. We do not recommend using this feature in
|
32322
|
+
# production environments.
|
32323
|
+
#
|
32324
|
+
# </note>
|
32325
|
+
# @return [Types::ProductionVariantServerlessConfig]
|
32326
|
+
#
|
32327
|
+
# @!attribute [rw] desired_serverless_config
|
32328
|
+
# The serverless configuration requested for the endpoint update.
|
32329
|
+
#
|
32330
|
+
# <note markdown="1"> Serverless Inference is in preview release for Amazon SageMaker and
|
32331
|
+
# is subject to change. We do not recommend using this feature in
|
32332
|
+
# production environments.
|
32333
|
+
#
|
32334
|
+
# </note>
|
32335
|
+
# @return [Types::ProductionVariantServerlessConfig]
|
32336
|
+
#
|
30368
32337
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ProductionVariantSummary AWS API Documentation
|
30369
32338
|
#
|
30370
32339
|
class ProductionVariantSummary < Struct.new(
|
@@ -30374,7 +32343,9 @@ module Aws::SageMaker
|
|
30374
32343
|
:desired_weight,
|
30375
32344
|
:current_instance_count,
|
30376
32345
|
:desired_instance_count,
|
30377
|
-
:variant_status
|
32346
|
+
:variant_status,
|
32347
|
+
:current_serverless_config,
|
32348
|
+
:desired_serverless_config)
|
30378
32349
|
SENSITIVE = []
|
30379
32350
|
include Aws::Structure
|
30380
32351
|
end
|
@@ -30651,7 +32622,7 @@ module Aws::SageMaker
|
|
30651
32622
|
#
|
30652
32623
|
# @!attribute [rw] last_modified_by
|
30653
32624
|
# Information about the user who created or modified an experiment,
|
30654
|
-
# trial, trial component, or project.
|
32625
|
+
# trial, trial component, lineage group, or project.
|
30655
32626
|
# @return [Types::UserContext]
|
30656
32627
|
#
|
30657
32628
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/Project AWS API Documentation
|
@@ -31050,6 +33021,266 @@ module Aws::SageMaker
|
|
31050
33021
|
include Aws::Structure
|
31051
33022
|
end
|
31052
33023
|
|
33024
|
+
# Container for the metadata for a Quality check step. For more
|
33025
|
+
# information, see the topic on [QualityCheck step][1] in the *Amazon
|
33026
|
+
# SageMaker Developer Guide*.
|
33027
|
+
#
|
33028
|
+
#
|
33029
|
+
#
|
33030
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/build-and-manage-steps.html#step-type-quality-check
|
33031
|
+
#
|
33032
|
+
# @!attribute [rw] check_type
|
33033
|
+
# The type of the Quality check step.
|
33034
|
+
# @return [String]
|
33035
|
+
#
|
33036
|
+
# @!attribute [rw] baseline_used_for_drift_check_statistics
|
33037
|
+
# The Amazon S3 URI of the baseline statistics file used for the drift
|
33038
|
+
# check.
|
33039
|
+
# @return [String]
|
33040
|
+
#
|
33041
|
+
# @!attribute [rw] baseline_used_for_drift_check_constraints
|
33042
|
+
# The Amazon S3 URI of the baseline constraints file used for the
|
33043
|
+
# drift check.
|
33044
|
+
# @return [String]
|
33045
|
+
#
|
33046
|
+
# @!attribute [rw] calculated_baseline_statistics
|
33047
|
+
# The Amazon S3 URI of the newly calculated baseline statistics file.
|
33048
|
+
# @return [String]
|
33049
|
+
#
|
33050
|
+
# @!attribute [rw] calculated_baseline_constraints
|
33051
|
+
# The Amazon S3 URI of the newly calculated baseline constraints file.
|
33052
|
+
# @return [String]
|
33053
|
+
#
|
33054
|
+
# @!attribute [rw] model_package_group_name
|
33055
|
+
# The model package group name.
|
33056
|
+
# @return [String]
|
33057
|
+
#
|
33058
|
+
# @!attribute [rw] violation_report
|
33059
|
+
# The Amazon S3 URI of violation report if violations are detected.
|
33060
|
+
# @return [String]
|
33061
|
+
#
|
33062
|
+
# @!attribute [rw] check_job_arn
|
33063
|
+
# The Amazon Resource Name (ARN) of the Quality check processing job
|
33064
|
+
# that was run by this step execution.
|
33065
|
+
# @return [String]
|
33066
|
+
#
|
33067
|
+
# @!attribute [rw] skip_check
|
33068
|
+
# This flag indicates if the drift check against the previous baseline
|
33069
|
+
# will be skipped or not. If it is set to `False`, the previous
|
33070
|
+
# baseline of the configured check type must be available.
|
33071
|
+
# @return [Boolean]
|
33072
|
+
#
|
33073
|
+
# @!attribute [rw] register_new_baseline
|
33074
|
+
# This flag indicates if a newly calculated baseline can be accessed
|
33075
|
+
# through step properties `BaselineUsedForDriftCheckConstraints` and
|
33076
|
+
# `BaselineUsedForDriftCheckStatistics`. If it is set to `False`, the
|
33077
|
+
# previous baseline of the configured check type must also be
|
33078
|
+
# available. These can be accessed through the
|
33079
|
+
# `BaselineUsedForDriftCheckConstraints` and `
|
33080
|
+
# BaselineUsedForDriftCheckStatistics` properties.
|
33081
|
+
# @return [Boolean]
|
33082
|
+
#
|
33083
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/QualityCheckStepMetadata AWS API Documentation
|
33084
|
+
#
|
33085
|
+
class QualityCheckStepMetadata < Struct.new(
|
33086
|
+
:check_type,
|
33087
|
+
:baseline_used_for_drift_check_statistics,
|
33088
|
+
:baseline_used_for_drift_check_constraints,
|
33089
|
+
:calculated_baseline_statistics,
|
33090
|
+
:calculated_baseline_constraints,
|
33091
|
+
:model_package_group_name,
|
33092
|
+
:violation_report,
|
33093
|
+
:check_job_arn,
|
33094
|
+
:skip_check,
|
33095
|
+
:register_new_baseline)
|
33096
|
+
SENSITIVE = []
|
33097
|
+
include Aws::Structure
|
33098
|
+
end
|
33099
|
+
|
33100
|
+
# A set of filters to narrow the set of lineage entities connected to
|
33101
|
+
# the `StartArn`(s) returned by the `QueryLineage` API action.
|
33102
|
+
#
|
33103
|
+
# @note When making an API call, you may pass QueryFilters
|
33104
|
+
# data as a hash:
|
33105
|
+
#
|
33106
|
+
# {
|
33107
|
+
# types: ["String40"],
|
33108
|
+
# lineage_types: ["TrialComponent"], # accepts TrialComponent, Artifact, Context, Action
|
33109
|
+
# created_before: Time.now,
|
33110
|
+
# created_after: Time.now,
|
33111
|
+
# modified_before: Time.now,
|
33112
|
+
# modified_after: Time.now,
|
33113
|
+
# properties: {
|
33114
|
+
# "String256" => "String256",
|
33115
|
+
# },
|
33116
|
+
# }
|
33117
|
+
#
|
33118
|
+
# @!attribute [rw] types
|
33119
|
+
# Filter the lineage entities connected to the `StartArn` by type. For
|
33120
|
+
# example: `DataSet`, `Model`, `Endpoint`, or `ModelDeployment`.
|
33121
|
+
# @return [Array<String>]
|
33122
|
+
#
|
33123
|
+
# @!attribute [rw] lineage_types
|
33124
|
+
# Filter the lineage entities connected to the `StartArn`(s) by the
|
33125
|
+
# type of the lineage entity.
|
33126
|
+
# @return [Array<String>]
|
33127
|
+
#
|
33128
|
+
# @!attribute [rw] created_before
|
33129
|
+
# Filter the lineage entities connected to the `StartArn`(s) by
|
33130
|
+
# created date.
|
33131
|
+
# @return [Time]
|
33132
|
+
#
|
33133
|
+
# @!attribute [rw] created_after
|
33134
|
+
# Filter the lineage entities connected to the `StartArn`(s) after the
|
33135
|
+
# create date.
|
33136
|
+
# @return [Time]
|
33137
|
+
#
|
33138
|
+
# @!attribute [rw] modified_before
|
33139
|
+
# Filter the lineage entities connected to the `StartArn`(s) before
|
33140
|
+
# the last modified date.
|
33141
|
+
# @return [Time]
|
33142
|
+
#
|
33143
|
+
# @!attribute [rw] modified_after
|
33144
|
+
# Filter the lineage entities connected to the `StartArn`(s) after the
|
33145
|
+
# last modified date.
|
33146
|
+
# @return [Time]
|
33147
|
+
#
|
33148
|
+
# @!attribute [rw] properties
|
33149
|
+
# Filter the lineage entities connected to the `StartArn`(s) by a set
|
33150
|
+
# if property key value pairs. If multiple pairs are provided, an
|
33151
|
+
# entity will be included in the results if it matches any of the
|
33152
|
+
# provided pairs.
|
33153
|
+
# @return [Hash<String,String>]
|
33154
|
+
#
|
33155
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/QueryFilters AWS API Documentation
|
33156
|
+
#
|
33157
|
+
class QueryFilters < Struct.new(
|
33158
|
+
:types,
|
33159
|
+
:lineage_types,
|
33160
|
+
:created_before,
|
33161
|
+
:created_after,
|
33162
|
+
:modified_before,
|
33163
|
+
:modified_after,
|
33164
|
+
:properties)
|
33165
|
+
SENSITIVE = []
|
33166
|
+
include Aws::Structure
|
33167
|
+
end
|
33168
|
+
|
33169
|
+
# @note When making an API call, you may pass QueryLineageRequest
|
33170
|
+
# data as a hash:
|
33171
|
+
#
|
33172
|
+
# {
|
33173
|
+
# start_arns: ["AssociationEntityArn"], # required
|
33174
|
+
# direction: "Both", # accepts Both, Ascendants, Descendants
|
33175
|
+
# include_edges: false,
|
33176
|
+
# filters: {
|
33177
|
+
# types: ["String40"],
|
33178
|
+
# lineage_types: ["TrialComponent"], # accepts TrialComponent, Artifact, Context, Action
|
33179
|
+
# created_before: Time.now,
|
33180
|
+
# created_after: Time.now,
|
33181
|
+
# modified_before: Time.now,
|
33182
|
+
# modified_after: Time.now,
|
33183
|
+
# properties: {
|
33184
|
+
# "String256" => "String256",
|
33185
|
+
# },
|
33186
|
+
# },
|
33187
|
+
# max_depth: 1,
|
33188
|
+
# max_results: 1,
|
33189
|
+
# next_token: "String8192",
|
33190
|
+
# }
|
33191
|
+
#
|
33192
|
+
# @!attribute [rw] start_arns
|
33193
|
+
# A list of resource Amazon Resource Name (ARN) that represent the
|
33194
|
+
# starting point for your lineage query.
|
33195
|
+
# @return [Array<String>]
|
33196
|
+
#
|
33197
|
+
# @!attribute [rw] direction
|
33198
|
+
# Associations between lineage entities are directed. This parameter
|
33199
|
+
# determines the direction from the StartArn(s) the query will look.
|
33200
|
+
# @return [String]
|
33201
|
+
#
|
33202
|
+
# @!attribute [rw] include_edges
|
33203
|
+
# Setting this value to `True` will retrieve not only the entities of
|
33204
|
+
# interest but also the [Associations][1] and lineage entities on the
|
33205
|
+
# path. Set to `False` to only return lineage entities that match your
|
33206
|
+
# query.
|
33207
|
+
#
|
33208
|
+
#
|
33209
|
+
#
|
33210
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/lineage-tracking-entities.html
|
33211
|
+
# @return [Boolean]
|
33212
|
+
#
|
33213
|
+
# @!attribute [rw] filters
|
33214
|
+
# A set of filtering parameters that allow you to specify which
|
33215
|
+
# entities should be returned.
|
33216
|
+
#
|
33217
|
+
# * Properties - Key-value pairs to match on the lineage entities'
|
33218
|
+
# properties.
|
33219
|
+
#
|
33220
|
+
# * LineageTypes - A set of lineage entity types to match on. For
|
33221
|
+
# example: `TrialComponent`, `Artifact`, or `Context`.
|
33222
|
+
#
|
33223
|
+
# * CreatedBefore - Filter entities created before this date.
|
33224
|
+
#
|
33225
|
+
# * ModifiedBefore - Filter entities modified before this date.
|
33226
|
+
#
|
33227
|
+
# * ModifiedAfter - Filter entities modified after this date.
|
33228
|
+
# @return [Types::QueryFilters]
|
33229
|
+
#
|
33230
|
+
# @!attribute [rw] max_depth
|
33231
|
+
# The maximum depth in lineage relationships from the `StartArns` that
|
33232
|
+
# will be traversed. Depth is a measure of the number of
|
33233
|
+
# `Associations` from the `StartArn` entity to the matched results.
|
33234
|
+
# @return [Integer]
|
33235
|
+
#
|
33236
|
+
# @!attribute [rw] max_results
|
33237
|
+
# Limits the number of vertices in the results. Use the `NextToken` in
|
33238
|
+
# a response to to retrieve the next page of results.
|
33239
|
+
# @return [Integer]
|
33240
|
+
#
|
33241
|
+
# @!attribute [rw] next_token
|
33242
|
+
# Limits the number of vertices in the request. Use the `NextToken` in
|
33243
|
+
# a response to to retrieve the next page of results.
|
33244
|
+
# @return [String]
|
33245
|
+
#
|
33246
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/QueryLineageRequest AWS API Documentation
|
33247
|
+
#
|
33248
|
+
class QueryLineageRequest < Struct.new(
|
33249
|
+
:start_arns,
|
33250
|
+
:direction,
|
33251
|
+
:include_edges,
|
33252
|
+
:filters,
|
33253
|
+
:max_depth,
|
33254
|
+
:max_results,
|
33255
|
+
:next_token)
|
33256
|
+
SENSITIVE = []
|
33257
|
+
include Aws::Structure
|
33258
|
+
end
|
33259
|
+
|
33260
|
+
# @!attribute [rw] vertices
|
33261
|
+
# A list of vertices connected to the start entity(ies) in the lineage
|
33262
|
+
# graph.
|
33263
|
+
# @return [Array<Types::Vertex>]
|
33264
|
+
#
|
33265
|
+
# @!attribute [rw] edges
|
33266
|
+
# A list of edges that connect vertices in the response.
|
33267
|
+
# @return [Array<Types::Edge>]
|
33268
|
+
#
|
33269
|
+
# @!attribute [rw] next_token
|
33270
|
+
# Limits the number of vertices in the response. Use the `NextToken`
|
33271
|
+
# in a response to to retrieve the next page of results.
|
33272
|
+
# @return [String]
|
33273
|
+
#
|
33274
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/QueryLineageResponse AWS API Documentation
|
33275
|
+
#
|
33276
|
+
class QueryLineageResponse < Struct.new(
|
33277
|
+
:vertices,
|
33278
|
+
:edges,
|
33279
|
+
:next_token)
|
33280
|
+
SENSITIVE = []
|
33281
|
+
include Aws::Structure
|
33282
|
+
end
|
33283
|
+
|
31053
33284
|
# A collection of settings that apply to an `RSessionGateway` app.
|
31054
33285
|
#
|
31055
33286
|
# @api private
|
@@ -31173,6 +33404,171 @@ module Aws::SageMaker
|
|
31173
33404
|
include Aws::Structure
|
31174
33405
|
end
|
31175
33406
|
|
33407
|
+
# The input configuration of the recommendation job.
|
33408
|
+
#
|
33409
|
+
# @note When making an API call, you may pass RecommendationJobInputConfig
|
33410
|
+
# data as a hash:
|
33411
|
+
#
|
33412
|
+
# {
|
33413
|
+
# model_package_version_arn: "ModelPackageArn", # required
|
33414
|
+
# job_duration_in_seconds: 1,
|
33415
|
+
# traffic_pattern: {
|
33416
|
+
# traffic_type: "PHASES", # accepts PHASES
|
33417
|
+
# phases: [
|
33418
|
+
# {
|
33419
|
+
# initial_number_of_users: 1,
|
33420
|
+
# spawn_rate: 1,
|
33421
|
+
# duration_in_seconds: 1,
|
33422
|
+
# },
|
33423
|
+
# ],
|
33424
|
+
# },
|
33425
|
+
# resource_limit: {
|
33426
|
+
# max_number_of_tests: 1,
|
33427
|
+
# max_parallel_of_tests: 1,
|
33428
|
+
# },
|
33429
|
+
# endpoint_configurations: [
|
33430
|
+
# {
|
33431
|
+
# 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
|
33432
|
+
# inference_specification_name: "InferenceSpecificationName",
|
33433
|
+
# environment_parameter_ranges: {
|
33434
|
+
# categorical_parameter_ranges: [
|
33435
|
+
# {
|
33436
|
+
# name: "String64", # required
|
33437
|
+
# value: ["String128"], # required
|
33438
|
+
# },
|
33439
|
+
# ],
|
33440
|
+
# },
|
33441
|
+
# },
|
33442
|
+
# ],
|
33443
|
+
# }
|
33444
|
+
#
|
33445
|
+
# @!attribute [rw] model_package_version_arn
|
33446
|
+
# The Amazon Resource Name (ARN) of a versioned model package.
|
33447
|
+
# @return [String]
|
33448
|
+
#
|
33449
|
+
# @!attribute [rw] job_duration_in_seconds
|
33450
|
+
# Specifies the maximum duration of the job, in seconds.>
|
33451
|
+
# @return [Integer]
|
33452
|
+
#
|
33453
|
+
# @!attribute [rw] traffic_pattern
|
33454
|
+
# Specifies the traffic pattern of the job.
|
33455
|
+
# @return [Types::TrafficPattern]
|
33456
|
+
#
|
33457
|
+
# @!attribute [rw] resource_limit
|
33458
|
+
# Defines the resource limit of the job.
|
33459
|
+
# @return [Types::RecommendationJobResourceLimit]
|
33460
|
+
#
|
33461
|
+
# @!attribute [rw] endpoint_configurations
|
33462
|
+
# Specifies the endpoint configuration to use for a job.
|
33463
|
+
# @return [Array<Types::EndpointInputConfiguration>]
|
33464
|
+
#
|
33465
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/RecommendationJobInputConfig AWS API Documentation
|
33466
|
+
#
|
33467
|
+
class RecommendationJobInputConfig < Struct.new(
|
33468
|
+
:model_package_version_arn,
|
33469
|
+
:job_duration_in_seconds,
|
33470
|
+
:traffic_pattern,
|
33471
|
+
:resource_limit,
|
33472
|
+
:endpoint_configurations)
|
33473
|
+
SENSITIVE = []
|
33474
|
+
include Aws::Structure
|
33475
|
+
end
|
33476
|
+
|
33477
|
+
# Specifies the maximum number of jobs that can run in parallel and the
|
33478
|
+
# maximum number of jobs that can run.
|
33479
|
+
#
|
33480
|
+
# @note When making an API call, you may pass RecommendationJobResourceLimit
|
33481
|
+
# data as a hash:
|
33482
|
+
#
|
33483
|
+
# {
|
33484
|
+
# max_number_of_tests: 1,
|
33485
|
+
# max_parallel_of_tests: 1,
|
33486
|
+
# }
|
33487
|
+
#
|
33488
|
+
# @!attribute [rw] max_number_of_tests
|
33489
|
+
# Defines the maximum number of load tests.
|
33490
|
+
# @return [Integer]
|
33491
|
+
#
|
33492
|
+
# @!attribute [rw] max_parallel_of_tests
|
33493
|
+
# Defines the maximum number of parallel load tests.
|
33494
|
+
# @return [Integer]
|
33495
|
+
#
|
33496
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/RecommendationJobResourceLimit AWS API Documentation
|
33497
|
+
#
|
33498
|
+
class RecommendationJobResourceLimit < Struct.new(
|
33499
|
+
:max_number_of_tests,
|
33500
|
+
:max_parallel_of_tests)
|
33501
|
+
SENSITIVE = []
|
33502
|
+
include Aws::Structure
|
33503
|
+
end
|
33504
|
+
|
33505
|
+
# Specifies conditions for stopping a job. When a job reaches a stopping
|
33506
|
+
# condition limit, SageMaker ends the job.
|
33507
|
+
#
|
33508
|
+
# @note When making an API call, you may pass RecommendationJobStoppingConditions
|
33509
|
+
# data as a hash:
|
33510
|
+
#
|
33511
|
+
# {
|
33512
|
+
# max_invocations: 1,
|
33513
|
+
# model_latency_thresholds: [
|
33514
|
+
# {
|
33515
|
+
# percentile: "String64",
|
33516
|
+
# value_in_milliseconds: 1,
|
33517
|
+
# },
|
33518
|
+
# ],
|
33519
|
+
# }
|
33520
|
+
#
|
33521
|
+
# @!attribute [rw] max_invocations
|
33522
|
+
# The maximum number of requests per minute expected for the endpoint.
|
33523
|
+
# @return [Integer]
|
33524
|
+
#
|
33525
|
+
# @!attribute [rw] model_latency_thresholds
|
33526
|
+
# The interval of time taken by a model to respond as viewed from
|
33527
|
+
# SageMaker. The interval includes the local communication time taken
|
33528
|
+
# to send the request and to fetch the response from the container of
|
33529
|
+
# a model and the time taken to complete the inference in the
|
33530
|
+
# container.
|
33531
|
+
# @return [Array<Types::ModelLatencyThreshold>]
|
33532
|
+
#
|
33533
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/RecommendationJobStoppingConditions AWS API Documentation
|
33534
|
+
#
|
33535
|
+
class RecommendationJobStoppingConditions < Struct.new(
|
33536
|
+
:max_invocations,
|
33537
|
+
:model_latency_thresholds)
|
33538
|
+
SENSITIVE = []
|
33539
|
+
include Aws::Structure
|
33540
|
+
end
|
33541
|
+
|
33542
|
+
# The metrics of recommendations.
|
33543
|
+
#
|
33544
|
+
# @!attribute [rw] cost_per_hour
|
33545
|
+
# Defines the cost per hour for the instance.
|
33546
|
+
# @return [Float]
|
33547
|
+
#
|
33548
|
+
# @!attribute [rw] cost_per_inference
|
33549
|
+
# Defines the cost per inference for the instance .
|
33550
|
+
# @return [Float]
|
33551
|
+
#
|
33552
|
+
# @!attribute [rw] max_invocations
|
33553
|
+
# The expected maximum number of requests per minute for the instance.
|
33554
|
+
# @return [Integer]
|
33555
|
+
#
|
33556
|
+
# @!attribute [rw] model_latency
|
33557
|
+
# The expected model latency at maximum invocation per minute for the
|
33558
|
+
# instance.
|
33559
|
+
# @return [Integer]
|
33560
|
+
#
|
33561
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/RecommendationMetrics AWS API Documentation
|
33562
|
+
#
|
33563
|
+
class RecommendationMetrics < Struct.new(
|
33564
|
+
:cost_per_hour,
|
33565
|
+
:cost_per_inference,
|
33566
|
+
:max_invocations,
|
33567
|
+
:model_latency)
|
33568
|
+
SENSITIVE = []
|
33569
|
+
include Aws::Structure
|
33570
|
+
end
|
33571
|
+
|
31176
33572
|
# Configuration for Redshift Dataset Definition input.
|
31177
33573
|
#
|
31178
33574
|
# @note When making an API call, you may pass RedshiftDatasetDefinition
|
@@ -33002,6 +35398,25 @@ module Aws::SageMaker
|
|
33002
35398
|
include Aws::Structure
|
33003
35399
|
end
|
33004
35400
|
|
35401
|
+
# @note When making an API call, you may pass StopInferenceRecommendationsJobRequest
|
35402
|
+
# data as a hash:
|
35403
|
+
#
|
35404
|
+
# {
|
35405
|
+
# job_name: "RecommendationJobName", # required
|
35406
|
+
# }
|
35407
|
+
#
|
35408
|
+
# @!attribute [rw] job_name
|
35409
|
+
# The name of the job you want to stop.
|
35410
|
+
# @return [String]
|
35411
|
+
#
|
35412
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/StopInferenceRecommendationsJobRequest AWS API Documentation
|
35413
|
+
#
|
35414
|
+
class StopInferenceRecommendationsJobRequest < Struct.new(
|
35415
|
+
:job_name)
|
35416
|
+
SENSITIVE = []
|
35417
|
+
include Aws::Structure
|
35418
|
+
end
|
35419
|
+
|
33005
35420
|
# @note When making an API call, you may pass StopLabelingJobRequest
|
33006
35421
|
# data as a hash:
|
33007
35422
|
#
|
@@ -33483,6 +35898,39 @@ module Aws::SageMaker
|
|
33483
35898
|
include Aws::Structure
|
33484
35899
|
end
|
33485
35900
|
|
35901
|
+
# Defines the traffic pattern of the load test.
|
35902
|
+
#
|
35903
|
+
# @note When making an API call, you may pass TrafficPattern
|
35904
|
+
# data as a hash:
|
35905
|
+
#
|
35906
|
+
# {
|
35907
|
+
# traffic_type: "PHASES", # accepts PHASES
|
35908
|
+
# phases: [
|
35909
|
+
# {
|
35910
|
+
# initial_number_of_users: 1,
|
35911
|
+
# spawn_rate: 1,
|
35912
|
+
# duration_in_seconds: 1,
|
35913
|
+
# },
|
35914
|
+
# ],
|
35915
|
+
# }
|
35916
|
+
#
|
35917
|
+
# @!attribute [rw] traffic_type
|
35918
|
+
# Defines the traffic patterns.
|
35919
|
+
# @return [String]
|
35920
|
+
#
|
35921
|
+
# @!attribute [rw] phases
|
35922
|
+
# Defines the phases traffic specification.
|
35923
|
+
# @return [Array<Types::Phase>]
|
35924
|
+
#
|
35925
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/TrafficPattern AWS API Documentation
|
35926
|
+
#
|
35927
|
+
class TrafficPattern < Struct.new(
|
35928
|
+
:traffic_type,
|
35929
|
+
:phases)
|
35930
|
+
SENSITIVE = []
|
35931
|
+
include Aws::Structure
|
35932
|
+
end
|
35933
|
+
|
33486
35934
|
# Defines the traffic routing strategy during an endpoint deployment to
|
33487
35935
|
# shift traffic from the old fleet to the new fleet.
|
33488
35936
|
#
|
@@ -34953,7 +37401,7 @@ module Aws::SageMaker
|
|
34953
37401
|
#
|
34954
37402
|
# @!attribute [rw] last_modified_by
|
34955
37403
|
# Information about the user who created or modified an experiment,
|
34956
|
-
# trial, trial component, or project.
|
37404
|
+
# trial, trial component, lineage group, or project.
|
34957
37405
|
# @return [Types::UserContext]
|
34958
37406
|
#
|
34959
37407
|
# @!attribute [rw] metadata_properties
|
@@ -35036,7 +37484,7 @@ module Aws::SageMaker
|
|
35036
37484
|
#
|
35037
37485
|
# @!attribute [rw] last_modified_by
|
35038
37486
|
# Information about the user who created or modified an experiment,
|
35039
|
-
# trial, trial component, or project.
|
37487
|
+
# trial, trial component, lineage group, or project.
|
35040
37488
|
# @return [Types::UserContext]
|
35041
37489
|
#
|
35042
37490
|
# @!attribute [rw] parameters
|
@@ -35064,6 +37512,10 @@ module Aws::SageMaker
|
|
35064
37512
|
# Details of the source of the component.
|
35065
37513
|
# @return [Types::TrialComponentSourceDetail]
|
35066
37514
|
#
|
37515
|
+
# @!attribute [rw] lineage_group_arn
|
37516
|
+
# The Amazon Resource Name (ARN) of the lineage group resource.
|
37517
|
+
# @return [String]
|
37518
|
+
#
|
35067
37519
|
# @!attribute [rw] tags
|
35068
37520
|
# The list of tags that are associated with the component. You can use
|
35069
37521
|
# Search API to search on the tags.
|
@@ -35095,6 +37547,7 @@ module Aws::SageMaker
|
|
35095
37547
|
:metrics,
|
35096
37548
|
:metadata_properties,
|
35097
37549
|
:source_detail,
|
37550
|
+
:lineage_group_arn,
|
35098
37551
|
:tags,
|
35099
37552
|
:parents)
|
35100
37553
|
SENSITIVE = []
|
@@ -35247,7 +37700,7 @@ module Aws::SageMaker
|
|
35247
37700
|
#
|
35248
37701
|
# @!attribute [rw] created_by
|
35249
37702
|
# Information about the user who created or modified an experiment,
|
35250
|
-
# trial, trial component, or project.
|
37703
|
+
# trial, trial component, lineage group, or project.
|
35251
37704
|
# @return [Types::UserContext]
|
35252
37705
|
#
|
35253
37706
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/TrialComponentSimpleSummary AWS API Documentation
|
@@ -36384,6 +38837,34 @@ module Aws::SageMaker
|
|
36384
38837
|
# "CustomerMetadataKey" => "CustomerMetadataValue",
|
36385
38838
|
# },
|
36386
38839
|
# customer_metadata_properties_to_remove: ["CustomerMetadataKey"],
|
38840
|
+
# additional_inference_specifications_to_add: [
|
38841
|
+
# {
|
38842
|
+
# name: "EntityName", # required
|
38843
|
+
# description: "EntityDescription",
|
38844
|
+
# containers: [ # required
|
38845
|
+
# {
|
38846
|
+
# container_hostname: "ContainerHostname",
|
38847
|
+
# image: "ContainerImage", # required
|
38848
|
+
# image_digest: "ImageDigest",
|
38849
|
+
# model_data_url: "Url",
|
38850
|
+
# product_id: "ProductId",
|
38851
|
+
# environment: {
|
38852
|
+
# "EnvironmentKey" => "EnvironmentValue",
|
38853
|
+
# },
|
38854
|
+
# model_input: {
|
38855
|
+
# data_input_config: "DataInputConfig", # required
|
38856
|
+
# },
|
38857
|
+
# framework: "String",
|
38858
|
+
# framework_version: "FrameworkVersion",
|
38859
|
+
# nearest_model_name: "String",
|
38860
|
+
# },
|
38861
|
+
# ],
|
38862
|
+
# 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
|
38863
|
+
# 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
|
38864
|
+
# supported_content_types: ["ContentType"],
|
38865
|
+
# supported_response_mime_types: ["ResponseMIMEType"],
|
38866
|
+
# },
|
38867
|
+
# ],
|
36387
38868
|
# }
|
36388
38869
|
#
|
36389
38870
|
# @!attribute [rw] model_package_arn
|
@@ -36407,6 +38888,15 @@ module Aws::SageMaker
|
|
36407
38888
|
# to remove.
|
36408
38889
|
# @return [Array<String>]
|
36409
38890
|
#
|
38891
|
+
# @!attribute [rw] additional_inference_specifications_to_add
|
38892
|
+
# An array of additional Inference Specification objects to be added
|
38893
|
+
# to the existing array additional Inference Specification. Total
|
38894
|
+
# number of additional Inference Specifications can not exceed 15.
|
38895
|
+
# Each additional Inference Specification specifies artifacts based on
|
38896
|
+
# this model package that can be used on inference endpoints.
|
38897
|
+
# Generally used with SageMaker Neo to store the compiled artifacts.
|
38898
|
+
# @return [Array<Types::AdditionalInferenceSpecificationDefinition>]
|
38899
|
+
#
|
36410
38900
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateModelPackageInput AWS API Documentation
|
36411
38901
|
#
|
36412
38902
|
class UpdateModelPackageInput < Struct.new(
|
@@ -36414,7 +38904,8 @@ module Aws::SageMaker
|
|
36414
38904
|
:model_approval_status,
|
36415
38905
|
:approval_description,
|
36416
38906
|
:customer_metadata_properties,
|
36417
|
-
:customer_metadata_properties_to_remove
|
38907
|
+
:customer_metadata_properties_to_remove,
|
38908
|
+
:additional_inference_specifications_to_add)
|
36418
38909
|
SENSITIVE = []
|
36419
38910
|
include Aws::Structure
|
36420
38911
|
end
|
@@ -37406,7 +39897,7 @@ module Aws::SageMaker
|
|
37406
39897
|
end
|
37407
39898
|
|
37408
39899
|
# Information about the user who created or modified an experiment,
|
37409
|
-
# trial, trial component, or project.
|
39900
|
+
# trial, trial component, lineage group, or project.
|
37410
39901
|
#
|
37411
39902
|
# @!attribute [rw] user_profile_arn
|
37412
39903
|
# The Amazon Resource Name (ARN) of the user's profile.
|
@@ -37622,6 +40113,31 @@ module Aws::SageMaker
|
|
37622
40113
|
include Aws::Structure
|
37623
40114
|
end
|
37624
40115
|
|
40116
|
+
# A lineage entity connected to the starting entity(ies).
|
40117
|
+
#
|
40118
|
+
# @!attribute [rw] arn
|
40119
|
+
# The Amazon Resource Name (ARN) of the lineage entity resource.
|
40120
|
+
# @return [String]
|
40121
|
+
#
|
40122
|
+
# @!attribute [rw] type
|
40123
|
+
# The type of the lineage entity resource. For example: `DataSet`,
|
40124
|
+
# `Model`, `Endpoint`, etc...
|
40125
|
+
# @return [String]
|
40126
|
+
#
|
40127
|
+
# @!attribute [rw] lineage_type
|
40128
|
+
# The type of resource of the lineage entity.
|
40129
|
+
# @return [String]
|
40130
|
+
#
|
40131
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/Vertex AWS API Documentation
|
40132
|
+
#
|
40133
|
+
class Vertex < Struct.new(
|
40134
|
+
:arn,
|
40135
|
+
:type,
|
40136
|
+
:lineage_type)
|
40137
|
+
SENSITIVE = []
|
40138
|
+
include Aws::Structure
|
40139
|
+
end
|
40140
|
+
|
37625
40141
|
# Specifies a VPC that your training jobs and hosted models have access
|
37626
40142
|
# to. Control access to and from your training and model containers by
|
37627
40143
|
# configuring the VPC. For more information, see [Protect Endpoints by
|