aws-sdk-sagemaker 1.72.0 → 1.73.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 43e7f6f96d08e85084701352a98d0d1b3acad5ad5dd5ede98a5d88e4b44d0eb8
4
- data.tar.gz: 12fb1a61678258912d555ee974dd61a12e596723f33b8b38de7d7038fa35fcef
3
+ metadata.gz: ad9decbcfc4b10b3f9c3e1af20b34c69c498d995ec1304eeba5487ae408a437c
4
+ data.tar.gz: ba17afa2deb0a5d732f42f463089a4875347b3b1f4f2fcee6f0832cc86ede5ba
5
5
  SHA512:
6
- metadata.gz: f97845cf8a04fb2c9a58a6d75ec7d30b2e05226a5ec5fe11ae804c3127314f7fc790c78a9c032b8fd95920c29ba8f18517e6b4a185352abe4bd26a7911a650d5
7
- data.tar.gz: a26c6197a515d3eb1adc1c0d91b9d29178e4ed8a6471be01328ebc37688df7297455ea6afdf8b1ce63511df8abcfc27b1fda63903480d46acfa6fe4c687cdb00
6
+ metadata.gz: e2da02a108b0b30748e3c306324b9541012c71812420e64f080e40cc0c8d0a2f315fdaf20deefd1dd4822687a3424af4109c7e720ae379ca6a989fbf40987cfb
7
+ data.tar.gz: 0e421b196816e6d9cc134446d68989a95974889624066113a023f74ff218c8d44fa43bbc6bde87f6182dd43f5b498e037d87b40394b0d3fddafa903c22f41af0
@@ -29,7 +29,7 @@ require_relative 'aws-sdk-sagemaker/customizations'
29
29
  # structure.
30
30
  #
31
31
  # sage_maker = Aws::SageMaker::Client.new
32
- # resp = sage_maker.add_tags(params)
32
+ # resp = sage_maker.add_association(params)
33
33
  #
34
34
  # See {Client} for more information.
35
35
  #
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-sagemaker/customizations'
49
49
  # @!group service
50
50
  module Aws::SageMaker
51
51
 
52
- GEM_VERSION = '1.72.0'
52
+ GEM_VERSION = '1.73.0'
53
53
 
54
54
  end
@@ -337,6 +337,67 @@ module Aws::SageMaker
337
337
 
338
338
  # @!group API Operations
339
339
 
340
+ # Creates an *association* between the source and the destination. A
341
+ # source can be associated with multiple destinations, and a destination
342
+ # can be associated with multiple sources. An association is a lineage
343
+ # tracking entity. For more information, see [Amazon SageMaker ML
344
+ # Lineage Tracking][1].
345
+ #
346
+ #
347
+ #
348
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/lineage-tracking.html
349
+ #
350
+ # @option params [required, String] :source_arn
351
+ # The ARN of the source.
352
+ #
353
+ # @option params [required, String] :destination_arn
354
+ # The Amazon Resource Name (ARN) of the destination.
355
+ #
356
+ # @option params [String] :association_type
357
+ # The type of association. The following are suggested uses for each
358
+ # type. Amazon SageMaker places no restrictions on their use.
359
+ #
360
+ # * ContributedTo - The source contributed to the destination or had a
361
+ # part in enabling the destination. For example, the training data
362
+ # contributed to the training job.
363
+ #
364
+ # * AssociatedWith - The source is connected to the destination. For
365
+ # example, an approval workflow is associated with a model deployment.
366
+ #
367
+ # * DerivedFrom - The destination is a modification of the source. For
368
+ # example, a digest output of a channel input for a processing job is
369
+ # derived from the original inputs.
370
+ #
371
+ # * Produced - The source generated the destination. For example, a
372
+ # training job produced a model artifact.
373
+ #
374
+ # @return [Types::AddAssociationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
375
+ #
376
+ # * {Types::AddAssociationResponse#source_arn #source_arn} => String
377
+ # * {Types::AddAssociationResponse#destination_arn #destination_arn} => String
378
+ #
379
+ # @example Request syntax with placeholder values
380
+ #
381
+ # resp = client.add_association({
382
+ # source_arn: "AssociationEntityArn", # required
383
+ # destination_arn: "AssociationEntityArn", # required
384
+ # association_type: "ContributedTo", # accepts ContributedTo, AssociatedWith, DerivedFrom, Produced
385
+ # })
386
+ #
387
+ # @example Response structure
388
+ #
389
+ # resp.source_arn #=> String
390
+ # resp.destination_arn #=> String
391
+ #
392
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/AddAssociation AWS API Documentation
393
+ #
394
+ # @overload add_association(params = {})
395
+ # @param [Hash] params ({})
396
+ def add_association(params = {}, options = {})
397
+ req = build_request(:add_association, params)
398
+ req.send_request(options)
399
+ end
400
+
340
401
  # Adds or overwrites one or more tags for the specified Amazon SageMaker
341
402
  # resource. You can add tags to notebook instances, training jobs,
342
403
  # hyperparameter tuning jobs, batch transform jobs, models, labeling
@@ -366,9 +427,13 @@ module Aws::SageMaker
366
427
  # The Amazon Resource Name (ARN) of the resource that you want to tag.
367
428
  #
368
429
  # @option params [required, Array<Types::Tag>] :tags
369
- # An array of `Tag` objects. Each tag is a key-value pair. Only the
370
- # `key` parameter is required. If you don't specify a value, Amazon
371
- # SageMaker sets the value to an empty string.
430
+ # An array of key-value pairs. You can use tags to categorize your AWS
431
+ # resources in different ways, for example, by purpose, owner, or
432
+ # environment. For more information, see [Tagging AWS Resources][1].
433
+ #
434
+ #
435
+ #
436
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
372
437
  #
373
438
  # @return [Types::AddTagsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
374
439
  #
@@ -437,6 +502,87 @@ module Aws::SageMaker
437
502
  req.send_request(options)
438
503
  end
439
504
 
505
+ # Creates an *action*. An action is a lineage tracking entity that
506
+ # represents an action or activity. For example, a model deployment or
507
+ # an HPO job. Generally, an action involves at least one input or output
508
+ # artifact. For more information, see [Amazon SageMaker ML Lineage
509
+ # Tracking][1].
510
+ #
511
+ #
512
+ #
513
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/lineage-tracking.html
514
+ #
515
+ # @option params [required, String] :action_name
516
+ # The name of the action. Must be unique to your account in an AWS
517
+ # Region.
518
+ #
519
+ # @option params [required, Types::ActionSource] :source
520
+ # The source type, ID, and URI.
521
+ #
522
+ # @option params [required, String] :action_type
523
+ # The action type.
524
+ #
525
+ # @option params [String] :description
526
+ # The description of the action.
527
+ #
528
+ # @option params [String] :status
529
+ # The status of the action.
530
+ #
531
+ # @option params [Hash<String,String>] :properties
532
+ # A list of properties to add to the action.
533
+ #
534
+ # @option params [Types::MetadataProperties] :metadata_properties
535
+ # Metadata properties of the tracking entity, trial, or trial component.
536
+ #
537
+ # @option params [Array<Types::Tag>] :tags
538
+ # A list of tags to apply to the action.
539
+ #
540
+ # @return [Types::CreateActionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
541
+ #
542
+ # * {Types::CreateActionResponse#action_arn #action_arn} => String
543
+ #
544
+ # @example Request syntax with placeholder values
545
+ #
546
+ # resp = client.create_action({
547
+ # action_name: "ExperimentEntityName", # required
548
+ # source: { # required
549
+ # source_uri: "String2048", # required
550
+ # source_type: "String256",
551
+ # source_id: "String256",
552
+ # },
553
+ # action_type: "String256", # required
554
+ # description: "ExperimentDescription",
555
+ # status: "Unknown", # accepts Unknown, InProgress, Completed, Failed, Stopping, Stopped
556
+ # properties: {
557
+ # "StringParameterValue" => "StringParameterValue",
558
+ # },
559
+ # metadata_properties: {
560
+ # commit_id: "MetadataPropertyValue",
561
+ # repository: "MetadataPropertyValue",
562
+ # generated_by: "MetadataPropertyValue",
563
+ # project_id: "MetadataPropertyValue",
564
+ # },
565
+ # tags: [
566
+ # {
567
+ # key: "TagKey", # required
568
+ # value: "TagValue", # required
569
+ # },
570
+ # ],
571
+ # })
572
+ #
573
+ # @example Response structure
574
+ #
575
+ # resp.action_arn #=> String
576
+ #
577
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateAction AWS API Documentation
578
+ #
579
+ # @overload create_action(params = {})
580
+ # @param [Hash] params ({})
581
+ def create_action(params = {}, options = {})
582
+ req = build_request(:create_action, params)
583
+ req.send_request(options)
584
+ end
585
+
440
586
  # Create a machine learning algorithm that you can use in Amazon
441
587
  # SageMaker and list in the AWS Marketplace.
442
588
  #
@@ -491,6 +637,15 @@ module Aws::SageMaker
491
637
  # Whether to certify the algorithm so that it can be listed in AWS
492
638
  # Marketplace.
493
639
  #
640
+ # @option params [Array<Types::Tag>] :tags
641
+ # An array of key-value pairs. You can use tags to categorize your AWS
642
+ # resources in different ways, for example, by purpose, owner, or
643
+ # environment. For more information, see [Tagging AWS Resources][1].
644
+ #
645
+ #
646
+ #
647
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
648
+ #
494
649
  # @return [Types::CreateAlgorithmOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
495
650
  #
496
651
  # * {Types::CreateAlgorithmOutput#algorithm_arn #algorithm_arn} => String
@@ -561,8 +716,8 @@ module Aws::SageMaker
561
716
  # product_id: "ProductId",
562
717
  # },
563
718
  # ],
564
- # supported_transform_instance_types: ["ml.m4.xlarge"], # required, 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
565
- # supported_realtime_inference_instance_types: ["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
719
+ # 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
720
+ # 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
566
721
  # supported_content_types: ["ContentType"], # required
567
722
  # supported_response_mime_types: ["ResponseMIMEType"], # required
568
723
  # },
@@ -651,6 +806,12 @@ module Aws::SageMaker
651
806
  # ],
652
807
  # },
653
808
  # certify_for_marketplace: false,
809
+ # tags: [
810
+ # {
811
+ # key: "TagKey", # required
812
+ # value: "TagValue", # required
813
+ # },
814
+ # ],
654
815
  # })
655
816
  #
656
817
  # @example Response structure
@@ -785,6 +946,82 @@ module Aws::SageMaker
785
946
  req.send_request(options)
786
947
  end
787
948
 
949
+ # Creates an *artifact*. An artifact is a lineage tracking entity that
950
+ # represents a URI addressable object or data. Some examples are the S3
951
+ # URI of a dataset and the ECR registry path of an image. For more
952
+ # information, see [Amazon SageMaker ML Lineage Tracking][1].
953
+ #
954
+ #
955
+ #
956
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/lineage-tracking.html
957
+ #
958
+ # @option params [String] :artifact_name
959
+ # The name of the artifact. Must be unique to your account in an AWS
960
+ # Region.
961
+ #
962
+ # @option params [required, Types::ArtifactSource] :source
963
+ # The ID, ID type, and URI of the source.
964
+ #
965
+ # @option params [required, String] :artifact_type
966
+ # The artifact type.
967
+ #
968
+ # @option params [Hash<String,String>] :properties
969
+ # A list of properties to add to the artifact.
970
+ #
971
+ # @option params [Types::MetadataProperties] :metadata_properties
972
+ # Metadata properties of the tracking entity, trial, or trial component.
973
+ #
974
+ # @option params [Array<Types::Tag>] :tags
975
+ # A list of tags to apply to the artifact.
976
+ #
977
+ # @return [Types::CreateArtifactResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
978
+ #
979
+ # * {Types::CreateArtifactResponse#artifact_arn #artifact_arn} => String
980
+ #
981
+ # @example Request syntax with placeholder values
982
+ #
983
+ # resp = client.create_artifact({
984
+ # artifact_name: "ExperimentEntityName",
985
+ # source: { # required
986
+ # source_uri: "String2048", # required
987
+ # source_types: [
988
+ # {
989
+ # source_id_type: "MD5Hash", # required, accepts MD5Hash, S3ETag, S3Version, Custom
990
+ # value: "String256", # required
991
+ # },
992
+ # ],
993
+ # },
994
+ # artifact_type: "String256", # required
995
+ # properties: {
996
+ # "StringParameterValue" => "StringParameterValue",
997
+ # },
998
+ # metadata_properties: {
999
+ # commit_id: "MetadataPropertyValue",
1000
+ # repository: "MetadataPropertyValue",
1001
+ # generated_by: "MetadataPropertyValue",
1002
+ # project_id: "MetadataPropertyValue",
1003
+ # },
1004
+ # tags: [
1005
+ # {
1006
+ # key: "TagKey", # required
1007
+ # value: "TagValue", # required
1008
+ # },
1009
+ # ],
1010
+ # })
1011
+ #
1012
+ # @example Response structure
1013
+ #
1014
+ # resp.artifact_arn #=> String
1015
+ #
1016
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateArtifact AWS API Documentation
1017
+ #
1018
+ # @overload create_artifact(params = {})
1019
+ # @param [Hash] params ({})
1020
+ def create_artifact(params = {}, options = {})
1021
+ req = build_request(:create_artifact, params)
1022
+ req.send_request(options)
1023
+ end
1024
+
788
1025
  # Creates an Autopilot job.
789
1026
  #
790
1027
  # Find the best performing model after you run an Autopilot job by
@@ -927,6 +1164,15 @@ module Aws::SageMaker
927
1164
  # repository is located, the default branch, and credentials to use to
928
1165
  # access the repository.
929
1166
  #
1167
+ # @option params [Array<Types::Tag>] :tags
1168
+ # An array of key-value pairs. You can use tags to categorize your AWS
1169
+ # resources in different ways, for example, by purpose, owner, or
1170
+ # environment. For more information, see [Tagging AWS Resources][1].
1171
+ #
1172
+ #
1173
+ #
1174
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
1175
+ #
930
1176
  # @return [Types::CreateCodeRepositoryOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
931
1177
  #
932
1178
  # * {Types::CreateCodeRepositoryOutput#code_repository_arn #code_repository_arn} => String
@@ -940,6 +1186,12 @@ module Aws::SageMaker
940
1186
  # branch: "Branch",
941
1187
  # secret_arn: "SecretArn",
942
1188
  # },
1189
+ # tags: [
1190
+ # {
1191
+ # key: "TagKey", # required
1192
+ # value: "TagValue", # required
1193
+ # },
1194
+ # ],
943
1195
  # })
944
1196
  #
945
1197
  # @example Response structure
@@ -1027,14 +1279,13 @@ module Aws::SageMaker
1027
1279
  # job. Use this API to cap model training costs.
1028
1280
  #
1029
1281
  # @option params [Array<Types::Tag>] :tags
1030
- # An array of key-value pairs that you want to use to organize and track
1031
- # your AWS resource costs. For more information, see [Using Cost
1032
- # Allocation Tags][1] in the *AWS Billing and Cost Management User
1033
- # Guide*.
1282
+ # An array of key-value pairs. You can use tags to categorize your AWS
1283
+ # resources in different ways, for example, by purpose, owner, or
1284
+ # environment. For more information, see [Tagging AWS Resources][1].
1034
1285
  #
1035
1286
  #
1036
1287
  #
1037
- # [1]: https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html#allocation-what
1288
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
1038
1289
  #
1039
1290
  # @return [Types::CreateCompilationJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1040
1291
  #
@@ -1048,17 +1299,18 @@ module Aws::SageMaker
1048
1299
  # input_config: { # required
1049
1300
  # s3_uri: "S3Uri", # required
1050
1301
  # data_input_config: "DataInputConfig", # required
1051
- # framework: "TENSORFLOW", # required, accepts TENSORFLOW, KERAS, MXNET, ONNX, PYTORCH, XGBOOST, TFLITE, DARKNET
1302
+ # framework: "TENSORFLOW", # required, accepts TENSORFLOW, KERAS, MXNET, ONNX, PYTORCH, XGBOOST, TFLITE, DARKNET, SKLEARN
1052
1303
  # },
1053
1304
  # output_config: { # required
1054
1305
  # s3_output_location: "S3Uri", # required
1055
- # target_device: "lambda", # accepts lambda, ml_m4, ml_m5, ml_c4, ml_c5, ml_p2, ml_p3, ml_g4dn, ml_inf1, jetson_tx1, jetson_tx2, jetson_nano, jetson_xavier, rasp3b, imx8qm, deeplens, rk3399, rk3288, aisage, sbe_c, qcs605, qcs603, sitara_am57x, amba_cv22, x86_win32, x86_win64, coreml
1306
+ # target_device: "lambda", # accepts lambda, ml_m4, ml_m5, ml_c4, ml_c5, ml_p2, ml_p3, ml_g4dn, ml_inf1, jetson_tx1, jetson_tx2, jetson_nano, jetson_xavier, rasp3b, imx8qm, deeplens, rk3399, rk3288, aisage, sbe_c, qcs605, qcs603, sitara_am57x, amba_cv22, x86_win32, x86_win64, coreml, jacinto_tda4vm
1056
1307
  # target_platform: {
1057
1308
  # os: "ANDROID", # required, accepts ANDROID, LINUX
1058
1309
  # arch: "X86_64", # required, accepts X86_64, X86, ARM64, ARM_EABI, ARM_EABIHF
1059
1310
  # accelerator: "INTEL_GRAPHICS", # accepts INTEL_GRAPHICS, MALI, NVIDIA
1060
1311
  # },
1061
1312
  # compiler_options: "CompilerOptions",
1313
+ # kms_key_id: "KmsKeyId",
1062
1314
  # },
1063
1315
  # stopping_condition: { # required
1064
1316
  # max_runtime_in_seconds: 1,
@@ -1085,6 +1337,73 @@ module Aws::SageMaker
1085
1337
  req.send_request(options)
1086
1338
  end
1087
1339
 
1340
+ # Creates a *context*. A context is a lineage tracking entity that
1341
+ # represents a logical grouping of other tracking or experiment
1342
+ # entities. Some examples are an endpoint and a model package. For more
1343
+ # information, see [Amazon SageMaker ML Lineage Tracking][1].
1344
+ #
1345
+ #
1346
+ #
1347
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/lineage-tracking.html
1348
+ #
1349
+ # @option params [required, String] :context_name
1350
+ # The name of the context. Must be unique to your account in an AWS
1351
+ # Region.
1352
+ #
1353
+ # @option params [required, Types::ContextSource] :source
1354
+ # The source type, ID, and URI.
1355
+ #
1356
+ # @option params [required, String] :context_type
1357
+ # The context type.
1358
+ #
1359
+ # @option params [String] :description
1360
+ # The description of the context.
1361
+ #
1362
+ # @option params [Hash<String,String>] :properties
1363
+ # A list of properties to add to the context.
1364
+ #
1365
+ # @option params [Array<Types::Tag>] :tags
1366
+ # A list of tags to apply to the context.
1367
+ #
1368
+ # @return [Types::CreateContextResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1369
+ #
1370
+ # * {Types::CreateContextResponse#context_arn #context_arn} => String
1371
+ #
1372
+ # @example Request syntax with placeholder values
1373
+ #
1374
+ # resp = client.create_context({
1375
+ # context_name: "ExperimentEntityName", # required
1376
+ # source: { # required
1377
+ # source_uri: "String2048", # required
1378
+ # source_type: "String256",
1379
+ # source_id: "String256",
1380
+ # },
1381
+ # context_type: "String256", # required
1382
+ # description: "ExperimentDescription",
1383
+ # properties: {
1384
+ # "StringParameterValue" => "StringParameterValue",
1385
+ # },
1386
+ # tags: [
1387
+ # {
1388
+ # key: "TagKey", # required
1389
+ # value: "TagValue", # required
1390
+ # },
1391
+ # ],
1392
+ # })
1393
+ #
1394
+ # @example Response structure
1395
+ #
1396
+ # resp.context_arn #=> String
1397
+ #
1398
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateContext AWS API Documentation
1399
+ #
1400
+ # @overload create_context(params = {})
1401
+ # @param [Hash] params ({})
1402
+ def create_context(params = {}, options = {})
1403
+ req = build_request(:create_context, params)
1404
+ req.send_request(options)
1405
+ end
1406
+
1088
1407
  # Creates a `Domain` used by Amazon SageMaker Studio. A domain consists
1089
1408
  # of an associated Amazon Elastic File System (EFS) volume, a list of
1090
1409
  # authorized users, and a variety of security, application, policy, and
@@ -1092,11 +1411,19 @@ module Aws::SageMaker
1092
1411
  # limited to one domain per region. Users within a domain can share
1093
1412
  # notebook files and other artifacts with each other.
1094
1413
  #
1414
+ # **EFS storage**
1415
+ #
1095
1416
  # When a domain is created, an EFS volume is created for use by all of
1096
1417
  # the users within the domain. Each user receives a private home
1097
1418
  # directory within the EFS volume for notebooks, Git repositories, and
1098
1419
  # data files.
1099
1420
  #
1421
+ # SageMaker uses the AWS Key Management Service (AWS KMS) to encrypt the
1422
+ # EFS volume attached to the domain with an AWS managed customer master
1423
+ # key (CMK) by default. For more control, you can specify a customer
1424
+ # managed CMK. For more information, see [Protect Data at Rest Using
1425
+ # Encryption][1].
1426
+ #
1100
1427
  # **VPC configuration**
1101
1428
  #
1102
1429
  # All SageMaker Studio traffic between the domain and the EFS volume is
@@ -1120,11 +1447,12 @@ module Aws::SageMaker
1120
1447
  # security groups allow outbound connections.
1121
1448
  #
1122
1449
  # For more information, see [Connect SageMaker Studio Notebooks to
1123
- # Resources in a VPC][1].
1450
+ # Resources in a VPC][2].
1124
1451
  #
1125
1452
  #
1126
1453
  #
1127
- # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/studio-notebooks-and-internet-access.html
1454
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/encryption-at-rest.html
1455
+ # [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/studio-notebooks-and-internet-access.html
1128
1456
  #
1129
1457
  # @option params [required, String] :domain_name
1130
1458
  # A name for the domain.
@@ -1340,13 +1668,13 @@ module Aws::SageMaker
1340
1668
  # CreateEndpointConfig.
1341
1669
  #
1342
1670
  # @option params [Array<Types::Tag>] :tags
1343
- # An array of key-value pairs. For more information, see [Using Cost
1344
- # Allocation Tags][1]in the *AWS Billing and Cost Management User
1345
- # Guide*.
1671
+ # An array of key-value pairs. You can use tags to categorize your AWS
1672
+ # resources in different ways, for example, by purpose, owner, or
1673
+ # environment. For more information, see [Tagging AWS Resources][1].
1346
1674
  #
1347
1675
  #
1348
1676
  #
1349
- # [1]: https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html#allocation-what
1677
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
1350
1678
  #
1351
1679
  # @return [Types::CreateEndpointOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1352
1680
  #
@@ -1435,13 +1763,13 @@ module Aws::SageMaker
1435
1763
  # @option params [Types::DataCaptureConfig] :data_capture_config
1436
1764
  #
1437
1765
  # @option params [Array<Types::Tag>] :tags
1438
- # A list of key-value pairs. For more information, see [Using Cost
1439
- # Allocation Tags][1] in the <i> AWS Billing and Cost Management User
1440
- # Guide</i>.
1766
+ # An array of key-value pairs. You can use tags to categorize your AWS
1767
+ # resources in different ways, for example, by purpose, owner, or
1768
+ # environment. For more information, see [Tagging AWS Resources][1].
1441
1769
  #
1442
1770
  #
1443
1771
  #
1444
- # [1]: https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html#allocation-what
1772
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
1445
1773
  #
1446
1774
  # @option params [String] :kms_key_id
1447
1775
  # The Amazon Resource Name (ARN) of a AWS Key Management Service key
@@ -1618,6 +1946,173 @@ module Aws::SageMaker
1618
1946
  req.send_request(options)
1619
1947
  end
1620
1948
 
1949
+ # Create a new `FeatureGroup`. A `FeatureGroup` is a group of `Features`
1950
+ # defined in the `FeatureStore` to describe a `Record`.
1951
+ #
1952
+ # The `FeatureGroup` defines the schema and features contained in the
1953
+ # FeatureGroup. A `FeatureGroup` definition is composed of a list of
1954
+ # `Features`, a `RecordIdentifierFeatureName`, an `EventTimeFeatureName`
1955
+ # and configurations for its `OnlineStore` and `OfflineStore`. Check
1956
+ # [AWS service quotas][1] to see the `FeatureGroup`s quota for your AWS
1957
+ # account.
1958
+ #
1959
+ # You must include at least one of `OnlineStoreConfig` and
1960
+ # `OfflineStoreConfig` to create a `FeatureGroup`.
1961
+ #
1962
+ #
1963
+ #
1964
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html
1965
+ #
1966
+ # @option params [required, String] :feature_group_name
1967
+ # The name of the `FeatureGroup`. The name must be unique within an AWS
1968
+ # Region in an AWS account. The name:
1969
+ #
1970
+ # * Must start and end with an alphanumeric character.
1971
+ #
1972
+ # * Can only contain alphanumeric character and hyphens. Spaces are not
1973
+ # allowed.
1974
+ #
1975
+ # @option params [required, String] :record_identifier_feature_name
1976
+ # The name of the `Feature` whose value uniquely identifies a `Record`
1977
+ # defined in the `FeatureStore`. Only the latest record per identifier
1978
+ # value will be stored in the `OnlineStore`.
1979
+ # `RecordIdentifierFeatureName` must be one of feature definitions'
1980
+ # names.
1981
+ #
1982
+ # You use the `RecordIdentifierFeatureName` to access data in a
1983
+ # `FeatureStore`.
1984
+ #
1985
+ # This name:
1986
+ #
1987
+ # * Must start and end with an alphanumeric character.
1988
+ #
1989
+ # * Can only contains alphanumeric characters, hyphens, underscores.
1990
+ # Spaces are not allowed.
1991
+ #
1992
+ # @option params [required, String] :event_time_feature_name
1993
+ # The name of the feature that stores the `EventTime` of a `Record` in a
1994
+ # `FeatureGroup`.
1995
+ #
1996
+ # An `EventTime` is a point in time when a new event occurs that
1997
+ # corresponds to the creation or update of a `Record` in a
1998
+ # `FeatureGroup`. All `Records` in the `FeatureGroup` must have a
1999
+ # corresponding `EventTime`.
2000
+ #
2001
+ # An `EventTime` can be a `String` or `Fractional`.
2002
+ #
2003
+ # * `Fractional`\: `EventTime` feature values must be a Unix timestamp
2004
+ # in seconds.
2005
+ #
2006
+ # * `String`\: `EventTime` feature values must be an ISO-8601 string in
2007
+ # the format. The following formats are supported
2008
+ # `yyyy-MM-dd'T'HH:mm:ssZ` and `yyyy-MM-dd'T'HH:mm:ss.SSSZ` where
2009
+ # `yyyy`, `MM`, and `dd` represent the year, month, and day
2010
+ # respectively and `HH`, `mm`, `ss`, and if applicable, `SSS`
2011
+ # represent the hour, month, second and milliseconds respsectively.
2012
+ # `'T'` and `Z` are constants.
2013
+ #
2014
+ # @option params [required, Array<Types::FeatureDefinition>] :feature_definitions
2015
+ # A list of `Feature` names and types. `Name` and `Type` is compulsory
2016
+ # per `Feature`.
2017
+ #
2018
+ # Valid feature `FeatureType`s are `Integral`, `Fractional` and
2019
+ # `String`.
2020
+ #
2021
+ # `FeatureName`s cannot be any of the following: `is_deleted`,
2022
+ # `write_time`, `api_invocation_time`
2023
+ #
2024
+ # You can create up to 2,500 `FeatureDefinition`s per `FeatureGroup`.
2025
+ #
2026
+ # @option params [Types::OnlineStoreConfig] :online_store_config
2027
+ # You can turn the `OnlineStore` on or off by specifying `True` for the
2028
+ # `EnableOnlineStore` flag in `OnlineStoreConfig`; the default value is
2029
+ # `False`.
2030
+ #
2031
+ # You can also include an AWS KMS key ID (`KMSKeyId`) for at-rest
2032
+ # encryption of the `OnlineStore`.
2033
+ #
2034
+ # @option params [Types::OfflineStoreConfig] :offline_store_config
2035
+ # Use this to configure an `OfflineFeatureStore`. This parameter allows
2036
+ # you to specify:
2037
+ #
2038
+ # * The Amazon Simple Storage Service (Amazon S3) location of an
2039
+ # `OfflineStore`.
2040
+ #
2041
+ # * A configuration for an AWS Glue or AWS Hive data cataolgue.
2042
+ #
2043
+ # * An KMS encryption key to encrypt the Amazon S3 location used for
2044
+ # `OfflineStore`.
2045
+ #
2046
+ # To learn more about this parameter, see OfflineStoreConfig.
2047
+ #
2048
+ # @option params [String] :role_arn
2049
+ # The Amazon Resource Name (ARN) of the IAM execution role used to
2050
+ # persist data into the `OfflineStore` if an `OfflineStoreConfig` is
2051
+ # provided.
2052
+ #
2053
+ # @option params [String] :description
2054
+ # A free-form description of a `FeatureGroup`.
2055
+ #
2056
+ # @option params [Array<Types::Tag>] :tags
2057
+ # Tags used to identify `Features` in each `FeatureGroup`.
2058
+ #
2059
+ # @return [Types::CreateFeatureGroupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2060
+ #
2061
+ # * {Types::CreateFeatureGroupResponse#feature_group_arn #feature_group_arn} => String
2062
+ #
2063
+ # @example Request syntax with placeholder values
2064
+ #
2065
+ # resp = client.create_feature_group({
2066
+ # feature_group_name: "FeatureGroupName", # required
2067
+ # record_identifier_feature_name: "FeatureName", # required
2068
+ # event_time_feature_name: "FeatureName", # required
2069
+ # feature_definitions: [ # required
2070
+ # {
2071
+ # feature_name: "FeatureName",
2072
+ # feature_type: "Integral", # accepts Integral, Fractional, String
2073
+ # },
2074
+ # ],
2075
+ # online_store_config: {
2076
+ # security_config: {
2077
+ # kms_key_id: "KmsKeyId",
2078
+ # },
2079
+ # enable_online_store: false,
2080
+ # },
2081
+ # offline_store_config: {
2082
+ # s3_storage_config: { # required
2083
+ # s3_uri: "S3Uri", # required
2084
+ # kms_key_id: "KmsKeyId",
2085
+ # },
2086
+ # disable_glue_table_creation: false,
2087
+ # data_catalog_config: {
2088
+ # table_name: "TableName", # required
2089
+ # catalog: "Catalog", # required
2090
+ # database: "Database", # required
2091
+ # },
2092
+ # },
2093
+ # role_arn: "RoleArn",
2094
+ # description: "Description",
2095
+ # tags: [
2096
+ # {
2097
+ # key: "TagKey", # required
2098
+ # value: "TagValue", # required
2099
+ # },
2100
+ # ],
2101
+ # })
2102
+ #
2103
+ # @example Response structure
2104
+ #
2105
+ # resp.feature_group_arn #=> String
2106
+ #
2107
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateFeatureGroup AWS API Documentation
2108
+ #
2109
+ # @overload create_feature_group(params = {})
2110
+ # @param [Hash] params ({})
2111
+ def create_feature_group(params = {}, options = {})
2112
+ req = build_request(:create_feature_group, params)
2113
+ req.send_request(options)
2114
+ end
2115
+
1621
2116
  # Creates a flow definition.
