aws-sdk-sagemaker 1.109.0 → 1.110.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -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
@@ -2547,16 +2628,34 @@ module Aws::SageMaker
2547
2628
  # content_digest: "ContentDigest",
2548
2629
  # s3_uri: "S3Uri", # required
2549
2630
  # },
2631
+ # pre_training_report: {
2632
+ # content_type: "ContentType", # required
2633
+ # content_digest: "ContentDigest",
2634
+ # s3_uri: "S3Uri", # required
2635
+ # },
2636
+ # post_training_report: {
2637
+ # content_type: "ContentType", # required
2638
+ # content_digest: "ContentDigest",
2639
+ # s3_uri: "S3Uri", # required
2640
+ # },
2550
2641
  # }
2551
2642
  #
2552
2643
  # @!attribute [rw] report
2553
2644
  # The bias report for a model
2554
2645
  # @return [Types::MetricsSource]
2555
2646
  #
2647
+ # @!attribute [rw] pre_training_report
2648
+ # @return [Types::MetricsSource]
2649
+ #
2650
+ # @!attribute [rw] post_training_report
2651
+ # @return [Types::MetricsSource]
2652
+ #
2556
2653
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/Bias AWS API Documentation
2557
2654
  #
2558
2655
  class Bias < Struct.new(
2559
- :report)
2656
+ :report,
2657
+ :pre_training_report,
2658
+ :post_training_report)
2560
2659
  SENSITIVE = []
2561
2660
  include Aws::Structure
2562
2661
  end
@@ -2765,6 +2864,33 @@ module Aws::SageMaker
2765
2864
  include Aws::Structure
2766
2865
  end
2767
2866
 
2867
+ # Environment parameters you want to benchmark your load test against.
2868
+ #
2869
+ # @note When making an API call, you may pass CategoricalParameter
2870
+ # data as a hash:
2871
+ #
2872
+ # {
2873
+ # name: "String64", # required
2874
+ # value: ["String128"], # required
2875
+ # }
2876
+ #
2877
+ # @!attribute [rw] name
2878
+ # The Name of the environment variable.
2879
+ # @return [String]
2880
+ #
2881
+ # @!attribute [rw] value
2882
+ # The list of values you can pass.
2883
+ # @return [Array<String>]
2884
+ #
2885
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CategoricalParameter AWS API Documentation
2886
+ #
2887
+ class CategoricalParameter < Struct.new(
2888
+ :name,
2889
+ :value)
2890
+ SENSITIVE = []
2891
+ include Aws::Structure
2892
+ end
2893
+
2768
2894
  # A list of categorical hyperparameters to tune.
2769
2895
  #
2770
2896
  # @note When making an API call, you may pass CategoricalParameterRange
@@ -3015,6 +3141,71 @@ module Aws::SageMaker
3015
3141
  include Aws::Structure
3016
3142
  end
3017
3143
 
3144
+ # The container for the metadata for the ClarifyCheck step. For more
3145
+ # information, see the topic on [ClarifyCheck step][1] in the *Amazon
3146
+ # SageMaker Developer Guide*.
3147
+ #
3148
+ #
3149
+ #
3150
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/build-and-manage-steps.html#step-type-clarify-check
3151
+ #
3152
+ # @!attribute [rw] check_type
3153
+ # The type of the Clarify Check step
3154
+ # @return [String]
3155
+ #
3156
+ # @!attribute [rw] baseline_used_for_drift_check_constraints
3157
+ # The Amazon S3 URI of baseline constraints file to be used for the
3158
+ # drift check.
3159
+ # @return [String]
3160
+ #
3161
+ # @!attribute [rw] calculated_baseline_constraints
3162
+ # The Amazon S3 URI of the newly calculated baseline constraints file.
3163
+ # @return [String]
3164
+ #
3165
+ # @!attribute [rw] model_package_group_name
3166
+ # The model package group name.
3167
+ # @return [String]
3168
+ #
3169
+ # @!attribute [rw] violation_report
3170
+ # The Amazon S3 URI of the violation report if violations are
3171
+ # detected.
3172
+ # @return [String]
3173
+ #
3174
+ # @!attribute [rw] check_job_arn
3175
+ # The Amazon Resource Name (ARN) of the check processing job that was
3176
+ # run by this step's execution.
3177
+ # @return [String]
3178
+ #
3179
+ # @!attribute [rw] skip_check
3180
+ # This flag indicates if the drift check against the previous baseline
3181
+ # will be skipped or not. If it is set to `False`, the previous
3182
+ # baseline of the configured check type must be available.
3183
+ # @return [Boolean]
3184
+ #
3185
+ # @!attribute [rw] register_new_baseline
3186
+ # This flag indicates if a newly calculated baseline can be accessed
3187
+ # through step properties `BaselineUsedForDriftCheckConstraints` and
3188
+ # `BaselineUsedForDriftCheckStatistics`. If it is set to `False`, the
3189
+ # previous baseline of the configured check type must also be
3190
+ # available. These can be accessed through the
3191
+ # `BaselineUsedForDriftCheckConstraints` property.
3192
+ # @return [Boolean]
3193
+ #
3194
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClarifyCheckStepMetadata AWS API Documentation
3195
+ #
3196
+ class ClarifyCheckStepMetadata < Struct.new(
3197
+ :check_type,
3198
+ :baseline_used_for_drift_check_constraints,
3199
+ :calculated_baseline_constraints,
3200
+ :model_package_group_name,
3201
+ :violation_report,
3202
+ :check_job_arn,
3203
+ :skip_check,
3204
+ :register_new_baseline)
3205
+ SENSITIVE = []
3206
+ include Aws::Structure
3207
+ end
3208
+
3018
3209
  # Specifies summary information about a Git repository.
3019
3210
  #
3020
3211
  # @!attribute [rw] code_repository_name
@@ -3277,6 +3468,7 @@ module Aws::SageMaker
3277
3468
  # "EnvironmentKey" => "EnvironmentValue",
3278
3469
  # },
3279
3470
  # model_package_name: "VersionedArnOrName",
3471
+ # inference_specification_name: "InferenceSpecificationName",
3280
3472
  # multi_model_config: {
3281
3473
  # model_cache_setting: "Enabled", # accepts Enabled, Disabled
3282
3474
  # },
@@ -3379,6 +3571,10 @@ module Aws::SageMaker
3379
3571
  # to create the model.
3380
3572
  # @return [String]
3381
3573
  #
3574
+ # @!attribute [rw] inference_specification_name
3575
+ # The inference specification name in the model package version.
3576
+ # @return [String]
3577
+ #
3382
3578
  # @!attribute [rw] multi_model_config
3383
3579
  # Specifies additional configuration for multi-model endpoints.
3384
3580
  # @return [Types::MultiModelConfig]
@@ -3393,6 +3589,7 @@ module Aws::SageMaker
3393
3589
  :model_data_url,
3394
3590
  :environment,
3395
3591
  :model_package_name,
3592
+ :inference_specification_name,
3396
3593
  :multi_model_config)
3397
3594
  SENSITIVE = []
3398
3595
  include Aws::Structure
@@ -3732,6 +3929,12 @@ module Aws::SageMaker
3732
3929
  # environment: {
3733
3930
  # "EnvironmentKey" => "EnvironmentValue",
3734
3931
  # },
3932
+ # model_input: {
3933
+ # data_input_config: "DataInputConfig", # required
3934
+ # },
3935
+ # framework: "String",
3936
+ # framework_version: "FrameworkVersion",
3937
+ # nearest_model_name: "String",
3735
3938
  # },
3736
3939
  # ],
3737
3940
  # 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
@@ -4355,7 +4558,8 @@ module Aws::SageMaker
4355
4558
  # {
4356
4559
  # compilation_job_name: "EntityName", # required
4357
4560
  # role_arn: "RoleArn", # required
4358
- # input_config: { # required
4561
+ # model_package_version_arn: "ModelPackageArn",
4562
+ # input_config: {
4359
4563
  # s3_uri: "S3Uri", # required
4360
4564
  # data_input_config: "DataInputConfig", # required
4361
4565
  # framework: "TENSORFLOW", # required, accepts TENSORFLOW, KERAS, MXNET, ONNX, PYTORCH, XGBOOST, TFLITE, DARKNET, SKLEARN
@@ -4418,6 +4622,13 @@ module Aws::SageMaker
4418
4622
  # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/sagemaker-roles.html
4419
4623
  # @return [String]
4420
4624
  #
4625
+ # @!attribute [rw] model_package_version_arn
4626
+ # The Amazon Resource Name (ARN) of a versioned model package. Provide
4627
+ # either a `ModelPackageVersionArn` or an `InputConfig` object in the
4628
+ # request syntax. The presence of both objects in the
4629
+ # `CreateCompilationJob` request will return an exception.
4630
+ # @return [String]
4631
+ #
4421
4632
  # @!attribute [rw] input_config
4422
4633
  # Provides information about the location of input model artifacts,
4423
4634
  # the name and shape of the expected data inputs, and the framework in
@@ -4462,6 +4673,7 @@ module Aws::SageMaker
4462
4673
  class CreateCompilationJobRequest < Struct.new(
4463
4674
  :compilation_job_name,
4464
4675
  :role_arn,
4676
+ :model_package_version_arn,
4465
4677
  :input_config,
4466
4678
  :output_config,
4467
4679
  :vpc_config,
@@ -5057,14 +5269,18 @@ module Aws::SageMaker
5057
5269
  # {
5058
5270
  # variant_name: "VariantName", # required
5059
5271
  # model_name: "ModelName", # required
5060
- # initial_instance_count: 1, # required
5061
- # 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
5272
+ # initial_instance_count: 1,
5273
+ # 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
5274
  # initial_variant_weight: 1.0,
5063
5275
  # 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
5276
  # core_dump_config: {
5065
5277
  # destination_s3_uri: "DestinationS3Uri", # required
5066
5278
  # kms_key_id: "KmsKeyId",
5067
5279
  # },
5280
+ # serverless_config: {
5281
+ # memory_size_in_mb: 1, # required
5282
+ # max_concurrency: 1, # required
5283
+ # },
5068
5284
  # },
5069
5285
  # ],
5070
5286
  # data_capture_config: {
@@ -6173,6 +6389,134 @@ module Aws::SageMaker
6173
6389
  include Aws::Structure
6174
6390
  end
6175
6391
 
6392
+ # @note When making an API call, you may pass CreateInferenceRecommendationsJobRequest
6393
+ # data as a hash:
6394
+ #
6395
+ # {
6396
+ # job_name: "RecommendationJobName", # required
6397
+ # job_type: "Default", # required, accepts Default, Advanced
6398
+ # role_arn: "RoleArn", # required
6399
+ # input_config: { # required
6400
+ # model_package_version_arn: "ModelPackageArn", # required
6401
+ # job_duration_in_seconds: 1,
6402
+ # traffic_pattern: {
6403
+ # traffic_type: "PHASES", # accepts PHASES
6404
+ # phases: [
6405
+ # {
6406
+ # initial_number_of_users: 1,
6407
+ # spawn_rate: 1,
6408
+ # duration_in_seconds: 1,
6409
+ # },
6410
+ # ],
6411
+ # },
6412
+ # resource_limit: {
6413
+ # max_number_of_tests: 1,
6414
+ # max_parallel_of_tests: 1,
6415
+ # },
6416
+ # endpoint_configurations: [
6417
+ # {
6418
+ # 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
6419
+ # inference_specification_name: "InferenceSpecificationName",
6420
+ # environment_parameter_ranges: {
6421
+ # categorical_parameter_ranges: [
6422
+ # {
6423
+ # name: "String64", # required
6424
+ # value: ["String128"], # required
6425
+ # },
6426
+ # ],
6427
+ # },
6428
+ # },
6429
+ # ],
6430
+ # },
6431
+ # job_description: "RecommendationJobDescription",
6432
+ # stopping_conditions: {
6433
+ # max_invocations: 1,
6434
+ # model_latency_thresholds: [
6435
+ # {
6436
+ # percentile: "String64",
6437
+ # value_in_milliseconds: 1,
6438
+ # },
6439
+ # ],
6440
+ # },
6441
+ # tags: [
6442
+ # {
6443
+ # key: "TagKey", # required
6444
+ # value: "TagValue", # required
6445
+ # },
6446
+ # ],
6447
+ # }
6448
+ #
6449
+ # @!attribute [rw] job_name
6450
+ # A name for the recommendation job. The name must be unique within
6451
+ # the Amazon Web Services Region and within your Amazon Web Services
6452
+ # account.
6453
+ # @return [String]
6454
+ #
6455
+ # @!attribute [rw] job_type
6456
+ # Defines the type of recommendation job. Specify `Default` to
6457
+ # initiate an instance recommendation and `Advanced` to initiate a
6458
+ # load test. If left unspecified, Amazon SageMaker Inference
6459
+ # Recommender will run an instance recommendation (`DEFAULT`) job.
6460
+ # @return [String]
6461
+ #
6462
+ # @!attribute [rw] role_arn
6463
+ # The Amazon Resource Name (ARN) of an IAM role that enables Amazon
6464
+ # SageMaker to perform tasks on your behalf.
6465
+ # @return [String]
6466
+ #
6467
+ # @!attribute [rw] input_config
6468
+ # Provides information about the versioned model package Amazon
6469
+ # Resource Name (ARN), the traffic pattern, and endpoint
6470
+ # configurations.
6471
+ # @return [Types::RecommendationJobInputConfig]
6472
+ #
6473
+ # @!attribute [rw] job_description
6474
+ # Description of the recommendation job.
6475
+ # @return [String]
6476
+ #
6477
+ # @!attribute [rw] stopping_conditions
6478
+ # A set of conditions for stopping a recommendation job. If any of the
6479
+ # conditions are met, the job is automatically stopped.
6480
+ # @return [Types::RecommendationJobStoppingConditions]
6481
+ #
6482
+ # @!attribute [rw] tags
6483
+ # The metadata that you apply to Amazon Web Services resources to help
6484
+ # you categorize and organize them. Each tag consists of a key and a
6485
+ # value, both of which you define. For more information, see [Tagging
6486
+ # Amazon Web Services Resources][1] in the Amazon Web Services General
6487
+ # Reference.
6488
+ #
6489
+ #
6490
+ #
6491
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
6492
+ # @return [Array<Types::Tag>]
6493
+ #
6494
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateInferenceRecommendationsJobRequest AWS API Documentation
6495
+ #
6496
+ class CreateInferenceRecommendationsJobRequest < Struct.new(
6497
+ :job_name,
6498
+ :job_type,
6499
+ :role_arn,
6500
+ :input_config,
6501
+ :job_description,
6502
+ :stopping_conditions,
6503
+ :tags)
6504
+ SENSITIVE = []
6505
+ include Aws::Structure
6506
+ end
6507
+
6508
+ # @!attribute [rw] job_arn
6509
+ # The Amazon Resource Name (ARN) of the recommendation job.
6510
+ # @return [String]
6511
+ #
6512
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateInferenceRecommendationsJobResponse AWS API Documentation
6513
+ #
6514
+ class CreateInferenceRecommendationsJobResponse < Struct.new(
6515
+ :job_arn)
6516
+ SENSITIVE = []
6517
+ include Aws::Structure
6518
+ end
6519
+
6176
6520
  # @note When making an API call, you may pass CreateLabelingJobRequest
6177
6521
  # data as a hash:
6178
6522
  #
@@ -6780,6 +7124,7 @@ module Aws::SageMaker
6780
7124
  # "EnvironmentKey" => "EnvironmentValue",
6781
7125
  # },
6782
7126
  # model_package_name: "VersionedArnOrName",
7127
+ # inference_specification_name: "InferenceSpecificationName",
6783
7128
  # multi_model_config: {
6784
7129
  # model_cache_setting: "Enabled", # accepts Enabled, Disabled
6785
7130
  # },
@@ -6800,6 +7145,7 @@ module Aws::SageMaker
6800
7145
  # "EnvironmentKey" => "EnvironmentValue",
6801
7146
  # },
6802
7147
  # model_package_name: "VersionedArnOrName",
7148
+ # inference_specification_name: "InferenceSpecificationName",
6803
7149
  # multi_model_config: {
6804
7150
  # model_cache_setting: "Enabled", # accepts Enabled, Disabled
6805
7151
  # },
@@ -6987,6 +7333,12 @@ module Aws::SageMaker
6987
7333
  # environment: {
6988
7334
  # "EnvironmentKey" => "EnvironmentValue",
6989
7335
  # },
7336
+ # model_input: {
7337
+ # data_input_config: "DataInputConfig", # required
7338
+ # },
7339
+ # framework: "String",
7340
+ # framework_version: "FrameworkVersion",
7341
+ # nearest_model_name: "String",
6990
7342
  # },
6991
7343
  # ],
6992
7344
  # 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 +7437,16 @@ module Aws::SageMaker
7085
7437
  # content_digest: "ContentDigest",
7086
7438
  # s3_uri: "S3Uri", # required
7087
7439
  # },
7440
+ # pre_training_report: {
7441
+ # content_type: "ContentType", # required
7442
+ # content_digest: "ContentDigest",
7443
+ # s3_uri: "S3Uri", # required
7444
+ # },
7445
+ # post_training_report: {
7446
+ # content_type: "ContentType", # required
7447
+ # content_digest: "ContentDigest",
7448
+ # s3_uri: "S3Uri", # required
7449
+ # },
7088
7450
  # },
7089
7451
  # explainability: {
7090
7452
  # report: {
@@ -7098,6 +7460,92 @@ module Aws::SageMaker
7098
7460
  # customer_metadata_properties: {
7099
7461
  # "CustomerMetadataKey" => "CustomerMetadataValue",
7100
7462
  # },
7463
+ # drift_check_baselines: {
7464
+ # bias: {
7465
+ # config_file: {
7466
+ # content_type: "ContentType",
7467
+ # content_digest: "ContentDigest",
7468
+ # s3_uri: "S3Uri", # required
7469
+ # },
7470
+ # pre_training_constraints: {
7471
+ # content_type: "ContentType", # required
7472
+ # content_digest: "ContentDigest",
7473
+ # s3_uri: "S3Uri", # required
7474
+ # },
7475
+ # post_training_constraints: {
7476
+ # content_type: "ContentType", # required
7477
+ # content_digest: "ContentDigest",
7478
+ # s3_uri: "S3Uri", # required
7479
+ # },
7480
+ # },
7481
+ # explainability: {
7482
+ # constraints: {
7483
+ # content_type: "ContentType", # required
7484
+ # content_digest: "ContentDigest",
7485
+ # s3_uri: "S3Uri", # required
7486
+ # },
7487
+ # config_file: {
7488
+ # content_type: "ContentType",
7489
+ # content_digest: "ContentDigest",
7490
+ # s3_uri: "S3Uri", # required
7491
+ # },
7492
+ # },
7493
+ # model_quality: {
7494
+ # statistics: {
7495
+ # content_type: "ContentType", # required
7496
+ # content_digest: "ContentDigest",
7497
+ # s3_uri: "S3Uri", # required
7498
+ # },
7499
+ # constraints: {
7500
+ # content_type: "ContentType", # required
7501
+ # content_digest: "ContentDigest",
7502
+ # s3_uri: "S3Uri", # required
7503
+ # },
7504
+ # },
7505
+ # model_data_quality: {
7506
+ # statistics: {
7507
+ # content_type: "ContentType", # required
7508
+ # content_digest: "ContentDigest",
7509
+ # s3_uri: "S3Uri", # required
7510
+ # },
7511
+ # constraints: {
7512
+ # content_type: "ContentType", # required
7513
+ # content_digest: "ContentDigest",
7514
+ # s3_uri: "S3Uri", # required
7515
+ # },
7516
+ # },
7517
+ # },
7518
+ # domain: "String",
7519
+ # task: "String",
7520
+ # sample_payload_url: "S3Uri",
7521
+ # additional_inference_specifications: [
7522
+ # {
7523
+ # name: "EntityName", # required
7524
+ # description: "EntityDescription",
7525
+ # containers: [ # required
7526
+ # {
7527
+ # container_hostname: "ContainerHostname",
7528
+ # image: "ContainerImage", # required
7529
+ # image_digest: "ImageDigest",
7530
+ # model_data_url: "Url",
7531
+ # product_id: "ProductId",
7532
+ # environment: {
7533
+ # "EnvironmentKey" => "EnvironmentValue",
7534
+ # },
7535
+ # model_input: {
7536
+ # data_input_config: "DataInputConfig", # required
7537
+ # },
7538
+ # framework: "String",
7539
+ # framework_version: "FrameworkVersion",
7540
+ # nearest_model_name: "String",
7541
+ # },
7542
+ # ],
7543
+ # 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
7544
+ # 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
7545
+ # supported_content_types: ["ContentType"],
7546
+ # supported_response_mime_types: ["ResponseMIMEType"],
7547
+ # },
7548
+ # ],
7101
7549
  # }
7102
7550
  #
7103
7551
  # @!attribute [rw] model_package_name
@@ -7193,6 +7641,42 @@ module Aws::SageMaker
7193
7641
  # The metadata properties associated with the model package versions.
7194
7642
  # @return [Hash<String,String>]
7195
7643
  #
7644
+ # @!attribute [rw] drift_check_baselines
7645
+ # Represents the drift check baselines that can be used when the model
7646
+ # monitor is set using the model package. For more information, see
7647
+ # the topic on [Drift Detection against Previous Baselines in
7648
+ # SageMaker Pipelines][1] in the *Amazon SageMaker Developer Guide*.
7649
+ #
7650
+ #
7651
+ #
7652
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/pipelines-quality-clarify-baseline-lifecycle.html#pipelines-quality-clarify-baseline-drift-detection
7653
+ # @return [Types::DriftCheckBaselines]
7654
+ #
7655
+ # @!attribute [rw] domain
7656
+ # The machine learning domain of your model package and its
7657
+ # components. Common machine learning domains include computer vision
7658
+ # and natural language processing.
7659
+ # @return [String]
7660
+ #
7661
+ # @!attribute [rw] task
7662
+ # The machine learning task your model package accomplishes. Common
7663
+ # machine learning tasks include object detection and image
7664
+ # classification.
7665
+ # @return [String]
7666
+ #
7667
+ # @!attribute [rw] sample_payload_url
7668
+ # The Amazon Simple Storage Service (Amazon S3) path where the sample
7669
+ # payload are stored. This path must point to a single gzip compressed
7670
+ # tar archive (.tar.gz suffix).
7671
+ # @return [String]
7672
+ #
7673
+ # @!attribute [rw] additional_inference_specifications
7674
+ # An array of additional Inference Specification objects. Each
7675
+ # additional Inference Specification specifies artifacts based on this
7676
+ # model package that can be used on inference endpoints. Generally
7677
+ # used with SageMaker Neo to store the compiled artifacts.
7678
+ # @return [Array<Types::AdditionalInferenceSpecificationDefinition>]
7679
+ #
7196
7680
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateModelPackageInput AWS API Documentation
7197
7681
  #
7198
7682
  class CreateModelPackageInput < Struct.new(
@@ -7208,7 +7692,12 @@ module Aws::SageMaker
7208
7692
  :metadata_properties,
7209
7693
  :model_metrics,
7210
7694
  :client_token,
7211
- :customer_metadata_properties)
7695
+ :customer_metadata_properties,
7696
+ :drift_check_baselines,
7697
+ :domain,
7698
+ :task,
7699
+ :sample_payload_url,
7700
+ :additional_inference_specifications)
7212
7701
  SENSITIVE = []