1622
2117
  #
1623
2118
  # @option params [required, String] :flow_definition_name
@@ -1815,14 +2310,14 @@ module Aws::SageMaker
1815
2310
  # @option params [Array<Types::Tag>] :tags
1816
2311
  # An array of key-value pairs. You can use tags to categorize your AWS
1817
2312
  # resources in different ways, for example, by purpose, owner, or
1818
- # environment. For more information, see [AWS Tagging Strategies][1].
2313
+ # environment. For more information, see [Tagging AWS Resources][1].
1819
2314
  #
1820
2315
  # Tags that you specify for the tuning job are also added to all
1821
2316
  # training jobs that the tuning job launches.
1822
2317
  #
1823
2318
  #
1824
2319
  #
1825
- # [1]: https://aws.amazon.com/answers/account-management/aws-tagging-strategies/
2320
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
1826
2321
  #
1827
2322
  # @return [Types::CreateHyperParameterTuningJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1828
2323
  #
@@ -2486,13 +2981,13 @@ module Aws::SageMaker
2486
2981
  # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/sagemaker-roles.html
2487
2982
  #
2488
2983
  # @option params [Array<Types::Tag>] :tags
2489
- # An array of key-value pairs. For more information, see [Using Cost
2490
- # Allocation Tags][1] in the *AWS Billing and Cost Management User
2491
- # Guide*.
2984
+ # An array of key-value pairs. You can use tags to categorize your AWS
2985
+ # resources in different ways, for example, by purpose, owner, or
2986
+ # environment. For more information, see [Tagging AWS Resources][1].
2492
2987
  #
2493
2988
  #
2494
2989
  #
2495
- # [1]: https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html#allocation-what
2990
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
2496
2991
  #
2497
2992
  # @option params [Types::VpcConfig] :vpc_config
2498
2993
  # A VpcConfig object that specifies the VPC that you want your model to
@@ -2575,9 +3070,9 @@ module Aws::SageMaker
2575
3070
  end
2576
3071
 
2577
3072
  # Creates a model package that you can use to create Amazon SageMaker
2578
- # models or list on AWS Marketplace. Buyers can subscribe to model
2579
- # packages listed on AWS Marketplace to create models in Amazon
2580
- # SageMaker.
3073
+ # models or list on AWS Marketplace, or a versioned model that is part
3074
+ # of a model group. Buyers can subscribe to model packages listed on AWS
3075
+ # Marketplace to create models in Amazon SageMaker.
2581
3076
  #
2582
3077
  # To create a model package by specifying a Docker container that
2583
3078
  # contains your inference code and the Amazon S3 location of your model
@@ -2585,10 +3080,28 @@ module Aws::SageMaker
2585
3080
  # model from an algorithm resource that you created or subscribed to in
2586
3081
  # AWS Marketplace, provide a value for `SourceAlgorithmSpecification`.
2587
3082
  #
3083
+ # <note markdown="1"> There are two types of model packages:
3084
+ #
3085
+ # * Versioned - a model that is part of a model group in the model
3086
+ # registry.
3087
+ #
3088
+ # * Unversioned - a model package that is not part of a model group.
3089
+ #
3090
+ # </note>
3091
+ #
2588
3092
  # @option params [String] :model_package_name
2589
3093
  # The name of the model package. The name must have 1 to 63 characters.
2590
3094
  # Valid characters are a-z, A-Z, 0-9, and - (hyphen).
2591
3095
  #
3096
+ # This parameter is required for unversioned models. It is not
3097
+ # applicable to versioned models.
3098
+ #
3099
+ # @option params [String] :model_package_group_name
3100
+ # The name of the model group that this model version belongs to.
3101
+ #
3102
+ # This parameter is required for versioned models, and does not apply to
3103
+ # unversioned models.
3104
+ #
2592
3105
  # @option params [String] :model_package_description
2593
3106
  # A description of the model package.
2594
3107
  #
@@ -2615,6 +3128,40 @@ module Aws::SageMaker
2615
3128
  # @option params [Boolean] :certify_for_marketplace
2616
3129
  # Whether to certify the model package for listing on AWS Marketplace.
2617
3130
  #
3131
+ # This parameter is optional for unversioned models, and does not apply
3132
+ # to versioned models.
3133
+ #
3134
+ # @option params [Array<Types::Tag>] :tags
3135
+ # A list of key value pairs associated with the model. For more
3136
+ # information, see [Tagging AWS resources][1] in the *AWS General
3137
+ # Reference Guide*.
3138
+ #
3139
+ #
3140
+ #
3141
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
3142
+ #
3143
+ # @option params [String] :model_approval_status
3144
+ # Whether the model is approved for deployment.
3145
+ #
3146
+ # This parameter is optional for versioned models, and does not apply to
3147
+ # unversioned models.
3148
+ #
3149
+ # For versioned models, the value of this parameter must be set to
3150
+ # `Approved` to deploy the model.
3151
+ #
3152
+ # @option params [Types::MetadataProperties] :metadata_properties
3153
+ # Metadata properties of the tracking entity, trial, or trial component.
3154
+ #
3155
+ # @option params [Types::ModelMetrics] :model_metrics
3156
+ # A structure that contains model metrics reports.
3157
+ #
3158
+ # @option params [String] :client_token
3159
+ # A unique token that guarantees that the call to this API is
3160
+ # idempotent.
3161
+ #
3162
+ # **A suitable default value is auto-generated.** You should normally
3163
+ # not need to pass this option.**
3164
+ #
2618
3165
  # @return [Types::CreateModelPackageOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2619
3166
  #
2620
3167
  # * {Types::CreateModelPackageOutput#model_package_arn #model_package_arn} => String
@@ -2623,6 +3170,7 @@ module Aws::SageMaker
2623
3170
  #
2624
3171
  # resp = client.create_model_package({
2625
3172
  # model_package_name: "EntityName",
3173
+ # model_package_group_name: "EntityName",
2626
3174
  # model_package_description: "EntityDescription",
2627
3175
  # inference_specification: {
2628
3176
  # containers: [ # required
@@ -2634,8 +3182,8 @@ module Aws::SageMaker
2634
3182
  # product_id: "ProductId",
2635
3183
  # },
2636
3184
  # ],
2637
- # supported_transform_instance_types: ["ml.m4.xlarge"], # required, 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
2638
- # supported_realtime_inference_instance_types: ["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
3185
+ # 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
3186
+ # 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
2639
3187
  # supported_content_types: ["ContentType"], # required
2640
3188
  # supported_response_mime_types: ["ResponseMIMEType"], # required
2641
3189
  # },
@@ -2686,6 +3234,60 @@ module Aws::SageMaker
2686
3234
  # ],
2687
3235
  # },
2688
3236
  # certify_for_marketplace: false,
3237
+ # tags: [
3238
+ # {
3239
+ # key: "TagKey", # required
3240
+ # value: "TagValue", # required
3241
+ # },
3242
+ # ],
3243
+ # model_approval_status: "Approved", # accepts Approved, Rejected, PendingManualApproval
3244
+ # metadata_properties: {
3245
+ # commit_id: "MetadataPropertyValue",
3246
+ # repository: "MetadataPropertyValue",
3247
+ # generated_by: "MetadataPropertyValue",
3248
+ # project_id: "MetadataPropertyValue",
3249
+ # },
3250
+ # model_metrics: {
3251
+ # model_quality: {
3252
+ # statistics: {
3253
+ # content_type: "ContentType", # required
3254
+ # content_digest: "ContentDigest",
3255
+ # s3_uri: "S3Uri", # required
3256
+ # },
3257
+ # constraints: {
3258
+ # content_type: "ContentType", # required
3259
+ # content_digest: "ContentDigest",
3260
+ # s3_uri: "S3Uri", # required
3261
+ # },
3262
+ # },
3263
+ # model_data_quality: {
3264
+ # statistics: {
3265
+ # content_type: "ContentType", # required
3266
+ # content_digest: "ContentDigest",
3267
+ # s3_uri: "S3Uri", # required
3268
+ # },
3269
+ # constraints: {
3270
+ # content_type: "ContentType", # required
3271
+ # content_digest: "ContentDigest",
3272
+ # s3_uri: "S3Uri", # required
3273
+ # },
3274
+ # },
3275
+ # bias: {
3276
+ # report: {
3277
+ # content_type: "ContentType", # required
3278
+ # content_digest: "ContentDigest",
3279
+ # s3_uri: "S3Uri", # required
3280
+ # },
3281
+ # },
3282
+ # explainability: {
3283
+ # report: {
3284
+ # content_type: "ContentType", # required
3285
+ # content_digest: "ContentDigest",
3286
+ # s3_uri: "S3Uri", # required
3287
+ # },
3288
+ # },
3289
+ # },
3290
+ # client_token: "ClientToken",
2689
3291
  # })
2690
3292
  #
2691
3293
  # @example Response structure
@@ -2701,6 +3303,54 @@ module Aws::SageMaker
2701
3303
  req.send_request(options)
2702
3304
  end
2703
3305
 
3306
+ # Creates a model group. A model group contains a group of model
3307
+ # versions.
3308
+ #
3309
+ # @option params [required, String] :model_package_group_name
3310
+ # The name of the model group.
3311
+ #
3312
+ # @option params [String] :model_package_group_description
3313
+ # A description for the model group.
3314
+ #
3315
+ # @option params [Array<Types::Tag>] :tags
3316
+ # A list of key value pairs associated with the model group. For more
3317
+ # information, see [Tagging AWS resources][1] in the *AWS General
3318
+ # Reference Guide*.
3319
+ #
3320
+ #
3321
+ #
3322
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
3323
+ #
3324
+ # @return [Types::CreateModelPackageGroupOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3325
+ #
3326
+ # * {Types::CreateModelPackageGroupOutput#model_package_group_arn #model_package_group_arn} => String
3327
+ #
3328
+ # @example Request syntax with placeholder values
3329
+ #
3330
+ # resp = client.create_model_package_group({
3331
+ # model_package_group_name: "EntityName", # required
3332
+ # model_package_group_description: "EntityDescription",
3333
+ # tags: [
3334
+ # {
3335
+ # key: "TagKey", # required
3336
+ # value: "TagValue", # required
3337
+ # },
3338
+ # ],
3339
+ # })
3340
+ #
3341
+ # @example Response structure
3342
+ #
3343
+ # resp.model_package_group_arn #=> String
3344
+ #
3345
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateModelPackageGroup AWS API Documentation
3346
+ #
3347
+ # @overload create_model_package_group(params = {})
3348
+ # @param [Hash] params ({})
3349
+ def create_model_package_group(params = {}, options = {})
3350
+ req = build_request(:create_model_package_group, params)
3351
+ req.send_request(options)
3352
+ end
3353
+
2704
3354
  # Creates a schedule that regularly starts Amazon SageMaker Processing
2705
3355
  # Jobs to monitor the data captured for an Amazon SageMaker Endoint.
2706
3356
  #
@@ -2730,7 +3380,7 @@ module Aws::SageMaker
2730
3380
  # schedule_config: {
2731
3381
  # schedule_expression: "ScheduleExpression", # required
2732
3382
  # },
2733
- # monitoring_job_definition: { # required
3383
+ # monitoring_job_definition: {
2734
3384
  # baseline_config: {
2735
3385
  # constraints_resource: {
2736
3386
  # s3_uri: "S3Uri",
@@ -2905,8 +3555,13 @@ module Aws::SageMaker
2905
3555
  # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/enabling-keys.html
2906
3556
  #
2907
3557
  # @option params [Array<Types::Tag>] :tags
2908
- # A list of tags to associate with the notebook instance. You can add
2909
- # tags later by using the `CreateTags` API.
3558
+ # An array of key-value pairs. You can use tags to categorize your AWS
3559
+ # resources in different ways, for example, by purpose, owner, or
3560
+ # environment. For more information, see [Tagging AWS Resources][1].
3561
+ #
3562
+ #
3563
+ #
3564
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
2910
3565
  #
2911
3566
  # @option params [String] :lifecycle_config_name
2912
3567
  # The name of a lifecycle configuration to associate with the notebook
@@ -3095,6 +3750,69 @@ module Aws::SageMaker
3095
3750
  req.send_request(options)
3096
3751
  end
3097
3752
 
3753
+ # Creates a pipeline using a JSON pipeline definition.
3754
+ #
3755
+ # @option params [required, String] :pipeline_name
3756
+ # The name of the pipeline.
3757
+ #
3758
+ # @option params [String] :pipeline_display_name
3759
+ # The display name of the pipeline.
3760
+ #
3761
+ # @option params [required, String] :pipeline_definition
3762
+ # The JSON pipeline definition of the pipeline.
3763
+ #
3764
+ # @option params [String] :pipeline_description
3765
+ # A description of the pipeline.
3766
+ #
3767
+ # @option params [required, String] :client_request_token
3768
+ # A unique, case-sensitive identifier that you provide to ensure the
3769
+ # idempotency of the operation. An idempotent operation completes no
3770
+ # more than one time.
3771
+ #
3772
+ # **A suitable default value is auto-generated.** You should normally
3773
+ # not need to pass this option.**
3774
+ #
3775
+ # @option params [required, String] :role_arn
3776
+ # The Amazon Resource Name (ARN) of the role used by the pipeline to
3777
+ # access and create resources.
3778
+ #
3779
+ # @option params [Array<Types::Tag>] :tags
3780
+ # A list of tags to apply to the created pipeline.
3781
+ #
3782
+ # @return [Types::CreatePipelineResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3783
+ #
3784
+ # * {Types::CreatePipelineResponse#pipeline_arn #pipeline_arn} => String
3785
+ #
3786
+ # @example Request syntax with placeholder values
3787
+ #
3788
+ # resp = client.create_pipeline({
3789
+ # pipeline_name: "PipelineName", # required
3790
+ # pipeline_display_name: "PipelineName",
3791
+ # pipeline_definition: "PipelineDefinition", # required
3792
+ # pipeline_description: "PipelineDescription",
3793
+ # client_request_token: "IdempotencyToken", # required
3794
+ # role_arn: "RoleArn", # required
3795
+ # tags: [
3796
+ # {
3797
+ # key: "TagKey", # required
3798
+ # value: "TagValue", # required
3799
+ # },
3800
+ # ],
3801
+ # })
3802
+ #
3803
+ # @example Response structure
3804
+ #
3805
+ # resp.pipeline_arn #=> String
3806
+ #
3807
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreatePipeline AWS API Documentation
3808
+ #
3809
+ # @overload create_pipeline(params = {})
3810
+ # @param [Hash] params ({})
3811
+ def create_pipeline(params = {}, options = {})
3812
+ req = build_request(:create_pipeline, params)
3813
+ req.send_request(options)
3814
+ end
3815
+
3098
3816
  # Creates a URL for a specified UserProfile in a Domain. When accessed
3099
3817
  # in a web browser, the user will be automatically signed in to Amazon
3100
3818
  # SageMaker Studio, and granted access to all of the Apps and files
@@ -3206,9 +3924,7 @@ module Aws::SageMaker
3206
3924
  # Creates a processing job.
3207
3925
  #
3208
3926
  # @option params [Array<Types::ProcessingInput>] :processing_inputs
3209
- # For each input, data is downloaded from S3 into the processing
3210
- # container before the processing job begins running if "S3InputMode"
3211
- # is set to `File`.
3927
+ # List of input configurations for the processing job.
3212
3928
  #
3213
3929
  # @option params [Types::ProcessingOutputConfig] :processing_output_config
3214
3930
  # Output configuration for the processing job.
@@ -3268,25 +3984,56 @@ module Aws::SageMaker
3268
3984
  # processing_inputs: [
3269
3985
  # {
3270
3986
  # input_name: "String", # required
3271
- # s3_input: { # required
3987
+ # app_managed: false,
3988
+ # s3_input: {
3272
3989
  # s3_uri: "S3Uri", # required
3273
- # local_path: "ProcessingLocalPath", # required
3990
+ # local_path: "ProcessingLocalPath",
3274
3991
  # s3_data_type: "ManifestFile", # required, accepts ManifestFile, S3Prefix
3275
- # s3_input_mode: "Pipe", # required, accepts Pipe, File
3992
+ # s3_input_mode: "Pipe", # accepts Pipe, File
3276
3993
  # s3_data_distribution_type: "FullyReplicated", # accepts FullyReplicated, ShardedByS3Key
3277
3994
  # s3_compression_type: "None", # accepts None, Gzip
3278
3995
  # },
3996
+ # dataset_definition: {
3997
+ # athena_dataset_definition: {
3998
+ # catalog: "AthenaCatalog", # required
3999
+ # database: "AthenaDatabase", # required
4000
+ # query_string: "AthenaQueryString", # required
4001
+ # work_group: "AthenaWorkGroup",
4002
+ # output_s3_uri: "S3Uri", # required
4003
+ # kms_key_id: "KmsKeyId",
4004
+ # output_format: "PARQUET", # required, accepts PARQUET, ORC, AVRO, JSON, TEXTFILE
4005
+ # output_compression: "GZIP", # accepts GZIP, SNAPPY, ZLIB
4006
+ # },
4007
+ # redshift_dataset_definition: {
4008
+ # cluster_id: "RedshiftClusterId", # required
4009
+ # database: "RedshiftDatabase", # required
4010
+ # db_user: "RedshiftUserName", # required
4011
+ # query_string: "RedshiftQueryString", # required
4012
+ # cluster_role_arn: "RoleArn", # required
4013
+ # output_s3_uri: "S3Uri", # required
4014
+ # kms_key_id: "KmsKeyId",
4015
+ # output_format: "PARQUET", # required, accepts PARQUET, CSV
4016
+ # output_compression: "None", # accepts None, GZIP, BZIP2, ZSTD, SNAPPY
4017
+ # },
4018
+ # local_path: "ProcessingLocalPath",
4019
+ # data_distribution_type: "FullyReplicated", # accepts FullyReplicated, ShardedByS3Key
4020
+ # input_mode: "Pipe", # accepts Pipe, File
4021
+ # },
3279
4022
  # },
3280
4023
  # ],
3281
4024
  # processing_output_config: {
3282
4025
  # outputs: [ # required
3283
4026
  # {
3284
4027
  # output_name: "String", # required
3285
- # s3_output: { # required
4028
+ # s3_output: {
3286
4029
  # s3_uri: "S3Uri", # required
3287
4030
  # local_path: "ProcessingLocalPath", # required
3288
4031
  # s3_upload_mode: "Continuous", # required, accepts Continuous, EndOfJob
3289
4032
  # },
4033
+ # feature_store_output: {
4034
+ # feature_group_name: "FeatureGroupName", # required
4035
+ # },
4036
+ # app_managed: false,
3290
4037
  # },
3291
4038
  # ],
3292
4039
  # kms_key_id: "KmsKeyId",
@@ -3346,6 +4093,76 @@ module Aws::SageMaker
3346
4093
  req.send_request(options)
3347
4094
  end
3348
4095
 
4096
+ # Creates a machine learning (ML) project that can contain one or more
4097
+ # templates that set up an ML pipeline from training to deploying an
4098
+ # approved model.
4099
+ #
4100
+ # @option params [required, String] :project_name
4101
+ # The name of the project.
4102
+ #
4103
+ # @option params [String] :project_description
4104
+ # A description for the project.
4105
+ #
4106
+ # @option params [required, Types::ServiceCatalogProvisioningDetails] :service_catalog_provisioning_details
4107
+ # The product ID and provisioning artifact ID to provision a service
4108
+ # catalog. For information, see [What is AWS Service Catalog][1].
4109
+ #
4110
+ #
4111
+ #
4112
+ # [1]: https://docs.aws.amazon.com/servicecatalog/latest/adminguide/introduction.html
4113
+ #
4114
+ # @option params [Array<Types::Tag>] :tags
4115
+ # An array of key-value pairs that you want to use to organize and track
4116
+ # your AWS resource costs. For more information, see [Tagging AWS
4117
+ # resources][1] in the *AWS General Reference Guide*.
4118
+ #
4119
+ #
4120
+ #
4121
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
4122
+ #
4123
+ # @return [Types::CreateProjectOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4124
+ #
4125
+ # * {Types::CreateProjectOutput#project_arn #project_arn} => String
4126
+ # * {Types::CreateProjectOutput#project_id #project_id} => String
4127
+ #
4128
+ # @example Request syntax with placeholder values
4129
+ #
4130
+ # resp = client.create_project({
4131
+ # project_name: "ProjectEntityName", # required
4132
+ # project_description: "EntityDescription",
4133
+ # service_catalog_provisioning_details: { # required
4134
+ # product_id: "ServiceCatalogEntityId", # required
4135
+ # provisioning_artifact_id: "ServiceCatalogEntityId", # required
4136
+ # path_id: "ServiceCatalogEntityId",
4137
+ # provisioning_parameters: [
4138
+ # {
4139
+ # key: "ProvisioningParameterKey",
4140
+ # value: "ProvisioningParameterValue",
4141
+ # },
4142
+ # ],
4143
+ # },
4144
+ # tags: [
4145
+ # {
4146
+ # key: "TagKey", # required
4147
+ # value: "TagValue", # required
4148
+ # },
4149
+ # ],
4150
+ # })
4151
+ #
4152
+ # @example Response structure
4153
+ #
4154
+ # resp.project_arn #=> String
4155
+ # resp.project_id #=> String
4156
+ #
4157
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateProject AWS API Documentation
4158
+ #
4159
+ # @overload create_project(params = {})
4160
+ # @param [Hash] params ({})
4161
+ def create_project(params = {}, options = {})
4162
+ req = build_request(:create_project, params)
4163
+ req.send_request(options)
4164
+ end
4165
+
3349
4166
  # Starts a model training job. After training completes, Amazon
3350
4167
  # SageMaker saves the resulting model artifacts to an Amazon S3 location
3351
4168
  # that you specify.
@@ -3354,7 +4171,7 @@ module Aws::SageMaker
3354
4171
  # services, you can use the resulting model artifacts as part of the
3355
4172
  # model. You can also use the artifacts in a machine learning service
3356
4173
  # other than Amazon SageMaker, provided that you know how to use them
3357
- # for inferences.
4174
+ # for inference.
3358
4175
  #
3359
4176
  # In the request body, you provide the following:
3360
4177
  #
@@ -3382,7 +4199,7 @@ module Aws::SageMaker
3382
4199
  # learning models by up to 80% by using Amazon EC2 Spot instances. For
3383
4200
  # more information, see [Managed Spot Training][2].
3384
4201
  #
3385
- # * `RoleARN` - The Amazon Resource Number (ARN) that Amazon SageMaker
4202
+ # * `RoleArn` - The Amazon Resource Number (ARN) that Amazon SageMaker
3386
4203
  # assumes to perform tasks on your behalf during model training. You
3387
4204
  # must grant this role the necessary permissions so that Amazon
3388
4205
  # SageMaker can successfully complete model training.
@@ -3505,13 +4322,13 @@ module Aws::SageMaker
3505
4322
  # of training are not lost.
3506
4323
  #
3507
4324
  # @option params [Array<Types::Tag>] :tags
3508
- # An array of key-value pairs. For more information, see [Using Cost
3509
- # Allocation Tags][1] in the *AWS Billing and Cost Management User
3510
- # Guide*.
4325
+ # An array of key-value pairs. You can use tags to categorize your AWS
4326
+ # resources in different ways, for example, by purpose, owner, or
4327
+ # environment. For more information, see [Tagging AWS Resources][1].
3511
4328
  #
3512
4329
  #
3513
4330
  #
3514
- # [1]: https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html#allocation-what
4331
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
3515
4332
  #
3516
4333
  # @option params [Boolean] :enable_network_isolation
3517
4334
  # Isolates the training container. No inbound or outbound network calls
@@ -3942,6 +4759,9 @@ module Aws::SageMaker
3942
4759
  # @option params [required, String] :experiment_name
3943
4760
  # The name of the experiment to associate the trial with.
3944
4761
  #
4762
+ # @option params [Types::MetadataProperties] :metadata_properties
4763
+ # Metadata properties of the tracking entity, trial, or trial component.
4764
+ #
3945
4765
  # @option params [Array<Types::Tag>] :tags
3946
4766
  # A list of tags to associate with the trial. You can use Search API to
3947
4767
  # search on the tags.
@@ -3956,6 +4776,12 @@ module Aws::SageMaker
3956
4776
  # trial_name: "ExperimentEntityName", # required
3957
4777
  # display_name: "ExperimentEntityName",
3958
4778
  # experiment_name: "ExperimentEntityName", # required
4779
+ # metadata_properties: {
4780
+ # commit_id: "MetadataPropertyValue",
4781
+ # repository: "MetadataPropertyValue",
4782
+ # generated_by: "MetadataPropertyValue",
4783
+ # project_id: "MetadataPropertyValue",
4784
+ # },
3959
4785
  # tags: [
3960
4786
  # {
3961
4787
  # key: "TagKey", # required
@@ -4036,6 +4862,9 @@ module Aws::SageMaker
4036
4862
  # The output artifacts for the component. Examples of output artifacts
4037
4863
  # are metrics, snapshots, logs, and images.
4038
4864
  #
4865
+ # @option params [Types::MetadataProperties] :metadata_properties
4866
+ # Metadata properties of the tracking entity, trial, or trial component.
4867
+ #
4039
4868
  # @option params [Array<Types::Tag>] :tags
4040
4869
  # A list of tags to associate with the component. You can use Search API
4041
4870
  # to search on the tags.
@@ -4073,6 +4902,12 @@ module Aws::SageMaker
4073
4902
  # value: "TrialComponentArtifactValue", # required
4074
4903
  # },
4075
4904
  # },
4905
+ # metadata_properties: {
4906
+ # commit_id: "MetadataPropertyValue",
4907
+ # repository: "MetadataPropertyValue",
4908
+ # generated_by: "MetadataPropertyValue",
4909
+ # project_id: "MetadataPropertyValue",
4910
+ # },
4076
4911
  # tags: [
4077
4912
  # {
4078
4913
  # key: "TagKey", # required
@@ -4405,6 +5240,34 @@ module Aws::SageMaker
4405
5240
  req.send_request(options)
4406
5241
  end
4407
5242
 
5243
+ # Deletes an action.
5244
+ #
5245
+ # @option params [required, String] :action_name
5246
+ # The name of the action to delete.
5247
+ #
5248
+ # @return [Types::DeleteActionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5249
+ #
5250
+ # * {Types::DeleteActionResponse#action_arn #action_arn} => String
5251
+ #
5252
+ # @example Request syntax with placeholder values
5253
+ #
5254
+ # resp = client.delete_action({
5255
+ # action_name: "ExperimentEntityName", # required
5256
+ # })
5257
+ #
5258
+ # @example Response structure
5259
+ #
5260
+ # resp.action_arn #=> String
5261
+ #
5262
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteAction AWS API Documentation
5263
+ #
5264
+ # @overload delete_action(params = {})
5265
+ # @param [Hash] params ({})
5266
+ def delete_action(params = {}, options = {})
5267
+ req = build_request(:delete_action, params)
5268
+ req.send_request(options)
5269
+ end
5270
+
4408
5271
  # Removes the specified algorithm from your account.
4409
5272
  #
4410
5273
  # @option params [required, String] :algorithm_name
@@ -4483,6 +5346,81 @@ module Aws::SageMaker
4483
5346
  req.send_request(options)
4484
5347
  end
4485
5348
 
5349
+ # Deletes an artifact. Either `ArtifactArn` or `Source` must be
5350
+ # specified.
5351
+ #
5352
+ # @option params [String] :artifact_arn
5353
+ # The Amazon Resource Name (ARN) of the artifact to delete.
5354
+ #
5355
+ # @option params [Types::ArtifactSource] :source
5356
+ # The URI of the source.
5357
+ #
5358
+ # @return [Types::DeleteArtifactResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5359
+ #
5360
+ # * {Types::DeleteArtifactResponse#artifact_arn #artifact_arn} => String
5361
+ #
5362
+ # @example Request syntax with placeholder values
5363
+ #
5364
+ # resp = client.delete_artifact({
5365
+ # artifact_arn: "ArtifactArn",
5366
+ # source: {
5367
+ # source_uri: "String2048", # required
5368
+ # source_types: [
5369
+ # {
5370
+ # source_id_type: "MD5Hash", # required, accepts MD5Hash, S3ETag, S3Version, Custom
5371
+ # value: "String256", # required
5372
+ # },
5373
+ # ],
5374
+ # },
5375
+ # })
5376
+ #
5377
+ # @example Response structure
5378
+ #
5379
+ # resp.artifact_arn #=> String
5380
+ #
5381
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteArtifact AWS API Documentation
5382
+ #
5383
+ # @overload delete_artifact(params = {})
5384
+ # @param [Hash] params ({})
5385
+ def delete_artifact(params = {}, options = {})
5386
+ req = build_request(:delete_artifact, params)
5387
+ req.send_request(options)
5388
+ end
5389
+
5390
+ # Deletes an association.
5391
+ #
5392
+ # @option params [required, String] :source_arn
5393
+ # The ARN of the source.
5394
+ #
5395
+ # @option params [required, String] :destination_arn
5396
+ # The Amazon Resource Name (ARN) of the destination.
5397
+ #
5398
+ # @return [Types::DeleteAssociationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5399
+ #
5400
+ # * {Types::DeleteAssociationResponse#source_arn #source_arn} => String
5401
+ # * {Types::DeleteAssociationResponse#destination_arn #destination_arn} => String
5402
+ #
5403
+ # @example Request syntax with placeholder values
5404
+ #
5405
+ # resp = client.delete_association({
5406
+ # source_arn: "AssociationEntityArn", # required
5407
+ # destination_arn: "AssociationEntityArn", # required
5408
+ # })
5409
+ #
5410
+ # @example Response structure
5411
+ #
5412
+ # resp.source_arn #=> String
5413
+ # resp.destination_arn #=> String
5414
+ #
5415
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteAssociation AWS API Documentation
5416
+ #
5417
+ # @overload delete_association(params = {})
5418
+ # @param [Hash] params ({})
5419
+ def delete_association(params = {}, options = {})
5420
+ req = build_request(:delete_association, params)
5421
+ req.send_request(options)
5422
+ end
5423
+
4486
5424
  # Deletes the specified Git repository from your account.
4487
5425
  #
4488
5426
  # @option params [required, String] :code_repository_name
@@ -4505,6 +5443,34 @@ module Aws::SageMaker
4505
5443
  req.send_request(options)
4506
5444
  end
4507
5445
 
5446
+ # Deletes an context.
5447
+ #
5448
+ # @option params [required, String] :context_name
5449
+ # The name of the context to delete.
5450
+ #
5451
+ # @return [Types::DeleteContextResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5452
+ #
5453
+ # * {Types::DeleteContextResponse#context_arn #context_arn} => String
5454
+ #
5455
+ # @example Request syntax with placeholder values
5456
+ #
5457
+ # resp = client.delete_context({
5458
+ # context_name: "ExperimentEntityName", # required
5459
+ # })
5460
+ #
5461
+ # @example Response structure
5462
+ #
5463
+ # resp.context_arn #=> String
5464
+ #
5465
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteContext AWS API Documentation
5466
+ #
5467
+ # @overload delete_context(params = {})
5468
+ # @param [Hash] params ({})
5469
+ def delete_context(params = {}, options = {})
5470
+ req = build_request(:delete_context, params)
5471
+ req.send_request(options)
5472
+ end
5473
+
4508
5474
  # Used to delete a domain. If you onboarded with IAM mode, you will need
4509
5475
  # to delete your domain to onboard again using SSO. Use with caution.
4510
5476
  # All of the members of the domain will lose access to their EFS volume,
@@ -4630,6 +5596,35 @@ module Aws::SageMaker
4630
5596
  req.send_request(options)
4631
5597
  end
4632
5598
 
5599
+ # Delete the `FeatureGroup` and any data that was written to the
5600
+ # `OnlineStore` of the `FeatureGroup`. Data cannot be accessed from the
5601
+ # `OnlineStore` immediately after `DeleteFeatureGroup` is called.
5602
+ #
5603
+ # Data written into the `OfflineStore` will not be deleted. The AWS Glue
5604
+ # database and tables that are automatically created for your
5605
+ # `OfflineStore` are not deleted.
5606
+ #
5607
+ # @option params [required, String] :feature_group_name
5608
+ # The name of the `FeatureGroup` you want to delete. The name must be
5609
+ # unique within an AWS Region in an AWS account.
5610
+ #
5611
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
5612
+ #
5613
+ # @example Request syntax with placeholder values
5614
+ #
5615
+ # resp = client.delete_feature_group({
5616
+ # feature_group_name: "FeatureGroupName", # required
5617
+ # })
5618
+ #
5619
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteFeatureGroup AWS API Documentation
5620
+ #
5621
+ # @overload delete_feature_group(params = {})
5622
+ # @param [Hash] params ({})
5623
+ def delete_feature_group(params = {}, options = {})
5624
+ req = build_request(:delete_feature_group, params)
5625
+ req.send_request(options)
5626
+ end
5627
+
4633
5628
  # Deletes the specified flow definition.
4634
5629
  #
4635
5630
  # @option params [required, String] :flow_definition_name
@@ -4782,11 +5777,55 @@ module Aws::SageMaker
4782
5777
  req.send_request(options)
4783
5778
  end
4784
5779
 
4785
- # Deletes a monitoring schedule. Also stops the schedule had not already
4786
- # been stopped. This does not delete the job execution history of the
4787
- # monitoring schedule.
5780
+ # Deletes the specified model group.
4788
5781
  #
4789
- # @option params [required, String] :monitoring_schedule_name
5782
+ # @option params [required, String] :model_package_group_name
5783
+ # The name of the model group to delete.
5784
+ #
5785
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
5786
+ #
5787
+ # @example Request syntax with placeholder values
5788
+ #
5789
+ # resp = client.delete_model_package_group({
5790
+ # model_package_group_name: "ArnOrName", # required
5791
+ # })
5792
+ #
5793
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteModelPackageGroup AWS API Documentation
5794
+ #
5795
+ # @overload delete_model_package_group(params = {})
5796
+ # @param [Hash] params ({})
5797
+ def delete_model_package_group(params = {}, options = {})
5798
+ req = build_request(:delete_model_package_group, params)
5799
+ req.send_request(options)
5800
+ end
5801
+
5802
+ # Deletes a model group resource policy.
5803
+ #
5804
+ # @option params [required, String] :model_package_group_name
5805
+ # The name of the model group for which to delete the policy.
5806
+ #
5807
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
5808
+ #
5809
+ # @example Request syntax with placeholder values
5810
+ #
5811
+ # resp = client.delete_model_package_group_policy({
5812
+ # model_package_group_name: "EntityName", # required
5813
+ # })
5814
+ #
5815
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteModelPackageGroupPolicy AWS API Documentation
5816
+ #
5817
+ # @overload delete_model_package_group_policy(params = {})
5818
+ # @param [Hash] params ({})
5819
+ def delete_model_package_group_policy(params = {}, options = {})
5820
+ req = build_request(:delete_model_package_group_policy, params)
5821
+ req.send_request(options)
5822
+ end
5823
+
5824
+ # Deletes a monitoring schedule. Also stops the schedule had not already
5825
+ # been stopped. This does not delete the job execution history of the
5826
+ # monitoring schedule.
5827
+ #
5828
+ # @option params [required, String] :monitoring_schedule_name
4790
5829
  # The name of the monitoring schedule to delete.
4791
5830
  #
4792
5831
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
@@ -4856,6 +5895,65 @@ module Aws::SageMaker
4856
5895
  req.send_request(options)
4857
5896
  end
4858
5897
 
5898
+ # Deletes a pipeline.
5899
+ #
5900
+ # @option params [required, String] :pipeline_name
5901
+ # The name of the pipeline to delete.
5902
+ #
5903
+ # @option params [required, String] :client_request_token
5904
+ # A unique, case-sensitive identifier that you provide to ensure the
5905
+ # idempotency of the operation. An idempotent operation completes no
5906
+ # more than one time.
5907
+ #
5908
+ # **A suitable default value is auto-generated.** You should normally
5909
+ # not need to pass this option.**
5910
+ #
5911
+ # @return [Types::DeletePipelineResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5912
+ #
5913
+ # * {Types::DeletePipelineResponse#pipeline_arn #pipeline_arn} => String
5914
+ #
5915
+ # @example Request syntax with placeholder values
5916
+ #
5917
+ # resp = client.delete_pipeline({
5918
+ # pipeline_name: "PipelineName", # required
5919
+ # client_request_token: "IdempotencyToken", # required
5920
+ # })
5921
+ #
5922
+ # @example Response structure
5923
+ #
5924
+ # resp.pipeline_arn #=> String
5925
+ #
5926
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeletePipeline AWS API Documentation
5927
+ #
5928
+ # @overload delete_pipeline(params = {})
5929
+ # @param [Hash] params ({})
5930
+ def delete_pipeline(params = {}, options = {})
5931
+ req = build_request(:delete_pipeline, params)
5932
+ req.send_request(options)
5933
+ end
5934
+
5935
+ # Delete the specified project.
5936
+ #
5937
+ # @option params [required, String] :project_name
5938
+ # The name of the project to delete.
5939
+ #
5940
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
5941
+ #
5942
+ # @example Request syntax with placeholder values
5943
+ #
5944
+ # resp = client.delete_project({
5945
+ # project_name: "ProjectEntityName", # required
5946
+ # })
5947
+ #
5948
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteProject AWS API Documentation
5949
+ #
5950
+ # @overload delete_project(params = {})
5951
+ # @param [Hash] params ({})
5952
+ def delete_project(params = {}, options = {})
5953
+ req = build_request(:delete_project, params)
5954
+ req.send_request(options)
5955
+ end
5956
+
4859
5957
  # Deletes the specified tags from an Amazon SageMaker resource.
4860
5958
  #
4861
5959
  # To list a resource's tags, use the `ListTags` API.
@@ -5039,6 +6137,66 @@ module Aws::SageMaker
5039
6137
  req.send_request(options)
5040
6138
  end
5041
6139
 
6140
+ # Describes an action.
6141
+ #
6142
+ # @option params [required, String] :action_name
6143
+ # The name of the action to describe.
6144
+ #
6145
+ # @return [Types::DescribeActionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6146
+ #
6147
+ # * {Types::DescribeActionResponse#action_name #action_name} => String
6148
+ # * {Types::DescribeActionResponse#action_arn #action_arn} => String
6149
+ # * {Types::DescribeActionResponse#source #source} => Types::ActionSource
6150
+ # * {Types::DescribeActionResponse#action_type #action_type} => String
6151
+ # * {Types::DescribeActionResponse#description #description} => String
6152
+ # * {Types::DescribeActionResponse#status #status} => String
6153
+ # * {Types::DescribeActionResponse#properties #properties} => Hash&lt;String,String&gt;
6154
+ # * {Types::DescribeActionResponse#creation_time #creation_time} => Time
6155
+ # * {Types::DescribeActionResponse#created_by #created_by} => Types::UserContext
6156
+ # * {Types::DescribeActionResponse#last_modified_time #last_modified_time} => Time
6157
+ # * {Types::DescribeActionResponse#last_modified_by #last_modified_by} => Types::UserContext
6158
+ # * {Types::DescribeActionResponse#metadata_properties #metadata_properties} => Types::MetadataProperties
6159
+ #
6160
+ # @example Request syntax with placeholder values
6161
+ #
6162
+ # resp = client.describe_action({
6163
+ # action_name: "ExperimentEntityName", # required
6164
+ # })
6165
+ #
6166
+ # @example Response structure
6167
+ #
6168
+ # resp.action_name #=> String
6169
+ # resp.action_arn #=> String
6170
+ # resp.source.source_uri #=> String
6171
+ # resp.source.source_type #=> String
6172
+ # resp.source.source_id #=> String
6173
+ # resp.action_type #=> String
6174
+ # resp.description #=> String
6175
+ # resp.status #=> String, one of "Unknown", "InProgress", "Completed", "Failed", "Stopping", "Stopped"
6176
+ # resp.properties #=> Hash
6177
+ # resp.properties["StringParameterValue"] #=> String
6178
+ # resp.creation_time #=> Time
6179
+ # resp.created_by.user_profile_arn #=> String
6180
+ # resp.created_by.user_profile_name #=> String
6181
+ # resp.created_by.domain_id #=> String
6182
+ # resp.last_modified_time #=> Time
6183
+ # resp.last_modified_by.user_profile_arn #=> String
6184
+ # resp.last_modified_by.user_profile_name #=> String
6185
+ # resp.last_modified_by.domain_id #=> String
6186
+ # resp.metadata_properties.commit_id #=> String
6187
+ # resp.metadata_properties.repository #=> String
6188
+ # resp.metadata_properties.generated_by #=> String
6189
+ # resp.metadata_properties.project_id #=> String
6190
+ #
6191
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeAction AWS API Documentation
6192
+ #
6193
+ # @overload describe_action(params = {})
6194
+ # @param [Hash] params ({})
6195
+ def describe_action(params = {}, options = {})
6196
+ req = build_request(:describe_action, params)
6197
+ req.send_request(options)
6198
+ end
6199
+
5042
6200
  # Returns a description of the specified algorithm that is in your
5043
6201
  # account.
5044
6202
  #
@@ -5290,6 +6448,63 @@ module Aws::SageMaker
5290
6448
  req.send_request(options)
5291
6449
  end
5292
6450
 
6451
+ # Describes an artifact.
6452
+ #
6453
+ # @option params [required, String] :artifact_arn
6454
+ # The Amazon Resource Name (ARN) of the artifact to describe.
6455
+ #
6456
+ # @return [Types::DescribeArtifactResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6457
+ #
6458
+ # * {Types::DescribeArtifactResponse#artifact_name #artifact_name} => String
6459
+ # * {Types::DescribeArtifactResponse#artifact_arn #artifact_arn} => String
6460
+ # * {Types::DescribeArtifactResponse#source #source} => Types::ArtifactSource
6461
+ # * {Types::DescribeArtifactResponse#artifact_type #artifact_type} => String
6462
+ # * {Types::DescribeArtifactResponse#properties #properties} => Hash&lt;String,String&gt;
6463
+ # * {Types::DescribeArtifactResponse#creation_time #creation_time} => Time
6464
+ # * {Types::DescribeArtifactResponse#created_by #created_by} => Types::UserContext
6465
+ # * {Types::DescribeArtifactResponse#last_modified_time #last_modified_time} => Time
6466
+ # * {Types::DescribeArtifactResponse#last_modified_by #last_modified_by} => Types::UserContext
6467
+ # * {Types::DescribeArtifactResponse#metadata_properties #metadata_properties} => Types::MetadataProperties
6468
+ #
6469
+ # @example Request syntax with placeholder values
6470
+ #
6471
+ # resp = client.describe_artifact({
6472
+ # artifact_arn: "ArtifactArn", # required
6473
+ # })
6474
+ #
6475
+ # @example Response structure
6476
+ #
6477
+ # resp.artifact_name #=> String
6478
+ # resp.artifact_arn #=> String
6479
+ # resp.source.source_uri #=> String
6480
+ # resp.source.source_types #=> Array
6481
+ # resp.source.source_types[0].source_id_type #=> String, one of "MD5Hash", "S3ETag", "S3Version", "Custom"
6482
+ # resp.source.source_types[0].value #=> String
6483
+ # resp.artifact_type #=> String
6484
+ # resp.properties #=> Hash
6485
+ # resp.properties["StringParameterValue"] #=> String
6486
+ # resp.creation_time #=> Time
6487
+ # resp.created_by.user_profile_arn #=> String
6488
+ # resp.created_by.user_profile_name #=> String
6489
+ # resp.created_by.domain_id #=> String
6490
+ # resp.last_modified_time #=> Time
6491
+ # resp.last_modified_by.user_profile_arn #=> String
6492
+ # resp.last_modified_by.user_profile_name #=> String
6493
+ # resp.last_modified_by.domain_id #=> String
6494
+ # resp.metadata_properties.commit_id #=> String
6495
+ # resp.metadata_properties.repository #=> String
6496
+ # resp.metadata_properties.generated_by #=> String
6497
+ # resp.metadata_properties.project_id #=> String
6498
+ #
6499
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeArtifact AWS API Documentation
6500
+ #
6501
+ # @overload describe_artifact(params = {})
6502
+ # @param [Hash] params ({})
6503
+ def describe_artifact(params = {}, options = {})
6504
+ req = build_request(:describe_artifact, params)
6505
+ req.send_request(options)
6506
+ end
6507
+
5293
6508
  # Returns information about an Amazon SageMaker job.
5294
6509
  #
5295
6510
  # @option params [required, String] :auto_ml_job_name
@@ -5447,6 +6662,7 @@ module Aws::SageMaker
5447
6662
  # * {Types::DescribeCompilationJobResponse#last_modified_time #last_modified_time} => Time
5448
6663
  # * {Types::DescribeCompilationJobResponse#failure_reason #failure_reason} => String
5449
6664
  # * {Types::DescribeCompilationJobResponse#model_artifacts #model_artifacts} => Types::ModelArtifacts
6665
+ # * {Types::DescribeCompilationJobResponse#model_digests #model_digests} => Types::ModelDigests
5450
6666
  # * {Types::DescribeCompilationJobResponse#role_arn #role_arn} => String
5451
6667
  # * {Types::DescribeCompilationJobResponse#input_config #input_config} => Types::InputConfig
5452
6668
  # * {Types::DescribeCompilationJobResponse#output_config #output_config} => Types::OutputConfig
@@ -5470,16 +6686,18 @@ module Aws::SageMaker
5470
6686
  # resp.last_modified_time #=> Time
5471
6687
  # resp.failure_reason #=> String
5472
6688
  # resp.model_artifacts.s3_model_artifacts #=> String
6689
+ # resp.model_digests.artifact_digest #=> String
5473
6690
  # resp.role_arn #=> String
5474
6691
  # resp.input_config.s3_uri #=> String
5475
6692
  # resp.input_config.data_input_config #=> String
5476
- # resp.input_config.framework #=> String, one of "TENSORFLOW", "KERAS", "MXNET", "ONNX", "PYTORCH", "XGBOOST", "TFLITE", "DARKNET"
6693
+ # resp.input_config.framework #=> String, one of "TENSORFLOW", "KERAS", "MXNET", "ONNX", "PYTORCH", "XGBOOST", "TFLITE", "DARKNET", "SKLEARN"
5477
6694
  # resp.output_config.s3_output_location #=> String
5478
- # resp.output_config.target_device #=> String, one of "lambda", "ml_m4", "ml_m5", "ml_c4", "ml_c5", "ml_p2", "ml_p3", "ml_g4dn", "ml_inf1", "jetson_tx1", "jetson_tx2", "jetson_nano", "jetson_xavier", "rasp3b", "imx8qm", "deeplens", "rk3399", "rk3288", "aisage", "sbe_c", "qcs605", "qcs603", "sitara_am57x", "amba_cv22", "x86_win32", "x86_win64", "coreml"
6695
+ # resp.output_config.target_device #=> String, one of "lambda", "ml_m4", "ml_m5", "ml_c4", "ml_c5", "ml_p2", "ml_p3", "ml_g4dn", "ml_inf1", "jetson_tx1", "jetson_tx2", "jetson_nano", "jetson_xavier", "rasp3b", "imx8qm", "deeplens", "rk3399", "rk3288", "aisage", "sbe_c", "qcs605", "qcs603", "sitara_am57x", "amba_cv22", "x86_win32", "x86_win64", "coreml", "jacinto_tda4vm"
5479
6696
  # resp.output_config.target_platform.os #=> String, one of "ANDROID", "LINUX"
5480
6697
  # resp.output_config.target_platform.arch #=> String, one of "X86_64", "X86", "ARM64", "ARM_EABI", "ARM_EABIHF"
5481
6698
  # resp.output_config.target_platform.accelerator #=> String, one of "INTEL_GRAPHICS", "MALI", "NVIDIA"
5482
6699
  # resp.output_config.compiler_options #=> String
6700
+ # resp.output_config.kms_key_id #=> String
5483
6701
  #
5484
6702
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeCompilationJob AWS API Documentation
5485
6703
  #
@@ -5490,6 +6708,59 @@ module Aws::SageMaker
5490
6708
  req.send_request(options)
5491
6709
  end
5492
6710
 
6711
+ # Describes a context.
6712
+ #
6713
+ # @option params [required, String] :context_name
6714
+ # The name of the context to describe.
6715
+ #
6716
+ # @return [Types::DescribeContextResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6717
+ #
6718
+ # * {Types::DescribeContextResponse#context_name #context_name} => String
6719
+ # * {Types::DescribeContextResponse#context_arn #context_arn} => String
6720
+ # * {Types::DescribeContextResponse#source #source} => Types::ContextSource
6721
+ # * {Types::DescribeContextResponse#context_type #context_type} => String
6722
+ # * {Types::DescribeContextResponse#description #description} => String
6723
+ # * {Types::DescribeContextResponse#properties #properties} => Hash&lt;String,String&gt;
6724
+ # * {Types::DescribeContextResponse#creation_time #creation_time} => Time
6725
+ # * {Types::DescribeContextResponse#created_by #created_by} => Types::UserContext
6726
+ # * {Types::DescribeContextResponse#last_modified_time #last_modified_time} => Time
6727
+ # * {Types::DescribeContextResponse#last_modified_by #last_modified_by} => Types::UserContext
6728
+ #
6729
+ # @example Request syntax with placeholder values
6730
+ #
6731
+ # resp = client.describe_context({
6732
+ # context_name: "ExperimentEntityName", # required
6733
+ # })
6734
+ #
6735
+ # @example Response structure
6736
+ #
6737
+ # resp.context_name #=> String
6738
+ # resp.context_arn #=> String
6739
+ # resp.source.source_uri #=> String
6740
+ # resp.source.source_type #=> String
6741
+ # resp.source.source_id #=> String
6742
+ # resp.context_type #=> String
6743
+ # resp.description #=> String
6744
+ # resp.properties #=> Hash
6745
+ # resp.properties["StringParameterValue"] #=> String
6746
+ # resp.creation_time #=> Time
6747
+ # resp.created_by.user_profile_arn #=> String
6748
+ # resp.created_by.user_profile_name #=> String
6749
+ # resp.created_by.domain_id #=> String
6750
+ # resp.last_modified_time #=> Time
6751
+ # resp.last_modified_by.user_profile_arn #=> String
6752
+ # resp.last_modified_by.user_profile_name #=> String
6753
+ # resp.last_modified_by.domain_id #=> String
6754
+ #
6755
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeContext AWS API Documentation
6756
+ #
6757
+ # @overload describe_context(params = {})
6758
+ # @param [Hash] params ({})
6759
+ def describe_context(params = {}, options = {})
6760
+ req = build_request(:describe_context, params)
6761
+ req.send_request(options)
6762
+ end
6763
+
5493
6764
  # The description of the domain.
5494
6765
  #
5495
6766
  # @option params [required, String] :domain_id
@@ -5585,6 +6856,7 @@ module Aws::SageMaker
5585
6856
  # * {Types::DescribeEndpointOutput#failure_reason #failure_reason} => String
5586
6857
  # * {Types::DescribeEndpointOutput#creation_time #creation_time} => Time
5587
6858
  # * {Types::DescribeEndpointOutput#last_modified_time #last_modified_time} => Time
6859
+ # * {Types::DescribeEndpointOutput#last_deployment_config #last_deployment_config} => Types::DeploymentConfig
5588
6860
  #
5589
6861
  # @example Request syntax with placeholder values
5590
6862
  #
@@ -5616,6 +6888,14 @@ module Aws::SageMaker
5616
6888
  # resp.failure_reason #=> String
5617
6889
  # resp.creation_time #=> Time
5618
6890
  # resp.last_modified_time #=> Time
6891
+ # resp.last_deployment_config.blue_green_update_policy.traffic_routing_configuration.type #=> String, one of "ALL_AT_ONCE", "CANARY"
6892
+ # resp.last_deployment_config.blue_green_update_policy.traffic_routing_configuration.wait_interval_in_seconds #=> Integer
6893
+ # resp.last_deployment_config.blue_green_update_policy.traffic_routing_configuration.canary_size.type #=> String, one of "INSTANCE_COUNT", "CAPACITY_PERCENT"
6894
+ # resp.last_deployment_config.blue_green_update_policy.traffic_routing_configuration.canary_size.value #=> Integer
6895
+ # resp.last_deployment_config.blue_green_update_policy.termination_wait_in_seconds #=> Integer
6896
+ # resp.last_deployment_config.blue_green_update_policy.maximum_execution_timeout_in_seconds #=> Integer
6897
+ # resp.last_deployment_config.auto_rollback_configuration.alarms #=> Array
6898
+ # resp.last_deployment_config.auto_rollback_configuration.alarms[0].alarm_name #=> String
5619
6899
  #
5620
6900
  #
5621
6901
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -5735,6 +7015,76 @@ module Aws::SageMaker
5735
7015
  req.send_request(options)