7213
7702
  include Aws::Structure
7214
7703
  end
@@ -11201,7 +11690,7 @@ module Aws::SageMaker
11201
11690
  #
11202
11691
  # @!attribute [rw] created_by
11203
11692
  # Information about the user who created or modified an experiment,
11204
- # trial, trial component, or project.
11693
+ # trial, trial component, lineage group, or project.
11205
11694
  # @return [Types::UserContext]
11206
11695
  #
11207
11696
  # @!attribute [rw] last_modified_time
@@ -11210,7 +11699,7 @@ module Aws::SageMaker
11210
11699
  #
11211
11700
  # @!attribute [rw] last_modified_by
11212
11701
  # Information about the user who created or modified an experiment,
11213
- # trial, trial component, or project.
11702
+ # trial, trial component, lineage group, or project.
11214
11703
  # @return [Types::UserContext]
11215
11704
  #
11216
11705
  # @!attribute [rw] metadata_properties
@@ -11218,6 +11707,10 @@ module Aws::SageMaker
11218
11707
  # component.
11219
11708
  # @return [Types::MetadataProperties]
11220
11709
  #
11710
+ # @!attribute [rw] lineage_group_arn
11711
+ # The Amazon Resource Name (ARN) of the lineage group.
11712
+ # @return [String]
11713
+ #
11221
11714
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeActionResponse AWS API Documentation
11222
11715
  #
11223
11716
  class DescribeActionResponse < Struct.new(
@@ -11232,7 +11725,8 @@ module Aws::SageMaker
11232
11725
  :created_by,
11233
11726
  :last_modified_time,
11234
11727
  :last_modified_by,
11235
- :metadata_properties)
11728
+ :metadata_properties,
11729
+ :lineage_group_arn)
11236
11730
  SENSITIVE = []
11237
11731
  include Aws::Structure
11238
11732
  end
@@ -11519,7 +12013,7 @@ module Aws::SageMaker
11519
12013
  #
11520
12014
  # @!attribute [rw] created_by
11521
12015
  # Information about the user who created or modified an experiment,
11522
- # trial, trial component, or project.
12016
+ # trial, trial component, lineage group, or project.
11523
12017
  # @return [Types::UserContext]
11524
12018
  #
11525
12019
  # @!attribute [rw] last_modified_time
@@ -11528,7 +12022,7 @@ module Aws::SageMaker
11528
12022
  #
11529
12023
  # @!attribute [rw] last_modified_by
11530
12024
  # Information about the user who created or modified an experiment,
11531
- # trial, trial component, or project.
12025
+ # trial, trial component, lineage group, or project.
11532
12026
  # @return [Types::UserContext]
11533
12027
  #
11534
12028
  # @!attribute [rw] metadata_properties
@@ -11536,6 +12030,10 @@ module Aws::SageMaker
11536
12030
  # component.
11537
12031
  # @return [Types::MetadataProperties]
11538
12032
  #
12033
+ # @!attribute [rw] lineage_group_arn
12034
+ # The Amazon Resource Name (ARN) of the lineage group.
12035
+ # @return [String]
12036
+ #
11539
12037
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeArtifactResponse AWS API Documentation
11540
12038
  #
11541
12039
  class DescribeArtifactResponse < Struct.new(
@@ -11548,7 +12046,8 @@ module Aws::SageMaker
11548
12046
  :created_by,
11549
12047
  :last_modified_time,
11550
12048
  :last_modified_by,
11551
- :metadata_properties)
12049
+ :metadata_properties,
12050
+ :lineage_group_arn)
11552
12051
  SENSITIVE = []
11553
12052
  include Aws::Structure
11554
12053
  end
@@ -11808,6 +12307,11 @@ module Aws::SageMaker
11808
12307
  # only if the target device is a cloud instance.
11809
12308
  # @return [String]
11810
12309
  #
12310
+ # @!attribute [rw] model_package_version_arn
12311
+ # The Amazon Resource Name (ARN) of the versioned model package that
12312
+ # was provided to SageMaker Neo when you initiated a compilation job.
12313
+ # @return [String]
12314
+ #
11811
12315
  # @!attribute [rw] creation_time
11812
12316
  # The time that the model compilation job was created.
11813
12317
  # @return [Time]
@@ -11868,6 +12372,7 @@ module Aws::SageMaker
11868
12372
  :compilation_end_time,
11869
12373
  :stopping_condition,
11870
12374
  :inference_image,
12375
+ :model_package_version_arn,
11871
12376
  :creation_time,
11872
12377
  :last_modified_time,
11873
12378
  :failure_reason,
@@ -11885,7 +12390,7 @@ module Aws::SageMaker
11885
12390
  # data as a hash:
11886
12391
  #
11887
12392
  # {
11888
- # context_name: "ExperimentEntityName", # required
12393
+ # context_name: "ExperimentEntityNameOrArn", # required
11889
12394
  # }
11890
12395
  #
11891
12396
  # @!attribute [rw] context_name
@@ -11930,7 +12435,7 @@ module Aws::SageMaker
11930
12435
  #
11931
12436
  # @!attribute [rw] created_by
11932
12437
  # Information about the user who created or modified an experiment,
11933
- # trial, trial component, or project.
12438
+ # trial, trial component, lineage group, or project.
11934
12439
  # @return [Types::UserContext]
11935
12440
  #
11936
12441
  # @!attribute [rw] last_modified_time
@@ -11939,9 +12444,13 @@ module Aws::SageMaker
11939
12444
  #
11940
12445
  # @!attribute [rw] last_modified_by
11941
12446
  # Information about the user who created or modified an experiment,
11942
- # trial, trial component, or project.
12447
+ # trial, trial component, lineage group, or project.
11943
12448
  # @return [Types::UserContext]
11944
12449
  #
12450
+ # @!attribute [rw] lineage_group_arn
12451
+ # The Amazon Resource Name (ARN) of the lineage group.
12452
+ # @return [String]
12453
+ #
11945
12454
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeContextResponse AWS API Documentation
11946
12455
  #
11947
12456
  class DescribeContextResponse < Struct.new(
@@ -11954,7 +12463,8 @@ module Aws::SageMaker
11954
12463
  :creation_time,
11955
12464
  :created_by,
11956
12465
  :last_modified_time,
11957
- :last_modified_by)
12466
+ :last_modified_by,
12467
+ :lineage_group_arn)
11958
12468
  SENSITIVE = []
11959
12469
  include Aws::Structure
11960
12470
  end
@@ -13250,6 +13760,104 @@ module Aws::SageMaker
13250
13760
  include Aws::Structure
13251
13761
  end
13252
13762
 
13763
+ # @note When making an API call, you may pass DescribeInferenceRecommendationsJobRequest
13764
+ # data as a hash:
13765
+ #
13766
+ # {
13767
+ # job_name: "RecommendationJobName", # required
13768
+ # }
13769
+ #
13770
+ # @!attribute [rw] job_name
13771
+ # The name of the job. The name must be unique within an Amazon Web
13772
+ # Services Region in the Amazon Web Services account.
13773
+ # @return [String]
13774
+ #
13775
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeInferenceRecommendationsJobRequest AWS API Documentation
13776
+ #
13777
+ class DescribeInferenceRecommendationsJobRequest < Struct.new(
13778
+ :job_name)
13779
+ SENSITIVE = []
13780
+ include Aws::Structure
13781
+ end
13782
+
13783
+ # @!attribute [rw] job_name
13784
+ # The name of the job. The name must be unique within an Amazon Web
13785
+ # Services Region in the Amazon Web Services account.
13786
+ # @return [String]
13787
+ #
13788
+ # @!attribute [rw] job_description
13789
+ # The job description that you provided when you initiated the job.
13790
+ # @return [String]
13791
+ #
13792
+ # @!attribute [rw] job_type
13793
+ # The job type that you provided when you initiated the job.
13794
+ # @return [String]
13795
+ #
13796
+ # @!attribute [rw] job_arn
13797
+ # The Amazon Resource Name (ARN) of the job.
13798
+ # @return [String]
13799
+ #
13800
+ # @!attribute [rw] role_arn
13801
+ # The Amazon Resource Name (ARN) of the Amazon Web Services Identity
13802
+ # and Access Management (IAM) role you provided when you initiated the
13803
+ # job.
13804
+ # @return [String]
13805
+ #
13806
+ # @!attribute [rw] status
13807
+ # The status of the job.
13808
+ # @return [String]
13809
+ #
13810
+ # @!attribute [rw] creation_time
13811
+ # A timestamp that shows when the job was created.
13812
+ # @return [Time]
13813
+ #
13814
+ # @!attribute [rw] completion_time
13815
+ # A timestamp that shows when the job completed.
13816
+ # @return [Time]
13817
+ #
13818
+ # @!attribute [rw] last_modified_time
13819
+ # A timestamp that shows when the job was last modified.
13820
+ # @return [Time]
13821
+ #
13822
+ # @!attribute [rw] failure_reason
13823
+ # If the job fails, provides information why the job failed.
13824
+ # @return [String]
13825
+ #
13826
+ # @!attribute [rw] input_config
13827
+ # Returns information about the versioned model package Amazon
13828
+ # Resource Name (ARN), the traffic pattern, and endpoint
13829
+ # configurations you provided when you initiated the job.
13830
+ # @return [Types::RecommendationJobInputConfig]
13831
+ #
13832
+ # @!attribute [rw] stopping_conditions
13833
+ # The stopping conditions that you provided when you initiated the
13834
+ # job.
13835
+ # @return [Types::RecommendationJobStoppingConditions]
13836
+ #
13837
+ # @!attribute [rw] inference_recommendations
13838
+ # The recommendations made by Inference Recommender.
13839
+ # @return [Array<Types::InferenceRecommendation>]
13840
+ #
13841
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeInferenceRecommendationsJobResponse AWS API Documentation
13842
+ #
13843
+ class DescribeInferenceRecommendationsJobResponse < Struct.new(
13844
+ :job_name,
13845
+ :job_description,
13846
+ :job_type,
13847
+ :job_arn,
13848
+ :role_arn,
13849
+ :status,
13850
+ :creation_time,
13851
+ :completion_time,
13852
+ :last_modified_time,
13853
+ :failure_reason,
13854
+ :input_config,
13855
+ :stopping_conditions,
13856
+ :inference_recommendations)
13857
+ SENSITIVE = []
13858
+ include Aws::Structure
13859
+ end
13860
+
13253
13861
  # @note When making an API call, you may pass DescribeLabelingJobRequest