5736
7016
  end
5737
7017
 
7018
+ # Use this operation to describe a `FeatureGroup`. The response includes
7019
+ # information on the creation time, `FeatureGroup` name, the unique
7020
+ # identifier for each `FeatureGroup`, and more.
7021
+ #
7022
+ # @option params [required, String] :feature_group_name
7023
+ # The name of the `FeatureGroup` you want described.
7024
+ #
7025
+ # @option params [String] :next_token
7026
+ # A token to resume pagination of the list of `Features`
7027
+ # (`FeatureDefinitions`). 2,500 `Features` are returned by default.
7028
+ #
7029
+ # @return [Types::DescribeFeatureGroupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7030
+ #
7031
+ # * {Types::DescribeFeatureGroupResponse#feature_group_arn #feature_group_arn} => String
7032
+ # * {Types::DescribeFeatureGroupResponse#feature_group_name #feature_group_name} => String
7033
+ # * {Types::DescribeFeatureGroupResponse#record_identifier_feature_name #record_identifier_feature_name} => String
7034
+ # * {Types::DescribeFeatureGroupResponse#event_time_feature_name #event_time_feature_name} => String
7035
+ # * {Types::DescribeFeatureGroupResponse#feature_definitions #feature_definitions} => Array&lt;Types::FeatureDefinition&gt;
7036
+ # * {Types::DescribeFeatureGroupResponse#creation_time #creation_time} => Time
7037
+ # * {Types::DescribeFeatureGroupResponse#online_store_config #online_store_config} => Types::OnlineStoreConfig
7038
+ # * {Types::DescribeFeatureGroupResponse#offline_store_config #offline_store_config} => Types::OfflineStoreConfig
7039
+ # * {Types::DescribeFeatureGroupResponse#role_arn #role_arn} => String
7040
+ # * {Types::DescribeFeatureGroupResponse#feature_group_status #feature_group_status} => String
7041
+ # * {Types::DescribeFeatureGroupResponse#offline_store_status #offline_store_status} => Types::OfflineStoreStatus
7042
+ # * {Types::DescribeFeatureGroupResponse#failure_reason #failure_reason} => String
7043
+ # * {Types::DescribeFeatureGroupResponse#description #description} => String
7044
+ # * {Types::DescribeFeatureGroupResponse#next_token #next_token} => String
7045
+ #
7046
+ # @example Request syntax with placeholder values
7047
+ #
7048
+ # resp = client.describe_feature_group({
7049
+ # feature_group_name: "FeatureGroupName", # required
7050
+ # next_token: "NextToken",
7051
+ # })
7052
+ #
7053
+ # @example Response structure
7054
+ #
7055
+ # resp.feature_group_arn #=> String
7056
+ # resp.feature_group_name #=> String
7057
+ # resp.record_identifier_feature_name #=> String
7058
+ # resp.event_time_feature_name #=> String
7059
+ # resp.feature_definitions #=> Array
7060
+ # resp.feature_definitions[0].feature_name #=> String
7061
+ # resp.feature_definitions[0].feature_type #=> String, one of "Integral", "Fractional", "String"
7062
+ # resp.creation_time #=> Time
7063
+ # resp.online_store_config.security_config.kms_key_id #=> String
7064
+ # resp.online_store_config.enable_online_store #=> Boolean
7065
+ # resp.offline_store_config.s3_storage_config.s3_uri #=> String
7066
+ # resp.offline_store_config.s3_storage_config.kms_key_id #=> String
7067
+ # resp.offline_store_config.disable_glue_table_creation #=> Boolean
7068
+ # resp.offline_store_config.data_catalog_config.table_name #=> String
7069
+ # resp.offline_store_config.data_catalog_config.catalog #=> String
7070
+ # resp.offline_store_config.data_catalog_config.database #=> String
7071
+ # resp.role_arn #=> String
7072
+ # resp.feature_group_status #=> String, one of "Creating", "Created", "CreateFailed", "Deleting", "DeleteFailed"
7073
+ # resp.offline_store_status.status #=> String, one of "Active", "Blocked", "Disabled"
7074
+ # resp.offline_store_status.blocked_reason #=> String
7075
+ # resp.failure_reason #=> String
7076
+ # resp.description #=> String
7077
+ # resp.next_token #=> String
7078
+ #
7079
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeFeatureGroup AWS API Documentation
7080
+ #
7081
+ # @overload describe_feature_group(params = {})
7082
+ # @param [Hash] params ({})
7083
+ def describe_feature_group(params = {}, options = {})
7084
+ req = build_request(:describe_feature_group, params)
7085
+ req.send_request(options)
7086
+ end
7087
+
5738
7088
  # Returns information about the specified flow definition.
5739
7089
  #
5740
7090
  # @option params [required, String] :flow_definition_name
@@ -6318,6 +7668,8 @@ module Aws::SageMaker
6318
7668
  # @return [Types::DescribeModelPackageOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6319
7669
  #
6320
7670
  # * {Types::DescribeModelPackageOutput#model_package_name #model_package_name} => String
7671
+ # * {Types::DescribeModelPackageOutput#model_package_group_name #model_package_group_name} => String
7672
+ # * {Types::DescribeModelPackageOutput#model_package_version #model_package_version} => Integer
6321
7673
  # * {Types::DescribeModelPackageOutput#model_package_arn #model_package_arn} => String
6322
7674
  # * {Types::DescribeModelPackageOutput#model_package_description #model_package_description} => String
6323
7675
  # * {Types::DescribeModelPackageOutput#creation_time #creation_time} => Time
@@ -6327,6 +7679,13 @@ module Aws::SageMaker
6327
7679
  # * {Types::DescribeModelPackageOutput#model_package_status #model_package_status} => String
6328
7680
  # * {Types::DescribeModelPackageOutput#model_package_status_details #model_package_status_details} => Types::ModelPackageStatusDetails
6329
7681
  # * {Types::DescribeModelPackageOutput#certify_for_marketplace #certify_for_marketplace} => Boolean
7682
+ # * {Types::DescribeModelPackageOutput#model_approval_status #model_approval_status} => String
7683
+ # * {Types::DescribeModelPackageOutput#created_by #created_by} => Types::UserContext
7684
+ # * {Types::DescribeModelPackageOutput#metadata_properties #metadata_properties} => Types::MetadataProperties
7685
+ # * {Types::DescribeModelPackageOutput#model_metrics #model_metrics} => Types::ModelMetrics
7686
+ # * {Types::DescribeModelPackageOutput#last_modified_time #last_modified_time} => Time
7687
+ # * {Types::DescribeModelPackageOutput#last_modified_by #last_modified_by} => Types::UserContext
7688
+ # * {Types::DescribeModelPackageOutput#approval_description #approval_description} => String
6330
7689
  #
6331
7690
  # @example Request syntax with placeholder values
6332
7691
  #
@@ -6337,6 +7696,8 @@ module Aws::SageMaker
6337
7696
  # @example Response structure
6338
7697
  #
6339
7698
  # resp.model_package_name #=> String
7699
+ # resp.model_package_group_name #=> String
7700
+ # resp.model_package_version #=> Integer
6340
7701
  # resp.model_package_arn #=> String
6341
7702
  # resp.model_package_description #=> String
6342
7703
  # resp.creation_time #=> Time
@@ -6387,6 +7748,37 @@ module Aws::SageMaker
6387
7748
  # resp.model_package_status_details.image_scan_statuses[0].status #=> String, one of "NotStarted", "InProgress", "Completed", "Failed"
6388
7749
  # resp.model_package_status_details.image_scan_statuses[0].failure_reason #=> String
6389
7750
  # resp.certify_for_marketplace #=> Boolean
7751
+ # resp.model_approval_status #=> String, one of "Approved", "Rejected", "PendingManualApproval"
7752
+ # resp.created_by.user_profile_arn #=> String
7753
+ # resp.created_by.user_profile_name #=> String
7754
+ # resp.created_by.domain_id #=> String
7755
+ # resp.metadata_properties.commit_id #=> String
7756
+ # resp.metadata_properties.repository #=> String
7757
+ # resp.metadata_properties.generated_by #=> String
7758
+ # resp.metadata_properties.project_id #=> String
7759
+ # resp.model_metrics.model_quality.statistics.content_type #=> String
7760
+ # resp.model_metrics.model_quality.statistics.content_digest #=> String
7761
+ # resp.model_metrics.model_quality.statistics.s3_uri #=> String
7762
+ # resp.model_metrics.model_quality.constraints.content_type #=> String
7763
+ # resp.model_metrics.model_quality.constraints.content_digest #=> String
7764
+ # resp.model_metrics.model_quality.constraints.s3_uri #=> String
7765
+ # resp.model_metrics.model_data_quality.statistics.content_type #=> String
7766
+ # resp.model_metrics.model_data_quality.statistics.content_digest #=> String
7767
+ # resp.model_metrics.model_data_quality.statistics.s3_uri #=> String
7768
+ # resp.model_metrics.model_data_quality.constraints.content_type #=> String
7769
+ # resp.model_metrics.model_data_quality.constraints.content_digest #=> String
7770
+ # resp.model_metrics.model_data_quality.constraints.s3_uri #=> String
7771
+ # resp.model_metrics.bias.report.content_type #=> String
7772
+ # resp.model_metrics.bias.report.content_digest #=> String
7773
+ # resp.model_metrics.bias.report.s3_uri #=> String
7774
+ # resp.model_metrics.explainability.report.content_type #=> String
7775
+ # resp.model_metrics.explainability.report.content_digest #=> String
7776
+ # resp.model_metrics.explainability.report.s3_uri #=> String
7777
+ # resp.last_modified_time #=> Time
7778
+ # resp.last_modified_by.user_profile_arn #=> String
7779
+ # resp.last_modified_by.user_profile_name #=> String
7780
+ # resp.last_modified_by.domain_id #=> String
7781
+ # resp.approval_description #=> String
6390
7782
  #
6391
7783
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeModelPackage AWS API Documentation
6392
7784
  #
@@ -6397,6 +7789,46 @@ module Aws::SageMaker
6397
7789
  req.send_request(options)
6398
7790
  end
6399
7791
 
7792
+ # Gets a description for the specified model group.
7793
+ #
7794
+ # @option params [required, String] :model_package_group_name
7795
+ # The name of the model group to describe.
7796
+ #
7797
+ # @return [Types::DescribeModelPackageGroupOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7798
+ #
7799
+ # * {Types::DescribeModelPackageGroupOutput#model_package_group_name #model_package_group_name} => String
7800
+ # * {Types::DescribeModelPackageGroupOutput#model_package_group_arn #model_package_group_arn} => String
7801
+ # * {Types::DescribeModelPackageGroupOutput#model_package_group_description #model_package_group_description} => String
7802
+ # * {Types::DescribeModelPackageGroupOutput#creation_time #creation_time} => Time
7803
+ # * {Types::DescribeModelPackageGroupOutput#created_by #created_by} => Types::UserContext
7804
+ # * {Types::DescribeModelPackageGroupOutput#model_package_group_status #model_package_group_status} => String
7805
+ #
7806
+ # @example Request syntax with placeholder values
7807
+ #
7808
+ # resp = client.describe_model_package_group({
7809
+ # model_package_group_name: "ArnOrName", # required
7810
+ # })
7811
+ #
7812
+ # @example Response structure
7813
+ #
7814
+ # resp.model_package_group_name #=> String
7815
+ # resp.model_package_group_arn #=> String
7816
+ # resp.model_package_group_description #=> String
7817
+ # resp.creation_time #=> Time
7818
+ # resp.created_by.user_profile_arn #=> String
7819
+ # resp.created_by.user_profile_name #=> String
7820
+ # resp.created_by.domain_id #=> String
7821
+ # resp.model_package_group_status #=> String, one of "Pending", "InProgress", "Completed", "Failed", "Deleting", "DeleteFailed"
7822
+ #
7823
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeModelPackageGroup AWS API Documentation
7824
+ #
7825
+ # @overload describe_model_package_group(params = {})
7826
+ # @param [Hash] params ({})
7827
+ def describe_model_package_group(params = {}, options = {})
7828
+ req = build_request(:describe_model_package_group, params)
7829
+ req.send_request(options)
7830
+ end
7831
+
6400
7832
  # Describes the schedule for a monitoring job.
6401
7833
  #
6402
7834
  # @option params [required, String] :monitoring_schedule_name
@@ -6604,6 +8036,138 @@ module Aws::SageMaker
6604
8036
  req.send_request(options)
6605
8037
  end
6606
8038
 
8039
+ # Describes the details of a pipeline.
8040
+ #
8041
+ # @option params [required, String] :pipeline_name
8042
+ # The name of the pipeline to describe.
8043
+ #
8044
+ # @return [Types::DescribePipelineResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8045
+ #
8046
+ # * {Types::DescribePipelineResponse#pipeline_arn #pipeline_arn} => String
8047
+ # * {Types::DescribePipelineResponse#pipeline_name #pipeline_name} => String
8048
+ # * {Types::DescribePipelineResponse#pipeline_display_name #pipeline_display_name} => String
8049
+ # * {Types::DescribePipelineResponse#pipeline_definition #pipeline_definition} => String
8050
+ # * {Types::DescribePipelineResponse#pipeline_description #pipeline_description} => String
8051
+ # * {Types::DescribePipelineResponse#role_arn #role_arn} => String
8052
+ # * {Types::DescribePipelineResponse#pipeline_status #pipeline_status} => String
8053
+ # * {Types::DescribePipelineResponse#creation_time #creation_time} => Time
8054
+ # * {Types::DescribePipelineResponse#last_modified_time #last_modified_time} => Time
8055
+ # * {Types::DescribePipelineResponse#last_run_time #last_run_time} => Time
8056
+ # * {Types::DescribePipelineResponse#created_by #created_by} => Types::UserContext
8057
+ # * {Types::DescribePipelineResponse#last_modified_by #last_modified_by} => Types::UserContext
8058
+ #
8059
+ # @example Request syntax with placeholder values
8060
+ #
8061
+ # resp = client.describe_pipeline({
8062
+ # pipeline_name: "PipelineName", # required
8063
+ # })
8064
+ #
8065
+ # @example Response structure
8066
+ #
8067
+ # resp.pipeline_arn #=> String
8068
+ # resp.pipeline_name #=> String
8069
+ # resp.pipeline_display_name #=> String
8070
+ # resp.pipeline_definition #=> String
8071
+ # resp.pipeline_description #=> String
8072
+ # resp.role_arn #=> String
8073
+ # resp.pipeline_status #=> String, one of "Active"
8074
+ # resp.creation_time #=> Time
8075
+ # resp.last_modified_time #=> Time
8076
+ # resp.last_run_time #=> Time
8077
+ # resp.created_by.user_profile_arn #=> String
8078
+ # resp.created_by.user_profile_name #=> String
8079
+ # resp.created_by.domain_id #=> String
8080
+ # resp.last_modified_by.user_profile_arn #=> String
8081
+ # resp.last_modified_by.user_profile_name #=> String
8082
+ # resp.last_modified_by.domain_id #=> String
8083
+ #
8084
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribePipeline AWS API Documentation
8085
+ #
8086
+ # @overload describe_pipeline(params = {})
8087
+ # @param [Hash] params ({})
8088
+ def describe_pipeline(params = {}, options = {})
8089
+ req = build_request(:describe_pipeline, params)
8090
+ req.send_request(options)
8091
+ end
8092
+
8093
+ # Describes the details of an execution's pipeline definition.
8094
+ #
8095
+ # @option params [required, String] :pipeline_execution_arn
8096
+ # The Amazon Resource Name (ARN) of the pipeline execution.
8097
+ #
8098
+ # @return [Types::DescribePipelineDefinitionForExecutionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8099
+ #
8100
+ # * {Types::DescribePipelineDefinitionForExecutionResponse#pipeline_definition #pipeline_definition} => String
8101
+ # * {Types::DescribePipelineDefinitionForExecutionResponse#creation_time #creation_time} => Time
8102
+ #
8103
+ # @example Request syntax with placeholder values
8104
+ #
8105
+ # resp = client.describe_pipeline_definition_for_execution({
8106
+ # pipeline_execution_arn: "PipelineExecutionArn", # required
8107
+ # })
8108
+ #
8109
+ # @example Response structure
8110
+ #
8111
+ # resp.pipeline_definition #=> String
8112
+ # resp.creation_time #=> Time
8113
+ #
8114
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribePipelineDefinitionForExecution AWS API Documentation
8115
+ #
8116
+ # @overload describe_pipeline_definition_for_execution(params = {})
8117
+ # @param [Hash] params ({})
8118
+ def describe_pipeline_definition_for_execution(params = {}, options = {})
8119
+ req = build_request(:describe_pipeline_definition_for_execution, params)
8120
+ req.send_request(options)
8121
+ end
8122
+
8123
+ # Describes the details of a pipeline execution.
8124
+ #
8125
+ # @option params [required, String] :pipeline_execution_arn
8126
+ # The Amazon Resource Name (ARN) of the pipeline execution.
8127
+ #
8128
+ # @return [Types::DescribePipelineExecutionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8129
+ #
8130
+ # * {Types::DescribePipelineExecutionResponse#pipeline_arn #pipeline_arn} => String
8131
+ # * {Types::DescribePipelineExecutionResponse#pipeline_execution_arn #pipeline_execution_arn} => String
8132
+ # * {Types::DescribePipelineExecutionResponse#pipeline_execution_display_name #pipeline_execution_display_name} => String
8133
+ # * {Types::DescribePipelineExecutionResponse#pipeline_execution_status #pipeline_execution_status} => String
8134
+ # * {Types::DescribePipelineExecutionResponse#pipeline_execution_description #pipeline_execution_description} => String
8135
+ # * {Types::DescribePipelineExecutionResponse#creation_time #creation_time} => Time
8136
+ # * {Types::DescribePipelineExecutionResponse#last_modified_time #last_modified_time} => Time
8137
+ # * {Types::DescribePipelineExecutionResponse#created_by #created_by} => Types::UserContext
8138
+ # * {Types::DescribePipelineExecutionResponse#last_modified_by #last_modified_by} => Types::UserContext
8139
+ #
8140
+ # @example Request syntax with placeholder values
8141
+ #
8142
+ # resp = client.describe_pipeline_execution({
8143
+ # pipeline_execution_arn: "PipelineExecutionArn", # required
8144
+ # })
8145
+ #
8146
+ # @example Response structure
8147
+ #
8148
+ # resp.pipeline_arn #=> String
8149
+ # resp.pipeline_execution_arn #=> String
8150
+ # resp.pipeline_execution_display_name #=> String
8151
+ # resp.pipeline_execution_status #=> String, one of "Executing", "Stopping", "Stopped", "Failed", "Succeeded"
8152
+ # resp.pipeline_execution_description #=> String
8153
+ # resp.creation_time #=> Time
8154
+ # resp.last_modified_time #=> Time
8155
+ # resp.created_by.user_profile_arn #=> String
8156
+ # resp.created_by.user_profile_name #=> String
8157
+ # resp.created_by.domain_id #=> String
8158
+ # resp.last_modified_by.user_profile_arn #=> String
8159
+ # resp.last_modified_by.user_profile_name #=> String
8160
+ # resp.last_modified_by.domain_id #=> String
8161
+ #
8162
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribePipelineExecution AWS API Documentation
8163
+ #
8164
+ # @overload describe_pipeline_execution(params = {})
8165
+ # @param [Hash] params ({})
8166
+ def describe_pipeline_execution(params = {}, options = {})
8167
+ req = build_request(:describe_pipeline_execution, params)
8168
+ req.send_request(options)
8169
+ end
8170
+
6607
8171
  # Returns a description of a processing job.
6608
8172
  #
6609
8173
  # @option params [required, String] :processing_job_name
@@ -6644,17 +8208,40 @@ module Aws::SageMaker
6644
8208
  #
6645
8209
  # resp.processing_inputs #=> Array
6646
8210
  # resp.processing_inputs[0].input_name #=> String
8211
+ # resp.processing_inputs[0].app_managed #=> Boolean
6647
8212
  # resp.processing_inputs[0].s3_input.s3_uri #=> String
6648
8213
  # resp.processing_inputs[0].s3_input.local_path #=> String
6649
8214
  # resp.processing_inputs[0].s3_input.s3_data_type #=> String, one of "ManifestFile", "S3Prefix"
6650
8215
  # resp.processing_inputs[0].s3_input.s3_input_mode #=> String, one of "Pipe", "File"
6651
8216
  # resp.processing_inputs[0].s3_input.s3_data_distribution_type #=> String, one of "FullyReplicated", "ShardedByS3Key"
6652
8217
  # resp.processing_inputs[0].s3_input.s3_compression_type #=> String, one of "None", "Gzip"
8218
+ # resp.processing_inputs[0].dataset_definition.athena_dataset_definition.catalog #=> String
8219
+ # resp.processing_inputs[0].dataset_definition.athena_dataset_definition.database #=> String
8220
+ # resp.processing_inputs[0].dataset_definition.athena_dataset_definition.query_string #=> String
8221
+ # resp.processing_inputs[0].dataset_definition.athena_dataset_definition.work_group #=> String
8222
+ # resp.processing_inputs[0].dataset_definition.athena_dataset_definition.output_s3_uri #=> String
8223
+ # resp.processing_inputs[0].dataset_definition.athena_dataset_definition.kms_key_id #=> String
8224
+ # resp.processing_inputs[0].dataset_definition.athena_dataset_definition.output_format #=> String, one of "PARQUET", "ORC", "AVRO", "JSON", "TEXTFILE"
8225
+ # resp.processing_inputs[0].dataset_definition.athena_dataset_definition.output_compression #=> String, one of "GZIP", "SNAPPY", "ZLIB"
8226
+ # resp.processing_inputs[0].dataset_definition.redshift_dataset_definition.cluster_id #=> String
8227
+ # resp.processing_inputs[0].dataset_definition.redshift_dataset_definition.database #=> String
8228
+ # resp.processing_inputs[0].dataset_definition.redshift_dataset_definition.db_user #=> String
8229
+ # resp.processing_inputs[0].dataset_definition.redshift_dataset_definition.query_string #=> String
8230
+ # resp.processing_inputs[0].dataset_definition.redshift_dataset_definition.cluster_role_arn #=> String
8231
+ # resp.processing_inputs[0].dataset_definition.redshift_dataset_definition.output_s3_uri #=> String
8232
+ # resp.processing_inputs[0].dataset_definition.redshift_dataset_definition.kms_key_id #=> String
8233
+ # resp.processing_inputs[0].dataset_definition.redshift_dataset_definition.output_format #=> String, one of "PARQUET", "CSV"
8234
+ # resp.processing_inputs[0].dataset_definition.redshift_dataset_definition.output_compression #=> String, one of "None", "GZIP", "BZIP2", "ZSTD", "SNAPPY"
8235
+ # resp.processing_inputs[0].dataset_definition.local_path #=> String
8236
+ # resp.processing_inputs[0].dataset_definition.data_distribution_type #=> String, one of "FullyReplicated", "ShardedByS3Key"
8237
+ # resp.processing_inputs[0].dataset_definition.input_mode #=> String, one of "Pipe", "File"
6653
8238
  # resp.processing_output_config.outputs #=> Array
6654
8239
  # resp.processing_output_config.outputs[0].output_name #=> String
6655
8240
  # resp.processing_output_config.outputs[0].s3_output.s3_uri #=> String
6656
8241
  # resp.processing_output_config.outputs[0].s3_output.local_path #=> String
6657
8242
  # resp.processing_output_config.outputs[0].s3_output.s3_upload_mode #=> String, one of "Continuous", "EndOfJob"
8243
+ # resp.processing_output_config.outputs[0].feature_store_output.feature_group_name #=> String
8244
+ # resp.processing_output_config.outputs[0].app_managed #=> Boolean
6658
8245
  # resp.processing_output_config.kms_key_id #=> String
6659
8246
  # resp.processing_job_name #=> String
6660
8247
  # resp.processing_resources.cluster_config.instance_count #=> Integer
@@ -6705,11 +8292,63 @@ module Aws::SageMaker
6705
8292
  req.send_request(options)
6706
8293
  end
6707
8294
 
6708
- # Gets information about a work team provided by a vendor. It returns
6709
- # details about the subscription with a vendor in the AWS Marketplace.
8295
+ # Describes the details of a project.
6710
8296
  #
6711
- # @option params [required, String] :workteam_arn
6712
- # The Amazon Resource Name (ARN) of the subscribed work team to
8297
+ # @option params [required, String] :project_name
8298
+ # The name of the project to describe.
8299
+ #
8300
+ # @return [Types::DescribeProjectOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8301
+ #
8302
+ # * {Types::DescribeProjectOutput#project_arn #project_arn} => String
8303
+ # * {Types::DescribeProjectOutput#project_name #project_name} => String
8304
+ # * {Types::DescribeProjectOutput#project_id #project_id} => String
8305
+ # * {Types::DescribeProjectOutput#project_description #project_description} => String
8306
+ # * {Types::DescribeProjectOutput#service_catalog_provisioning_details #service_catalog_provisioning_details} => Types::ServiceCatalogProvisioningDetails
8307
+ # * {Types::DescribeProjectOutput#service_catalog_provisioned_product_details #service_catalog_provisioned_product_details} => Types::ServiceCatalogProvisionedProductDetails
8308
+ # * {Types::DescribeProjectOutput#project_status #project_status} => String
8309
+ # * {Types::DescribeProjectOutput#created_by #created_by} => Types::UserContext
8310
+ # * {Types::DescribeProjectOutput#creation_time #creation_time} => Time
8311
+ #
8312
+ # @example Request syntax with placeholder values
8313
+ #
8314
+ # resp = client.describe_project({
8315
+ # project_name: "ProjectEntityName", # required
8316
+ # })
8317
+ #
8318
+ # @example Response structure
8319
+ #
8320
+ # resp.project_arn #=> String
8321
+ # resp.project_name #=> String
8322
+ # resp.project_id #=> String
8323
+ # resp.project_description #=> String
8324
+ # resp.service_catalog_provisioning_details.product_id #=> String
8325
+ # resp.service_catalog_provisioning_details.provisioning_artifact_id #=> String
8326
+ # resp.service_catalog_provisioning_details.path_id #=> String
8327
+ # resp.service_catalog_provisioning_details.provisioning_parameters #=> Array
8328
+ # resp.service_catalog_provisioning_details.provisioning_parameters[0].key #=> String
8329
+ # resp.service_catalog_provisioning_details.provisioning_parameters[0].value #=> String
8330
+ # resp.service_catalog_provisioned_product_details.provisioned_product_id #=> String
8331
+ # resp.service_catalog_provisioned_product_details.provisioned_product_status_message #=> String
8332
+ # resp.project_status #=> String, one of "Pending", "CreateInProgress", "CreateCompleted", "CreateFailed", "DeleteInProgress", "DeleteFailed", "DeleteCompleted"
8333
+ # resp.created_by.user_profile_arn #=> String
8334
+ # resp.created_by.user_profile_name #=> String
8335
+ # resp.created_by.domain_id #=> String
8336
+ # resp.creation_time #=> Time
8337
+ #
8338
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeProject AWS API Documentation
8339
+ #
8340
+ # @overload describe_project(params = {})
8341
+ # @param [Hash] params ({})
8342
+ def describe_project(params = {}, options = {})
8343
+ req = build_request(:describe_project, params)
8344
+ req.send_request(options)
8345
+ end
8346
+
8347
+ # Gets information about a work team provided by a vendor. It returns
8348
+ # details about the subscription with a vendor in the AWS Marketplace.
8349
+ #
8350
+ # @option params [required, String] :workteam_arn
8351
+ # The Amazon Resource Name (ARN) of the subscribed work team to
6713
8352
  # describe.
6714
8353
  #
6715
8354
  # @return [Types::DescribeSubscribedWorkteamResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
@@ -6796,7 +8435,7 @@ module Aws::SageMaker
6796
8435
  # resp.auto_ml_job_arn #=> String
6797
8436
  # resp.model_artifacts.s3_model_artifacts #=> String
6798
8437
  # resp.training_job_status #=> String, one of "InProgress", "Completed", "Failed", "Stopping", "Stopped"