13254
13862
  # data as a hash:
13255
13863
  #
@@ -13421,6 +14029,74 @@ module Aws::SageMaker
13421
14029
  include Aws::Structure
13422
14030
  end
13423
14031
 
14032
+ # @note When making an API call, you may pass DescribeLineageGroupRequest
14033
+ # data as a hash:
14034
+ #
14035
+ # {
14036
+ # lineage_group_name: "ExperimentEntityName", # required
14037
+ # }
14038
+ #
14039
+ # @!attribute [rw] lineage_group_name
14040
+ # The name of the lineage group.
14041
+ # @return [String]
14042
+ #
14043
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeLineageGroupRequest AWS API Documentation
14044
+ #
14045
+ class DescribeLineageGroupRequest < Struct.new(
14046
+ :lineage_group_name)
14047
+ SENSITIVE = []
14048
+ include Aws::Structure
14049
+ end
14050
+
14051
+ # @!attribute [rw] lineage_group_name
14052
+ # The name of the lineage group.
14053
+ # @return [String]
14054
+ #
14055
+ # @!attribute [rw] lineage_group_arn
14056
+ # The Amazon Resource Name (ARN) of the lineage group.
14057
+ # @return [String]
14058
+ #
14059
+ # @!attribute [rw] display_name
14060
+ # The display name of the lineage group.
14061
+ # @return [String]
14062
+ #
14063
+ # @!attribute [rw] description
14064
+ # The description of the lineage group.
14065
+ # @return [String]
14066
+ #
14067
+ # @!attribute [rw] creation_time
14068
+ # The creation time of lineage group.
14069
+ # @return [Time]
14070
+ #
14071
+ # @!attribute [rw] created_by
14072
+ # Information about the user who created or modified an experiment,
14073
+ # trial, trial component, lineage group, or project.
14074
+ # @return [Types::UserContext]
14075
+ #
14076
+ # @!attribute [rw] last_modified_time
14077
+ # The last modified time of the lineage group.
14078
+ # @return [Time]
14079
+ #
14080
+ # @!attribute [rw] last_modified_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
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeLineageGroupResponse AWS API Documentation
14086
+ #
14087
+ class DescribeLineageGroupResponse < Struct.new(
14088
+ :lineage_group_name,
14089
+ :lineage_group_arn,
14090
+ :display_name,
14091
+ :description,
14092
+ :creation_time,
14093
+ :created_by,
14094
+ :last_modified_time,
14095
+ :last_modified_by)
14096
+ SENSITIVE = []
14097
+ include Aws::Structure
14098
+ end
14099
+
13424
14100
  # @note When making an API call, you may pass DescribeModelBiasJobDefinitionRequest
13425
14101
  # data as a hash:
13426
14102
  #
@@ -13719,7 +14395,7 @@ module Aws::SageMaker
13719
14395
  #
13720
14396
  # @!attribute [rw] created_by
13721
14397
  # Information about the user who created or modified an experiment,
13722
- # trial, trial component, or project.
14398
+ # trial, trial component, lineage group, or project.
13723
14399
  # @return [Types::UserContext]
13724
14400
  #
13725
14401
  # @!attribute [rw] model_package_group_status
@@ -13821,7 +14497,7 @@ module Aws::SageMaker
13821
14497
  #
13822
14498
  # @!attribute [rw] created_by
13823
14499
  # Information about the user who created or modified an experiment,
13824
- # trial, trial component, or project.
14500
+ # trial, trial component, lineage group, or project.
13825
14501
  # @return [Types::UserContext]
13826
14502
  #
13827
14503
  # @!attribute [rw] metadata_properties
@@ -13839,7 +14515,7 @@ module Aws::SageMaker
13839
14515
  #
13840
14516
  # @!attribute [rw] last_modified_by
13841
14517
  # Information about the user who created or modified an experiment,
13842
- # trial, trial component, or project.
14518
+ # trial, trial component, lineage group, or project.
13843
14519
  # @return [Types::UserContext]
13844
14520
  #
13845
14521
  # @!attribute [rw] approval_description
@@ -13850,6 +14526,42 @@ module Aws::SageMaker
13850
14526
  # The metadata properties associated with the model package versions.
13851
14527
  # @return [Hash<String,String>]
13852
14528
  #
14529
+ # @!attribute [rw] drift_check_baselines
14530
+ # Represents the drift check baselines that can be used when the model
14531
+ # monitor is set using the model package. For more information, see
14532
+ # the topic on [Drift Detection against Previous Baselines in
14533
+ # SageMaker Pipelines][1] in the *Amazon SageMaker Developer Guide*.
14534
+ #
14535
+ #
14536
+ #
14537
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/pipelines-quality-clarify-baseline-lifecycle.html#pipelines-quality-clarify-baseline-drift-detection
14538
+ # @return [Types::DriftCheckBaselines]
14539
+ #
14540
+ # @!attribute [rw] domain
14541
+ # The machine learning domain of the model package you specified.
14542
+ # Common machine learning domains include computer vision and natural
14543
+ # language processing.
14544
+ # @return [String]
14545
+ #
14546
+ # @!attribute [rw] task
14547
+ # The machine learning task you specified that your model package
14548
+ # accomplishes. Common machine learning tasks include object detection
14549
+ # and image classification.
14550
+ # @return [String]
14551
+ #
14552
+ # @!attribute [rw] sample_payload_url
14553
+ # The Amazon Simple Storage Service (Amazon S3) path where the sample
14554
+ # payload are stored. This path points to a single gzip compressed tar
14555
+ # archive (.tar.gz suffix).
14556
+ # @return [String]
14557
+ #
14558
+ # @!attribute [rw] additional_inference_specifications
14559
+ # An array of additional Inference Specification objects. Each
14560
+ # additional Inference Specification specifies artifacts based on this
14561
+ # model package that can be used on inference endpoints. Generally
14562
+ # used with SageMaker Neo to store the compiled artifacts.
14563
+ # @return [Array<Types::AdditionalInferenceSpecificationDefinition>]
14564
+ #
13853
14565
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeModelPackageOutput AWS API Documentation
13854
14566
  #
13855
14567
  class DescribeModelPackageOutput < Struct.new(
@@ -13872,7 +14584,12 @@ module Aws::SageMaker
13872
14584
  :last_modified_time,
13873
14585
  :last_modified_by,
13874
14586
  :approval_description,
13875
- :customer_metadata_properties)
14587
+ :customer_metadata_properties,
14588
+ :drift_check_baselines,
14589
+ :domain,
14590
+ :task,
14591
+ :sample_payload_url,
14592
+ :additional_inference_specifications)
13876
14593
  SENSITIVE = []
13877
14594
  include Aws::Structure
13878
14595
  end
@@ -14403,12 +15120,12 @@ module Aws::SageMaker
14403
15120
  #
14404
15121
  # @!attribute [rw] created_by
14405
15122
  # Information about the user who created or modified an experiment,
14406
- # trial, trial component, or project.
15123
+ # trial, trial component, lineage group, or project.
14407
15124
  # @return [Types::UserContext]
14408
15125
  #
14409
15126
  # @!attribute [rw] last_modified_by
14410
15127
  # Information about the user who created or modified an experiment,
14411
- # trial, trial component, or project.
15128
+ # trial, trial component, lineage group, or project.
14412
15129
  # @return [Types::UserContext]
14413
15130
  #
14414
15131
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribePipelineExecutionResponse AWS API Documentation
@@ -14490,12 +15207,12 @@ module Aws::SageMaker
14490
15207
  #
14491
15208
  # @!attribute [rw] created_by
14492
15209
  # Information about the user who created or modified an experiment,
14493
- # trial, trial component, or project.
15210
+ # trial, trial component, lineage group, or project.
14494
15211
  # @return [Types::UserContext]
14495
15212
  #
14496
15213
  # @!attribute [rw] last_modified_by
14497
15214
  # Information about the user who created or modified an experiment,
14498
- # trial, trial component, or project.
15215
+ # trial, trial component, lineage group, or project.
14499
15216
  # @return [Types::UserContext]
14500
15217
  #
14501
15218
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribePipelineResponse AWS API Documentation
@@ -14710,7 +15427,7 @@ module Aws::SageMaker
14710
15427
  #
14711
15428
  # @!attribute [rw] created_by
14712
15429
  # Information about the user who created or modified an experiment,
14713
- # trial, trial component, or project.
15430
+ # trial, trial component, lineage group, or project.
14714
15431
  # @return [Types::UserContext]
14715
15432
  #
14716
15433
  # @!attribute [rw] creation_time
@@ -14723,7 +15440,7 @@ module Aws::SageMaker
14723
15440
  #
14724
15441
  # @!attribute [rw] last_modified_by
14725
15442
  # Information about the user who created or modified an experiment,
14726
- # trial, trial component, or project.
15443
+ # trial, trial component, lineage group, or project.
14727
15444
  # @return [Types::UserContext]
14728
15445
  #
14729
15446
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeProjectOutput AWS API Documentation
@@ -15387,7 +16104,7 @@ module Aws::SageMaker
15387
16104
  # data as a hash:
15388
16105
  #
15389
16106
  # {
15390
- # trial_component_name: "ExperimentEntityName", # required
16107
+ # trial_component_name: "ExperimentEntityNameOrArn", # required
15391
16108
  # }
15392
16109
  #
15393
16110
  # @!attribute [rw] trial_component_name
@@ -15475,6 +16192,10 @@ module Aws::SageMaker
15475
16192
  # The metrics for the component.
15476
16193
  # @return [Array<Types::TrialComponentMetricSummary>]
15477
16194
  #
16195
+ # @!attribute [rw] lineage_group_arn
16196
+ # The Amazon Resource Name (ARN) of the lineage group.
16197
+ # @return [String]
16198
+ #
15478
16199
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeTrialComponentResponse AWS API Documentation
15479
16200
  #
15480
16201
  class DescribeTrialComponentResponse < Struct.new(
@@ -15493,7 +16214,8 @@ module Aws::SageMaker
15493
16214
  :input_artifacts,
15494
16215
  :output_artifacts,
15495
16216
  :metadata_properties,
15496
- :metrics)
16217
+ :metrics,
16218
+ :lineage_group_arn)
15497
16219
  SENSITIVE = []
15498
16220
  include Aws::Structure
15499
16221
  end
@@ -16074,6 +16796,274 @@ module Aws::SageMaker
16074
16796
  include Aws::Structure
16075
16797
  end
16076
16798
 
16799
+ # Represents the drift check baselines that can be used when the model
16800
+ # monitor is set using the model package.
16801
+ #
16802
+ # @note When making an API call, you may pass DriftCheckBaselines
16803
+ # data as a hash:
16804
+ #
16805
+ # {
16806
+ # bias: {
16807
+ # config_file: {
16808
+ # content_type: "ContentType",
16809
+ # content_digest: "ContentDigest",
16810
+ # s3_uri: "S3Uri", # required
16811
+ # },
16812
+ # pre_training_constraints: {
16813
+ # content_type: "ContentType", # required
16814
+ # content_digest: "ContentDigest",
16815
+ # s3_uri: "S3Uri", # required
16816
+ # },
16817
+ # post_training_constraints: {
16818
+ # content_type: "ContentType", # required
16819
+ # content_digest: "ContentDigest",
16820
+ # s3_uri: "S3Uri", # required
16821
+ # },
16822
+ # },
16823
+ # explainability: {
16824
+ # constraints: {
16825
+ # content_type: "ContentType", # required
16826
+ # content_digest: "ContentDigest",
16827
+ # s3_uri: "S3Uri", # required
16828
+ # },
16829
+ # config_file: {
16830
+ # content_type: "ContentType",
16831
+ # content_digest: "ContentDigest",
16832
+ # s3_uri: "S3Uri", # required
16833
+ # },
16834
+ # },
16835
+ # model_quality: {
16836
+ # statistics: {
16837
+ # content_type: "ContentType", # required
16838
+ # content_digest: "ContentDigest",
16839
+ # s3_uri: "S3Uri", # required
16840
+ # },
16841
+ # constraints: {
16842
+ # content_type: "ContentType", # required
16843
+ # content_digest: "ContentDigest",
16844
+ # s3_uri: "S3Uri", # required
16845
+ # },
16846
+ # },
16847
+ # model_data_quality: {
16848
+ # statistics: {
16849
+ # content_type: "ContentType", # required
16850
+ # content_digest: "ContentDigest",
16851
+ # s3_uri: "S3Uri", # required
16852
+ # },
16853
+ # constraints: {
16854
+ # content_type: "ContentType", # required
16855
+ # content_digest: "ContentDigest",
16856
+ # s3_uri: "S3Uri", # required
16857
+ # },
16858
+ # },
16859
+ # }
16860
+ #
16861
+ # @!attribute [rw] bias
16862
+ # Represents the drift check bias baselines that can be used when the
16863
+ # model monitor is set using the model package.
16864
+ # @return [Types::DriftCheckBias]
16865
+ #
16866
+ # @!attribute [rw] explainability
16867
+ # Represents the drift check explainability baselines that can be used
16868
+ # when the model monitor is set using the model package.
16869
+ # @return [Types::DriftCheckExplainability]
16870
+ #
16871
+ # @!attribute [rw] model_quality
16872
+ # Represents the drift check model quality baselines that can be used
16873
+ # when the model monitor is set using the model package.
16874
+ # @return [Types::DriftCheckModelQuality]
16875
+ #
16876
+ # @!attribute [rw] model_data_quality
16877
+ # Represents the drift check model data quality baselines that can be
16878
+ # used when the model monitor is set using the model package.
16879
+ # @return [Types::DriftCheckModelDataQuality]
16880
+ #
16881
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DriftCheckBaselines AWS API Documentation
16882
+ #
16883
+ class DriftCheckBaselines < Struct.new(
16884
+ :bias,
16885
+ :explainability,
16886
+ :model_quality,
16887
+ :model_data_quality)
16888
+ SENSITIVE = []
16889
+ include Aws::Structure
16890
+ end
16891
+
16892
+ # Represents the drift check bias baselines that can be used when the
16893
+ # model monitor is set using the model package.
16894
+ #
16895
+ # @note When making an API call, you may pass DriftCheckBias
16896
+ # data as a hash:
16897
+ #
16898
+ # {
16899
+ # config_file: {
16900
+ # content_type: "ContentType",
16901
+ # content_digest: "ContentDigest",
16902
+ # s3_uri: "S3Uri", # required
16903
+ # },
16904
+ # pre_training_constraints: {
16905
+ # content_type: "ContentType", # required
16906
+ # content_digest: "ContentDigest",
16907
+ # s3_uri: "S3Uri", # required
16908
+ # },
16909
+ # post_training_constraints: {
16910
+ # content_type: "ContentType", # required
16911
+ # content_digest: "ContentDigest",
16912
+ # s3_uri: "S3Uri", # required
16913
+ # },
16914
+ # }
16915
+ #
16916
+ # @!attribute [rw] config_file
16917
+ # The bias config file for a model.
16918
+ # @return [Types::FileSource]
16919
+ #
16920
+ # @!attribute [rw] pre_training_constraints
16921
+ # @return [Types::MetricsSource]
16922
+ #
16923
+ # @!attribute [rw] post_training_constraints
16924
+ # @return [Types::MetricsSource]
16925
+ #
16926
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DriftCheckBias AWS API Documentation
16927
+ #
16928
+ class DriftCheckBias < Struct.new(
16929
+ :config_file,
16930
+ :pre_training_constraints,
16931
+ :post_training_constraints)
16932
+ SENSITIVE = []
16933
+ include Aws::Structure
16934
+ end
16935
+
16936
+ # Represents the drift check explainability baselines that can be used
16937
+ # when the model monitor is set using the model package.
16938
+ #
16939
+ # @note When making an API call, you may pass DriftCheckExplainability
16940
+ # data as a hash:
16941
+ #
16942
+ # {
16943
+ # constraints: {
16944
+ # content_type: "ContentType", # required
16945
+ # content_digest: "ContentDigest",
16946
+ # s3_uri: "S3Uri", # required
16947
+ # },
16948
+ # config_file: {
16949
+ # content_type: "ContentType",
16950
+ # content_digest: "ContentDigest",
16951
+ # s3_uri: "S3Uri", # required
16952
+ # },
16953
+ # }
16954
+ #
16955
+ # @!attribute [rw] constraints
16956
+ # @return [Types::MetricsSource]
16957
+ #
16958
+ # @!attribute [rw] config_file
16959
+ # The explainability config file for the model.
16960
+ # @return [Types::FileSource]
16961
+ #
16962
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DriftCheckExplainability AWS API Documentation
16963
+ #
16964
+ class DriftCheckExplainability < Struct.new(
16965
+ :constraints,
16966
+ :config_file)
16967
+ SENSITIVE = []
16968
+ include Aws::Structure
16969
+ end
16970
+
16971
+ # Represents the drift check data quality baselines that can be used
16972
+ # when the model monitor is set using the model package.
16973
+ #
16974
+ # @note When making an API call, you may pass DriftCheckModelDataQuality
16975
+ # data as a hash:
16976
+ #
16977
+ # {
16978
+ # statistics: {
16979
+ # content_type: "ContentType", # required
16980
+ # content_digest: "ContentDigest",
16981
+ # s3_uri: "S3Uri", # required
16982
+ # },
16983
+ # constraints: {
16984
+ # content_type: "ContentType", # required
16985
+ # content_digest: "ContentDigest",
16986
+ # s3_uri: "S3Uri", # required
16987
+ # },
16988
+ # }
16989
+ #
16990
+ # @!attribute [rw] statistics
16991
+ # @return [Types::MetricsSource]
16992
+ #
16993
+ # @!attribute [rw] constraints
16994
+ # @return [Types::MetricsSource]
16995
+ #
16996
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DriftCheckModelDataQuality AWS API Documentation
16997
+ #
16998
+ class DriftCheckModelDataQuality < Struct.new(
16999
+ :statistics,
17000
+ :constraints)
17001
+ SENSITIVE = []
17002
+ include Aws::Structure
17003
+ end
17004
+
17005
+ # Represents the drift check model quality baselines that can be used
17006
+ # when the model monitor is set using the model package.
17007
+ #
17008
+ # @note When making an API call, you may pass DriftCheckModelQuality
17009
+ # data as a hash:
17010
+ #
17011
+ # {
17012
+ # statistics: {
17013
+ # content_type: "ContentType", # required
17014
+ # content_digest: "ContentDigest",
17015
+ # s3_uri: "S3Uri", # required
17016
+ # },
17017
+ # constraints: {
17018
+ # content_type: "ContentType", # required
17019
+ # content_digest: "ContentDigest",
17020
+ # s3_uri: "S3Uri", # required
17021
+ # },
17022
+ # }
17023
+ #
17024
+ # @!attribute [rw] statistics
17025
+ # @return [Types::MetricsSource]
17026
+ #
17027
+ # @!attribute [rw] constraints
17028
+ # @return [Types::MetricsSource]
17029
+ #
17030
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DriftCheckModelQuality AWS API Documentation
17031
+ #
17032
+ class DriftCheckModelQuality < Struct.new(
17033
+ :statistics,
17034
+ :constraints)
17035
+ SENSITIVE = []
17036
+ include Aws::Structure
17037
+ end
17038
+
17039
+ # A directed edge connecting two lineage entities.
17040
+ #
17041
+ # @!attribute [rw] source_arn
17042
+ # The Amazon Resource Name (ARN) of the source lineage entity of the
17043
+ # directed edge.
17044
+ # @return [String]
17045
+ #
17046
+ # @!attribute [rw] destination_arn
17047
+ # The Amazon Resource Name (ARN) of the destination lineage entity of
17048
+ # the directed edge.
17049
+ # @return [String]
17050
+ #
17051
+ # @!attribute [rw] association_type
17052
+ # The type of the Association(Edge) between the source and
17053
+ # destination. For example `ContributedTo`, `Produced`, or
17054
+ # `DerivedFrom`.
17055
+ # @return [String]
17056
+ #
17057
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/Edge AWS API Documentation
17058
+ #
17059
+ class Edge < Struct.new(
17060
+ :source_arn,
17061
+ :destination_arn,
17062
+ :association_type)
17063
+ SENSITIVE = []
17064
+ include Aws::Structure
17065
+ end
17066
+
16077
17067
  # The model on the edge device.
16078
17068
  #
16079
17069
  # @!attribute [rw] model_name
@@ -16530,6 +17520,78 @@ module Aws::SageMaker
16530
17520
  include Aws::Structure
16531
17521
  end
16532
17522
 
17523
+ # The endpoint configuration for the load test.
17524
+ #
17525
+ # @note When making an API call, you may pass EndpointInputConfiguration
17526
+ # data as a hash:
17527
+ #
17528
+ # {
17529
+ # 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
17530
+ # inference_specification_name: "InferenceSpecificationName",
17531
+ # environment_parameter_ranges: {
17532
+ # categorical_parameter_ranges: [
17533
+ # {
17534
+ # name: "String64", # required
17535
+ # value: ["String128"], # required
17536
+ # },
17537
+ # ],
17538
+ # },
17539
+ # }
17540
+ #
17541
+ # @!attribute [rw] instance_type
17542
+ # The instance types to use for the load test.
17543
+ # @return [String]
17544
+ #
17545
+ # @!attribute [rw] inference_specification_name
17546
+ # The inference specification name in the model package version.
17547
+ # @return [String]
17548
+ #
17549
+ # @!attribute [rw] environment_parameter_ranges
17550
+ # The parameter you want to benchmark against.
17551
+ # @return [Types::EnvironmentParameterRanges]
17552
+ #
17553
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/EndpointInputConfiguration AWS API Documentation
17554
+ #
17555
+ class EndpointInputConfiguration < Struct.new(
17556
+ :instance_type,
17557
+ :inference_specification_name,
17558
+ :environment_parameter_ranges)
17559
+ SENSITIVE = []
17560
+ include Aws::Structure
17561
+ end
17562
+
17563
+ # The endpoint configuration made by Inference Recommender during a
17564
+ # recommendation job.
17565
+ #
17566
+ # @!attribute [rw] endpoint_name
17567
+ # The name of the endpoint made during a recommendation job.
17568
+ # @return [String]
17569
+ #
17570
+ # @!attribute [rw] variant_name
17571
+ # The name of the production variant (deployed model) made during a
17572
+ # recommendation job.
17573
+ # @return [String]
17574
+ #
17575
+ # @!attribute [rw] instance_type
17576
+ # The instance type recommended by Amazon SageMaker Inference
17577
+ # Recommender.
17578
+ # @return [String]
17579
+ #
17580
+ # @!attribute [rw] initial_instance_count
17581
+ # The number of instances recommended to launch initially.
17582
+ # @return [Integer]
17583
+ #
17584
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/EndpointOutputConfiguration AWS API Documentation
17585
+ #
17586
+ class EndpointOutputConfiguration < Struct.new(
17587
+ :endpoint_name,
17588
+ :variant_name,
17589
+ :instance_type,
17590
+ :initial_instance_count)
17591
+ SENSITIVE = []
17592
+ include Aws::Structure
17593
+ end
17594
+
16533
17595
  # Provides summary information for an endpoint.
16534
17596
  #
16535
17597
  # @!attribute [rw] endpoint_name
@@ -16599,6 +17661,59 @@ module Aws::SageMaker
16599
17661
  include Aws::Structure
16600
17662
  end
16601
17663
 
17664
+ # A list of environment parameters suggested by the Amazon SageMaker
17665
+ # Inference Recommender.
17666
+ #
17667
+ # @!attribute [rw] key
17668
+ # The environment key suggested by the Amazon SageMaker Inference
17669
+ # Recommender.
17670
+ # @return [String]
17671
+ #
17672
+ # @!attribute [rw] value_type
17673
+ # The value type suggested by the Amazon SageMaker Inference
17674
+ # Recommender.
17675
+ # @return [String]
17676
+ #
17677
+ # @!attribute [rw] value
17678
+ # The value suggested by the Amazon SageMaker Inference Recommender.
17679
+ # @return [String]
17680
+ #
17681
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/EnvironmentParameter AWS API Documentation
17682
+ #
17683
+ class EnvironmentParameter < Struct.new(
17684
+ :key,
17685
+ :value_type,
17686
+ :value)
17687
+ SENSITIVE = []
17688
+ include Aws::Structure
17689
+ end
17690
+
17691
+ # Specifies the range of environment parameters
17692
+ #
17693
+ # @note When making an API call, you may pass EnvironmentParameterRanges
17694
+ # data as a hash:
17695
+ #
17696
+ # {
17697
+ # categorical_parameter_ranges: [
17698
+ # {
17699
+ # name: "String64", # required
17700
+ # value: ["String128"], # required
17701
+ # },
17702
+ # ],
17703
+ # }
17704
+ #
17705
+ # @!attribute [rw] categorical_parameter_ranges
17706
+ # Specified a list of parameters for each category.
17707
+ # @return [Array<Types::CategoricalParameter>]
17708
+ #
17709
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/EnvironmentParameterRanges AWS API Documentation
17710
+ #
17711
+ class EnvironmentParameterRanges < Struct.new(
17712
+ :categorical_parameter_ranges)
17713
+ SENSITIVE = []
17714
+ include Aws::Structure
17715
+ end
17716
+
16602
17717
  # The properties of an experiment as returned by the Search API.
16603
17718
  #
16604
17719
  # @!attribute [rw] experiment_name
@@ -16636,7 +17751,7 @@ module Aws::SageMaker
16636
17751
  #
16637
17752
  # @!attribute [rw] last_modified_by
16638
17753
  # Information about the user who created or modified an experiment,
16639
- # trial, trial component, or project.
17754
+ # trial, trial component, lineage group, or project.
16640
17755
  # @return [Types::UserContext]
16641
17756
  #
16642
17757
  # @!attribute [rw] tags
@@ -16974,6 +18089,39 @@ module Aws::SageMaker
16974
18089
  include Aws::Structure
16975
18090
  end
16976
18091
 
18092
+ # Contains details regarding the file source.
18093
+ #
18094
+ # @note When making an API call, you may pass FileSource
18095
+ # data as a hash:
18096
+ #
18097
+ # {
18098
+ # content_type: "ContentType",
18099
+ # content_digest: "ContentDigest",
18100
+ # s3_uri: "S3Uri", # required
18101
+ # }
18102
+ #
18103
+ # @!attribute [rw] content_type
18104
+ # The type of content stored in the file source.
18105
+ # @return [String]
18106
+ #
18107
+ # @!attribute [rw] content_digest
18108
+ # The digest of the file source.
18109
+ # @return [String]
18110
+ #
18111
+ # @!attribute [rw] s3_uri
18112
+ # The Amazon S3 URI for the file source.
18113
+ # @return [String]
18114
+ #
18115
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/FileSource AWS API Documentation
18116
+ #
18117
+ class FileSource < Struct.new(
18118
+ :content_type,
18119
+ :content_digest,
18120
+ :s3_uri)
18121
+ SENSITIVE = []
18122
+ include Aws::Structure
18123
+ end
18124
+
16977
18125
  # The Amazon Elastic File System (EFS) storage configuration for a
16978
18126
  # SageMaker image.
16979
18127
  #
@@ -17409,6 +18557,43 @@ module Aws::SageMaker
17409
18557
  include Aws::Structure
17410
18558
  end
17411
18559
 
18560
+ # @note When making an API call, you may pass GetLineageGroupPolicyRequest
18561
+ # data as a hash:
18562
+ #
18563
+ # {
18564
+ # lineage_group_name: "LineageGroupNameOrArn", # required
18565
+ # }
18566
+ #
18567
+ # @!attribute [rw] lineage_group_name
18568
+ # The name or Amazon Resource Name (ARN) of the lineage group.
18569
+ # @return [String]
18570
+ #
18571
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/GetLineageGroupPolicyRequest AWS API Documentation
18572
+ #
18573
+ class GetLineageGroupPolicyRequest < Struct.new(
18574
+ :lineage_group_name)
18575
+ SENSITIVE = []
18576
+ include Aws::Structure
18577
+ end
18578
+
18579
+ # @!attribute [rw] lineage_group_arn
18580
+ # The Amazon Resource Name (ARN) of the lineage group.
18581
+ # @return [String]
18582
+ #
18583
+ # @!attribute [rw] resource_policy
18584
+ # The resource policy that gives access to the lineage group in
18585
+ # another account.
18586
+ # @return [String]
18587
+ #
18588
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/GetLineageGroupPolicyResponse AWS API Documentation
18589
+ #
18590
+ class GetLineageGroupPolicyResponse < Struct.new(
18591
+ :lineage_group_arn,
18592
+ :resource_policy)
18593
+ SENSITIVE = []
18594
+ include Aws::Structure
18595
+ end
18596
+
17412
18597
  # @note When making an API call, you may pass GetModelPackageGroupPolicyInput
17413
18598
  # data as a hash:
17414
18599
  #
@@ -18682,8 +19867,7 @@ module Aws::SageMaker
18682
19867
  #
18683
19868
  # * For [3D point cloud][4] and [video frame][5] labeling jobs, the
18684
19869
  # maximum is 30 days (2952,000 seconds) for non-AL mode. For most
18685
- # users, the maximum is also 30 days. If you want to change these
18686
- # limits, contact Amazon Web Services Support.
19870
+ # users, the maximum is also 30 days.
18687
19871
  #
18688
19872
  #
18689
19873
  #
@@ -18705,8 +19889,7 @@ module Aws::SageMaker
18705
19889
  #
18706
19890
  # * If you choose a private or vendor workforce, the default value is
18707
19891
  # 30 days (2592,000 seconds) for non-AL mode. For most users, the
18708
- # maximum is also 30 days. If you want to change this limit, contact
18709
- # Amazon Web Services Support.
19892
+ # maximum is also 30 days.
18710
19893
  # @return [Integer]
18711
19894
  #
18712
19895
  # @!attribute [rw] max_concurrent_task_count
@@ -19742,6 +20925,91 @@ module Aws::SageMaker
19742
20925
  include Aws::Structure
19743
20926
  end
19744
20927
 
20928
+ # A list of recommendations made by Amazon SageMaker Inference
20929
+ # Recommender.
20930
+ #
20931
+ # @!attribute [rw] metrics
20932
+ # The metrics used to decide what recommendation to make.
20933
+ # @return [Types::RecommendationMetrics]
20934
+ #
20935
+ # @!attribute [rw] endpoint_configuration
20936
+ # Defines the endpoint configuration parameters.
20937
+ # @return [Types::EndpointOutputConfiguration]
20938
+ #
20939
+ # @!attribute [rw] model_configuration
20940
+ # Defines the model configuration.
20941
+ # @return [Types::ModelConfiguration]
20942
+ #
20943
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/InferenceRecommendation AWS API Documentation
20944
+ #
20945
+ class InferenceRecommendation < Struct.new(
20946
+ :metrics,
20947
+ :endpoint_configuration,
20948
+ :model_configuration)
20949
+ SENSITIVE = []
20950
+ include Aws::Structure
20951
+ end
20952
+
20953
+ # A structure that contains a list of recommendation jobs.
20954
+ #
20955
+ # @!attribute [rw] job_name
20956
+ # The name of the job.
20957
+ # @return [String]
20958
+ #
20959
+ # @!attribute [rw] job_description
20960
+ # The job description.
20961
+ # @return [String]
20962
+ #
20963
+ # @!attribute [rw] job_type
20964
+ # The recommendation job type.
20965
+ # @return [String]
20966
+ #
20967
+ # @!attribute [rw] job_arn
20968
+ # The Amazon Resource Name (ARN) of the recommendation job.
20969
+ # @return [String]
20970
+ #
20971
+ # @!attribute [rw] status
20972
+ # The status of the job.
20973
+ # @return [String]
20974
+ #
20975
+ # @!attribute [rw] creation_time
20976
+ # A timestamp that shows when the job was created.
20977
+ # @return [Time]
20978
+ #
20979
+ # @!attribute [rw] completion_time
20980
+ # A timestamp that shows when the job completed.
20981
+ # @return [Time]
20982
+ #
20983
+ # @!attribute [rw] role_arn
20984
+ # The Amazon Resource Name (ARN) of an IAM role that enables Amazon
20985
+ # SageMaker to perform tasks on your behalf.
20986
+ # @return [String]
20987
+ #
20988
+ # @!attribute [rw] last_modified_time
20989
+ # A timestamp that shows when the job was last modified.
20990
+ # @return [Time]
20991
+ #
20992
+ # @!attribute [rw] failure_reason
20993
+ # If the job fails, provides information why the job failed.
20994
+ # @return [String]
20995
+ #
20996
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/InferenceRecommendationsJob AWS API Documentation
20997
+ #
20998
+ class InferenceRecommendationsJob < Struct.new(
20999
+ :job_name,
21000
+ :job_description,
21001
+ :job_type,
21002
+ :job_arn,
21003
+ :status,
21004
+ :creation_time,
21005
+ :completion_time,
21006
+ :role_arn,
21007
+ :last_modified_time,
21008
+ :failure_reason)
21009
+ SENSITIVE = []
21010
+ include Aws::Structure
21011
+ end
21012
+
19745
21013
  # Defines how to perform inference generation after a training job is