6799
- # resp.secondary_status #=> String, one of "Starting", "LaunchingMLInstances", "PreparingTrainingStack", "Downloading", "DownloadingTrainingImage", "Training", "Uploading", "Stopping", "Stopped", "MaxRuntimeExceeded", "Completed", "Failed", "Interrupted", "MaxWaitTimeExceeded"
8438
+ # resp.secondary_status #=> String, one of "Starting", "LaunchingMLInstances", "PreparingTrainingStack", "Downloading", "DownloadingTrainingImage", "Training", "Uploading", "Stopping", "Stopped", "MaxRuntimeExceeded", "Completed", "Failed", "Interrupted", "MaxWaitTimeExceeded", "Updating"
6800
8439
  # resp.failure_reason #=> String
6801
8440
  # resp.hyper_parameters #=> Hash
6802
8441
  # resp.hyper_parameters["HyperParameterKey"] #=> String
@@ -6841,7 +8480,7 @@ module Aws::SageMaker
6841
8480
  # resp.training_end_time #=> Time
6842
8481
  # resp.last_modified_time #=> Time
6843
8482
  # resp.secondary_status_transitions #=> Array
6844
- # resp.secondary_status_transitions[0].status #=> String, one of "Starting", "LaunchingMLInstances", "PreparingTrainingStack", "Downloading", "DownloadingTrainingImage", "Training", "Uploading", "Stopping", "Stopped", "MaxRuntimeExceeded", "Completed", "Failed", "Interrupted", "MaxWaitTimeExceeded"
8483
+ # resp.secondary_status_transitions[0].status #=> String, one of "Starting", "LaunchingMLInstances", "PreparingTrainingStack", "Downloading", "DownloadingTrainingImage", "Training", "Uploading", "Stopping", "Stopped", "MaxRuntimeExceeded", "Completed", "Failed", "Interrupted", "MaxWaitTimeExceeded", "Updating"
6845
8484
  # resp.secondary_status_transitions[0].start_time #=> Time
6846
8485
  # resp.secondary_status_transitions[0].end_time #=> Time
6847
8486
  # resp.secondary_status_transitions[0].status_message #=> String
@@ -7001,6 +8640,7 @@ module Aws::SageMaker
7001
8640
  # * {Types::DescribeTrialResponse#created_by #created_by} => Types::UserContext
7002
8641
  # * {Types::DescribeTrialResponse#last_modified_time #last_modified_time} => Time
7003
8642
  # * {Types::DescribeTrialResponse#last_modified_by #last_modified_by} => Types::UserContext
8643
+ # * {Types::DescribeTrialResponse#metadata_properties #metadata_properties} => Types::MetadataProperties
7004
8644
  #
7005
8645
  # @example Request syntax with placeholder values
7006
8646
  #
@@ -7024,6 +8664,10 @@ module Aws::SageMaker
7024
8664
  # resp.last_modified_by.user_profile_arn #=> String
7025
8665
  # resp.last_modified_by.user_profile_name #=> String
7026
8666
  # resp.last_modified_by.domain_id #=> String
8667
+ # resp.metadata_properties.commit_id #=> String
8668
+ # resp.metadata_properties.repository #=> String
8669
+ # resp.metadata_properties.generated_by #=> String
8670
+ # resp.metadata_properties.project_id #=> String
7027
8671
  #
7028
8672
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeTrial AWS API Documentation
7029
8673
  #
@@ -7055,6 +8699,7 @@ module Aws::SageMaker
7055
8699
  # * {Types::DescribeTrialComponentResponse#parameters #parameters} => Hash&lt;String,Types::TrialComponentParameterValue&gt;
7056
8700
  # * {Types::DescribeTrialComponentResponse#input_artifacts #input_artifacts} => Hash&lt;String,Types::TrialComponentArtifact&gt;
7057
8701
  # * {Types::DescribeTrialComponentResponse#output_artifacts #output_artifacts} => Hash&lt;String,Types::TrialComponentArtifact&gt;
8702
+ # * {Types::DescribeTrialComponentResponse#metadata_properties #metadata_properties} => Types::MetadataProperties
7058
8703
  # * {Types::DescribeTrialComponentResponse#metrics #metrics} => Array&lt;Types::TrialComponentMetricSummary&gt;
7059
8704
  #
7060
8705
  # @example Request syntax with placeholder values
@@ -7091,6 +8736,10 @@ module Aws::SageMaker
7091
8736
  # resp.output_artifacts #=> Hash
7092
8737
  # resp.output_artifacts["TrialComponentKey64"].media_type #=> String
7093
8738
  # resp.output_artifacts["TrialComponentKey64"].value #=> String
8739
+ # resp.metadata_properties.commit_id #=> String
8740
+ # resp.metadata_properties.repository #=> String
8741
+ # resp.metadata_properties.generated_by #=> String
8742
+ # resp.metadata_properties.project_id #=> String
7094
8743
  # resp.metrics #=> Array
7095
8744
  # resp.metrics[0].metric_name #=> String
7096
8745
  # resp.metrics[0].source_arn #=> String
@@ -7281,6 +8930,20 @@ module Aws::SageMaker
7281
8930
  req.send_request(options)
7282
8931
  end
7283
8932
 
8933
+ # Disables using Service Catalog in SageMaker. Service Catalog is used
8934
+ # to create SageMaker projects.
8935
+ #
8936
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
8937
+ #
8938
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DisableSagemakerServicecatalogPortfolio AWS API Documentation
8939
+ #
8940
+ # @overload disable_sagemaker_servicecatalog_portfolio(params = {})
8941
+ # @param [Hash] params ({})
8942
+ def disable_sagemaker_servicecatalog_portfolio(params = {}, options = {})
8943
+ req = build_request(:disable_sagemaker_servicecatalog_portfolio, params)
8944
+ req.send_request(options)
8945
+ end
8946
+
7284
8947
  # Disassociates a trial component from a trial. This doesn't effect
7285
8948
  # other trials the component is associated with. Before you can delete a
7286
8949
  # component, you must disassociate the component from all trials it is
@@ -7324,6 +8987,75 @@ module Aws::SageMaker
7324
8987
  req.send_request(options)
7325
8988
  end
7326
8989
 
8990
+ # Enables using Service Catalog in SageMaker. Service Catalog is used to
8991
+ # create SageMaker projects.
8992
+ #
8993
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
8994
+ #
8995
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/EnableSagemakerServicecatalogPortfolio AWS API Documentation
8996
+ #
8997
+ # @overload enable_sagemaker_servicecatalog_portfolio(params = {})
8998
+ # @param [Hash] params ({})
8999
+ def enable_sagemaker_servicecatalog_portfolio(params = {}, options = {})
9000
+ req = build_request(:enable_sagemaker_servicecatalog_portfolio, params)
9001
+ req.send_request(options)
9002
+ end
9003
+
9004
+ # Gets a resource policy that manages access for a model group. For
9005
+ # information about resource policies, see [Identity-based policies and
9006
+ # resource-based policies][1] in the *AWS Identity and Access Management
9007
+ # User Guide.*.
9008
+ #
9009
+ #
9010
+ #
9011
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_identity-vs-resource.html
9012
+ #
9013
+ # @option params [required, String] :model_package_group_name
9014
+ # The name of the model group for which to get the resource policy.
9015
+ #
9016
+ # @return [Types::GetModelPackageGroupPolicyOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9017
+ #
9018
+ # * {Types::GetModelPackageGroupPolicyOutput#resource_policy #resource_policy} => String
9019
+ #
9020
+ # @example Request syntax with placeholder values
9021
+ #
9022
+ # resp = client.get_model_package_group_policy({
9023
+ # model_package_group_name: "EntityName", # required
9024
+ # })
9025
+ #
9026
+ # @example Response structure
9027
+ #
9028
+ # resp.resource_policy #=> String
9029
+ #
9030
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/GetModelPackageGroupPolicy AWS API Documentation
9031
+ #
9032
+ # @overload get_model_package_group_policy(params = {})
9033
+ # @param [Hash] params ({})
9034
+ def get_model_package_group_policy(params = {}, options = {})
9035
+ req = build_request(:get_model_package_group_policy, params)
9036
+ req.send_request(options)
9037
+ end
9038
+
9039
+ # Gets the status of Service Catalog in SageMaker. Service Catalog is
9040
+ # used to create SageMaker projects.
9041
+ #
9042
+ # @return [Types::GetSagemakerServicecatalogPortfolioStatusOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9043
+ #
9044
+ # * {Types::GetSagemakerServicecatalogPortfolioStatusOutput#status #status} => String
9045
+ #
9046
+ # @example Response structure
9047
+ #
9048
+ # resp.status #=> String, one of "Enabled", "Disabled"
9049
+ #
9050
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/GetSagemakerServicecatalogPortfolioStatus AWS API Documentation
9051
+ #
9052
+ # @overload get_sagemaker_servicecatalog_portfolio_status(params = {})
9053
+ # @param [Hash] params ({})
9054
+ def get_sagemaker_servicecatalog_portfolio_status(params = {}, options = {})
9055
+ req = build_request(:get_sagemaker_servicecatalog_portfolio_status, params)
9056
+ req.send_request(options)
9057
+ end
9058
+
7327
9059
  # An auto-complete API for the search functionality in the Amazon
7328
9060
  # SageMaker console. It returns suggestions of possible matches for the
7329
9061
  # property name to use in `Search` queries. Provides suggestions for
@@ -7342,7 +9074,7 @@ module Aws::SageMaker
7342
9074
  # @example Request syntax with placeholder values
7343
9075
  #
7344
9076
  # resp = client.get_search_suggestions({
7345
- # resource: "TrainingJob", # required, accepts TrainingJob, Experiment, ExperimentTrial, ExperimentTrialComponent
9077
+ # resource: "TrainingJob", # required, accepts TrainingJob, Experiment, ExperimentTrial, ExperimentTrialComponent, Endpoint, ModelPackage, ModelPackageGroup, Pipeline, PipelineExecution, FeatureGroup
7346
9078
  # suggestion_query: {
7347
9079
  # property_name_query: {
7348
9080
  # property_name_hint: "PropertyNameHint", # required
@@ -7364,6 +9096,80 @@ module Aws::SageMaker
7364
9096
  req.send_request(options)
7365
9097
  end
7366
9098
 
9099
+ # Lists the actions in your account and their properties.
9100
+ #
9101
+ # @option params [String] :source_uri
9102
+ # A filter that returns only actions with the specified source URI.
9103
+ #
9104
+ # @option params [String] :action_type
9105
+ # A filter that returns only actions of the specified type.
9106
+ #
9107
+ # @option params [Time,DateTime,Date,Integer,String] :created_after
9108
+ # A filter that returns only actions created on or after the specified
9109
+ # time.
9110
+ #
9111
+ # @option params [Time,DateTime,Date,Integer,String] :created_before
9112
+ # A filter that returns only actions created on or before the specified
9113
+ # time.
9114
+ #
9115
+ # @option params [String] :sort_by
9116
+ # The property used to sort results. The default value is
9117
+ # `CreationTime`.
9118
+ #
9119
+ # @option params [String] :sort_order
9120
+ # The sort order. The default value is `Descending`.
9121
+ #
9122
+ # @option params [String] :next_token
9123
+ # If the previous call to `ListActions` didn't return the full set of
9124
+ # actions, the call returns a token for getting the next set of actions.
9125
+ #
9126
+ # @option params [Integer] :max_results
9127
+ # The maximum number of actions to return in the response. The default
9128
+ # value is 10.
9129
+ #
9130
+ # @return [Types::ListActionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9131
+ #
9132
+ # * {Types::ListActionsResponse#action_summaries #action_summaries} => Array&lt;Types::ActionSummary&gt;
9133
+ # * {Types::ListActionsResponse#next_token #next_token} => String
9134
+ #
9135
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
9136
+ #
9137
+ # @example Request syntax with placeholder values
9138
+ #
9139
+ # resp = client.list_actions({
9140
+ # source_uri: "SourceUri",
9141
+ # action_type: "String256",
9142
+ # created_after: Time.now,
9143
+ # created_before: Time.now,
9144
+ # sort_by: "Name", # accepts Name, CreationTime
9145
+ # sort_order: "Ascending", # accepts Ascending, Descending
9146
+ # next_token: "NextToken",
9147
+ # max_results: 1,
9148
+ # })
9149
+ #
9150
+ # @example Response structure
9151
+ #
9152
+ # resp.action_summaries #=> Array
9153
+ # resp.action_summaries[0].action_arn #=> String
9154
+ # resp.action_summaries[0].action_name #=> String
9155
+ # resp.action_summaries[0].source.source_uri #=> String
9156
+ # resp.action_summaries[0].source.source_type #=> String
9157
+ # resp.action_summaries[0].source.source_id #=> String
9158
+ # resp.action_summaries[0].action_type #=> String
9159
+ # resp.action_summaries[0].status #=> String, one of "Unknown", "InProgress", "Completed", "Failed", "Stopping", "Stopped"
9160
+ # resp.action_summaries[0].creation_time #=> Time
9161
+ # resp.action_summaries[0].last_modified_time #=> Time
9162
+ # resp.next_token #=> String
9163
+ #
9164
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListActions AWS API Documentation
9165
+ #
9166
+ # @overload list_actions(params = {})
9167
+ # @param [Hash] params ({})
9168
+ def list_actions(params = {}, options = {})
9169
+ req = build_request(:list_actions, params)
9170
+ req.send_request(options)
9171
+ end
9172
+
7367
9173
  # Lists the machine learning algorithms that have been created.
7368
9174
  #
7369
9175
  # @option params [Time,DateTime,Date,Integer,String] :creation_time_after
@@ -7476,6 +9282,8 @@ module Aws::SageMaker
7476
9282
  # * {Types::ListAppImageConfigsResponse#next_token #next_token} => String
7477
9283
  # * {Types::ListAppImageConfigsResponse#app_image_configs #app_image_configs} => Array&lt;Types::AppImageConfigDetails&gt;
7478
9284
  #
9285
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
9286
+ #
7479
9287
  # @example Request syntax with placeholder values
7480
9288
  #
7481
9289
  # resp = client.list_app_image_configs({
@@ -7574,6 +9382,173 @@ module Aws::SageMaker
7574
9382
  req.send_request(options)
7575
9383
  end
7576
9384
 
9385
+ # Lists the artifacts in your account and their properties.
9386
+ #
9387
+ # @option params [String] :source_uri
9388
+ # A filter that returns only artifacts with the specified source URI.
9389
+ #
9390
+ # @option params [String] :artifact_type
9391
+ # A filter that returns only artifacts of the specified type.
9392
+ #
9393
+ # @option params [Time,DateTime,Date,Integer,String] :created_after
9394
+ # A filter that returns only artifacts created on or after the specified
9395
+ # time.
9396
+ #
9397
+ # @option params [Time,DateTime,Date,Integer,String] :created_before
9398
+ # A filter that returns only artifacts created on or before the
9399
+ # specified time.
9400
+ #
9401
+ # @option params [String] :sort_by
9402
+ # The property used to sort results. The default value is
9403
+ # `CreationTime`.
9404
+ #
9405
+ # @option params [String] :sort_order
9406
+ # The sort order. The default value is `Descending`.
9407
+ #
9408
+ # @option params [String] :next_token
9409
+ # If the previous call to `ListArtifacts` didn't return the full set of
9410
+ # artifacts, the call returns a token for getting the next set of
9411
+ # artifacts.
9412
+ #
9413
+ # @option params [Integer] :max_results
9414
+ # The maximum number of artifacts to return in the response. The default
9415
+ # value is 10.
9416
+ #
9417
+ # @return [Types::ListArtifactsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9418
+ #
9419
+ # * {Types::ListArtifactsResponse#artifact_summaries #artifact_summaries} => Array&lt;Types::ArtifactSummary&gt;
9420
+ # * {Types::ListArtifactsResponse#next_token #next_token} => String
9421
+ #
9422
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
9423
+ #
9424
+ # @example Request syntax with placeholder values
9425
+ #
9426
+ # resp = client.list_artifacts({
9427
+ # source_uri: "SourceUri",
9428
+ # artifact_type: "String256",
9429
+ # created_after: Time.now,
9430
+ # created_before: Time.now,
9431
+ # sort_by: "CreationTime", # accepts CreationTime
9432
+ # sort_order: "Ascending", # accepts Ascending, Descending
9433
+ # next_token: "NextToken",
9434
+ # max_results: 1,
9435
+ # })
9436
+ #
9437
+ # @example Response structure
9438
+ #
9439
+ # resp.artifact_summaries #=> Array
9440
+ # resp.artifact_summaries[0].artifact_arn #=> String
9441
+ # resp.artifact_summaries[0].artifact_name #=> String
9442
+ # resp.artifact_summaries[0].source.source_uri #=> String
9443
+ # resp.artifact_summaries[0].source.source_types #=> Array
9444
+ # resp.artifact_summaries[0].source.source_types[0].source_id_type #=> String, one of "MD5Hash", "S3ETag", "S3Version", "Custom"
9445
+ # resp.artifact_summaries[0].source.source_types[0].value #=> String
9446
+ # resp.artifact_summaries[0].artifact_type #=> String
9447
+ # resp.artifact_summaries[0].creation_time #=> Time
9448
+ # resp.artifact_summaries[0].last_modified_time #=> Time
9449
+ # resp.next_token #=> String
9450
+ #
9451
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListArtifacts AWS API Documentation
9452
+ #
9453
+ # @overload list_artifacts(params = {})
9454
+ # @param [Hash] params ({})
9455
+ def list_artifacts(params = {}, options = {})
9456
+ req = build_request(:list_artifacts, params)
9457
+ req.send_request(options)
9458
+ end
9459
+
9460
+ # Lists the associations in your account and their properties.
9461
+ #
9462
+ # @option params [String] :source_arn
9463
+ # A filter that returns only associations with the specified source ARN.
9464
+ #
9465
+ # @option params [String] :destination_arn
9466
+ # A filter that returns only associations with the specified destination
9467
+ # Amazon Resource Name (ARN).
9468
+ #
9469
+ # @option params [String] :source_type
9470
+ # A filter that returns only associations with the specified source
9471
+ # type.
9472
+ #
9473
+ # @option params [String] :destination_type
9474
+ # A filter that returns only associations with the specified destination
9475
+ # type.
9476
+ #
9477
+ # @option params [String] :association_type
9478
+ # A filter that returns only associations of the specified type.
9479
+ #
9480
+ # @option params [Time,DateTime,Date,Integer,String] :created_after
9481
+ # A filter that returns only associations created on or after the
9482
+ # specified time.
9483
+ #
9484
+ # @option params [Time,DateTime,Date,Integer,String] :created_before
9485
+ # A filter that returns only associations created on or before the
9486
+ # specified time.
9487
+ #
9488
+ # @option params [String] :sort_by
9489
+ # The property used to sort results. The default value is
9490
+ # `CreationTime`.
9491
+ #
9492
+ # @option params [String] :sort_order
9493
+ # The sort order. The default value is `Descending`.
9494
+ #
9495
+ # @option params [String] :next_token
9496
+ # If the previous call to `ListAssociations` didn't return the full set
9497
+ # of associations, the call returns a token for getting the next set of
9498
+ # associations.
9499
+ #
9500
+ # @option params [Integer] :max_results
9501
+ # The maximum number of associations to return in the response. The
9502
+ # default value is 10.
9503
+ #
9504
+ # @return [Types::ListAssociationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9505
+ #
9506
+ # * {Types::ListAssociationsResponse#association_summaries #association_summaries} => Array&lt;Types::AssociationSummary&gt;
9507
+ # * {Types::ListAssociationsResponse#next_token #next_token} => String
9508
+ #
9509
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
9510
+ #
9511
+ # @example Request syntax with placeholder values
9512
+ #
9513
+ # resp = client.list_associations({
9514
+ # source_arn: "AssociationEntityArn",
9515
+ # destination_arn: "AssociationEntityArn",
9516
+ # source_type: "String256",
9517
+ # destination_type: "String256",
9518
+ # association_type: "ContributedTo", # accepts ContributedTo, AssociatedWith, DerivedFrom, Produced
9519
+ # created_after: Time.now,
9520
+ # created_before: Time.now,
9521
+ # sort_by: "SourceArn", # accepts SourceArn, DestinationArn, SourceType, DestinationType, CreationTime
9522
+ # sort_order: "Ascending", # accepts Ascending, Descending
9523
+ # next_token: "NextToken",
9524
+ # max_results: 1,
9525
+ # })
9526
+ #
9527
+ # @example Response structure
9528
+ #
9529
+ # resp.association_summaries #=> Array
9530
+ # resp.association_summaries[0].source_arn #=> String
9531
+ # resp.association_summaries[0].destination_arn #=> String
9532
+ # resp.association_summaries[0].source_type #=> String
9533
+ # resp.association_summaries[0].destination_type #=> String
9534
+ # resp.association_summaries[0].association_type #=> String, one of "ContributedTo", "AssociatedWith", "DerivedFrom", "Produced"
9535
+ # resp.association_summaries[0].source_name #=> String
9536
+ # resp.association_summaries[0].destination_name #=> String
9537
+ # resp.association_summaries[0].creation_time #=> Time
9538
+ # resp.association_summaries[0].created_by.user_profile_arn #=> String
9539
+ # resp.association_summaries[0].created_by.user_profile_name #=> String
9540
+ # resp.association_summaries[0].created_by.domain_id #=> String
9541
+ # resp.next_token #=> String
9542
+ #
9543
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListAssociations AWS API Documentation
9544
+ #
9545
+ # @overload list_associations(params = {})
9546
+ # @param [Hash] params ({})
9547
+ def list_associations(params = {}, options = {})
9548
+ req = build_request(:list_associations, params)
9549
+ req.send_request(options)
9550
+ end
9551
+
7577
9552
  # Request a list of jobs.
7578
9553
  #
7579
9554
  # @option params [Time,DateTime,Date,Integer,String] :creation_time_after
@@ -7881,7 +9856,7 @@ module Aws::SageMaker
7881
9856
  # resp.compilation_job_summaries[0].creation_time #=> Time
7882
9857
  # resp.compilation_job_summaries[0].compilation_start_time #=> Time
7883
9858
  # resp.compilation_job_summaries[0].compilation_end_time #=> Time
7884
- # resp.compilation_job_summaries[0].compilation_target_device #=> String, one of "lambda", "ml_m4", "ml_m5", "ml_c4", "ml_c5", "ml_p2", "ml_p3", "ml_g4dn", "ml_inf1", "jetson_tx1", "jetson_tx2", "jetson_nano", "jetson_xavier", "rasp3b", "imx8qm", "deeplens", "rk3399", "rk3288", "aisage", "sbe_c", "qcs605", "qcs603", "sitara_am57x", "amba_cv22", "x86_win32", "x86_win64", "coreml"
9859
+ # resp.compilation_job_summaries[0].compilation_target_device #=> String, one of "lambda", "ml_m4", "ml_m5", "ml_c4", "ml_c5", "ml_p2", "ml_p3", "ml_g4dn", "ml_inf1", "jetson_tx1", "jetson_tx2", "jetson_nano", "jetson_xavier", "rasp3b", "imx8qm", "deeplens", "rk3399", "rk3288", "aisage", "sbe_c", "qcs605", "qcs603", "sitara_am57x", "amba_cv22", "x86_win32", "x86_win64", "coreml", "jacinto_tda4vm"
7885
9860
  # resp.compilation_job_summaries[0].compilation_target_platform_os #=> String, one of "ANDROID", "LINUX"
7886
9861
  # resp.compilation_job_summaries[0].compilation_target_platform_arch #=> String, one of "X86_64", "X86", "ARM64", "ARM_EABI", "ARM_EABIHF"
7887
9862
  # resp.compilation_job_summaries[0].compilation_target_platform_accelerator #=> String, one of "INTEL_GRAPHICS", "MALI", "NVIDIA"
@@ -7898,6 +9873,80 @@ module Aws::SageMaker
7898
9873
  req.send_request(options)
7899
9874
  end
7900
9875
 
9876
+ # Lists the contexts in your account and their properties.
9877
+ #
9878
+ # @option params [String] :source_uri
9879
+ # A filter that returns only contexts with the specified source URI.
9880
+ #
9881
+ # @option params [String] :context_type
9882
+ # A filter that returns only contexts of the specified type.
9883
+ #
9884
+ # @option params [Time,DateTime,Date,Integer,String] :created_after
9885
+ # A filter that returns only contexts created on or after the specified
9886
+ # time.
9887
+ #
9888
+ # @option params [Time,DateTime,Date,Integer,String] :created_before
9889
+ # A filter that returns only contexts created on or before the specified
9890
+ # time.
9891
+ #
9892
+ # @option params [String] :sort_by
9893
+ # The property used to sort results. The default value is
9894
+ # `CreationTime`.
9895
+ #
9896
+ # @option params [String] :sort_order
9897
+ # The sort order. The default value is `Descending`.
9898
+ #
9899
+ # @option params [String] :next_token
9900
+ # If the previous call to `ListContexts` didn't return the full set of
9901
+ # contexts, the call returns a token for getting the next set of
9902
+ # contexts.
9903
+ #
9904
+ # @option params [Integer] :max_results
9905
+ # The maximum number of contexts to return in the response. The default
9906
+ # value is 10.
9907
+ #
9908
+ # @return [Types::ListContextsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9909
+ #
9910
+ # * {Types::ListContextsResponse#context_summaries #context_summaries} => Array&lt;Types::ContextSummary&gt;
9911
+ # * {Types::ListContextsResponse#next_token #next_token} => String
9912
+ #
9913
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
9914
+ #
9915
+ # @example Request syntax with placeholder values
9916
+ #
9917
+ # resp = client.list_contexts({
9918
+ # source_uri: "SourceUri",
9919
+ # context_type: "String256",
9920
+ # created_after: Time.now,
9921
+ # created_before: Time.now,
9922
+ # sort_by: "Name", # accepts Name, CreationTime
9923
+ # sort_order: "Ascending", # accepts Ascending, Descending
9924
+ # next_token: "NextToken",
9925
+ # max_results: 1,
9926
+ # })
9927
+ #
9928
+ # @example Response structure
9929
+ #
9930
+ # resp.context_summaries #=> Array
9931
+ # resp.context_summaries[0].context_arn #=> String
9932
+ # resp.context_summaries[0].context_name #=> String
9933
+ # resp.context_summaries[0].source.source_uri #=> String
9934
+ # resp.context_summaries[0].source.source_type #=> String
9935
+ # resp.context_summaries[0].source.source_id #=> String
9936
+ # resp.context_summaries[0].context_type #=> String
9937
+ # resp.context_summaries[0].creation_time #=> Time
9938
+ # resp.context_summaries[0].last_modified_time #=> Time
9939
+ # resp.next_token #=> String
9940
+ #
9941
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListContexts AWS API Documentation
9942
+ #
9943
+ # @overload list_contexts(params = {})
9944
+ # @param [Hash] params ({})
9945
+ def list_contexts(params = {}, options = {})
9946
+ req = build_request(:list_contexts, params)
9947
+ req.send_request(options)
9948
+ end
9949
+
7901
9950
  # Lists the domains.
7902
9951
  #
7903
9952
  # @option params [String] :next_token
@@ -8153,6 +10202,79 @@ module Aws::SageMaker
8153
10202
  req.send_request(options)
8154
10203
  end
8155
10204
 