19746
21014
  # run.
19747
21015
  #
@@ -19759,6 +21027,12 @@ module Aws::SageMaker
19759
21027
  # environment: {
19760
21028
  # "EnvironmentKey" => "EnvironmentValue",
19761
21029
  # },
21030
+ # model_input: {
21031
+ # data_input_config: "DataInputConfig", # required
21032
+ # },
21033
+ # framework: "String",
21034
+ # framework_version: "FrameworkVersion",
21035
+ # nearest_model_name: "String",
19762
21036
  # },
19763
21037
  # ],
19764
21038
  # 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 +22154,41 @@ module Aws::SageMaker
20880
22154
  include Aws::Structure
20881
22155
  end
20882
22156
 
22157
+ # Lists a summary of the properties of a lineage group. A lineage group
22158
+ # provides a group of shareable lineage entity resources.
22159
+ #
22160
+ # @!attribute [rw] lineage_group_arn
22161
+ # The Amazon Resource Name (ARN) of the lineage group resource.
22162
+ # @return [String]
22163
+ #
22164
+ # @!attribute [rw] lineage_group_name
22165
+ # The name or Amazon Resource Name (ARN) of the lineage group.
22166
+ # @return [String]
22167
+ #
22168
+ # @!attribute [rw] display_name
22169
+ # The display name of the lineage group summary.
22170
+ # @return [String]
22171
+ #
22172
+ # @!attribute [rw] creation_time
22173
+ # The creation time of the lineage group summary.
22174
+ # @return [Time]
22175
+ #
22176
+ # @!attribute [rw] last_modified_time
22177
+ # The last modified time of the lineage group summary.
22178
+ # @return [Time]
22179
+ #
22180
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/LineageGroupSummary AWS API Documentation
22181
+ #
22182
+ class LineageGroupSummary < Struct.new(
22183
+ :lineage_group_arn,
22184
+ :lineage_group_name,
22185
+ :display_name,
22186
+ :creation_time,
22187
+ :last_modified_time)
22188
+ SENSITIVE = []
22189
+ include Aws::Structure
22190
+ end
22191
+
20883
22192
  # @note When making an API call, you may pass ListActionsRequest
20884
22193
  # data as a hash:
20885
22194
  #
@@ -22997,6 +24306,107 @@ module Aws::SageMaker
22997
24306
  include Aws::Structure
22998
24307
  end
22999
24308
 
24309
+ # @note When making an API call, you may pass ListInferenceRecommendationsJobsRequest
24310
+ # data as a hash:
24311
+ #
24312
+ # {
24313
+ # creation_time_after: Time.now,
24314
+ # creation_time_before: Time.now,
24315
+ # last_modified_time_after: Time.now,
24316
+ # last_modified_time_before: Time.now,
24317
+ # name_contains: "NameContains",
24318
+ # status_equals: "PENDING", # accepts PENDING, IN_PROGRESS, COMPLETED, FAILED, STOPPING, STOPPED
24319
+ # sort_by: "Name", # accepts Name, CreationTime, Status
24320
+ # sort_order: "Ascending", # accepts Ascending, Descending
24321
+ # next_token: "NextToken",
24322
+ # max_results: 1,
24323
+ # }
24324
+ #
24325
+ # @!attribute [rw] creation_time_after
24326
+ # A filter that returns only jobs created after the specified time
24327
+ # (timestamp).
24328
+ # @return [Time]
24329
+ #
24330
+ # @!attribute [rw] creation_time_before
24331
+ # A filter that returns only jobs created before the specified time
24332
+ # (timestamp).
24333
+ # @return [Time]
24334
+ #
24335
+ # @!attribute [rw] last_modified_time_after
24336
+ # A filter that returns only jobs that were last modified after the
24337
+ # specified time (timestamp).
24338
+ # @return [Time]
24339
+ #
24340
+ # @!attribute [rw] last_modified_time_before
24341
+ # A filter that returns only jobs that were last modified before the
24342
+ # specified time (timestamp).
24343
+ # @return [Time]
24344
+ #
24345
+ # @!attribute [rw] name_contains
24346
+ # A string in the job name. This filter returns only recommendations
24347
+ # whose name contains the specified string.
24348
+ # @return [String]
24349
+ #
24350
+ # @!attribute [rw] status_equals
24351
+ # A filter that retrieves only inference recommendations jobs with a
24352
+ # specific status.
24353
+ # @return [String]
24354
+ #
24355
+ # @!attribute [rw] sort_by
24356
+ # The parameter by which to sort the results.
24357
+ # @return [String]
24358
+ #
24359
+ # @!attribute [rw] sort_order
24360
+ # The sort order for the results.
24361
+ # @return [String]
24362
+ #
24363
+ # @!attribute [rw] next_token
24364
+ # If the response to a previous
24365
+ # `ListInferenceRecommendationsJobsRequest` request was truncated, the
24366
+ # response includes a `NextToken`. To retrieve the next set of
24367
+ # recommendations, use the token in the next request.
24368
+ # @return [String]
24369
+ #
24370
+ # @!attribute [rw] max_results
24371
+ # The maximum number of recommendations to return in the response.
24372
+ # @return [Integer]
24373
+ #
24374
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListInferenceRecommendationsJobsRequest AWS API Documentation
24375
+ #
24376
+ class ListInferenceRecommendationsJobsRequest < Struct.new(
24377
+ :creation_time_after,
24378
+ :creation_time_before,
24379
+ :last_modified_time_after,
24380
+ :last_modified_time_before,
24381
+ :name_contains,
24382
+ :status_equals,
24383
+ :sort_by,
24384
+ :sort_order,
24385
+ :next_token,
24386
+ :max_results)
24387
+ SENSITIVE = []
24388
+ include Aws::Structure
24389
+ end
24390
+
24391
+ # @!attribute [rw] inference_recommendations_jobs
24392
+ # The recommendations created from the Amazon SageMaker Inference
24393
+ # Recommender job.
24394
+ # @return [Array<Types::InferenceRecommendationsJob>]
24395
+ #
24396
+ # @!attribute [rw] next_token
24397
+ # A token for getting the next set of recommendations, if there are
24398
+ # any.
24399
+ # @return [String]
24400
+ #
24401
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListInferenceRecommendationsJobsResponse AWS API Documentation
24402
+ #
24403
+ class ListInferenceRecommendationsJobsResponse < Struct.new(
24404
+ :inference_recommendations_jobs,
24405
+ :next_token)
24406
+ SENSITIVE = []
24407
+ include Aws::Structure
24408
+ end
24409
+
23000
24410
  # @note When making an API call, you may pass ListLabelingJobsForWorkteamRequest
23001
24411
  # data as a hash:
23002
24412
  #
@@ -23186,6 +24596,80 @@ module Aws::SageMaker
23186
24596
  include Aws::Structure
23187
24597
  end
23188
24598
 
24599
+ # @note When making an API call, you may pass ListLineageGroupsRequest
24600
+ # data as a hash:
24601
+ #
24602
+ # {
24603
+ # created_after: Time.now,
24604
+ # created_before: Time.now,
24605
+ # sort_by: "Name", # accepts Name, CreationTime
24606
+ # sort_order: "Ascending", # accepts Ascending, Descending
24607
+ # next_token: "NextToken",
24608
+ # max_results: 1,
24609
+ # }
24610
+ #
24611
+ # @!attribute [rw] created_after
24612
+ # A timestamp to filter against lineage groups created after a certain
24613
+ # point in time.
24614
+ # @return [Time]
24615
+ #
24616
+ # @!attribute [rw] created_before
24617
+ # A timestamp to filter against lineage groups created before a
24618
+ # certain point in time.
24619
+ # @return [Time]
24620
+ #
24621
+ # @!attribute [rw] sort_by
24622
+ # The parameter by which to sort the results. The default is
24623
+ # `CreationTime`.
24624
+ # @return [String]
24625
+ #
24626
+ # @!attribute [rw] sort_order
24627
+ # The sort order for the results. The default is `Ascending`.
24628
+ # @return [String]
24629
+ #
24630
+ # @!attribute [rw] next_token
24631
+ # If the response is truncated, SageMaker returns this token. To
24632
+ # retrieve the next set of algorithms, use it in the subsequent
24633
+ # request.
24634
+ # @return [String]
24635
+ #
24636
+ # @!attribute [rw] max_results
24637
+ # The maximum number of endpoints to return in the response. This
24638
+ # value defaults to 10.
24639
+ # @return [Integer]
24640
+ #
24641
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListLineageGroupsRequest AWS API Documentation
24642
+ #
24643
+ class ListLineageGroupsRequest < Struct.new(
24644
+ :created_after,
24645
+ :created_before,
24646
+ :sort_by,
24647
+ :sort_order,
24648
+ :next_token,
24649
+ :max_results)
24650
+ SENSITIVE = []
24651
+ include Aws::Structure
24652
+ end
24653
+
24654
+ # @!attribute [rw] lineage_group_summaries
24655
+ # A list of lineage groups and their properties.
24656
+ # @return [Array<Types::LineageGroupSummary>]
24657
+ #
24658
+ # @!attribute [rw] next_token
24659
+ # If the response is truncated, SageMaker returns this token. To
24660
+ # retrieve the next set of algorithms, use it in the subsequent
24661
+ # request.
24662
+ # @return [String]
24663
+ #
24664
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListLineageGroupsResponse AWS API Documentation
24665
+ #
24666
+ class ListLineageGroupsResponse < Struct.new(
24667
+ :lineage_group_summaries,
24668
+ :next_token)
24669
+ SENSITIVE = []
24670
+ include Aws::Structure
24671
+ end
24672
+
23189
24673
  # @note When making an API call, you may pass ListModelBiasJobDefinitionsRequest
23190
24674
  # data as a hash:
23191
24675
  #
@@ -23359,6 +24843,68 @@ module Aws::SageMaker
23359
24843
  include Aws::Structure
23360
24844
  end
23361
24845
 
24846
+ # @note When making an API call, you may pass ListModelMetadataRequest
24847
+ # data as a hash:
24848
+ #
24849
+ # {
24850
+ # search_expression: {
24851
+ # filters: [
24852
+ # {
24853
+ # name: "Domain", # required, accepts Domain, Framework, Task, FrameworkVersion
24854
+ # value: "String256", # required
24855
+ # },
24856
+ # ],
24857
+ # },
24858
+ # next_token: "NextToken",
24859
+ # max_results: 1,
24860
+ # }
24861
+ #
24862
+ # @!attribute [rw] search_expression
24863
+ # One or more filters that searches for the specified resource or
24864
+ # resources in a search. All resource objects that satisfy the
24865
+ # expression's condition are included in the search results. Specify
24866
+ # the Framework, FrameworkVersion, Domain or Task to filter supported.
24867
+ # Filter names and values are case-sensitive.
24868
+ # @return [Types::ModelMetadataSearchExpression]
24869
+ #
24870
+ # @!attribute [rw] next_token
24871
+ # If the response to a previous `ListModelMetadataResponse` request
24872
+ # was truncated, the response includes a NextToken. To retrieve the
24873
+ # next set of model metadata, use the token in the next request.
24874
+ # @return [String]
24875
+ #
24876
+ # @!attribute [rw] max_results
24877
+ # The maximum number of models to return in the response.
24878
+ # @return [Integer]
24879
+ #
24880
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListModelMetadataRequest AWS API Documentation
24881
+ #
24882
+ class ListModelMetadataRequest < Struct.new(
24883
+ :search_expression,
24884
+ :next_token,
24885
+ :max_results)
24886
+ SENSITIVE = []
24887
+ include Aws::Structure
24888
+ end
24889
+
24890
+ # @!attribute [rw] model_metadata_summaries
24891
+ # A structure that holds model metadata.
24892
+ # @return [Array<Types::ModelMetadataSummary>]
24893
+ #
24894
+ # @!attribute [rw] next_token
24895
+ # A token for getting the next set of recommendations, if there are
24896
+ # any.
24897
+ # @return [String]
24898
+ #
24899
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListModelMetadataResponse AWS API Documentation
24900
+ #
24901
+ class ListModelMetadataResponse < Struct.new(
24902
+ :model_metadata_summaries,
24903
+ :next_token)
24904
+ SENSITIVE = []
24905
+ include Aws::Structure
24906
+ end
24907
+
23362
24908
  # @note When making an API call, you may pass ListModelPackageGroupsInput
23363
24909
  # data as a hash:
23364
24910
  #
@@ -25867,6 +27413,27 @@ module Aws::SageMaker
25867
27413
  include Aws::Structure
25868
27414
  end
25869
27415
 
27416
+ # Defines the model configuration. Includes the specification name and
27417
+ # environment parameters.
27418
+ #
27419
+ # @!attribute [rw] inference_specification_name
27420
+ # The inference specification name in the model package version.
27421
+ # @return [String]
27422
+ #
27423
+ # @!attribute [rw] environment_parameters
27424
+ # Defines the environment parameters that includes key, value types,
27425
+ # and values.
27426
+ # @return [Array<Types::EnvironmentParameter>]
27427
+ #
27428
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ModelConfiguration AWS API Documentation
27429
+ #
27430
+ class ModelConfiguration < Struct.new(
27431
+ :inference_specification_name,
27432
+ :environment_parameters)
27433
+ SENSITIVE = []
27434
+ include Aws::Structure
27435
+ end
27436
+
25870
27437
  # Data quality constraints and statistics for a model.
25871
27438
  #
25872
27439
  # @note When making an API call, you may pass ModelDataQuality
@@ -26081,6 +27648,144 @@ module Aws::SageMaker
26081
27648
  include Aws::Structure
26082
27649
  end
26083
27650
 
27651
+ # Input object for the model.
27652
+ #
27653
+ # @note When making an API call, you may pass ModelInput
27654
+ # data as a hash:
27655
+ #
27656
+ # {
27657
+ # data_input_config: "DataInputConfig", # required
27658
+ # }
27659
+ #
27660
+ # @!attribute [rw] data_input_config
27661
+ # The input configuration object for the model.
27662
+ # @return [String]
27663
+ #
27664
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ModelInput AWS API Documentation
27665
+ #
27666
+ class ModelInput < Struct.new(
27667
+ :data_input_config)
27668
+ SENSITIVE = []
27669
+ include Aws::Structure
27670
+ end
27671
+
27672
+ # The model latency threshold.
27673
+ #
27674
+ # @note When making an API call, you may pass ModelLatencyThreshold
27675
+ # data as a hash:
27676
+ #
27677
+ # {
27678
+ # percentile: "String64",
27679
+ # value_in_milliseconds: 1,
27680
+ # }
27681
+ #
27682
+ # @!attribute [rw] percentile
27683
+ # The model latency percentile threshold.
27684
+ # @return [String]
27685
+ #
27686
+ # @!attribute [rw] value_in_milliseconds
27687
+ # The model latency percentile value in milliseconds.
27688
+ # @return [Integer]
27689
+ #
27690
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ModelLatencyThreshold AWS API Documentation
27691
+ #
27692
+ class ModelLatencyThreshold < Struct.new(
27693
+ :percentile,
27694
+ :value_in_milliseconds)
27695
+ SENSITIVE = []
27696
+ include Aws::Structure
27697
+ end
27698
+
27699
+ # Part of the search expression. You can specify the name and value
27700
+ # (domain, task, framework, framework version, task, and model).
27701
+ #
27702
+ # @note When making an API call, you may pass ModelMetadataFilter
27703
+ # data as a hash:
27704
+ #
27705
+ # {
27706
+ # name: "Domain", # required, accepts Domain, Framework, Task, FrameworkVersion
27707
+ # value: "String256", # required
27708
+ # }
27709
+ #
27710
+ # @!attribute [rw] name
27711
+ # The name of the of the model to filter by.
27712
+ # @return [String]
27713
+ #
27714
+ # @!attribute [rw] value
27715
+ # The value to filter the model metadata.
27716
+ # @return [String]
27717
+ #
27718
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ModelMetadataFilter AWS API Documentation
27719
+ #
27720
+ class ModelMetadataFilter < Struct.new(
27721
+ :name,
27722
+ :value)
27723
+ SENSITIVE = []
27724
+ include Aws::Structure
27725
+ end
27726
+
27727
+ # One or more filters that searches for the specified resource or
27728
+ # resources in a search. All resource objects that satisfy the
27729
+ # expression's condition are included in the search results
27730
+ #
27731
+ # @note When making an API call, you may pass ModelMetadataSearchExpression
27732
+ # data as a hash:
27733
+ #
27734
+ # {
27735
+ # filters: [
27736
+ # {
27737
+ # name: "Domain", # required, accepts Domain, Framework, Task, FrameworkVersion
27738
+ # value: "String256", # required
27739
+ # },
27740
+ # ],
27741
+ # }
27742
+ #
27743
+ # @!attribute [rw] filters
27744
+ # A list of filter objects.
27745
+ # @return [Array<Types::ModelMetadataFilter>]
27746
+ #
27747
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ModelMetadataSearchExpression AWS API Documentation
27748
+ #
27749
+ class ModelMetadataSearchExpression < Struct.new(
27750
+ :filters)
27751
+ SENSITIVE = []
27752
+ include Aws::Structure
27753
+ end
27754
+
27755
+ # A summary of the model metadata.
27756
+ #
27757
+ # @!attribute [rw] domain
27758
+ # The machine learning domain of the model.
27759
+ # @return [String]
27760
+ #
27761
+ # @!attribute [rw] framework
27762
+ # The machine learning framework of the model.
27763
+ # @return [String]
27764
+ #
27765
+ # @!attribute [rw] task
27766
+ # The machine learning task of the model.
27767
+ # @return [String]
27768
+ #
27769
+ # @!attribute [rw] model
27770
+ # The name of the model.
27771
+ # @return [String]
27772
+ #
27773
+ # @!attribute [rw] framework_version
27774
+ # The framework version of the model.
27775
+ # @return [String]
27776
+ #
27777
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ModelMetadataSummary AWS API Documentation
27778
+ #
27779
+ class ModelMetadataSummary < Struct.new(
27780
+ :domain,
27781
+ :framework,
27782
+ :task,
27783
+ :model,
27784
+ :framework_version)
27785
+ SENSITIVE = []
27786
+ include Aws::Structure
27787
+ end
27788
+
26084
27789
  # Contains metrics captured from a model.
26085
27790
  #
26086
27791
  # @note When making an API call, you may pass ModelMetrics
@@ -26117,6 +27822,16 @@ module Aws::SageMaker
26117
27822
  # content_digest: "ContentDigest",
26118
27823
  # s3_uri: "S3Uri", # required
26119
27824
  # },
27825
+ # pre_training_report: {
27826
+ # content_type: "ContentType", # required
27827
+ # content_digest: "ContentDigest",
27828
+ # s3_uri: "S3Uri", # required
27829
+ # },
27830
+ # post_training_report: {
27831
+ # content_type: "ContentType", # required
27832
+ # content_digest: "ContentDigest",
27833
+ # s3_uri: "S3Uri", # required
27834
+ # },
26120
27835
  # },
26121
27836
  # explainability: {
26122
27837
  # report: {
@@ -26240,7 +27955,7 @@ module Aws::SageMaker
26240
27955
  #
26241
27956
  # @!attribute [rw] created_by
26242
27957
  # Information about the user who created or modified an experiment,
26243
- # trial, trial component, or project.
27958
+ # trial, trial component, lineage group, or project.
26244
27959
  # @return [Types::UserContext]
26245
27960
  #
26246
27961
  # @!attribute [rw] metadata_properties
@@ -26258,13 +27973,35 @@ module Aws::SageMaker
26258
27973
  #
26259
27974
  # @!attribute [rw] last_modified_by
26260
27975
  # Information about the user who created or modified an experiment,
26261
- # trial, trial component, or project.
27976
+ # trial, trial component, lineage group, or project.
26262
27977
  # @return [Types::UserContext]
26263
27978
  #
26264
27979
  # @!attribute [rw] approval_description
26265
27980
  # A description provided when the model approval is set.
26266
27981
  # @return [String]
26267
27982
  #
27983
+ # @!attribute [rw] domain
27984
+ # The machine learning domain of your model package and its
27985
+ # components. Common machine learning domains include computer vision
27986
+ # and natural language processing.
27987
+ # @return [String]
27988
+ #
27989
+ # @!attribute [rw] task
27990
+ # The machine learning task your model package accomplishes. Common
27991
+ # machine learning tasks include object detection and image
27992
+ # classification.
27993
+ # @return [String]
27994
+ #
27995
+ # @!attribute [rw] sample_payload_url
27996
+ # The Amazon Simple Storage Service path where the sample payload are
27997
+ # stored. This path must point to a single gzip compressed tar archive
27998
+ # (.tar.gz suffix).
27999
+ # @return [String]
28000
+ #
28001
+ # @!attribute [rw] additional_inference_specifications
28002
+ # An array of additional Inference Specification objects.
28003
+ # @return [Array<Types::AdditionalInferenceSpecificationDefinition>]
28004
+ #
26268
28005
  # @!attribute [rw] tags
26269
28006
  # A list of the tags associated with the model package. For more
26270
28007
  # information, see [Tagging Amazon Web Services resources][1] in the
@@ -26279,6 +28016,11 @@ module Aws::SageMaker
26279
28016
  # The metadata properties for the model package.
26280
28017
  # @return [Hash<String,String>]
26281
28018
  #
28019
+ # @!attribute [rw] drift_check_baselines
28020
+ # Represents the drift check baselines that can be used when the model
28021
+ # monitor is set using the model package.
28022
+ # @return [Types::DriftCheckBaselines]
28023
+ #
26282
28024
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ModelPackage AWS API Documentation
26283
28025
  #
26284
28026
  class ModelPackage < Struct.new(
@@ -26301,8 +28043,13 @@ module Aws::SageMaker
26301
28043
  :last_modified_time,
26302
28044
  :last_modified_by,
26303
28045
  :approval_description,
28046
+ :domain,
28047
+ :task,
28048
+ :sample_payload_url,
28049
+ :additional_inference_specifications,
26304
28050
  :tags,
26305
- :customer_metadata_properties)
28051
+ :customer_metadata_properties,
28052
+ :drift_check_baselines)
26306
28053
  SENSITIVE = []
26307
28054
  include Aws::Structure
26308
28055
  end
@@ -26321,6 +28068,12 @@ module Aws::SageMaker
26321
28068
  # environment: {
26322
28069
  # "EnvironmentKey" => "EnvironmentValue",
26323
28070
  # },
28071
+ # model_input: {
28072
+ # data_input_config: "DataInputConfig", # required
28073
+ # },
28074
+ # framework: "String",
28075
+ # framework_version: "FrameworkVersion",
28076
+ # nearest_model_name: "String",
26324
28077
  # }
26325
28078
  #
26326
28079
  # @!attribute [rw] container_hostname
@@ -26369,6 +28122,25 @@ module Aws::SageMaker
26369
28122
  # of up to 1024. We support up to 16 entries in the map.
26370
28123
  # @return [Hash<String,String>]
26371
28124
  #
28125
+ # @!attribute [rw] model_input
28126
+ # A structure with Model Input details.
28127
+ # @return [Types::ModelInput]
28128
+ #
28129
+ # @!attribute [rw] framework
28130
+ # The machine learning framework of the model package container image.
28131
+ # @return [String]
28132
+ #
28133
+ # @!attribute [rw] framework_version
28134
+ # The framework version of the Model Package Container Image.
28135
+ # @return [String]
28136
+ #
28137
+ # @!attribute [rw] nearest_model_name
28138
+ # The name of a pre-trained machine learning benchmarked by Amazon
28139
+ # SageMaker Inference Recommender model that matches your model. You
28140
+ # can find a list of benchmarked models by calling
28141
+ # `ListModelMetadata`.
28142
+ # @return [String]
28143
+ #
26372
28144
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ModelPackageContainerDefinition AWS API Documentation
26373
28145
  #
26374
28146
  class ModelPackageContainerDefinition < Struct.new(
@@ -26377,7 +28149,11 @@ module Aws::SageMaker
26377
28149
  :image_digest,
26378
28150
  :model_data_url,
26379
28151
  :product_id,
26380
- :environment)
28152
+ :environment,
28153
+ :model_input,
28154
+ :framework,
28155
+ :framework_version,
28156
+ :nearest_model_name)
26381
28157
  SENSITIVE = []
26382
28158
  include Aws::Structure
26383
28159
  end
@@ -26402,7 +28178,7 @@ module Aws::SageMaker
26402
28178
  #
26403
28179
  # @!attribute [rw] created_by
26404
28180
  # Information about the user who created or modified an experiment,
26405
- # trial, trial component, or project.
28181
+ # trial, trial component, lineage group, or project.
26406
28182
  # @return [Types::UserContext]
26407
28183
  #
26408
28184
  # @!attribute [rw] model_package_group_status
@@ -29114,6 +30890,27 @@ module Aws::SageMaker
29114
30890
  # stage status or operational status.
29115
30891
  # @return [Array<Types::ProductionVariantStatus>]
29116
30892
  #
30893
+ # @!attribute [rw] current_serverless_config
30894
+ # The serverless configuration for the endpoint.
30895
+ #
30896
+ # <note markdown="1"> Serverless Inference is in preview release for Amazon SageMaker and
30897
+ # is subject to change. We do not recommend using this feature in
30898
+ # production environments.
30899
+ #
30900
+ # </note>
30901
+ # @return [Types::ProductionVariantServerlessConfig]
30902
+ #
30903
+ # @!attribute [rw] desired_serverless_config
30904
+ # The serverless configuration requested for this deployment, as
30905
+ # specified in the endpoint configuration for the endpoint.
30906
+ #
30907
+ # <note markdown="1"> Serverless Inference is in preview release for Amazon SageMaker and
30908
+ # is subject to change. We do not recommend using this feature in
30909
+ # production environments.
30910
+ #
30911
+ # </note>
30912
+ # @return [Types::ProductionVariantServerlessConfig]
30913
+ #
29117
30914
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/PendingProductionVariantSummary AWS API Documentation
29118
30915
  #
29119
30916
  class PendingProductionVariantSummary < Struct.new(
@@ -29125,7 +30922,42 @@ module Aws::SageMaker
29125
30922
  :desired_instance_count,
29126
30923
  :instance_type,
29127
30924
  :accelerator_type,
29128
- :variant_status)
30925
+ :variant_status,
30926
+ :current_serverless_config,
30927
+ :desired_serverless_config)
30928
+ SENSITIVE = []
30929
+ include Aws::Structure
30930
+ end
30931
+
30932
+ # Defines the traffic pattern.
30933
+ #
30934
+ # @note When making an API call, you may pass Phase
30935
+ # data as a hash:
30936
+ #
30937
+ # {
30938
+ # initial_number_of_users: 1,
30939
+ # spawn_rate: 1,
30940
+ # duration_in_seconds: 1,
30941
+ # }
30942
+ #
30943
+ # @!attribute [rw] initial_number_of_users
30944
+ # Specifies how many concurrent users to start with.
30945
+ # @return [Integer]
30946
+ #
30947
+ # @!attribute [rw] spawn_rate
30948
+ # Specified how many new users to spawn in a minute.
30949
+ # @return [Integer]
30950
+ #
30951
+ # @!attribute [rw] duration_in_seconds
30952
+ # Specifies how long traffic phase should be.
30953
+ # @return [Integer]
30954
+ #
30955
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/Phase AWS API Documentation
30956
+ #
30957
+ class Phase < Struct.new(
30958
+ :initial_number_of_users,
30959
+ :spawn_rate,
30960
+ :duration_in_seconds)
29129
30961
  SENSITIVE = []
29130
30962
  include Aws::Structure
29131
30963
  end
@@ -29171,12 +31003,12 @@ module Aws::SageMaker
29171
31003
  #
29172
31004
  # @!attribute [rw] created_by
29173
31005
  # Information about the user who created or modified an experiment,
29174
- # trial, trial component, or project.
31006
+ # trial, trial component, lineage group, or project.
29175
31007
  # @return [Types::UserContext]
29176
31008
  #
29177
31009
  # @!attribute [rw] last_modified_by
29178
31010
  # Information about the user who created or modified an experiment,
29179
- # trial, trial component, or project.
31011
+ # trial, trial component, lineage group, or project.
29180
31012
  # @return [Types::UserContext]
29181
31013
  #
29182
31014
  # @!attribute [rw] tags
@@ -29243,12 +31075,12 @@ module Aws::SageMaker
29243
31075
  #
29244
31076
  # @!attribute [rw] created_by
29245
31077
  # Information about the user who created or modified an experiment,
29246
- # trial, trial component, or project.
31078
+ # trial, trial component, lineage group, or project.
29247
31079
  # @return [Types::UserContext]
29248
31080
  #
29249
31081
  # @!attribute [rw] last_modified_by
29250
31082
  # Information about the user who created or modified an experiment,
29251
- # trial, trial component, or project.
31083
+ # trial, trial component, lineage group, or project.
29252
31084
  # @return [Types::UserContext]
29253
31085
  #
29254
31086
  # @!attribute [rw] pipeline_parameters
@@ -29367,6 +31199,57 @@ module Aws::SageMaker
29367
31199
  # by this step execution and a list of output parameters.
29368
31200
  # @return [Types::LambdaStepMetadata]
29369
31201
  #
31202
+ # @!attribute [rw] quality_check
31203
+ # The configurations and outcomes of the check step execution. This
31204
+ # includes:
31205
+ #
31206
+ # * The type of the check conducted,
31207
+ #
31208
+ # * The Amazon S3 URIs of baseline constraints and statistics files to
31209
+ # be used for the drift check.
31210
+ #
31211
+ # * The Amazon S3 URIs of newly calculated baseline constraints and
31212
+ # statistics.
31213
+ #
31214
+ # * The model package group name provided.
31215
+ #
31216
+ # * The Amazon S3 URI of the violation report if violations detected.
31217
+ #
31218
+ # * The Amazon Resource Name (ARN) of check processing job initiated
31219
+ # by the step execution.
31220
+ #
31221
+ # * The boolean flags indicating if the drift check is skipped.
31222
+ #
31223
+ # * If step property `BaselineUsedForDriftCheck` is set the same as
31224
+ # `CalculatedBaseline`.
31225
+ # @return [Types::QualityCheckStepMetadata]
31226
+ #
31227
+ # @!attribute [rw] clarify_check
31228
+ # Container for the metadata for a Clarify check step. The
31229
+ # configurations and outcomes of the check step execution. This
31230
+ # includes:
31231
+ #
31232
+ # * The type of the check conducted,
31233
+ #
31234
+ # * The Amazon S3 URIs of baseline constraints and statistics files to
31235
+ # be used for the drift check.
31236
+ #
31237
+ # * The Amazon S3 URIs of newly calculated baseline constraints and
31238
+ # statistics.
31239
+ #
31240
+ # * The model package group name provided.
31241
+ #
31242
+ # * The Amazon S3 URI of the violation report if violations detected.
31243
+ #
31244
+ # * The Amazon Resource Name (ARN) of check processing job initiated
31245
+ # by the step execution.
31246
+ #
31247
+ # * The boolean flags indicating if the drift check is skipped.
31248
+ #
31249
+ # * If step property `BaselineUsedForDriftCheck` is set the same as
31250
+ # `CalculatedBaseline`.
31251
+ # @return [Types::ClarifyCheckStepMetadata]
31252
+ #
29370
31253
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/PipelineExecutionStepMetadata AWS API Documentation
29371
31254
  #