10205
+ # List `FeatureGroup`s based on given filter and order.
10206
+ #
10207
+ # @option params [String] :name_contains
10208
+ # A string that partially matches one or more `FeatureGroup`s names.
10209
+ # Filters `FeatureGroup`s by name.
10210
+ #
10211
+ # @option params [String] :feature_group_status_equals
10212
+ # A `FeatureGroup` status. Filters by `FeatureGroup` status.
10213
+ #
10214
+ # @option params [String] :offline_store_status_equals
10215
+ # An `OfflineStore` status. Filters by `OfflineStore` status.
10216
+ #
10217
+ # @option params [Time,DateTime,Date,Integer,String] :creation_time_after
10218
+ # Use this parameter to search for `FeatureGroups`s created after a
10219
+ # specific date and time.
10220
+ #
10221
+ # @option params [Time,DateTime,Date,Integer,String] :creation_time_before
10222
+ # Use this parameter to search for `FeatureGroups`s created before a
10223
+ # specific date and time.
10224
+ #
10225
+ # @option params [String] :sort_order
10226
+ # The order in which feature groups are listed.
10227
+ #
10228
+ # @option params [String] :sort_by
10229
+ # The value on which the feature group list is sorted.
10230
+ #
10231
+ # @option params [Integer] :max_results
10232
+ # The maximum number of results returned by `ListFeatureGroups`.
10233
+ #
10234
+ # @option params [String] :next_token
10235
+ # A token to resume pagination of `ListFeatureGroups` results.
10236
+ #
10237
+ # @return [Types::ListFeatureGroupsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
10238
+ #
10239
+ # * {Types::ListFeatureGroupsResponse#feature_group_summaries #feature_group_summaries} => Array&lt;Types::FeatureGroupSummary&gt;
10240
+ # * {Types::ListFeatureGroupsResponse#next_token #next_token} => String
10241
+ #
10242
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
10243
+ #
10244
+ # @example Request syntax with placeholder values
10245
+ #
10246
+ # resp = client.list_feature_groups({
10247
+ # name_contains: "FeatureGroupNameContains",
10248
+ # feature_group_status_equals: "Creating", # accepts Creating, Created, CreateFailed, Deleting, DeleteFailed
10249
+ # offline_store_status_equals: "Active", # accepts Active, Blocked, Disabled
10250
+ # creation_time_after: Time.now,
10251
+ # creation_time_before: Time.now,
10252
+ # sort_order: "Ascending", # accepts Ascending, Descending
10253
+ # sort_by: "Name", # accepts Name, FeatureGroupStatus, OfflineStoreStatus, CreationTime
10254
+ # max_results: 1,
10255
+ # next_token: "NextToken",
10256
+ # })
10257
+ #
10258
+ # @example Response structure
10259
+ #
10260
+ # resp.feature_group_summaries #=> Array
10261
+ # resp.feature_group_summaries[0].feature_group_name #=> String
10262
+ # resp.feature_group_summaries[0].feature_group_arn #=> String
10263
+ # resp.feature_group_summaries[0].creation_time #=> Time
10264
+ # resp.feature_group_summaries[0].feature_group_status #=> String, one of "Creating", "Created", "CreateFailed", "Deleting", "DeleteFailed"
10265
+ # resp.feature_group_summaries[0].offline_store_status.status #=> String, one of "Active", "Blocked", "Disabled"
10266
+ # resp.feature_group_summaries[0].offline_store_status.blocked_reason #=> String
10267
+ # resp.next_token #=> String
10268
+ #
10269
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListFeatureGroups AWS API Documentation
10270
+ #
10271
+ # @overload list_feature_groups(params = {})
10272
+ # @param [Hash] params ({})
10273
+ def list_feature_groups(params = {}, options = {})
10274
+ req = build_request(:list_feature_groups, params)
10275
+ req.send_request(options)
10276
+ end
10277
+
8156
10278
  # Returns information about the flow definitions in your account.
8157
10279
  #
8158
10280
  # @option params [Time,DateTime,Date,Integer,String] :creation_time_after
@@ -8696,6 +10818,72 @@ module Aws::SageMaker
8696
10818
  req.send_request(options)
8697
10819
  end
8698
10820
 
10821
+ # Gets a list of the model groups in your AWS account.
10822
+ #
10823
+ # @option params [Time,DateTime,Date,Integer,String] :creation_time_after
10824
+ # A filter that returns only model groups created after the specified
10825
+ # time.
10826
+ #
10827
+ # @option params [Time,DateTime,Date,Integer,String] :creation_time_before
10828
+ # A filter that returns only model groups created before the specified
10829
+ # time.
10830
+ #
10831
+ # @option params [Integer] :max_results
10832
+ # The maximum number of results to return in the response.
10833
+ #
10834
+ # @option params [String] :name_contains
10835
+ # A string in the model group name. This filter returns only model
10836
+ # groups whose name contains the specified string.
10837
+ #
10838
+ # @option params [String] :next_token
10839
+ # If the result of the previous `ListModelPackageGroups` request was
10840
+ # truncated, the response includes a `NextToken`. To retrieve the next
10841
+ # set of model groups, use the token in the next request.
10842
+ #
10843
+ # @option params [String] :sort_by
10844
+ # The field to sort results by. The default is `CreationTime`.
10845
+ #
10846
+ # @option params [String] :sort_order
10847
+ # The sort order for results. The default is `Ascending`.
10848
+ #
10849
+ # @return [Types::ListModelPackageGroupsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
10850
+ #
10851
+ # * {Types::ListModelPackageGroupsOutput#model_package_group_summary_list #model_package_group_summary_list} => Array&lt;Types::ModelPackageGroupSummary&gt;
10852
+ # * {Types::ListModelPackageGroupsOutput#next_token #next_token} => String
10853
+ #
10854
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
10855
+ #
10856
+ # @example Request syntax with placeholder values
10857
+ #
10858
+ # resp = client.list_model_package_groups({
10859
+ # creation_time_after: Time.now,
10860
+ # creation_time_before: Time.now,
10861
+ # max_results: 1,
10862
+ # name_contains: "NameContains",
10863
+ # next_token: "NextToken",
10864
+ # sort_by: "Name", # accepts Name, CreationTime
10865
+ # sort_order: "Ascending", # accepts Ascending, Descending
10866
+ # })
10867
+ #
10868
+ # @example Response structure
10869
+ #
10870
+ # resp.model_package_group_summary_list #=> Array
10871
+ # resp.model_package_group_summary_list[0].model_package_group_name #=> String
10872
+ # resp.model_package_group_summary_list[0].model_package_group_arn #=> String
10873
+ # resp.model_package_group_summary_list[0].model_package_group_description #=> String
10874
+ # resp.model_package_group_summary_list[0].creation_time #=> Time
10875
+ # resp.model_package_group_summary_list[0].model_package_group_status #=> String, one of "Pending", "InProgress", "Completed", "Failed", "Deleting", "DeleteFailed"
10876
+ # resp.next_token #=> String
10877
+ #
10878
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListModelPackageGroups AWS API Documentation
10879
+ #
10880
+ # @overload list_model_package_groups(params = {})
10881
+ # @param [Hash] params ({})
10882
+ def list_model_package_groups(params = {}, options = {})
10883
+ req = build_request(:list_model_package_groups, params)
10884
+ req.send_request(options)
10885
+ end
10886
+
8699
10887
  # Lists the model packages that have been created.
8700
10888
  #
8701
10889
  # @option params [Time,DateTime,Date,Integer,String] :creation_time_after
@@ -8713,6 +10901,24 @@ module Aws::SageMaker
8713
10901
  # A string in the model package name. This filter returns only model
8714
10902
  # packages whose name contains the specified string.
8715
10903
  #
10904
+ # @option params [String] :model_approval_status
10905
+ # A filter that returns only the model packages with the specified
10906
+ # approval status.
10907
+ #
10908
+ # @option params [String] :model_package_group_name
10909
+ # A filter that returns only model versions that belong to the specified
10910
+ # model group.
10911
+ #
10912
+ # @option params [String] :model_package_type
10913
+ # A filter that returns onlyl the model packages of the specified type.
10914
+ # This can be one of the following values.
10915
+ #
10916
+ # * `VERSIONED` - List only versioned models.
10917
+ #
10918
+ # * `UNVERSIONED` - List only unversioined models.
10919
+ #
10920
+ # * `BOTH` - List both versioned and unversioned models.
10921
+ #
8716
10922
  # @option params [String] :next_token
8717
10923
  # If the response to a previous `ListModelPackages` request was
8718
10924
  # truncated, the response includes a `NextToken`. To retrieve the next
@@ -8739,6 +10945,9 @@ module Aws::SageMaker
8739
10945
  # creation_time_before: Time.now,
8740
10946
  # max_results: 1,
8741
10947
  # name_contains: "NameContains",
10948
+ # model_approval_status: "Approved", # accepts Approved, Rejected, PendingManualApproval
10949
+ # model_package_group_name: "ArnOrName",
10950
+ # model_package_type: "Versioned", # accepts Versioned, Unversioned, Both
8742
10951
  # next_token: "NextToken",
8743
10952
  # sort_by: "Name", # accepts Name, CreationTime
8744
10953
  # sort_order: "Ascending", # accepts Ascending, Descending
@@ -8748,10 +10957,13 @@ module Aws::SageMaker
8748
10957
  #
8749
10958
  # resp.model_package_summary_list #=> Array
8750
10959
  # resp.model_package_summary_list[0].model_package_name #=> String
10960
+ # resp.model_package_summary_list[0].model_package_group_name #=> String
10961
+ # resp.model_package_summary_list[0].model_package_version #=> Integer
8751
10962
  # resp.model_package_summary_list[0].model_package_arn #=> String
8752
10963
  # resp.model_package_summary_list[0].model_package_description #=> String
8753
10964
  # resp.model_package_summary_list[0].creation_time #=> Time
8754
10965
  # resp.model_package_summary_list[0].model_package_status #=> String, one of "Pending", "InProgress", "Completed", "Failed", "Deleting"
10966
+ # resp.model_package_summary_list[0].model_approval_status #=> String, one of "Approved", "Rejected", "PendingManualApproval"
8755
10967
  # resp.next_token #=> String
8756
10968
  #
8757
10969
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListModelPackages AWS API Documentation
@@ -9189,12 +11401,249 @@ module Aws::SageMaker
9189
11401
  # resp.notebook_instances[0].additional_code_repositories #=> Array
9190
11402
  # resp.notebook_instances[0].additional_code_repositories[0] #=> String
9191
11403
  #
9192
- # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListNotebookInstances AWS API Documentation
11404
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListNotebookInstances AWS API Documentation
11405
+ #
11406
+ # @overload list_notebook_instances(params = {})
11407
+ # @param [Hash] params ({})
11408
+ def list_notebook_instances(params = {}, options = {})
11409
+ req = build_request(:list_notebook_instances, params)
11410
+ req.send_request(options)
11411
+ end
11412
+
11413
+ # Gets a list of `PipeLineExecutionStep` objects.
11414
+ #
11415
+ # @option params [String] :pipeline_execution_arn
11416
+ # The Amazon Resource Name (ARN) of the pipeline execution.
11417
+ #
11418
+ # @option params [String] :next_token
11419
+ # If the result of the previous `ListPipelineExecutionSteps` request was
11420
+ # truncated, the response includes a `NextToken`. To retrieve the next
11421
+ # set of pipeline execution steps, use the token in the next request.
11422
+ #
11423
+ # @option params [Integer] :max_results
11424
+ # The maximum number of pipeline execution steps to return in the
11425
+ # response.
11426
+ #
11427
+ # @option params [String] :sort_order
11428
+ # The field by which to sort results. The default is `CreatedTime`.
11429
+ #
11430
+ # @return [Types::ListPipelineExecutionStepsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
11431
+ #
11432
+ # * {Types::ListPipelineExecutionStepsResponse#pipeline_execution_steps #pipeline_execution_steps} => Array&lt;Types::PipelineExecutionStep&gt;
11433
+ # * {Types::ListPipelineExecutionStepsResponse#next_token #next_token} => String
11434
+ #
11435
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
11436
+ #
11437
+ # @example Request syntax with placeholder values
11438
+ #
11439
+ # resp = client.list_pipeline_execution_steps({
11440
+ # pipeline_execution_arn: "PipelineExecutionArn",
11441
+ # next_token: "NextToken",
11442
+ # max_results: 1,
11443
+ # sort_order: "Ascending", # accepts Ascending, Descending
11444
+ # })
11445
+ #
11446
+ # @example Response structure
11447
+ #
11448
+ # resp.pipeline_execution_steps #=> Array
11449
+ # resp.pipeline_execution_steps[0].step_name #=> String
11450
+ # resp.pipeline_execution_steps[0].start_time #=> Time
11451
+ # resp.pipeline_execution_steps[0].end_time #=> Time
11452
+ # resp.pipeline_execution_steps[0].step_status #=> String, one of "Starting", "Executing", "Stopping", "Stopped", "Failed", "Succeeded"
11453
+ # resp.pipeline_execution_steps[0].cache_hit_result.source_pipeline_execution_arn #=> String
11454
+ # resp.pipeline_execution_steps[0].failure_reason #=> String
11455
+ # resp.pipeline_execution_steps[0].metadata.training_job.arn #=> String
11456
+ # resp.pipeline_execution_steps[0].metadata.processing_job.arn #=> String
11457
+ # resp.pipeline_execution_steps[0].metadata.transform_job.arn #=> String
11458
+ # resp.pipeline_execution_steps[0].metadata.model.arn #=> String
11459
+ # resp.pipeline_execution_steps[0].metadata.register_model.arn #=> String
11460
+ # resp.pipeline_execution_steps[0].metadata.condition.outcome #=> String, one of "True", "False"
11461
+ # resp.next_token #=> String
11462
+ #
11463
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListPipelineExecutionSteps AWS API Documentation
11464
+ #
11465
+ # @overload list_pipeline_execution_steps(params = {})
11466
+ # @param [Hash] params ({})
11467
+ def list_pipeline_execution_steps(params = {}, options = {})
11468
+ req = build_request(:list_pipeline_execution_steps, params)
11469
+ req.send_request(options)
11470
+ end
11471
+
11472
+ # Gets a list of the pipeline executions.
11473
+ #
11474
+ # @option params [required, String] :pipeline_name
11475
+ # The name of the pipeline.
11476
+ #
11477
+ # @option params [Time,DateTime,Date,Integer,String] :created_after
11478
+ # A filter that returns the pipeline executions that were created after
11479
+ # a specified time.
11480
+ #
11481
+ # @option params [Time,DateTime,Date,Integer,String] :created_before
11482
+ # A filter that returns the pipeline executions that were created before
11483
+ # a specified time.
11484
+ #
11485
+ # @option params [String] :sort_by
11486
+ # The field by which to sort results. The default is `CreatedTime`.
11487
+ #
11488
+ # @option params [String] :sort_order
11489
+ # The sort order for results.
11490
+ #
11491
+ # @option params [String] :next_token
11492
+ # If the result of the previous `ListPipelineExecutions` request was
11493
+ # truncated, the response includes a `NextToken`. To retrieve the next
11494
+ # set of pipeline executions, use the token in the next request.
11495
+ #
11496
+ # @option params [Integer] :max_results
11497
+ # The maximum number of pipeline executions to return in the response.
11498
+ #
11499
+ # @return [Types::ListPipelineExecutionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
11500
+ #
11501
+ # * {Types::ListPipelineExecutionsResponse#pipeline_execution_summaries #pipeline_execution_summaries} => Array&lt;Types::PipelineExecutionSummary&gt;
11502
+ # * {Types::ListPipelineExecutionsResponse#next_token #next_token} => String
11503
+ #
11504
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
11505
+ #
11506
+ # @example Request syntax with placeholder values
11507
+ #
11508
+ # resp = client.list_pipeline_executions({
11509
+ # pipeline_name: "PipelineName", # required
11510
+ # created_after: Time.now,
11511
+ # created_before: Time.now,
11512
+ # sort_by: "CreationTime", # accepts CreationTime, PipelineExecutionArn
11513
+ # sort_order: "Ascending", # accepts Ascending, Descending
11514
+ # next_token: "NextToken",
11515
+ # max_results: 1,
11516
+ # })
11517
+ #
11518
+ # @example Response structure
11519
+ #
11520
+ # resp.pipeline_execution_summaries #=> Array
11521
+ # resp.pipeline_execution_summaries[0].pipeline_execution_arn #=> String
11522
+ # resp.pipeline_execution_summaries[0].start_time #=> Time
11523
+ # resp.pipeline_execution_summaries[0].pipeline_execution_status #=> String, one of "Executing", "Stopping", "Stopped", "Failed", "Succeeded"
11524
+ # resp.pipeline_execution_summaries[0].pipeline_execution_description #=> String
11525
+ # resp.pipeline_execution_summaries[0].pipeline_execution_display_name #=> String
11526
+ # resp.next_token #=> String
11527
+ #
11528
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListPipelineExecutions AWS API Documentation
11529
+ #
11530
+ # @overload list_pipeline_executions(params = {})
11531
+ # @param [Hash] params ({})
11532
+ def list_pipeline_executions(params = {}, options = {})
11533
+ req = build_request(:list_pipeline_executions, params)
11534
+ req.send_request(options)
11535
+ end
11536
+
11537
+ # Gets a list of parameters for a pipeline execution.
11538
+ #
11539
+ # @option params [required, String] :pipeline_execution_arn
11540
+ # The Amazon Resource Name (ARN) of the pipeline execution.
11541
+ #
11542
+ # @option params [String] :next_token
11543
+ # If the result of the previous `ListPipelineParametersForExecution`
11544
+ # request was truncated, the response includes a `NextToken`. To
11545
+ # retrieve the next set of parameters, use the token in the next
11546
+ # request.
11547
+ #
11548
+ # @option params [Integer] :max_results
11549
+ # The maximum number of parameters to return in the response.
11550
+ #
11551
+ # @return [Types::ListPipelineParametersForExecutionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
11552
+ #
11553
+ # * {Types::ListPipelineParametersForExecutionResponse#pipeline_parameters #pipeline_parameters} => Array&lt;Types::Parameter&gt;
11554
+ # * {Types::ListPipelineParametersForExecutionResponse#next_token #next_token} => String
11555
+ #
11556
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
11557
+ #
11558
+ # @example Request syntax with placeholder values
11559
+ #
11560
+ # resp = client.list_pipeline_parameters_for_execution({
11561
+ # pipeline_execution_arn: "PipelineExecutionArn", # required
11562
+ # next_token: "NextToken",
11563
+ # max_results: 1,
11564
+ # })
11565
+ #
11566
+ # @example Response structure
11567
+ #
11568
+ # resp.pipeline_parameters #=> Array
11569
+ # resp.pipeline_parameters[0].name #=> String
11570
+ # resp.pipeline_parameters[0].value #=> String
11571
+ # resp.next_token #=> String
11572
+ #
11573
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListPipelineParametersForExecution AWS API Documentation
11574
+ #
11575
+ # @overload list_pipeline_parameters_for_execution(params = {})
11576
+ # @param [Hash] params ({})
11577
+ def list_pipeline_parameters_for_execution(params = {}, options = {})
11578
+ req = build_request(:list_pipeline_parameters_for_execution, params)
11579
+ req.send_request(options)
11580
+ end
11581
+
11582
+ # Gets a list of pipelines.
11583
+ #
11584
+ # @option params [String] :pipeline_name_prefix
11585
+ # The prefix of the pipeline name.
11586
+ #
11587
+ # @option params [Time,DateTime,Date,Integer,String] :created_after
11588
+ # A filter that returns the pipelines that were created after a
11589
+ # specified time.
11590
+ #
11591
+ # @option params [Time,DateTime,Date,Integer,String] :created_before
11592
+ # A filter that returns the pipelines that were created before a
11593
+ # specified time.
11594
+ #
11595
+ # @option params [String] :sort_by
11596
+ # The field by which to sort results. The default is `CreatedTime`.
11597
+ #
11598
+ # @option params [String] :sort_order
11599
+ # The sort order for results.
11600
+ #
11601
+ # @option params [String] :next_token
11602
+ # If the result of the previous `ListPipelines` request was truncated,
11603
+ # the response includes a `NextToken`. To retrieve the next set of
11604
+ # pipelines, use the token in the next request.
11605
+ #
11606
+ # @option params [Integer] :max_results
11607
+ # The maximum number of pipelines to return in the response.
11608
+ #
11609
+ # @return [Types::ListPipelinesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
11610
+ #
11611
+ # * {Types::ListPipelinesResponse#pipeline_summaries #pipeline_summaries} => Array&lt;Types::PipelineSummary&gt;
11612
+ # * {Types::ListPipelinesResponse#next_token #next_token} => String
11613
+ #
11614
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
11615
+ #
11616
+ # @example Request syntax with placeholder values
11617
+ #
11618
+ # resp = client.list_pipelines({
11619
+ # pipeline_name_prefix: "PipelineName",
11620
+ # created_after: Time.now,
11621
+ # created_before: Time.now,
11622
+ # sort_by: "Name", # accepts Name, CreationTime
11623
+ # sort_order: "Ascending", # accepts Ascending, Descending
11624
+ # next_token: "NextToken",
11625
+ # max_results: 1,
11626
+ # })
11627
+ #
11628
+ # @example Response structure
9193
11629
  #
9194
- # @overload list_notebook_instances(params = {})
11630
+ # resp.pipeline_summaries #=> Array
11631
+ # resp.pipeline_summaries[0].pipeline_arn #=> String
11632
+ # resp.pipeline_summaries[0].pipeline_name #=> String
11633
+ # resp.pipeline_summaries[0].pipeline_display_name #=> String
11634
+ # resp.pipeline_summaries[0].pipeline_description #=> String
11635
+ # resp.pipeline_summaries[0].role_arn #=> String
11636
+ # resp.pipeline_summaries[0].creation_time #=> Time
11637
+ # resp.pipeline_summaries[0].last_modified_time #=> Time
11638
+ # resp.pipeline_summaries[0].last_execution_time #=> Time
11639
+ # resp.next_token #=> String
11640
+ #
11641
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListPipelines AWS API Documentation
11642
+ #
11643
+ # @overload list_pipelines(params = {})
9195
11644
  # @param [Hash] params ({})
9196
- def list_notebook_instances(params = {}, options = {})
9197
- req = build_request(:list_notebook_instances, params)
11645
+ def list_pipelines(params = {}, options = {})
11646
+ req = build_request(:list_pipelines, params)
9198
11647
  req.send_request(options)
9199
11648
  end
9200
11649
 
@@ -9281,6 +11730,73 @@ module Aws::SageMaker
9281
11730
  req.send_request(options)
9282
11731
  end
9283
11732
 
11733
+ # Gets a list of the projects in an AWS account.
11734
+ #
11735
+ # @option params [Time,DateTime,Date,Integer,String] :creation_time_after
11736
+ # A filter that returns the projects that were created after a specified
11737
+ # time.
11738
+ #
11739
+ # @option params [Time,DateTime,Date,Integer,String] :creation_time_before
11740
+ # A filter that returns the projects that were created before a
11741
+ # specified time.
11742
+ #
11743
+ # @option params [Integer] :max_results
11744
+ # The maximum number of projects to return in the response.
11745
+ #
11746
+ # @option params [String] :name_contains
11747
+ # A filter that returns the projects whose name contains a specified
11748
+ # string.
11749
+ #
11750
+ # @option params [String] :next_token
11751
+ # If the result of the previous `ListProjects` request was truncated,
11752
+ # the response includes a `NextToken`. To retrieve the next set of
11753
+ # projects, use the token in the next request.
11754
+ #
11755
+ # @option params [String] :sort_by
11756
+ # The field by which to sort results. The default is `CreationTime`.
11757
+ #
11758
+ # @option params [String] :sort_order
11759
+ # The sort order for results. The default is `Ascending`.
11760
+ #
11761
+ # @return [Types::ListProjectsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
11762
+ #
11763
+ # * {Types::ListProjectsOutput#project_summary_list #project_summary_list} => Array&lt;Types::ProjectSummary&gt;
11764
+ # * {Types::ListProjectsOutput#next_token #next_token} => String
11765
+ #
11766
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
11767
+ #
11768
+ # @example Request syntax with placeholder values
11769
+ #
11770
+ # resp = client.list_projects({
11771
+ # creation_time_after: Time.now,
11772
+ # creation_time_before: Time.now,
11773
+ # max_results: 1,
11774
+ # name_contains: "ProjectEntityName",
11775
+ # next_token: "NextToken",
11776
+ # sort_by: "Name", # accepts Name, CreationTime
11777
+ # sort_order: "Ascending", # accepts Ascending, Descending
11778
+ # })
11779
+ #
11780
+ # @example Response structure
11781
+ #
11782
+ # resp.project_summary_list #=> Array
11783
+ # resp.project_summary_list[0].project_name #=> String
11784
+ # resp.project_summary_list[0].project_description #=> String
11785
+ # resp.project_summary_list[0].project_arn #=> String
11786
+ # resp.project_summary_list[0].project_id #=> String
11787
+ # resp.project_summary_list[0].creation_time #=> Time
11788
+ # resp.project_summary_list[0].project_status #=> String, one of "Pending", "CreateInProgress", "CreateCompleted", "CreateFailed", "DeleteInProgress", "DeleteFailed", "DeleteCompleted"
11789
+ # resp.next_token #=> String
11790
+ #
11791
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListProjects AWS API Documentation
11792
+ #
11793
+ # @overload list_projects(params = {})
11794
+ # @param [Hash] params ({})
11795
+ def list_projects(params = {}, options = {})
11796
+ req = build_request(:list_projects, params)
11797
+ req.send_request(options)
11798
+ end
11799
+
9284
11800
  # Gets a list of the work teams that you are subscribed to in the AWS
9285
11801
  # Marketplace. The list may be empty if no work team satisfies the
9286
11802
  # filter specified in the `NameContains` parameter.
@@ -9991,6 +12507,45 @@ module Aws::SageMaker
9991
12507
  req.send_request(options)
9992
12508
  end
9993
12509
 
12510
+ # Adds a resouce policy to control access to a model group. For
12511
+ # information about resoure policies, see [Identity-based policies and
12512
+ # resource-based policies][1] in the *AWS Identity and Access Management
12513
+ # User Guide.*.
12514
+ #
12515
+ #
12516
+ #
12517
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_identity-vs-resource.html
12518
+ #
12519
+ # @option params [required, String] :model_package_group_name
12520
+ # The name of the model group to add a resource policy to.
12521
+ #
12522
+ # @option params [required, String] :resource_policy
12523
+ # The resource policy for the model group.
12524
+ #
12525
+ # @return [Types::PutModelPackageGroupPolicyOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
12526
+ #
12527
+ # * {Types::PutModelPackageGroupPolicyOutput#model_package_group_arn #model_package_group_arn} => String
12528
+ #
12529
+ # @example Request syntax with placeholder values
12530
+ #
12531
+ # resp = client.put_model_package_group_policy({
12532
+ # model_package_group_name: "EntityName", # required
12533
+ # resource_policy: "PolicyString", # required
12534
+ # })
12535
+ #
12536
+ # @example Response structure
12537
+ #
12538
+ # resp.model_package_group_arn #=> String
12539
+ #
12540
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/PutModelPackageGroupPolicy AWS API Documentation
12541
+ #
12542
+ # @overload put_model_package_group_policy(params = {})
12543
+ # @param [Hash] params ({})
12544
+ def put_model_package_group_policy(params = {}, options = {})
12545
+ req = build_request(:put_model_package_group_policy, params)
12546
+ req.send_request(options)
12547
+ end
12548
+
9994
12549
  # Renders the UI template so that you can preview the worker's
9995
12550
  # experience.
9996
12551
  #
@@ -10090,7 +12645,7 @@ module Aws::SageMaker
10090
12645
  # @example Request syntax with placeholder values
10091
12646
  #
10092
12647
  # resp = client.search({
10093
- # resource: "TrainingJob", # required, accepts TrainingJob, Experiment, ExperimentTrial, ExperimentTrialComponent
12648
+ # resource: "TrainingJob", # required, accepts TrainingJob, Experiment, ExperimentTrial, ExperimentTrialComponent, Endpoint, ModelPackage, ModelPackageGroup, Pipeline, PipelineExecution, FeatureGroup
10094
12649
  # search_expression: {
10095
12650
  # filters: [
10096
12651
  # {
@@ -10134,7 +12689,7 @@ module Aws::SageMaker
10134
12689
  # resp.results[0].training_job.auto_ml_job_arn #=> String
10135
12690
  # resp.results[0].training_job.model_artifacts.s3_model_artifacts #=> String
10136
12691
  # resp.results[0].training_job.training_job_status #=> String, one of "InProgress", "Completed", "Failed", "Stopping", "Stopped"
10137
- # resp.results[0].training_job.secondary_status #=> String, one of "Starting", "LaunchingMLInstances", "PreparingTrainingStack", "Downloading", "DownloadingTrainingImage", "Training", "Uploading", "Stopping", "Stopped", "MaxRuntimeExceeded", "Completed", "Failed", "Interrupted", "MaxWaitTimeExceeded"
12692
+ # resp.results[0].training_job.secondary_status #=> String, one of "Starting", "LaunchingMLInstances", "PreparingTrainingStack", "Downloading", "DownloadingTrainingImage", "Training", "Uploading", "Stopping", "Stopped", "MaxRuntimeExceeded", "Completed", "Failed", "Interrupted", "MaxWaitTimeExceeded", "Updating"
10138
12693
  # resp.results[0].training_job.failure_reason #=> String
10139
12694
  # resp.results[0].training_job.hyper_parameters #=> Hash
10140
12695
  # resp.results[0].training_job.hyper_parameters["HyperParameterKey"] #=> String
@@ -10179,7 +12734,7 @@ module Aws::SageMaker
10179
12734
  # resp.results[0].training_job.training_end_time #=> Time
10180
12735
  # resp.results[0].training_job.last_modified_time #=> Time
10181
12736
  # resp.results[0].training_job.secondary_status_transitions #=> Array
10182
- # resp.results[0].training_job.secondary_status_transitions[0].status #=> String, one of "Starting", "LaunchingMLInstances", "PreparingTrainingStack", "Downloading", "DownloadingTrainingImage", "Training", "Uploading", "Stopping", "Stopped", "MaxRuntimeExceeded", "Completed", "Failed", "Interrupted", "MaxWaitTimeExceeded"
12737
+ # resp.results[0].training_job.secondary_status_transitions[0].status #=> String, one of "Starting", "LaunchingMLInstances", "PreparingTrainingStack", "Downloading", "DownloadingTrainingImage", "Training", "Uploading", "Stopping", "Stopped", "MaxRuntimeExceeded", "Completed", "Failed", "Interrupted", "MaxWaitTimeExceeded", "Updating"
10183
12738
  # resp.results[0].training_job.secondary_status_transitions[0].start_time #=> Time
10184
12739
  # resp.results[0].training_job.secondary_status_transitions[0].end_time #=> Time
10185
12740
  # resp.results[0].training_job.secondary_status_transitions[0].status_message #=> String
@@ -10256,6 +12811,10 @@ module Aws::SageMaker
10256
12811
  # resp.results[0].trial.last_modified_by.user_profile_arn #=> String
10257
12812
  # resp.results[0].trial.last_modified_by.user_profile_name #=> String
10258
12813
  # resp.results[0].trial.last_modified_by.domain_id #=> String
12814
+ # resp.results[0].trial.metadata_properties.commit_id #=> String
12815
+ # resp.results[0].trial.metadata_properties.repository #=> String
12816
+ # resp.results[0].trial.metadata_properties.generated_by #=> String
12817
+ # resp.results[0].trial.metadata_properties.project_id #=> String
10259
12818
  # resp.results[0].trial.tags #=> Array
10260
12819
  # resp.results[0].trial.tags[0].key #=> String
10261
12820
  # resp.results[0].trial.tags[0].value #=> String
@@ -10304,6 +12863,10 @@ module Aws::SageMaker
10304
12863
  # resp.results[0].trial_component.metrics[0].count #=> Integer
10305
12864
  # resp.results[0].trial_component.metrics[0].avg #=> Float
10306
12865
  # resp.results[0].trial_component.metrics[0].std_dev #=> Float
12866
+ # resp.results[0].trial_component.metadata_properties.commit_id #=> String
12867
+ # resp.results[0].trial_component.metadata_properties.repository #=> String
12868
+ # resp.results[0].trial_component.metadata_properties.generated_by #=> String
12869
+ # resp.results[0].trial_component.metadata_properties.project_id #=> String
10307
12870
  # resp.results[0].trial_component.source_detail.source_arn #=> String
10308
12871
  # resp.results[0].trial_component.source_detail.training_job.training_job_name #=> String
10309
12872
  # resp.results[0].trial_component.source_detail.training_job.training_job_arn #=> String
@@ -10312,7 +12875,7 @@ module Aws::SageMaker
10312
12875
  # resp.results[0].trial_component.source_detail.training_job.auto_ml_job_arn #=> String
10313
12876
  # resp.results[0].trial_component.source_detail.training_job.model_artifacts.s3_model_artifacts #=> String
10314
12877
  # resp.results[0].trial_component.source_detail.training_job.training_job_status #=> String, one of "InProgress", "Completed", "Failed", "Stopping", "Stopped"
10315
- # resp.results[0].trial_component.source_detail.training_job.secondary_status #=> String, one of "Starting", "LaunchingMLInstances", "PreparingTrainingStack", "Downloading", "DownloadingTrainingImage", "Training", "Uploading", "Stopping", "Stopped", "MaxRuntimeExceeded", "Completed", "Failed", "Interrupted", "MaxWaitTimeExceeded"
12878
+ # resp.results[0].trial_component.source_detail.training_job.secondary_status #=> String, one of "Starting", "LaunchingMLInstances", "PreparingTrainingStack", "Downloading", "DownloadingTrainingImage", "Training", "Uploading", "Stopping", "Stopped", "MaxRuntimeExceeded", "Completed", "Failed", "Interrupted", "MaxWaitTimeExceeded", "Updating"
10316
12879
  # resp.results[0].trial_component.source_detail.training_job.failure_reason #=> String
10317
12880
  # resp.results[0].trial_component.source_detail.training_job.hyper_parameters #=> Hash
10318
12881
  # resp.results[0].trial_component.source_detail.training_job.hyper_parameters["HyperParameterKey"] #=> String
@@ -10357,7 +12920,7 @@ module Aws::SageMaker
10357
12920
  # resp.results[0].trial_component.source_detail.training_job.training_end_time #=> Time
10358
12921
  # resp.results[0].trial_component.source_detail.training_job.last_modified_time #=> Time
10359
12922
  # resp.results[0].trial_component.source_detail.training_job.secondary_status_transitions #=> Array
10360
- # resp.results[0].trial_component.source_detail.training_job.secondary_status_transitions[0].status #=> String, one of "Starting", "LaunchingMLInstances", "PreparingTrainingStack", "Downloading", "DownloadingTrainingImage", "Training", "Uploading", "Stopping", "Stopped", "MaxRuntimeExceeded", "Completed", "Failed", "Interrupted", "MaxWaitTimeExceeded"
12923
+ # resp.results[0].trial_component.source_detail.training_job.secondary_status_transitions[0].status #=> String, one of "Starting", "LaunchingMLInstances", "PreparingTrainingStack", "Downloading", "DownloadingTrainingImage", "Training", "Uploading", "Stopping", "Stopped", "MaxRuntimeExceeded", "Completed", "Failed", "Interrupted", "MaxWaitTimeExceeded", "Updating"
10361
12924
  # resp.results[0].trial_component.source_detail.training_job.secondary_status_transitions[0].start_time #=> Time
10362
12925
  # resp.results[0].trial_component.source_detail.training_job.secondary_status_transitions[0].end_time #=> Time
10363
12926
  # resp.results[0].trial_component.source_detail.training_job.secondary_status_transitions[0].status_message #=> String
@@ -10405,17 +12968,40 @@ module Aws::SageMaker
10405
12968
  # resp.results[0].trial_component.source_detail.training_job.tags[0].value #=> String
10406
12969
  # resp.results[0].trial_component.source_detail.processing_job.processing_inputs #=> Array
10407
12970
  # resp.results[0].trial_component.source_detail.processing_job.processing_inputs[0].input_name #=> String
12971
+ # resp.results[0].trial_component.source_detail.processing_job.processing_inputs[0].app_managed #=> Boolean
10408
12972
  # resp.results[0].trial_component.source_detail.processing_job.processing_inputs[0].s3_input.s3_uri #=> String
10409
12973
  # resp.results[0].trial_component.source_detail.processing_job.processing_inputs[0].s3_input.local_path #=> String
10410
12974
  # resp.results[0].trial_component.source_detail.processing_job.processing_inputs[0].s3_input.s3_data_type #=> String, one of "ManifestFile", "S3Prefix"
10411
12975
  # resp.results[0].trial_component.source_detail.processing_job.processing_inputs[0].s3_input.s3_input_mode #=> String, one of "Pipe", "File"
10412
12976
  # resp.results[0].trial_component.source_detail.processing_job.processing_inputs[0].s3_input.s3_data_distribution_type #=> String, one of "FullyReplicated", "ShardedByS3Key"
10413
12977
  # resp.results[0].trial_component.source_detail.processing_job.processing_inputs[0].s3_input.s3_compression_type #=> String, one of "None", "Gzip"
12978
+ # resp.results[0].trial_component.source_detail.processing_job.processing_inputs[0].dataset_definition.athena_dataset_definition.catalog #=> String
12979
+ # resp.results[0].trial_component.source_detail.processing_job.processing_inputs[0].dataset_definition.athena_dataset_definition.database #=> String
12980
+ # resp.results[0].trial_component.source_detail.processing_job.processing_inputs[0].dataset_definition.athena_dataset_definition.query_string #=> String
12981
+ # resp.results[0].trial_component.source_detail.processing_job.processing_inputs[0].dataset_definition.athena_dataset_definition.work_group #=> String
12982
+ # resp.results[0].trial_component.source_detail.processing_job.processing_inputs[0].dataset_definition.athena_dataset_definition.output_s3_uri #=> String
12983
+ # resp.results[0].trial_component.source_detail.processing_job.processing_inputs[0].dataset_definition.athena_dataset_definition.kms_key_id #=> String
12984
+ # resp.results[0].trial_component.source_detail.processing_job.processing_inputs[0].dataset_definition.athena_dataset_definition.output_format #=> String, one of "PARQUET", "ORC", "AVRO", "JSON", "TEXTFILE"
12985
+ # resp.results[0].trial_component.source_detail.processing_job.processing_inputs[0].dataset_definition.athena_dataset_definition.output_compression #=> String, one of "GZIP", "SNAPPY", "ZLIB"
12986
+ # resp.results[0].trial_component.source_detail.processing_job.processing_inputs[0].dataset_definition.redshift_dataset_definition.cluster_id #=> String
12987
+ # resp.results[0].trial_component.source_detail.processing_job.processing_inputs[0].dataset_definition.redshift_dataset_definition.database #=> String
12988
+ # resp.results[0].trial_component.source_detail.processing_job.processing_inputs[0].dataset_definition.redshift_dataset_definition.db_user #=> String
12989
+ # resp.results[0].trial_component.source_detail.processing_job.processing_inputs[0].dataset_definition.redshift_dataset_definition.query_string #=> String
12990
+ # resp.results[0].trial_component.source_detail.processing_job.processing_inputs[0].dataset_definition.redshift_dataset_definition.cluster_role_arn #=> String
12991
+ # resp.results[0].trial_component.source_detail.processing_job.processing_inputs[0].dataset_definition.redshift_dataset_definition.output_s3_uri #=> String
12992
+ # resp.results[0].trial_component.source_detail.processing_job.processing_inputs[0].dataset_definition.redshift_dataset_definition.kms_key_id #=> String
12993
+ # resp.results[0].trial_component.source_detail.processing_job.processing_inputs[0].dataset_definition.redshift_dataset_definition.output_format #=> String, one of "PARQUET", "CSV"
12994
+ # resp.results[0].trial_component.source_detail.processing_job.processing_inputs[0].dataset_definition.redshift_dataset_definition.output_compression #=> String, one of "None", "GZIP", "BZIP2", "ZSTD", "SNAPPY"
12995
+ # resp.results[0].trial_component.source_detail.processing_job.processing_inputs[0].dataset_definition.local_path #=> String
12996
+ # resp.results[0].trial_component.source_detail.processing_job.processing_inputs[0].dataset_definition.data_distribution_type #=> String, one of "FullyReplicated", "ShardedByS3Key"
12997
+ # resp.results[0].trial_component.source_detail.processing_job.processing_inputs[0].dataset_definition.input_mode #=> String, one of "Pipe", "File"
10414
12998
  # resp.results[0].trial_component.source_detail.processing_job.processing_output_config.outputs #=> Array
10415
12999
  # resp.results[0].trial_component.source_detail.processing_job.processing_output_config.outputs[0].output_name #=> String
10416
13000
  # resp.results[0].trial_component.source_detail.processing_job.processing_output_config.outputs[0].s3_output.s3_uri #=> String
10417
13001
  # resp.results[0].trial_component.source_detail.processing_job.processing_output_config.outputs[0].s3_output.local_path #=> String
10418
13002
  # resp.results[0].trial_component.source_detail.processing_job.processing_output_config.outputs[0].s3_output.s3_upload_mode #=> String, one of "Continuous", "EndOfJob"
13003
+ # resp.results[0].trial_component.source_detail.processing_job.processing_output_config.outputs[0].feature_store_output.feature_group_name #=> String
13004
+ # resp.results[0].trial_component.source_detail.processing_job.processing_output_config.outputs[0].app_managed #=> Boolean
10419
13005
  # resp.results[0].trial_component.source_detail.processing_job.processing_output_config.kms_key_id #=> String
10420
13006
  # resp.results[0].trial_component.source_detail.processing_job.processing_job_name #=> String
10421
13007
  # resp.results[0].trial_component.source_detail.processing_job.processing_resources.cluster_config.instance_count #=> Integer
@@ -10498,6 +13084,241 @@ module Aws::SageMaker
10498
13084
  # resp.results[0].trial_component.parents #=> Array
10499
13085
  # resp.results[0].trial_component.parents[0].trial_name #=> String
10500
13086
  # resp.results[0].trial_component.parents[0].experiment_name #=> String
13087
+ # resp.results[0].endpoint.endpoint_name #=> String
13088
+ # resp.results[0].endpoint.endpoint_arn #=> String
13089
+ # resp.results[0].endpoint.endpoint_config_name #=> String
13090
+ # resp.results[0].endpoint.production_variants #=> Array
13091
+ # resp.results[0].endpoint.production_variants[0].variant_name #=> String
13092
+ # resp.results[0].endpoint.production_variants[0].deployed_images #=> Array
13093
+ # resp.results[0].endpoint.production_variants[0].deployed_images[0].specified_image #=> String
13094
+ # resp.results[0].endpoint.production_variants[0].deployed_images[0].resolved_image #=> String
13095
+ # resp.results[0].endpoint.production_variants[0].deployed_images[0].resolution_time #=> Time
13096
+ # resp.results[0].endpoint.production_variants[0].current_weight #=> Float
13097
+ # resp.results[0].endpoint.production_variants[0].desired_weight #=> Float
13098
+ # resp.results[0].endpoint.production_variants[0].current_instance_count #=> Integer
13099
+ # resp.results[0].endpoint.production_variants[0].desired_instance_count #=> Integer
13100
+ # resp.results[0].endpoint.data_capture_config.enable_capture #=> Boolean
13101
+ # resp.results[0].endpoint.data_capture_config.capture_status #=> String, one of "Started", "Stopped"
13102
+ # resp.results[0].endpoint.data_capture_config.current_sampling_percentage #=> Integer
13103
+ # resp.results[0].endpoint.data_capture_config.destination_s3_uri #=> String
13104
+ # resp.results[0].endpoint.data_capture_config.kms_key_id #=> String
13105
+ # resp.results[0].endpoint.endpoint_status #=> String, one of "OutOfService", "Creating", "Updating", "SystemUpdating", "RollingBack", "InService", "Deleting", "Failed"
13106
+ # resp.results[0].endpoint.failure_reason #=> String
13107
+ # resp.results[0].endpoint.creation_time #=> Time
13108
+ # resp.results[0].endpoint.last_modified_time #=> Time
13109
+ # resp.results[0].endpoint.monitoring_schedules #=> Array
13110
+ # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_arn #=> String
13111
+ # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_name #=> String
13112
+ # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_status #=> String, one of "Pending", "Failed", "Scheduled", "Stopped"
13113
+ # resp.results[0].endpoint.monitoring_schedules[0].failure_reason #=> String
13114
+ # resp.results[0].endpoint.monitoring_schedules[0].creation_time #=> Time
13115
+ # resp.results[0].endpoint.monitoring_schedules[0].last_modified_time #=> Time
13116
+ # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.schedule_config.schedule_expression #=> String
13117
+ # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.baseline_config.constraints_resource.s3_uri #=> String
13118
+ # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.baseline_config.statistics_resource.s3_uri #=> String
13119
+ # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_inputs #=> Array
13120
+ # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_inputs[0].endpoint_input.endpoint_name #=> String
13121
+ # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_inputs[0].endpoint_input.local_path #=> String
13122
+ # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_inputs[0].endpoint_input.s3_input_mode #=> String, one of "Pipe", "File"
13123
+ # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_inputs[0].endpoint_input.s3_data_distribution_type #=> String, one of "FullyReplicated", "ShardedByS3Key"
13124
+ # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_output_config.monitoring_outputs #=> Array
13125
+ # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_output_config.monitoring_outputs[0].s3_output.s3_uri #=> String
13126
+ # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_output_config.monitoring_outputs[0].s3_output.local_path #=> String
13127
+ # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_output_config.monitoring_outputs[0].s3_output.s3_upload_mode #=> String, one of "Continuous", "EndOfJob"
13128
+ # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_output_config.kms_key_id #=> String
13129
+ # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_resources.cluster_config.instance_count #=> Integer
13130
+ # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_resources.cluster_config.instance_type #=> String, one of "ml.t3.medium", "ml.t3.large", "ml.t3.xlarge", "ml.t3.2xlarge", "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.r5.large", "ml.r5.xlarge", "ml.r5.2xlarge", "ml.r5.4xlarge", "ml.r5.8xlarge", "ml.r5.12xlarge", "ml.r5.16xlarge", "ml.r5.24xlarge"
13131
+ # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_resources.cluster_config.volume_size_in_gb #=> Integer
13132
+ # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_resources.cluster_config.volume_kms_key_id #=> String
13133
+ # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_app_specification.image_uri #=> String
13134
+ # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_app_specification.container_entrypoint #=> Array
13135
+ # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_app_specification.container_entrypoint[0] #=> String
13136
+ # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_app_specification.container_arguments #=> Array
13137
+ # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_app_specification.container_arguments[0] #=> String
13138
+ # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_app_specification.record_preprocessor_source_uri #=> String
13139
+ # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_app_specification.post_analytics_processor_source_uri #=> String
13140
+ # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.stopping_condition.max_runtime_in_seconds #=> Integer
13141
+ # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.environment #=> Hash
13142
+ # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.environment["ProcessingEnvironmentKey"] #=> String
13143
+ # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.network_config.enable_inter_container_traffic_encryption #=> Boolean
13144
+ # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.network_config.enable_network_isolation #=> Boolean
13145
+ # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.network_config.vpc_config.security_group_ids #=> Array
13146
+ # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.network_config.vpc_config.security_group_ids[0] #=> String
13147
+ # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.network_config.vpc_config.subnets #=> Array
13148
+ # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.network_config.vpc_config.subnets[0] #=> String
13149
+ # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.role_arn #=> String
13150
+ # resp.results[0].endpoint.monitoring_schedules[0].endpoint_name #=> String
13151
+ # resp.results[0].endpoint.monitoring_schedules[0].last_monitoring_execution_summary.monitoring_schedule_name #=> String
13152
+ # resp.results[0].endpoint.monitoring_schedules[0].last_monitoring_execution_summary.scheduled_time #=> Time
13153
+ # resp.results[0].endpoint.monitoring_schedules[0].last_monitoring_execution_summary.creation_time #=> Time
13154
+ # resp.results[0].endpoint.monitoring_schedules[0].last_monitoring_execution_summary.last_modified_time #=> Time
13155
+ # resp.results[0].endpoint.monitoring_schedules[0].last_monitoring_execution_summary.monitoring_execution_status #=> String, one of "Pending", "Completed", "CompletedWithViolations", "InProgress", "Failed", "Stopping", "Stopped"
13156
+ # resp.results[0].endpoint.monitoring_schedules[0].last_monitoring_execution_summary.processing_job_arn #=> String
13157
+ # resp.results[0].endpoint.monitoring_schedules[0].last_monitoring_execution_summary.endpoint_name #=> String
13158
+ # resp.results[0].endpoint.monitoring_schedules[0].last_monitoring_execution_summary.failure_reason #=> String
13159
+ # resp.results[0].endpoint.monitoring_schedules[0].tags #=> Array
13160
+ # resp.results[0].endpoint.monitoring_schedules[0].tags[0].key #=> String
13161
+ # resp.results[0].endpoint.monitoring_schedules[0].tags[0].value #=> String
13162
+ # resp.results[0].endpoint.tags #=> Array
13163
+ # resp.results[0].endpoint.tags[0].key #=> String
13164
+ # resp.results[0].endpoint.tags[0].value #=> String
13165
+ # resp.results[0].model_package.model_package_name #=> String
13166
+ # resp.results[0].model_package.model_package_group_name #=> String
13167
+ # resp.results[0].model_package.model_package_version #=> Integer
13168
+ # resp.results[0].model_package.model_package_arn #=> String
13169
+ # resp.results[0].model_package.model_package_description #=> String
13170
+ # resp.results[0].model_package.creation_time #=> Time
13171
+ # resp.results[0].model_package.inference_specification.containers #=> Array
13172
+ # resp.results[0].model_package.inference_specification.containers[0].container_hostname #=> String
13173
+ # resp.results[0].model_package.inference_specification.containers[0].image #=> String
13174
+ # resp.results[0].model_package.inference_specification.containers[0].image_digest #=> String
13175
+ # resp.results[0].model_package.inference_specification.containers[0].model_data_url #=> String
13176
+ # resp.results[0].model_package.inference_specification.containers[0].product_id #=> String
13177
+ # resp.results[0].model_package.inference_specification.supported_transform_instance_types #=> Array
13178
+ # resp.results[0].model_package.inference_specification.supported_transform_instance_types[0] #=> String, one of "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "ml.c4.xlarge", "ml.c4.2xlarge", "ml.c4.4xlarge", "ml.c4.8xlarge", "ml.p2.xlarge", "ml.p2.8xlarge", "ml.p2.16xlarge", "ml.p3.2xlarge", "ml.p3.8xlarge", "ml.p3.16xlarge", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge"
13179
+ # resp.results[0].model_package.inference_specification.supported_realtime_inference_instance_types #=> Array
13180
+ # resp.results[0].model_package.inference_specification.supported_realtime_inference_instance_types[0] #=> String, one of "ml.t2.medium", "ml.t2.large", "ml.t2.xlarge", "ml.t2.2xlarge", "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "ml.m5d.large", "ml.m5d.xlarge", "ml.m5d.2xlarge", "ml.m5d.4xlarge", "ml.m5d.12xlarge", "ml.m5d.24xlarge", "ml.c4.large", "ml.c4.xlarge", "ml.c4.2xlarge", "ml.c4.4xlarge", "ml.c4.8xlarge", "ml.p2.xlarge", "ml.p2.8xlarge", "ml.p2.16xlarge", "ml.p3.2xlarge", "ml.p3.8xlarge", "ml.p3.16xlarge", "ml.c5.large", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.c5d.large", "ml.c5d.xlarge", "ml.c5d.2xlarge", "ml.c5d.4xlarge", "ml.c5d.9xlarge", "ml.c5d.18xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge", "ml.r5.large", "ml.r5.xlarge", "ml.r5.2xlarge", "ml.r5.4xlarge", "ml.r5.12xlarge", "ml.r5.24xlarge", "ml.r5d.large", "ml.r5d.xlarge", "ml.r5d.2xlarge", "ml.r5d.4xlarge", "ml.r5d.12xlarge", "ml.r5d.24xlarge", "ml.inf1.xlarge", "ml.inf1.2xlarge", "ml.inf1.6xlarge", "ml.inf1.24xlarge"
13181
+ # resp.results[0].model_package.inference_specification.supported_content_types #=> Array
13182
+ # resp.results[0].model_package.inference_specification.supported_content_types[0] #=> String
13183
+ # resp.results[0].model_package.inference_specification.supported_response_mime_types #=> Array
13184
+ # resp.results[0].model_package.inference_specification.supported_response_mime_types[0] #=> String
13185
+ # resp.results[0].model_package.source_algorithm_specification.source_algorithms #=> Array
13186
+ # resp.results[0].model_package.source_algorithm_specification.source_algorithms[0].model_data_url #=> String
13187
+ # resp.results[0].model_package.source_algorithm_specification.source_algorithms[0].algorithm_name #=> String
13188
+ # resp.results[0].model_package.validation_specification.validation_role #=> String
13189
+ # resp.results[0].model_package.validation_specification.validation_profiles #=> Array
13190
+ # resp.results[0].model_package.validation_specification.validation_profiles[0].profile_name #=> String
13191
+ # resp.results[0].model_package.validation_specification.validation_profiles[0].transform_job_definition.max_concurrent_transforms #=> Integer
13192
+ # resp.results[0].model_package.validation_specification.validation_profiles[0].transform_job_definition.max_payload_in_mb #=> Integer
13193
+ # resp.results[0].model_package.validation_specification.validation_profiles[0].transform_job_definition.batch_strategy #=> String, one of "MultiRecord", "SingleRecord"
13194
+ # resp.results[0].model_package.validation_specification.validation_profiles[0].transform_job_definition.environment #=> Hash
13195
+ # resp.results[0].model_package.validation_specification.validation_profiles[0].transform_job_definition.environment["TransformEnvironmentKey"] #=> String
13196
+ # resp.results[0].model_package.validation_specification.validation_profiles[0].transform_job_definition.transform_input.data_source.s3_data_source.s3_data_type #=> String, one of "ManifestFile", "S3Prefix", "AugmentedManifestFile"
13197
+ # resp.results[0].model_package.validation_specification.validation_profiles[0].transform_job_definition.transform_input.data_source.s3_data_source.s3_uri #=> String
13198
+ # resp.results[0].model_package.validation_specification.validation_profiles[0].transform_job_definition.transform_input.content_type #=> String
13199
+ # resp.results[0].model_package.validation_specification.validation_profiles[0].transform_job_definition.transform_input.compression_type #=> String, one of "None", "Gzip"
13200
+ # resp.results[0].model_package.validation_specification.validation_profiles[0].transform_job_definition.transform_input.split_type #=> String, one of "None", "Line", "RecordIO", "TFRecord"
13201
+ # resp.results[0].model_package.validation_specification.validation_profiles[0].transform_job_definition.transform_output.s3_output_path #=> String
13202
+ # resp.results[0].model_package.validation_specification.validation_profiles[0].transform_job_definition.transform_output.accept #=> String
13203
+ # resp.results[0].model_package.validation_specification.validation_profiles[0].transform_job_definition.transform_output.assemble_with #=> String, one of "None", "Line"
13204
+ # resp.results[0].model_package.validation_specification.validation_profiles[0].transform_job_definition.transform_output.kms_key_id #=> String
13205
+ # resp.results[0].model_package.validation_specification.validation_profiles[0].transform_job_definition.transform_resources.instance_type #=> String, one of "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "ml.c4.xlarge", "ml.c4.2xlarge", "ml.c4.4xlarge", "ml.c4.8xlarge", "ml.p2.xlarge", "ml.p2.8xlarge", "ml.p2.16xlarge", "ml.p3.2xlarge", "ml.p3.8xlarge", "ml.p3.16xlarge", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge"
13206
+ # resp.results[0].model_package.validation_specification.validation_profiles[0].transform_job_definition.transform_resources.instance_count #=> Integer
13207
+ # resp.results[0].model_package.validation_specification.validation_profiles[0].transform_job_definition.transform_resources.volume_kms_key_id #=> String
13208
+ # resp.results[0].model_package.model_package_status #=> String, one of "Pending", "InProgress", "Completed", "Failed", "Deleting"
13209
+ # resp.results[0].model_package.model_package_status_details.validation_statuses #=> Array
13210
+ # resp.results[0].model_package.model_package_status_details.validation_statuses[0].name #=> String
13211
+ # resp.results[0].model_package.model_package_status_details.validation_statuses[0].status #=> String, one of "NotStarted", "InProgress", "Completed", "Failed"
13212
+ # resp.results[0].model_package.model_package_status_details.validation_statuses[0].failure_reason #=> String
13213
+ # resp.results[0].model_package.model_package_status_details.image_scan_statuses #=> Array
13214
+ # resp.results[0].model_package.model_package_status_details.image_scan_statuses[0].name #=> String
13215
+ # resp.results[0].model_package.model_package_status_details.image_scan_statuses[0].status #=> String, one of "NotStarted", "InProgress", "Completed", "Failed"
13216
+ # resp.results[0].model_package.model_package_status_details.image_scan_statuses[0].failure_reason #=> String
13217
+ # resp.results[0].model_package.certify_for_marketplace #=> Boolean
13218
+ # resp.results[0].model_package.model_approval_status #=> String, one of "Approved", "Rejected", "PendingManualApproval"
13219
+ # resp.results[0].model_package.created_by.user_profile_arn #=> String
13220
+ # resp.results[0].model_package.created_by.user_profile_name #=> String
13221
+ # resp.results[0].model_package.created_by.domain_id #=> String
13222
+ # resp.results[0].model_package.metadata_properties.commit_id #=> String
13223
+ # resp.results[0].model_package.metadata_properties.repository #=> String
13224
+ # resp.results[0].model_package.metadata_properties.generated_by #=> String
13225
+ # resp.results[0].model_package.metadata_properties.project_id #=> String
13226
+ # resp.results[0].model_package.model_metrics.model_quality.statistics.content_type #=> String
13227
+ # resp.results[0].model_package.model_metrics.model_quality.statistics.content_digest #=> String
13228
+ # resp.results[0].model_package.model_metrics.model_quality.statistics.s3_uri #=> String
13229
+ # resp.results[0].model_package.model_metrics.model_quality.constraints.content_type #=> String
13230
+ # resp.results[0].model_package.model_metrics.model_quality.constraints.content_digest #=> String
13231
+ # resp.results[0].model_package.model_metrics.model_quality.constraints.s3_uri #=> String
13232
+ # resp.results[0].model_package.model_metrics.model_data_quality.statistics.content_type #=> String
13233
+ # resp.results[0].model_package.model_metrics.model_data_quality.statistics.content_digest #=> String
13234
+ # resp.results[0].model_package.model_metrics.model_data_quality.statistics.s3_uri #=> String
13235
+ # resp.results[0].model_package.model_metrics.model_data_quality.constraints.content_type #=> String
13236
+ # resp.results[0].model_package.model_metrics.model_data_quality.constraints.content_digest #=> String
13237
+ # resp.results[0].model_package.model_metrics.model_data_quality.constraints.s3_uri #=> String
13238
+ # resp.results[0].model_package.model_metrics.bias.report.content_type #=> String
13239
+ # resp.results[0].model_package.model_metrics.bias.report.content_digest #=> String
13240
+ # resp.results[0].model_package.model_metrics.bias.report.s3_uri #=> String
13241
+ # resp.results[0].model_package.model_metrics.explainability.report.content_type #=> String
13242
+ # resp.results[0].model_package.model_metrics.explainability.report.content_digest #=> String
13243
+ # resp.results[0].model_package.model_metrics.explainability.report.s3_uri #=> String
13244
+ # resp.results[0].model_package.last_modified_time #=> Time
13245
+ # resp.results[0].model_package.last_modified_by.user_profile_arn #=> String
13246
+ # resp.results[0].model_package.last_modified_by.user_profile_name #=> String
13247
+ # resp.results[0].model_package.last_modified_by.domain_id #=> String
13248
+ # resp.results[0].model_package.approval_description #=> String
13249
+ # resp.results[0].model_package.tags #=> Array
13250
+ # resp.results[0].model_package.tags[0].key #=> String
13251
+ # resp.results[0].model_package.tags[0].value #=> String
13252
+ # resp.results[0].model_package_group.model_package_group_name #=> String
13253
+ # resp.results[0].model_package_group.model_package_group_arn #=> String
13254
+ # resp.results[0].model_package_group.model_package_group_description #=> String
13255
+ # resp.results[0].model_package_group.creation_time #=> Time
13256
+ # resp.results[0].model_package_group.created_by.user_profile_arn #=> String
13257
+ # resp.results[0].model_package_group.created_by.user_profile_name #=> String
13258
+ # resp.results[0].model_package_group.created_by.domain_id #=> String
13259
+ # resp.results[0].model_package_group.model_package_group_status #=> String, one of "Pending", "InProgress", "Completed", "Failed", "Deleting", "DeleteFailed"
13260
+ # resp.results[0].model_package_group.tags #=> Array
13261
+ # resp.results[0].model_package_group.tags[0].key #=> String
13262
+ # resp.results[0].model_package_group.tags[0].value #=> String
13263
+ # resp.results[0].pipeline.pipeline_arn #=> String
13264
+ # resp.results[0].pipeline.pipeline_name #=> String
13265
+ # resp.results[0].pipeline.pipeline_display_name #=> String
13266
+ # resp.results[0].pipeline.pipeline_description #=> String
13267
+ # resp.results[0].pipeline.role_arn #=> String
13268
+ # resp.results[0].pipeline.pipeline_status #=> String, one of "Active"
13269
+ # resp.results[0].pipeline.creation_time #=> Time
13270
+ # resp.results[0].pipeline.last_modified_time #=> Time
13271
+ # resp.results[0].pipeline.last_run_time #=> Time
13272
+ # resp.results[0].pipeline.created_by.user_profile_arn #=> String
13273
+ # resp.results[0].pipeline.created_by.user_profile_name #=> String
13274
+ # resp.results[0].pipeline.created_by.domain_id #=> String
13275
+ # resp.results[0].pipeline.last_modified_by.user_profile_arn #=> String
13276
+ # resp.results[0].pipeline.last_modified_by.user_profile_name #=> String
13277
+ # resp.results[0].pipeline.last_modified_by.domain_id #=> String
13278
+ # resp.results[0].pipeline.tags #=> Array
13279
+ # resp.results[0].pipeline.tags[0].key #=> String
13280
+ # resp.results[0].pipeline.tags[0].value #=> String
13281
+ # resp.results[0].pipeline_execution.pipeline_arn #=> String
13282
+ # resp.results[0].pipeline_execution.pipeline_execution_arn #=> String
13283
+ # resp.results[0].pipeline_execution.pipeline_execution_display_name #=> String
13284
+ # resp.results[0].pipeline_execution.pipeline_execution_status #=> String, one of "Executing", "Stopping", "Stopped", "Failed", "Succeeded"
13285
+ # resp.results[0].pipeline_execution.pipeline_execution_description #=> String
13286
+ # resp.results[0].pipeline_execution.creation_time #=> Time
13287
+ # resp.results[0].pipeline_execution.last_modified_time #=> Time
13288
+ # resp.results[0].pipeline_execution.created_by.user_profile_arn #=> String
13289
+ # resp.results[0].pipeline_execution.created_by.user_profile_name #=> String
13290
+ # resp.results[0].pipeline_execution.created_by.domain_id #=> String
13291
+ # resp.results[0].pipeline_execution.last_modified_by.user_profile_arn #=> String
13292
+ # resp.results[0].pipeline_execution.last_modified_by.user_profile_name #=> String
13293
+ # resp.results[0].pipeline_execution.last_modified_by.domain_id #=> String
13294
+ # resp.results[0].pipeline_execution.pipeline_parameters #=> Array
13295
+ # resp.results[0].pipeline_execution.pipeline_parameters[0].name #=> String
13296
+ # resp.results[0].pipeline_execution.pipeline_parameters[0].value #=> String
13297
+ # resp.results[0].feature_group.feature_group_arn #=> String
13298
+ # resp.results[0].feature_group.feature_group_name #=> String
13299
+ # resp.results[0].feature_group.record_identifier_feature_name #=> String
13300
+ # resp.results[0].feature_group.event_time_feature_name #=> String
13301
+ # resp.results[0].feature_group.feature_definitions #=> Array
13302
+ # resp.results[0].feature_group.feature_definitions[0].feature_name #=> String
13303
+ # resp.results[0].feature_group.feature_definitions[0].feature_type #=> String, one of "Integral", "Fractional", "String"
13304
+ # resp.results[0].feature_group.creation_time #=> Time
13305
+ # resp.results[0].feature_group.online_store_config.security_config.kms_key_id #=> String
13306
+ # resp.results[0].feature_group.online_store_config.enable_online_store #=> Boolean
13307
+ # resp.results[0].feature_group.offline_store_config.s3_storage_config.s3_uri #=> String
13308
+ # resp.results[0].feature_group.offline_store_config.s3_storage_config.kms_key_id #=> String
13309
+ # resp.results[0].feature_group.offline_store_config.disable_glue_table_creation #=> Boolean
13310
+ # resp.results[0].feature_group.offline_store_config.data_catalog_config.table_name #=> String
13311
+ # resp.results[0].feature_group.offline_store_config.data_catalog_config.catalog #=> String
13312
+ # resp.results[0].feature_group.offline_store_config.data_catalog_config.database #=> String
13313
+ # resp.results[0].feature_group.role_arn #=> String
13314
+ # resp.results[0].feature_group.feature_group_status #=> String, one of "Creating", "Created", "CreateFailed", "Deleting", "DeleteFailed"
13315
+ # resp.results[0].feature_group.offline_store_status.status #=> String, one of "Active", "Blocked", "Disabled"
13316
+ # resp.results[0].feature_group.offline_store_status.blocked_reason #=> String
13317
+ # resp.results[0].feature_group.failure_reason #=> String
13318
+ # resp.results[0].feature_group.description #=> String
13319
+ # resp.results[0].feature_group.tags #=> Array
13320
+ # resp.results[0].feature_group.tags[0].key #=> String
13321
+ # resp.results[0].feature_group.tags[0].value #=> String
10501
13322
  # resp.next_token #=> String