29372
31255
  class PipelineExecutionStepMetadata < Struct.new(
@@ -29378,7 +31261,9 @@ module Aws::SageMaker
29378
31261
  :register_model,
29379
31262
  :condition,
29380
31263
  :callback,
29381
- :lambda)
31264
+ :lambda,
31265
+ :quality_check,
31266
+ :clarify_check)
29382
31267
  SENSITIVE = []
29383
31268
  include Aws::Structure
29384
31269
  end
@@ -30153,14 +32038,18 @@ module Aws::SageMaker
30153
32038
  # {
30154
32039
  # variant_name: "VariantName", # required
30155
32040
  # model_name: "ModelName", # required
30156
- # initial_instance_count: 1, # required
30157
- # 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
32041
+ # initial_instance_count: 1,
32042
+ # 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
32043
  # initial_variant_weight: 1.0,
30159
32044
  # 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
32045
  # core_dump_config: {
30161
32046
  # destination_s3_uri: "DestinationS3Uri", # required
30162
32047
  # kms_key_id: "KmsKeyId",
30163
32048
  # },
32049
+ # serverless_config: {
32050
+ # memory_size_in_mb: 1, # required
32051
+ # max_concurrency: 1, # required
32052
+ # },
30164
32053
  # }
30165
32054
  #
30166
32055
  # @!attribute [rw] variant_name
@@ -30204,6 +32093,18 @@ module Aws::SageMaker
30204
32093
  # when the process crashes.
30205
32094
  # @return [Types::ProductionVariantCoreDumpConfig]
30206
32095
  #
32096
+ # @!attribute [rw] serverless_config
32097
+ # The serverless configuration for an endpoint. Specifies a serverless
32098
+ # endpoint configuration instead of an instance-based endpoint
32099
+ # configuration.
32100
+ #
32101
+ # <note markdown="1"> Serverless Inference is in preview release for Amazon SageMaker and
32102
+ # is subject to change. We do not recommend using this feature in
32103
+ # production environments.
32104
+ #
32105
+ # </note>
32106
+ # @return [Types::ProductionVariantServerlessConfig]
32107
+ #
30207
32108
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ProductionVariant AWS API Documentation
30208
32109
  #
30209
32110
  class ProductionVariant < Struct.new(
@@ -30213,7 +32114,8 @@ module Aws::SageMaker
30213
32114
  :instance_type,
30214
32115
  :initial_variant_weight,
30215
32116
  :accelerator_type,
30216
- :core_dump_config)
32117
+ :core_dump_config,
32118
+ :serverless_config)
30217
32119
  SENSITIVE = []
30218
32120
  include Aws::Structure
30219
32121
  end
@@ -30288,6 +32190,40 @@ module Aws::SageMaker
30288
32190
  include Aws::Structure
30289
32191
  end
30290
32192
 
32193
+ # Serverless Inference is in preview release for Amazon SageMaker and is
32194
+ # subject to change. We do not recommend using this feature in
32195
+ # production environments.
32196
+ #
32197
+ # Specifies the serverless configuration for an endpoint variant.
32198
+ #
32199
+ # @note When making an API call, you may pass ProductionVariantServerlessConfig
32200
+ # data as a hash:
32201
+ #
32202
+ # {
32203
+ # memory_size_in_mb: 1, # required
32204
+ # max_concurrency: 1, # required
32205
+ # }
32206
+ #
32207
+ # @!attribute [rw] memory_size_in_mb
32208
+ # The memory size of your serverless endpoint. Valid values are in 1
32209
+ # GB increments: 1024 MB, 2048 MB, 3072 MB, 4096 MB, 5120 MB, or 6144
32210
+ # MB.
32211
+ # @return [Integer]
32212
+ #
32213
+ # @!attribute [rw] max_concurrency
32214
+ # The maximum number of concurrent invocations your serverless
32215
+ # endpoint can process.
32216
+ # @return [Integer]
32217
+ #
32218
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ProductionVariantServerlessConfig AWS API Documentation
32219
+ #
32220
+ class ProductionVariantServerlessConfig < Struct.new(
32221
+ :memory_size_in_mb,
32222
+ :max_concurrency)
32223
+ SENSITIVE = []
32224
+ include Aws::Structure
32225
+ end
32226
+
30291
32227
  # Describes the status of the production variant.
30292
32228
  #
30293
32229
  # @!attribute [rw] status
@@ -30365,6 +32301,26 @@ module Aws::SageMaker
30365
32301
  # stage status or operational status.
30366
32302
  # @return [Array<Types::ProductionVariantStatus>]
30367
32303
  #
32304
+ # @!attribute [rw] current_serverless_config
32305
+ # The serverless configuration for the endpoint.
32306
+ #
32307
+ # <note markdown="1"> Serverless Inference is in preview release for Amazon SageMaker and
32308
+ # is subject to change. We do not recommend using this feature in
32309
+ # production environments.
32310
+ #
32311
+ # </note>
32312
+ # @return [Types::ProductionVariantServerlessConfig]
32313
+ #
32314
+ # @!attribute [rw] desired_serverless_config
32315
+ # The serverless configuration requested for the endpoint update.
32316
+ #
32317
+ # <note markdown="1"> Serverless Inference is in preview release for Amazon SageMaker and
32318
+ # is subject to change. We do not recommend using this feature in
32319
+ # production environments.
32320
+ #
32321
+ # </note>
32322
+ # @return [Types::ProductionVariantServerlessConfig]
32323
+ #
30368
32324
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ProductionVariantSummary AWS API Documentation
30369
32325
  #
30370
32326
  class ProductionVariantSummary < Struct.new(
@@ -30374,7 +32330,9 @@ module Aws::SageMaker
30374
32330
  :desired_weight,
30375
32331
  :current_instance_count,
30376
32332
  :desired_instance_count,
30377
- :variant_status)
32333
+ :variant_status,
32334
+ :current_serverless_config,
32335
+ :desired_serverless_config)
30378
32336
  SENSITIVE = []
30379
32337
  include Aws::Structure
30380
32338
  end
@@ -30651,7 +32609,7 @@ module Aws::SageMaker
30651
32609
  #
30652
32610
  # @!attribute [rw] last_modified_by
30653
32611
  # Information about the user who created or modified an experiment,
30654
- # trial, trial component, or project.
32612
+ # trial, trial component, lineage group, or project.
30655
32613
  # @return [Types::UserContext]
30656
32614
  #
30657
32615
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/Project AWS API Documentation
@@ -31050,6 +33008,266 @@ module Aws::SageMaker
31050
33008
  include Aws::Structure
31051
33009
  end
31052
33010
 
33011
+ # Container for the metadata for a Quality check step. For more
33012
+ # information, see the topic on [QualityCheck step][1] in the *Amazon
33013
+ # SageMaker Developer Guide*.
33014
+ #
33015
+ #
33016
+ #
33017
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/build-and-manage-steps.html#step-type-quality-check
33018
+ #
33019
+ # @!attribute [rw] check_type
33020
+ # The type of the Quality check step.
33021
+ # @return [String]
33022
+ #
33023
+ # @!attribute [rw] baseline_used_for_drift_check_statistics
33024
+ # The Amazon S3 URI of the baseline statistics file used for the drift
33025
+ # check.
33026
+ # @return [String]
33027
+ #
33028
+ # @!attribute [rw] baseline_used_for_drift_check_constraints
33029
+ # The Amazon S3 URI of the baseline constraints file used for the
33030
+ # drift check.
33031
+ # @return [String]
33032
+ #
33033
+ # @!attribute [rw] calculated_baseline_statistics
33034
+ # The Amazon S3 URI of the newly calculated baseline statistics file.
33035
+ # @return [String]
33036
+ #
33037
+ # @!attribute [rw] calculated_baseline_constraints
33038
+ # The Amazon S3 URI of the newly calculated baseline constraints file.
33039
+ # @return [String]
33040
+ #
33041
+ # @!attribute [rw] model_package_group_name
33042
+ # The model package group name.
33043
+ # @return [String]
33044
+ #
33045
+ # @!attribute [rw] violation_report
33046
+ # The Amazon S3 URI of violation report if violations are detected.
33047
+ # @return [String]
33048
+ #
33049
+ # @!attribute [rw] check_job_arn
33050
+ # The Amazon Resource Name (ARN) of the Quality check processing job
33051
+ # that was run by this step execution.
33052
+ # @return [String]
33053
+ #
33054
+ # @!attribute [rw] skip_check
33055
+ # This flag indicates if the drift check against the previous baseline
33056
+ # will be skipped or not. If it is set to `False`, the previous
33057
+ # baseline of the configured check type must be available.
33058
+ # @return [Boolean]
33059
+ #
33060
+ # @!attribute [rw] register_new_baseline
33061
+ # This flag indicates if a newly calculated baseline can be accessed
33062
+ # through step properties `BaselineUsedForDriftCheckConstraints` and
33063
+ # `BaselineUsedForDriftCheckStatistics`. If it is set to `False`, the
33064
+ # previous baseline of the configured check type must also be
33065
+ # available. These can be accessed through the
33066
+ # `BaselineUsedForDriftCheckConstraints` and `
33067
+ # BaselineUsedForDriftCheckStatistics` properties.
33068
+ # @return [Boolean]
33069
+ #
33070
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/QualityCheckStepMetadata AWS API Documentation
33071
+ #
33072
+ class QualityCheckStepMetadata < Struct.new(
33073
+ :check_type,
33074
+ :baseline_used_for_drift_check_statistics,
33075
+ :baseline_used_for_drift_check_constraints,
33076
+ :calculated_baseline_statistics,
33077
+ :calculated_baseline_constraints,
33078
+ :model_package_group_name,
33079
+ :violation_report,
33080
+ :check_job_arn,
33081
+ :skip_check,
33082
+ :register_new_baseline)
33083
+ SENSITIVE = []
33084
+ include Aws::Structure
33085
+ end
33086
+
33087
+ # A set of filters to narrow the set of lineage entities connected to
33088
+ # the `StartArn`(s) returned by the `QueryLineage` API action.
33089
+ #
33090
+ # @note When making an API call, you may pass QueryFilters
33091
+ # data as a hash:
33092
+ #
33093
+ # {
33094
+ # types: ["String40"],
33095
+ # lineage_types: ["TrialComponent"], # accepts TrialComponent, Artifact, Context, Action
33096
+ # created_before: Time.now,
33097
+ # created_after: Time.now,
33098
+ # modified_before: Time.now,
33099
+ # modified_after: Time.now,
33100
+ # properties: {
33101
+ # "String256" => "String256",
33102
+ # },
33103
+ # }
33104
+ #
33105
+ # @!attribute [rw] types
33106
+ # Filter the lineage entities connected to the `StartArn` by type. For
33107
+ # example: `DataSet`, `Model`, `Endpoint`, or `ModelDeployment`.
33108
+ # @return [Array<String>]
33109
+ #
33110
+ # @!attribute [rw] lineage_types
33111
+ # Filter the lineage entities connected to the `StartArn`(s) by the
33112
+ # type of the lineage entity.
33113
+ # @return [Array<String>]
33114
+ #
33115
+ # @!attribute [rw] created_before
33116
+ # Filter the lineage entities connected to the `StartArn`(s) by
33117
+ # created date.
33118
+ # @return [Time]
33119
+ #
33120
+ # @!attribute [rw] created_after
33121
+ # Filter the lineage entities connected to the `StartArn`(s) after the
33122
+ # create date.
33123
+ # @return [Time]
33124
+ #
33125
+ # @!attribute [rw] modified_before
33126
+ # Filter the lineage entities connected to the `StartArn`(s) before
33127
+ # the last modified date.
33128
+ # @return [Time]
33129
+ #
33130
+ # @!attribute [rw] modified_after
33131
+ # Filter the lineage entities connected to the `StartArn`(s) after the
33132
+ # last modified date.
33133
+ # @return [Time]
33134
+ #
33135
+ # @!attribute [rw] properties
33136
+ # Filter the lineage entities connected to the `StartArn`(s) by a set
33137
+ # if property key value pairs. If multiple pairs are provided, an
33138
+ # entity will be included in the results if it matches any of the
33139
+ # provided pairs.
33140
+ # @return [Hash<String,String>]
33141
+ #
33142
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/QueryFilters AWS API Documentation
33143
+ #
33144
+ class QueryFilters < Struct.new(
33145
+ :types,
33146
+ :lineage_types,
33147
+ :created_before,
33148
+ :created_after,
33149
+ :modified_before,
33150
+ :modified_after,
33151
+ :properties)
33152
+ SENSITIVE = []
33153
+ include Aws::Structure
33154
+ end
33155
+
33156
+ # @note When making an API call, you may pass QueryLineageRequest
33157
+ # data as a hash:
33158
+ #
33159
+ # {
33160
+ # start_arns: ["AssociationEntityArn"], # required
33161
+ # direction: "Both", # accepts Both, Ascendants, Descendants
33162
+ # include_edges: false,
33163
+ # filters: {
33164
+ # types: ["String40"],
33165
+ # lineage_types: ["TrialComponent"], # accepts TrialComponent, Artifact, Context, Action
33166
+ # created_before: Time.now,
33167
+ # created_after: Time.now,
33168
+ # modified_before: Time.now,
33169
+ # modified_after: Time.now,
33170
+ # properties: {
33171
+ # "String256" => "String256",
33172
+ # },
33173
+ # },
33174
+ # max_depth: 1,
33175
+ # max_results: 1,
33176
+ # next_token: "String8192",
33177
+ # }
33178
+ #
33179
+ # @!attribute [rw] start_arns
33180
+ # A list of resource Amazon Resource Name (ARN) that represent the
33181
+ # starting point for your lineage query.
33182
+ # @return [Array<String>]
33183
+ #
33184
+ # @!attribute [rw] direction
33185
+ # Associations between lineage entities are directed. This parameter
33186
+ # determines the direction from the StartArn(s) the query will look.
33187
+ # @return [String]
33188
+ #
33189
+ # @!attribute [rw] include_edges
33190
+ # Setting this value to `True` will retrieve not only the entities of
33191
+ # interest but also the [Associations][1] and lineage entities on the
33192
+ # path. Set to `False` to only return lineage entities that match your
33193
+ # query.
33194
+ #
33195
+ #
33196
+ #
33197
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/lineage-tracking-entities.html
33198
+ # @return [Boolean]
33199
+ #
33200
+ # @!attribute [rw] filters
33201
+ # A set of filtering parameters that allow you to specify which
33202
+ # entities should be returned.
33203
+ #
33204
+ # * Properties - Key-value pairs to match on the lineage entities'
33205
+ # properties.
33206
+ #
33207
+ # * LineageTypes - A set of lineage entity types to match on. For
33208
+ # example: `TrialComponent`, `Artifact`, or `Context`.
33209
+ #
33210
+ # * CreatedBefore - Filter entities created before this date.
33211
+ #
33212
+ # * ModifiedBefore - Filter entities modified before this date.
33213
+ #
33214
+ # * ModifiedAfter - Filter entities modified after this date.
33215
+ # @return [Types::QueryFilters]
33216
+ #
33217
+ # @!attribute [rw] max_depth
33218
+ # The maximum depth in lineage relationships from the `StartArns` that
33219
+ # will be traversed. Depth is a measure of the number of
33220
+ # `Associations` from the `StartArn` entity to the matched results.
33221
+ # @return [Integer]
33222
+ #
33223
+ # @!attribute [rw] max_results
33224
+ # Limits the number of vertices in the results. Use the `NextToken` in
33225
+ # a response to to retrieve the next page of results.
33226
+ # @return [Integer]
33227
+ #
33228
+ # @!attribute [rw] next_token
33229
+ # Limits the number of vertices in the request. Use the `NextToken` in
33230
+ # a response to to retrieve the next page of results.
33231
+ # @return [String]
33232
+ #
33233
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/QueryLineageRequest AWS API Documentation
33234
+ #
33235
+ class QueryLineageRequest < Struct.new(
33236
+ :start_arns,
33237
+ :direction,
33238
+ :include_edges,
33239
+ :filters,
33240
+ :max_depth,
33241
+ :max_results,
33242
+ :next_token)
33243
+ SENSITIVE = []
33244
+ include Aws::Structure
33245
+ end
33246
+
33247
+ # @!attribute [rw] vertices
33248
+ # A list of vertices connected to the start entity(ies) in the lineage
33249
+ # graph.
33250
+ # @return [Array<Types::Vertex>]
33251
+ #
33252
+ # @!attribute [rw] edges
33253
+ # A list of edges that connect vertices in the response.
33254
+ # @return [Array<Types::Edge>]
33255
+ #
33256
+ # @!attribute [rw] next_token
33257
+ # Limits the number of vertices in the response. Use the `NextToken`
33258
+ # in a response to to retrieve the next page of results.
33259
+ # @return [String]
33260
+ #
33261
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/QueryLineageResponse AWS API Documentation
33262
+ #
33263
+ class QueryLineageResponse < Struct.new(
33264
+ :vertices,
33265
+ :edges,
33266
+ :next_token)
33267
+ SENSITIVE = []
33268
+ include Aws::Structure
33269
+ end
33270
+
31053
33271
  # A collection of settings that apply to an `RSessionGateway` app.