10502
13323
  #
10503
13324
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/Search AWS API Documentation
@@ -10561,6 +13382,60 @@ module Aws::SageMaker
10561
13382
  req.send_request(options)
10562
13383
  end
10563
13384
 
13385
+ # Starts a pipeline execution.
13386
+ #
13387
+ # @option params [required, String] :pipeline_name
13388
+ # The name of the pipeline.
13389
+ #
13390
+ # @option params [String] :pipeline_execution_display_name
13391
+ # The display name of the pipeline execution.
13392
+ #
13393
+ # @option params [Array<Types::Parameter>] :pipeline_parameters
13394
+ # Contains a list of pipeline parameters. This list can be empty.
13395
+ #
13396
+ # @option params [String] :pipeline_execution_description
13397
+ # The description of the pipeline execution.
13398
+ #
13399
+ # @option params [required, String] :client_request_token
13400
+ # A unique, case-sensitive identifier that you provide to ensure the
13401
+ # idempotency of the operation. An idempotent operation completes no
13402
+ # more than one time.
13403
+ #
13404
+ # **A suitable default value is auto-generated.** You should normally
13405
+ # not need to pass this option.**
13406
+ #
13407
+ # @return [Types::StartPipelineExecutionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
13408
+ #
13409
+ # * {Types::StartPipelineExecutionResponse#pipeline_execution_arn #pipeline_execution_arn} => String
13410
+ #
13411
+ # @example Request syntax with placeholder values
13412
+ #
13413
+ # resp = client.start_pipeline_execution({
13414
+ # pipeline_name: "PipelineName", # required
13415
+ # pipeline_execution_display_name: "PipelineExecutionName",
13416
+ # pipeline_parameters: [
13417
+ # {
13418
+ # name: "PipelineParameterName", # required
13419
+ # value: "String1024", # required
13420
+ # },
13421
+ # ],
13422
+ # pipeline_execution_description: "PipelineExecutionDescription",
13423
+ # client_request_token: "IdempotencyToken", # required
13424
+ # })
13425
+ #
13426
+ # @example Response structure
13427
+ #
13428
+ # resp.pipeline_execution_arn #=> String
13429
+ #
13430
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/StartPipelineExecution AWS API Documentation
13431
+ #
13432
+ # @overload start_pipeline_execution(params = {})
13433
+ # @param [Hash] params ({})
13434
+ def start_pipeline_execution(params = {}, options = {})
13435
+ req = build_request(:start_pipeline_execution, params)
13436
+ req.send_request(options)
13437
+ end
13438
+
10564
13439
  # A method for forcing the termination of a running job.
10565
13440
  #
10566
13441
  # @option params [required, String] :auto_ml_job_name
@@ -10721,6 +13596,43 @@ module Aws::SageMaker
10721
13596
  req.send_request(options)
10722
13597
  end
10723
13598
 
13599
+ # Stops a pipeline execution.
13600
+ #
13601
+ # @option params [required, String] :pipeline_execution_arn
13602
+ # The Amazon Resource Name (ARN) of the pipeline execution.
13603
+ #
13604
+ # @option params [required, String] :client_request_token
13605
+ # A unique, case-sensitive identifier that you provide to ensure the
13606
+ # idempotency of the operation. An idempotent operation completes no
13607
+ # more than one time.
13608
+ #
13609
+ # **A suitable default value is auto-generated.** You should normally
13610
+ # not need to pass this option.**
13611
+ #
13612
+ # @return [Types::StopPipelineExecutionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
13613
+ #
13614
+ # * {Types::StopPipelineExecutionResponse#pipeline_execution_arn #pipeline_execution_arn} => String
13615
+ #
13616
+ # @example Request syntax with placeholder values
13617
+ #
13618
+ # resp = client.stop_pipeline_execution({
13619
+ # pipeline_execution_arn: "PipelineExecutionArn", # required
13620
+ # client_request_token: "IdempotencyToken", # required
13621
+ # })
13622
+ #
13623
+ # @example Response structure
13624
+ #
13625
+ # resp.pipeline_execution_arn #=> String
13626
+ #
13627
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/StopPipelineExecution AWS API Documentation
13628
+ #
13629
+ # @overload stop_pipeline_execution(params = {})
13630
+ # @param [Hash] params ({})
13631
+ def stop_pipeline_execution(params = {}, options = {})
13632
+ req = build_request(:stop_pipeline_execution, params)
13633
+ req.send_request(options)
13634
+ end
13635
+
10724
13636
  # Stops a processing job.
10725
13637
  #
10726
13638
  # @option params [required, String] :processing_job_name
@@ -10800,6 +13712,52 @@ module Aws::SageMaker
10800
13712
  req.send_request(options)
10801
13713
  end
10802
13714
 
13715
+ # Updates an action.
13716
+ #
13717
+ # @option params [required, String] :action_name
13718
+ # The name of the action to update.
13719
+ #
13720
+ # @option params [String] :description
13721
+ # The new description for the action.
13722
+ #
13723
+ # @option params [String] :status
13724
+ # The new status for the action.
13725
+ #
13726
+ # @option params [Hash<String,String>] :properties
13727
+ # The new list of properties. Overwrites the current property list.
13728
+ #
13729
+ # @option params [Array<String>] :properties_to_remove
13730
+ # A list of properties to remove.
13731
+ #
13732
+ # @return [Types::UpdateActionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
13733
+ #
13734
+ # * {Types::UpdateActionResponse#action_arn #action_arn} => String
13735
+ #
13736
+ # @example Request syntax with placeholder values
13737
+ #
13738
+ # resp = client.update_action({
13739
+ # action_name: "ExperimentEntityName", # required
13740
+ # description: "ExperimentDescription",
13741
+ # status: "Unknown", # accepts Unknown, InProgress, Completed, Failed, Stopping, Stopped
13742
+ # properties: {
13743
+ # "StringParameterValue" => "StringParameterValue",
13744
+ # },
13745
+ # properties_to_remove: ["StringParameterValue"],
13746
+ # })
13747
+ #
13748
+ # @example Response structure
13749
+ #
13750
+ # resp.action_arn #=> String
13751
+ #
13752
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateAction AWS API Documentation
13753
+ #
13754
+ # @overload update_action(params = {})
13755
+ # @param [Hash] params ({})
13756
+ def update_action(params = {}, options = {})
13757
+ req = build_request(:update_action, params)
13758
+ req.send_request(options)
13759
+ end
13760
+
10803
13761
  # Updates the properties of an AppImageConfig.
10804
13762
  #
10805
13763
  # @option params [required, String] :app_image_config_name
@@ -10844,6 +13802,48 @@ module Aws::SageMaker
10844
13802
  req.send_request(options)
10845
13803
  end
10846
13804
 
13805
+ # Updates an artifact.
13806
+ #
13807
+ # @option params [required, String] :artifact_arn
13808
+ # The Amazon Resource Name (ARN) of the artifact to update.
13809
+ #
13810
+ # @option params [String] :artifact_name
13811
+ # The new name for the artifact.
13812
+ #
13813
+ # @option params [Hash<String,String>] :properties
13814
+ # The new list of properties. Overwrites the current property list.
13815
+ #
13816
+ # @option params [Array<String>] :properties_to_remove
13817
+ # A list of properties to remove.
13818
+ #
13819
+ # @return [Types::UpdateArtifactResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
13820
+ #
13821
+ # * {Types::UpdateArtifactResponse#artifact_arn #artifact_arn} => String
13822
+ #
13823
+ # @example Request syntax with placeholder values
13824
+ #
13825
+ # resp = client.update_artifact({
13826
+ # artifact_arn: "ArtifactArn", # required
13827
+ # artifact_name: "ExperimentEntityName",
13828
+ # properties: {
13829
+ # "StringParameterValue" => "StringParameterValue",
13830
+ # },
13831
+ # properties_to_remove: ["StringParameterValue"],
13832
+ # })
13833
+ #
13834
+ # @example Response structure
13835
+ #
13836
+ # resp.artifact_arn #=> String
13837
+ #
13838
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateArtifact AWS API Documentation
13839
+ #
13840
+ # @overload update_artifact(params = {})
13841
+ # @param [Hash] params ({})
13842
+ def update_artifact(params = {}, options = {})
13843
+ req = build_request(:update_artifact, params)
13844
+ req.send_request(options)
13845
+ end
13846
+
10847
13847
  # Updates the specified Git repository with the specified values.
10848
13848
  #
10849
13849
  # @option params [required, String] :code_repository_name
@@ -10884,6 +13884,48 @@ module Aws::SageMaker
10884
13884
  req.send_request(options)
10885
13885
  end
10886
13886
 
13887
+ # Updates a context.
13888
+ #
13889
+ # @option params [required, String] :context_name
13890
+ # The name of the context to update.
13891
+ #
13892
+ # @option params [String] :description
13893
+ # The new description for the context.
13894
+ #
13895
+ # @option params [Hash<String,String>] :properties
13896
+ # The new list of properties. Overwrites the current property list.
13897
+ #
13898
+ # @option params [Array<String>] :properties_to_remove
13899
+ # A list of properties to remove.
13900
+ #
13901
+ # @return [Types::UpdateContextResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
13902
+ #
13903
+ # * {Types::UpdateContextResponse#context_arn #context_arn} => String
13904
+ #
13905
+ # @example Request syntax with placeholder values
13906
+ #
13907
+ # resp = client.update_context({
13908
+ # context_name: "ExperimentEntityName", # required
13909
+ # description: "ExperimentDescription",
13910
+ # properties: {
13911
+ # "StringParameterValue" => "StringParameterValue",
13912
+ # },
13913
+ # properties_to_remove: ["StringParameterValue"],
13914
+ # })
13915
+ #
13916
+ # @example Response structure
13917
+ #
13918
+ # resp.context_arn #=> String
13919
+ #
13920
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateContext AWS API Documentation
13921
+ #
13922
+ # @overload update_context(params = {})
13923
+ # @param [Hash] params ({})
13924
+ def update_context(params = {}, options = {})
13925
+ req = build_request(:update_context, params)
13926
+ req.send_request(options)
13927
+ end
13928
+
10887
13929
  # Updates the default settings for new user profiles in the domain.
10888
13930
  #
10889
13931
  # @option params [required, String] :domain_id
@@ -10982,11 +14024,16 @@ module Aws::SageMaker
10982
14024
  #
10983
14025
  # @option params [Boolean] :retain_all_variant_properties
10984
14026
  # When updating endpoint resources, enables or disables the retention of
10985
- # variant properties, such as the instance count or the variant weight.
10986
- # To retain the variant properties of an endpoint when updating it, set
10987
- # `RetainAllVariantProperties` to `true`. To use the variant properties
10988
- # specified in a new `EndpointConfig` call when updating an endpoint,
10989
- # set `RetainAllVariantProperties` to `false`.
14027
+ # [variant properties][1], such as the instance count or the variant
14028
+ # weight. To retain the variant properties of an endpoint when updating
14029
+ # it, set `RetainAllVariantProperties` to `true`. To use the variant
14030
+ # properties specified in a new `EndpointConfig` call when updating an
14031
+ # endpoint, set `RetainAllVariantProperties` to `false`. The default is
14032
+ # `false`.
14033
+ #
14034
+ #
14035
+ #
14036
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_VariantProperty.html
10990
14037
  #
10991
14038
  # @option params [Array<Types::VariantProperty>] :exclude_retained_variant_properties
10992
14039
  # When you are updating endpoint resources with
@@ -10996,6 +14043,9 @@ module Aws::SageMaker
10996
14043
  # `EndpointConfig`. If you don't specify a value for
10997
14044
  # `ExcludeAllVariantProperties`, no variant properties are overridden.
10998
14045
  #
14046
+ # @option params [Types::DeploymentConfig] :deployment_config
14047
+ # The deployment configuration for the endpoint to be updated.
14048
+ #
10999
14049
  # @return [Types::UpdateEndpointOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
11000
14050
  #
11001
14051
  # * {Types::UpdateEndpointOutput#endpoint_arn #endpoint_arn} => String
@@ -11011,6 +14061,27 @@ module Aws::SageMaker
11011
14061
  # variant_property_type: "DesiredInstanceCount", # required, accepts DesiredInstanceCount, DesiredWeight, DataCaptureConfig
11012
14062
  # },
11013
14063
  # ],
14064
+ # deployment_config: {
14065
+ # blue_green_update_policy: { # required
14066
+ # traffic_routing_configuration: { # required
14067
+ # type: "ALL_AT_ONCE", # required, accepts ALL_AT_ONCE, CANARY
14068
+ # wait_interval_in_seconds: 1, # required
14069
+ # canary_size: {
14070
+ # type: "INSTANCE_COUNT", # required, accepts INSTANCE_COUNT, CAPACITY_PERCENT
14071
+ # value: 1, # required
14072
+ # },
14073
+ # },
14074
+ # termination_wait_in_seconds: 1,
14075
+ # maximum_execution_timeout_in_seconds: 1,
14076
+ # },
14077
+ # auto_rollback_configuration: {
14078
+ # alarms: [
14079
+ # {
14080
+ # alarm_name: "AlarmName",
14081
+ # },
14082
+ # ],
14083
+ # },
14084
+ # },
11014
14085
  # })
11015
14086
  #
11016
14087
  # @example Response structure
@@ -11155,6 +14226,42 @@ module Aws::SageMaker
11155
14226
  req.send_request(options)
11156
14227
  end
11157
14228
 
14229
+ # Updates a versioned model.
14230
+ #
14231
+ # @option params [required, String] :model_package_arn
14232
+ # The Amazon Resource Name (ARN) of the model.
14233
+ #
14234
+ # @option params [required, String] :model_approval_status
14235
+ # The approval status of the model.
14236
+ #
14237
+ # @option params [String] :approval_description
14238
+ # A description for the approval status of the model.
14239
+ #
14240
+ # @return [Types::UpdateModelPackageOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
14241
+ #
14242
+ # * {Types::UpdateModelPackageOutput#model_package_arn #model_package_arn} => String
14243
+ #
14244
+ # @example Request syntax with placeholder values
14245
+ #
14246
+ # resp = client.update_model_package({
14247
+ # model_package_arn: "ModelPackageArn", # required
14248
+ # model_approval_status: "Approved", # required, accepts Approved, Rejected, PendingManualApproval
14249
+ # approval_description: "ApprovalDescription",
14250
+ # })
14251
+ #
14252
+ # @example Response structure
14253
+ #
14254
+ # resp.model_package_arn #=> String
14255
+ #
14256
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateModelPackage AWS API Documentation
14257
+ #
14258
+ # @overload update_model_package(params = {})
14259
+ # @param [Hash] params ({})
14260
+ def update_model_package(params = {}, options = {})
14261
+ req = build_request(:update_model_package, params)
14262
+ req.send_request(options)
14263
+ end
14264
+
11158
14265
  # Updates a previously created schedule.
11159
14266
  #
11160
14267
  # @option params [required, String] :monitoring_schedule_name
@@ -11177,7 +14284,7 @@ module Aws::SageMaker
11177
14284
  # schedule_config: {
11178
14285
  # schedule_expression: "ScheduleExpression", # required
11179
14286
  # },
11180
- # monitoring_job_definition: { # required
14287
+ # monitoring_job_definition: {
11181
14288
  # baseline_config: {
11182
14289
  # constraints_resource: {
11183
14290
  # s3_uri: "S3Uri",
@@ -11442,6 +14549,86 @@ module Aws::SageMaker
11442
14549
  req.send_request(options)
11443
14550
  end
11444
14551
 
14552
+ # Updates a pipeline.
14553
+ #
14554
+ # @option params [required, String] :pipeline_name
14555
+ # The name of the pipeline to update.
14556
+ #
14557
+ # @option params [String] :pipeline_display_name
14558
+ # The display name of the pipeline.
14559
+ #
14560
+ # @option params [String] :pipeline_definition
14561
+ # The JSON pipeline definition.
14562
+ #
14563
+ # @option params [String] :pipeline_description
14564
+ # The description of the pipeline.
14565
+ #
14566
+ # @option params [String] :role_arn
14567
+ # The Amazon Resource Name (ARN) that the pipeline uses to execute.
14568
+ #
14569
+ # @return [Types::UpdatePipelineResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
14570
+ #
14571
+ # * {Types::UpdatePipelineResponse#pipeline_arn #pipeline_arn} => String
14572
+ #
14573
+ # @example Request syntax with placeholder values
14574
+ #
14575
+ # resp = client.update_pipeline({
14576
+ # pipeline_name: "PipelineName", # required
14577
+ # pipeline_display_name: "PipelineName",
14578
+ # pipeline_definition: "PipelineDefinition",
14579
+ # pipeline_description: "PipelineDescription",
14580
+ # role_arn: "RoleArn",
14581
+ # })
14582
+ #
14583
+ # @example Response structure
14584
+ #
14585
+ # resp.pipeline_arn #=> String
14586
+ #
14587
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdatePipeline AWS API Documentation
14588
+ #
14589
+ # @overload update_pipeline(params = {})
14590
+ # @param [Hash] params ({})
14591
+ def update_pipeline(params = {}, options = {})
14592
+ req = build_request(:update_pipeline, params)
14593
+ req.send_request(options)
14594
+ end
14595
+
14596
+ # Updates a pipeline execution.
14597
+ #
14598
+ # @option params [required, String] :pipeline_execution_arn
14599
+ # The Amazon Resource Name (ARN) of the pipeline execution.
14600
+ #
14601
+ # @option params [String] :pipeline_execution_description
14602
+ # The description of the pipeline execution.
14603
+ #
14604
+ # @option params [String] :pipeline_execution_display_name
14605
+ # The display name of the pipeline execution.
14606
+ #
14607
+ # @return [Types::UpdatePipelineExecutionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
14608
+ #
14609
+ # * {Types::UpdatePipelineExecutionResponse#pipeline_execution_arn #pipeline_execution_arn} => String
14610
+ #
14611
+ # @example Request syntax with placeholder values
14612
+ #
14613
+ # resp = client.update_pipeline_execution({
14614
+ # pipeline_execution_arn: "PipelineExecutionArn", # required
14615
+ # pipeline_execution_description: "PipelineExecutionDescription",
14616
+ # pipeline_execution_display_name: "PipelineExecutionName",
14617
+ # })
14618
+ #
14619
+ # @example Response structure
14620
+ #
14621
+ # resp.pipeline_execution_arn #=> String
14622
+ #
14623
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdatePipelineExecution AWS API Documentation
14624
+ #
14625
+ # @overload update_pipeline_execution(params = {})
14626
+ # @param [Hash] params ({})
14627
+ def update_pipeline_execution(params = {}, options = {})
14628
+ req = build_request(:update_pipeline_execution, params)
14629
+ req.send_request(options)
14630
+ end
14631
+
11445
14632
  # Updates the display name of a trial.
11446
14633
  #
11447
14634
  # @option params [required, String] :trial_name
@@ -11848,7 +15035,7 @@ module Aws::SageMaker
11848
15035
  params: params,
11849
15036
  config: config)
11850
15037
  context[:gem_name] = 'aws-sdk-sagemaker'
11851
- context[:gem_version] = '1.72.0'
15038
+ context[:gem_version] = '1.73.0'
11852
15039
  Seahorse::Client::Request.new(handlers, context)
11853
15040
  end
11854
15041