31054
33272
  #
31055
33273
  # @api private
@@ -31173,6 +33391,171 @@ module Aws::SageMaker
31173
33391
  include Aws::Structure
31174
33392
  end
31175
33393
 
33394
+ # The input configuration of the recommendation job.
33395
+ #
33396
+ # @note When making an API call, you may pass RecommendationJobInputConfig
33397
+ # data as a hash:
33398
+ #
33399
+ # {
33400
+ # model_package_version_arn: "ModelPackageArn", # required
33401
+ # job_duration_in_seconds: 1,
33402
+ # traffic_pattern: {
33403
+ # traffic_type: "PHASES", # accepts PHASES
33404
+ # phases: [
33405
+ # {
33406
+ # initial_number_of_users: 1,
33407
+ # spawn_rate: 1,
33408
+ # duration_in_seconds: 1,
33409
+ # },
33410
+ # ],
33411
+ # },
33412
+ # resource_limit: {
33413
+ # max_number_of_tests: 1,
33414
+ # max_parallel_of_tests: 1,
33415
+ # },
33416
+ # endpoint_configurations: [
33417
+ # {
33418
+ # 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
33419
+ # inference_specification_name: "InferenceSpecificationName",
33420
+ # environment_parameter_ranges: {
33421
+ # categorical_parameter_ranges: [
33422
+ # {
33423
+ # name: "String64", # required
33424
+ # value: ["String128"], # required
33425
+ # },
33426
+ # ],
33427
+ # },
33428
+ # },
33429
+ # ],
33430
+ # }
33431
+ #
33432
+ # @!attribute [rw] model_package_version_arn
33433
+ # The Amazon Resource Name (ARN) of a versioned model package.
33434
+ # @return [String]
33435
+ #
33436
+ # @!attribute [rw] job_duration_in_seconds
33437
+ # Specifies the maximum duration of the job, in seconds.&gt;
33438
+ # @return [Integer]
33439
+ #
33440
+ # @!attribute [rw] traffic_pattern
33441
+ # Specifies the traffic pattern of the job.
33442
+ # @return [Types::TrafficPattern]
33443
+ #
33444
+ # @!attribute [rw] resource_limit
33445
+ # Defines the resource limit of the job.
33446
+ # @return [Types::RecommendationJobResourceLimit]
33447
+ #
33448
+ # @!attribute [rw] endpoint_configurations
33449
+ # Specifies the endpoint configuration to use for a job.
33450
+ # @return [Array<Types::EndpointInputConfiguration>]
33451
+ #
33452
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/RecommendationJobInputConfig AWS API Documentation
33453
+ #
33454
+ class RecommendationJobInputConfig < Struct.new(
33455
+ :model_package_version_arn,
33456
+ :job_duration_in_seconds,
33457
+ :traffic_pattern,
33458
+ :resource_limit,
33459
+ :endpoint_configurations)
33460
+ SENSITIVE = []
33461
+ include Aws::Structure
33462
+ end
33463
+
33464
+ # Specifies the maximum number of jobs that can run in parallel and the
33465
+ # maximum number of jobs that can run.
33466
+ #
33467
+ # @note When making an API call, you may pass RecommendationJobResourceLimit
33468
+ # data as a hash:
33469
+ #
33470
+ # {
33471
+ # max_number_of_tests: 1,
33472
+ # max_parallel_of_tests: 1,
33473
+ # }
33474
+ #
33475
+ # @!attribute [rw] max_number_of_tests
33476
+ # Defines the maximum number of load tests.
33477
+ # @return [Integer]
33478
+ #
33479
+ # @!attribute [rw] max_parallel_of_tests
33480
+ # Defines the maximum number of parallel load tests.
33481
+ # @return [Integer]
33482
+ #
33483
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/RecommendationJobResourceLimit AWS API Documentation
33484
+ #
33485
+ class RecommendationJobResourceLimit < Struct.new(
33486
+ :max_number_of_tests,
33487
+ :max_parallel_of_tests)
33488
+ SENSITIVE = []
33489
+ include Aws::Structure
33490
+ end
33491
+
33492
+ # Specifies conditions for stopping a job. When a job reaches a stopping
33493
+ # condition limit, SageMaker ends the job.
33494
+ #
33495
+ # @note When making an API call, you may pass RecommendationJobStoppingConditions
33496
+ # data as a hash:
33497
+ #
33498
+ # {
33499
+ # max_invocations: 1,
33500
+ # model_latency_thresholds: [
33501
+ # {
33502
+ # percentile: "String64",
33503
+ # value_in_milliseconds: 1,
33504
+ # },
33505
+ # ],
33506
+ # }
33507
+ #
33508
+ # @!attribute [rw] max_invocations
33509
+ # The maximum number of requests per minute expected for the endpoint.
33510
+ # @return [Integer]
33511
+ #
33512
+ # @!attribute [rw] model_latency_thresholds
33513
+ # The interval of time taken by a model to respond as viewed from
33514
+ # SageMaker. The interval includes the local communication time taken
33515
+ # to send the request and to fetch the response from the container of
33516
+ # a model and the time taken to complete the inference in the
33517
+ # container.
33518
+ # @return [Array<Types::ModelLatencyThreshold>]
33519
+ #
33520
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/RecommendationJobStoppingConditions AWS API Documentation
33521
+ #
33522
+ class RecommendationJobStoppingConditions < Struct.new(
33523
+ :max_invocations,
33524
+ :model_latency_thresholds)
33525
+ SENSITIVE = []
33526
+ include Aws::Structure
33527
+ end
33528
+
33529
+ # The metrics of recommendations.
33530
+ #
33531
+ # @!attribute [rw] cost_per_hour
33532
+ # Defines the cost per hour for the instance.
33533
+ # @return [Float]
33534
+ #
33535
+ # @!attribute [rw] cost_per_inference
33536
+ # Defines the cost per inference for the instance .
33537
+ # @return [Float]
33538
+ #
33539
+ # @!attribute [rw] max_invocations
33540
+ # The expected maximum number of requests per minute for the instance.
33541
+ # @return [Integer]
33542
+ #
33543
+ # @!attribute [rw] model_latency
33544
+ # The expected model latency at maximum invocation per minute for the
33545
+ # instance.
33546
+ # @return [Integer]
33547
+ #
33548
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/RecommendationMetrics AWS API Documentation
33549
+ #
33550
+ class RecommendationMetrics < Struct.new(
33551
+ :cost_per_hour,
33552
+ :cost_per_inference,
33553
+ :max_invocations,
33554
+ :model_latency)
33555
+ SENSITIVE = []
33556
+ include Aws::Structure
33557
+ end
33558
+
31176
33559
  # Configuration for Redshift Dataset Definition input.
31177
33560
  #
31178
33561
  # @note When making an API call, you may pass RedshiftDatasetDefinition
@@ -33002,6 +35385,25 @@ module Aws::SageMaker
33002
35385
  include Aws::Structure
33003
35386
  end
33004
35387
 
35388
+ # @note When making an API call, you may pass StopInferenceRecommendationsJobRequest
35389
+ # data as a hash:
35390
+ #
35391
+ # {
35392
+ # job_name: "RecommendationJobName", # required
35393
+ # }
35394
+ #
35395
+ # @!attribute [rw] job_name
35396
+ # The name of the job you want to stop.
35397
+ # @return [String]
35398
+ #
35399
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/StopInferenceRecommendationsJobRequest AWS API Documentation
35400
+ #
35401
+ class StopInferenceRecommendationsJobRequest < Struct.new(
35402
+ :job_name)
35403
+ SENSITIVE = []
35404
+ include Aws::Structure
35405
+ end
35406
+
33005
35407
  # @note When making an API call, you may pass StopLabelingJobRequest
33006
35408
  # data as a hash:
33007
35409
  #
@@ -33483,6 +35885,39 @@ module Aws::SageMaker
33483
35885
  include Aws::Structure
33484
35886
  end
33485
35887
 
35888
+ # Defines the traffic pattern of the load test.
35889
+ #
35890
+ # @note When making an API call, you may pass TrafficPattern
35891
+ # data as a hash:
35892
+ #
35893
+ # {
35894
+ # traffic_type: "PHASES", # accepts PHASES
35895
+ # phases: [
35896
+ # {
35897
+ # initial_number_of_users: 1,
35898
+ # spawn_rate: 1,
35899
+ # duration_in_seconds: 1,
35900
+ # },
35901
+ # ],
35902
+ # }
35903
+ #
35904
+ # @!attribute [rw] traffic_type
35905
+ # Defines the traffic patterns.
35906
+ # @return [String]
35907
+ #
35908
+ # @!attribute [rw] phases
35909
+ # Defines the phases traffic specification.
35910
+ # @return [Array<Types::Phase>]
35911
+ #
35912
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/TrafficPattern AWS API Documentation
35913
+ #
35914
+ class TrafficPattern < Struct.new(
35915
+ :traffic_type,
35916
+ :phases)
35917
+ SENSITIVE = []
35918
+ include Aws::Structure
35919
+ end
35920
+
33486
35921
  # Defines the traffic routing strategy during an endpoint deployment to
33487
35922
  # shift traffic from the old fleet to the new fleet.
33488
35923
  #
@@ -34953,7 +37388,7 @@ module Aws::SageMaker
34953
37388
  #
34954
37389
  # @!attribute [rw] last_modified_by
34955
37390
  # Information about the user who created or modified an experiment,
34956
- # trial, trial component, or project.
37391
+ # trial, trial component, lineage group, or project.
34957
37392
  # @return [Types::UserContext]
34958
37393
  #
34959
37394
  # @!attribute [rw] metadata_properties
@@ -35036,7 +37471,7 @@ module Aws::SageMaker
35036
37471
  #
35037
37472
  # @!attribute [rw] last_modified_by
35038
37473
  # Information about the user who created or modified an experiment,
35039
- # trial, trial component, or project.
37474
+ # trial, trial component, lineage group, or project.
35040
37475
  # @return [Types::UserContext]
35041
37476
  #
35042
37477
  # @!attribute [rw] parameters
@@ -35064,6 +37499,10 @@ module Aws::SageMaker
35064
37499
  # Details of the source of the component.
35065
37500
  # @return [Types::TrialComponentSourceDetail]
35066
37501
  #
37502
+ # @!attribute [rw] lineage_group_arn
37503
+ # The Amazon Resource Name (ARN) of the lineage group resource.
37504
+ # @return [String]
37505
+ #
35067
37506
  # @!attribute [rw] tags
35068
37507
  # The list of tags that are associated with the component. You can use
35069
37508
  # Search API to search on the tags.
@@ -35095,6 +37534,7 @@ module Aws::SageMaker
35095
37534
  :metrics,
35096
37535
  :metadata_properties,
35097
37536
  :source_detail,
37537
+ :lineage_group_arn,
35098
37538
  :tags,
35099
37539
  :parents)
35100
37540
  SENSITIVE = []
@@ -35247,7 +37687,7 @@ module Aws::SageMaker
35247
37687
  #
35248
37688
  # @!attribute [rw] created_by
35249
37689
  # Information about the user who created or modified an experiment,
35250
- # trial, trial component, or project.
37690
+ # trial, trial component, lineage group, or project.
35251
37691
  # @return [Types::UserContext]
35252
37692
  #
35253
37693
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/TrialComponentSimpleSummary AWS API Documentation
@@ -36384,6 +38824,34 @@ module Aws::SageMaker
36384
38824
  # "CustomerMetadataKey" => "CustomerMetadataValue",
36385
38825
  # },
36386
38826
  # customer_metadata_properties_to_remove: ["CustomerMetadataKey"],
38827
+ # additional_inference_specifications_to_add: [
38828
+ # {
38829
+ # name: "EntityName", # required
38830
+ # description: "EntityDescription",
38831
+ # containers: [ # required
38832
+ # {
38833
+ # container_hostname: "ContainerHostname",
38834
+ # image: "ContainerImage", # required
38835
+ # image_digest: "ImageDigest",
38836
+ # model_data_url: "Url",
38837
+ # product_id: "ProductId",
38838
+ # environment: {
38839
+ # "EnvironmentKey" => "EnvironmentValue",
38840
+ # },
38841
+ # model_input: {
38842
+ # data_input_config: "DataInputConfig", # required
38843
+ # },
38844
+ # framework: "String",
38845
+ # framework_version: "FrameworkVersion",
38846
+ # nearest_model_name: "String",
38847
+ # },
38848
+ # ],
38849
+ # 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
38850
+ # 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
38851
+ # supported_content_types: ["ContentType"],
38852
+ # supported_response_mime_types: ["ResponseMIMEType"],
38853
+ # },
38854
+ # ],
36387
38855
  # }
36388
38856
  #
36389
38857
  # @!attribute [rw] model_package_arn
@@ -36407,6 +38875,15 @@ module Aws::SageMaker
36407
38875
  # to remove.
36408
38876
  # @return [Array<String>]
36409
38877
  #
38878
+ # @!attribute [rw] additional_inference_specifications_to_add
38879
+ # An array of additional Inference Specification objects to be added
38880
+ # to the existing array additional Inference Specification. Total
38881
+ # number of additional Inference Specifications can not exceed 15.
38882
+ # Each additional Inference Specification specifies artifacts based on
38883
+ # this model package that can be used on inference endpoints.
38884
+ # Generally used with SageMaker Neo to store the compiled artifacts.
38885
+ # @return [Array<Types::AdditionalInferenceSpecificationDefinition>]
38886
+ #
36410
38887
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateModelPackageInput AWS API Documentation
36411
38888
  #
36412
38889
  class UpdateModelPackageInput < Struct.new(
@@ -36414,7 +38891,8 @@ module Aws::SageMaker
36414
38891
  :model_approval_status,
36415
38892
  :approval_description,
36416
38893
  :customer_metadata_properties,
36417
- :customer_metadata_properties_to_remove)
38894
+ :customer_metadata_properties_to_remove,
38895
+ :additional_inference_specifications_to_add)
36418
38896
  SENSITIVE = []
36419
38897
  include Aws::Structure
36420
38898
  end
@@ -37406,7 +39884,7 @@ module Aws::SageMaker
37406
39884
  end
37407
39885
 
37408
39886
  # Information about the user who created or modified an experiment,
37409
- # trial, trial component, or project.
39887
+ # trial, trial component, lineage group, or project.
37410
39888
  #
37411
39889
  # @!attribute [rw] user_profile_arn
37412
39890
  # The Amazon Resource Name (ARN) of the user's profile.
@@ -37622,6 +40100,31 @@ module Aws::SageMaker
37622
40100
  include Aws::Structure
37623
40101
  end
37624
40102
 
40103
+ # A lineage entity connected to the starting entity(ies).
40104
+ #
40105
+ # @!attribute [rw] arn
40106
+ # The Amazon Resource Name (ARN) of the lineage entity resource.
40107
+ # @return [String]
40108
+ #
40109
+ # @!attribute [rw] type
40110
+ # The type of the lineage entity resource. For example: `DataSet`,
40111
+ # `Model`, `Endpoint`, etc...
40112
+ # @return [String]
40113
+ #
40114
+ # @!attribute [rw] lineage_type
40115
+ # The type of resource of the lineage entity.
40116
+ # @return [String]
40117
+ #
40118
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/Vertex AWS API Documentation
40119
+ #
40120
+ class Vertex < Struct.new(
40121
+ :arn,
40122
+ :type,
40123
+ :lineage_type)
40124
+ SENSITIVE = []
40125
+ include Aws::Structure
40126
+ end
40127
+
37625
40128
  # Specifies a VPC that your training jobs and hosted models have access
37626
40129
  # to. Control access to and from your training and model containers by
37627
40130
  # configuring the VPC. For more information, see [Protect Endpoints by