aws-sdk-sagemaker 1.57.0 → 1.62.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/aws-sdk-sagemaker.rb +3 -1
- data/lib/aws-sdk-sagemaker/client.rb +138 -56
- data/lib/aws-sdk-sagemaker/client_api.rb +13 -0
- data/lib/aws-sdk-sagemaker/errors.rb +2 -0
- data/lib/aws-sdk-sagemaker/resource.rb +2 -0
- data/lib/aws-sdk-sagemaker/types.rb +803 -218
- data/lib/aws-sdk-sagemaker/waiters.rb +2 -0
- metadata +4 -4
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -36,6 +38,7 @@ module Aws::SageMaker
|
|
36
38
|
class AddTagsInput < Struct.new(
|
37
39
|
:resource_arn,
|
38
40
|
:tags)
|
41
|
+
SENSITIVE = []
|
39
42
|
include Aws::Structure
|
40
43
|
end
|
41
44
|
|
@@ -47,6 +50,7 @@ module Aws::SageMaker
|
|
47
50
|
#
|
48
51
|
class AddTagsOutput < Struct.new(
|
49
52
|
:tags)
|
53
|
+
SENSITIVE = []
|
50
54
|
include Aws::Structure
|
51
55
|
end
|
52
56
|
|
@@ -165,6 +169,7 @@ module Aws::SageMaker
|
|
165
169
|
:training_input_mode,
|
166
170
|
:metric_definitions,
|
167
171
|
:enable_sage_maker_metrics_time_series)
|
172
|
+
SENSITIVE = []
|
168
173
|
include Aws::Structure
|
169
174
|
end
|
170
175
|
|
@@ -183,6 +188,7 @@ module Aws::SageMaker
|
|
183
188
|
class AlgorithmStatusDetails < Struct.new(
|
184
189
|
:validation_statuses,
|
185
190
|
:image_scan_statuses)
|
191
|
+
SENSITIVE = []
|
186
192
|
include Aws::Structure
|
187
193
|
end
|
188
194
|
|
@@ -207,6 +213,7 @@ module Aws::SageMaker
|
|
207
213
|
:name,
|
208
214
|
:status,
|
209
215
|
:failure_reason)
|
216
|
+
SENSITIVE = []
|
210
217
|
include Aws::Structure
|
211
218
|
end
|
212
219
|
|
@@ -240,6 +247,7 @@ module Aws::SageMaker
|
|
240
247
|
:algorithm_description,
|
241
248
|
:creation_time,
|
242
249
|
:algorithm_status)
|
250
|
+
SENSITIVE = []
|
243
251
|
include Aws::Structure
|
244
252
|
end
|
245
253
|
|
@@ -353,6 +361,7 @@ module Aws::SageMaker
|
|
353
361
|
:profile_name,
|
354
362
|
:training_job_definition,
|
355
363
|
:transform_job_definition)
|
364
|
+
SENSITIVE = []
|
356
365
|
include Aws::Structure
|
357
366
|
end
|
358
367
|
|
@@ -462,6 +471,7 @@ module Aws::SageMaker
|
|
462
471
|
class AlgorithmValidationSpecification < Struct.new(
|
463
472
|
:validation_role,
|
464
473
|
:validation_profiles)
|
474
|
+
SENSITIVE = []
|
465
475
|
include Aws::Structure
|
466
476
|
end
|
467
477
|
|
@@ -482,10 +492,10 @@ module Aws::SageMaker
|
|
482
492
|
# segmentation, and text classification task types, Amazon SageMaker
|
483
493
|
# Ground Truth provides the following Lambda functions:
|
484
494
|
#
|
485
|
-
#
|
486
|
-
#
|
495
|
+
# **Bounding box** - Finds the most similar boxes from different
|
496
|
+
# workers based on the Jaccard index of the boxes.
|
487
497
|
#
|
488
|
-
#
|
498
|
+
# * `arn:aws:lambda:us-east-1:432418664414:function:ACS-BoundingBox`
|
489
499
|
#
|
490
500
|
# `arn:aws:lambda:us-east-2:266458841044:function:ACS-BoundingBox`
|
491
501
|
#
|
@@ -509,11 +519,11 @@ module Aws::SageMaker
|
|
509
519
|
#
|
510
520
|
# `arn:aws:lambda:ca-central-1:918755190332:function:ACS-BoundingBox`
|
511
521
|
#
|
512
|
-
#
|
513
|
-
#
|
514
|
-
#
|
522
|
+
# **Image classification** - Uses a variant of the Expectation
|
523
|
+
# Maximization approach to estimate the true class of an image based
|
524
|
+
# on annotations from individual workers.
|
515
525
|
#
|
516
|
-
#
|
526
|
+
# * `arn:aws:lambda:us-east-1:432418664414:function:ACS-ImageMultiClass`
|
517
527
|
#
|
518
528
|
# `arn:aws:lambda:us-east-2:266458841044:function:ACS-ImageMultiClass`
|
519
529
|
#
|
@@ -537,11 +547,11 @@ module Aws::SageMaker
|
|
537
547
|
#
|
538
548
|
# `arn:aws:lambda:ca-central-1:918755190332:function:ACS-ImageMultiClass`
|
539
549
|
#
|
540
|
-
#
|
541
|
-
#
|
542
|
-
#
|
550
|
+
# **Multi-label image classification** - Uses a variant of the
|
551
|
+
# Expectation Maximization approach to estimate the true classes of an
|
552
|
+
# image based on annotations from individual workers.
|
543
553
|
#
|
544
|
-
#
|
554
|
+
# * `arn:aws:lambda:us-east-1:432418664414:function:ACS-ImageMultiClassMultiLabel`
|
545
555
|
#
|
546
556
|
# `arn:aws:lambda:us-east-2:266458841044:function:ACS-ImageMultiClassMultiLabel`
|
547
557
|
#
|
@@ -565,11 +575,11 @@ module Aws::SageMaker
|
|
565
575
|
#
|
566
576
|
# `arn:aws:lambda:ca-central-1:918755190332:function:ACS-ImageMultiClassMultiLabel`
|
567
577
|
#
|
568
|
-
#
|
569
|
-
#
|
570
|
-
#
|
578
|
+
# **Semantic segmentation** - Treats each pixel in an image as a
|
579
|
+
# multi-class classification and treats pixel annotations from workers
|
580
|
+
# as "votes" for the correct label.
|
571
581
|
#
|
572
|
-
#
|
582
|
+
# * `arn:aws:lambda:us-east-1:432418664414:function:ACS-SemanticSegmentation`
|
573
583
|
#
|
574
584
|
# `arn:aws:lambda:us-east-2:266458841044:function:ACS-SemanticSegmentation`
|
575
585
|
#
|
@@ -593,11 +603,11 @@ module Aws::SageMaker
|
|
593
603
|
#
|
594
604
|
# `arn:aws:lambda:ca-central-1:918755190332:function:ACS-SemanticSegmentation`
|
595
605
|
#
|
596
|
-
#
|
597
|
-
#
|
598
|
-
#
|
606
|
+
# **Text classification** - Uses a variant of the Expectation
|
607
|
+
# Maximization approach to estimate the true class of text based on
|
608
|
+
# annotations from individual workers.
|
599
609
|
#
|
600
|
-
#
|
610
|
+
# * `arn:aws:lambda:us-east-1:432418664414:function:ACS-TextMultiClass`
|
601
611
|
#
|
602
612
|
# `arn:aws:lambda:us-east-2:266458841044:function:ACS-TextMultiClass`
|
603
613
|
#
|
@@ -621,11 +631,11 @@ module Aws::SageMaker
|
|
621
631
|
#
|
622
632
|
# `arn:aws:lambda:ca-central-1:918755190332:function:ACS-TextMultiClass`
|
623
633
|
#
|
624
|
-
#
|
625
|
-
#
|
626
|
-
#
|
634
|
+
# **Multi-label text classification** - Uses a variant of the
|
635
|
+
# Expectation Maximization approach to estimate the true classes of
|
636
|
+
# text based on annotations from individual workers.
|
627
637
|
#
|
628
|
-
#
|
638
|
+
# * `arn:aws:lambda:us-east-1:432418664414:function:ACS-TextMultiClassMultiLabel`
|
629
639
|
#
|
630
640
|
# `arn:aws:lambda:us-east-2:266458841044:function:ACS-TextMultiClassMultiLabel`
|
631
641
|
#
|
@@ -649,10 +659,10 @@ module Aws::SageMaker
|
|
649
659
|
#
|
650
660
|
# `arn:aws:lambda:ca-central-1:918755190332:function:ACS-TextMultiClassMultiLabel`
|
651
661
|
#
|
652
|
-
#
|
653
|
-
#
|
662
|
+
# **Named entity recognition** - Groups similar selections and
|
663
|
+
# calculates aggregate boundaries, resolving to most-assigned label.
|
654
664
|
#
|
655
|
-
#
|
665
|
+
# * `arn:aws:lambda:us-east-1:432418664414:function:ACS-NamedEntityRecognition`
|
656
666
|
#
|
657
667
|
# `arn:aws:lambda:us-east-2:266458841044:function:ACS-NamedEntityRecognition`
|
658
668
|
#
|
@@ -676,12 +686,12 @@ module Aws::SageMaker
|
|
676
686
|
#
|
677
687
|
# `arn:aws:lambda:ca-central-1:918755190332:function:ACS-NamedEntityRecognition`
|
678
688
|
#
|
679
|
-
#
|
680
|
-
#
|
681
|
-
#
|
682
|
-
#
|
689
|
+
# **Bounding box verification** - Uses a variant of the Expectation
|
690
|
+
# Maximization approach to estimate the true class of verification
|
691
|
+
# judgement for bounding box labels based on annotations from
|
692
|
+
# individual workers.
|
683
693
|
#
|
684
|
-
#
|
694
|
+
# * `arn:aws:lambda:us-east-1:432418664414:function:ACS-VerificationBoundingBox`
|
685
695
|
#
|
686
696
|
# `arn:aws:lambda:us-east-2:266458841044:function:ACS-VerificationBoundingBox`
|
687
697
|
#
|
@@ -705,12 +715,12 @@ module Aws::SageMaker
|
|
705
715
|
#
|
706
716
|
# `arn:aws:lambda:ca-central-1:918755190332:function:ACS-VerificationBoundingBox`
|
707
717
|
#
|
708
|
-
#
|
709
|
-
#
|
710
|
-
#
|
711
|
-
#
|
718
|
+
# **Semantic segmentation verification** - Uses a variant of the
|
719
|
+
# Expectation Maximization approach to estimate the true class of
|
720
|
+
# verification judgment for semantic segmentation labels based on
|
721
|
+
# annotations from individual workers.
|
712
722
|
#
|
713
|
-
#
|
723
|
+
# * `arn:aws:lambda:us-east-1:432418664414:function:ACS-VerificationSemanticSegmentation`
|
714
724
|
#
|
715
725
|
# `arn:aws:lambda:us-east-2:266458841044:function:ACS-VerificationSemanticSegmentation`
|
716
726
|
#
|
@@ -734,11 +744,11 @@ module Aws::SageMaker
|
|
734
744
|
#
|
735
745
|
# `arn:aws:lambda:ca-central-1:918755190332:function:ACS-VerificationSemanticSegmentation`
|
736
746
|
#
|
737
|
-
#
|
738
|
-
#
|
739
|
-
#
|
747
|
+
# **Bounding box adjustment** - Finds the most similar boxes from
|
748
|
+
# different workers based on the Jaccard index of the adjusted
|
749
|
+
# annotations.
|
740
750
|
#
|
741
|
-
#
|
751
|
+
# * `arn:aws:lambda:us-east-1:432418664414:function:ACS-AdjustmentBoundingBox`
|
742
752
|
#
|
743
753
|
# `arn:aws:lambda:us-east-2:266458841044:function:ACS-AdjustmentBoundingBox`
|
744
754
|
#
|
@@ -762,11 +772,11 @@ module Aws::SageMaker
|
|
762
772
|
#
|
763
773
|
# `arn:aws:lambda:ca-central-1:918755190332:function:ACS-AdjustmentBoundingBox`
|
764
774
|
#
|
765
|
-
#
|
766
|
-
#
|
767
|
-
#
|
775
|
+
# **Semantic segmentation adjustment** - Treats each pixel in an image
|
776
|
+
# as a multi-class classification and treats pixel adjusted
|
777
|
+
# annotations from workers as "votes" for the correct label.
|
768
778
|
#
|
769
|
-
#
|
779
|
+
# * `arn:aws:lambda:us-east-1:432418664414:function:ACS-AdjustmentSemanticSegmentation`
|
770
780
|
#
|
771
781
|
# `arn:aws:lambda:us-east-2:266458841044:function:ACS-AdjustmentSemanticSegmentation`
|
772
782
|
#
|
@@ -801,6 +811,7 @@ module Aws::SageMaker
|
|
801
811
|
#
|
802
812
|
class AnnotationConsolidationConfig < Struct.new(
|
803
813
|
:annotation_consolidation_lambda_arn)
|
814
|
+
SENSITIVE = []
|
804
815
|
include Aws::Structure
|
805
816
|
end
|
806
817
|
|
@@ -839,6 +850,7 @@ module Aws::SageMaker
|
|
839
850
|
:app_name,
|
840
851
|
:status,
|
841
852
|
:creation_time)
|
853
|
+
SENSITIVE = []
|
842
854
|
include Aws::Structure
|
843
855
|
end
|
844
856
|
|
@@ -871,6 +883,7 @@ module Aws::SageMaker
|
|
871
883
|
:image_uri,
|
872
884
|
:container_entrypoint,
|
873
885
|
:container_arguments)
|
886
|
+
SENSITIVE = []
|
874
887
|
include Aws::Structure
|
875
888
|
end
|
876
889
|
|
@@ -895,6 +908,7 @@ module Aws::SageMaker
|
|
895
908
|
class AssociateTrialComponentRequest < Struct.new(
|
896
909
|
:trial_component_name,
|
897
910
|
:trial_name)
|
911
|
+
SENSITIVE = []
|
898
912
|
include Aws::Structure
|
899
913
|
end
|
900
914
|
|
@@ -911,6 +925,7 @@ module Aws::SageMaker
|
|
911
925
|
class AssociateTrialComponentResponse < Struct.new(
|
912
926
|
:trial_component_arn,
|
913
927
|
:trial_arn)
|
928
|
+
SENSITIVE = []
|
914
929
|
include Aws::Structure
|
915
930
|
end
|
916
931
|
|
@@ -970,6 +985,7 @@ module Aws::SageMaker
|
|
970
985
|
:end_time,
|
971
986
|
:last_modified_time,
|
972
987
|
:failure_reason)
|
988
|
+
SENSITIVE = []
|
973
989
|
include Aws::Structure
|
974
990
|
end
|
975
991
|
|
@@ -995,6 +1011,7 @@ module Aws::SageMaker
|
|
995
1011
|
:candidate_step_type,
|
996
1012
|
:candidate_step_arn,
|
997
1013
|
:candidate_step_name)
|
1014
|
+
SENSITIVE = []
|
998
1015
|
include Aws::Structure
|
999
1016
|
end
|
1000
1017
|
|
@@ -1034,6 +1051,7 @@ module Aws::SageMaker
|
|
1034
1051
|
:data_source,
|
1035
1052
|
:compression_type,
|
1036
1053
|
:target_attribute_name)
|
1054
|
+
SENSITIVE = []
|
1037
1055
|
include Aws::Structure
|
1038
1056
|
end
|
1039
1057
|
|
@@ -1062,6 +1080,7 @@ module Aws::SageMaker
|
|
1062
1080
|
:image,
|
1063
1081
|
:model_data_url,
|
1064
1082
|
:environment)
|
1083
|
+
SENSITIVE = []
|
1065
1084
|
include Aws::Structure
|
1066
1085
|
end
|
1067
1086
|
|
@@ -1089,6 +1108,7 @@ module Aws::SageMaker
|
|
1089
1108
|
#
|
1090
1109
|
class AutoMLDataSource < Struct.new(
|
1091
1110
|
:s3_data_source)
|
1111
|
+
SENSITIVE = []
|
1092
1112
|
include Aws::Structure
|
1093
1113
|
end
|
1094
1114
|
|
@@ -1107,6 +1127,7 @@ module Aws::SageMaker
|
|
1107
1127
|
class AutoMLJobArtifacts < Struct.new(
|
1108
1128
|
:candidate_definition_notebook_location,
|
1109
1129
|
:data_exploration_notebook_location)
|
1130
|
+
SENSITIVE = []
|
1110
1131
|
include Aws::Structure
|
1111
1132
|
end
|
1112
1133
|
|
@@ -1142,6 +1163,7 @@ module Aws::SageMaker
|
|
1142
1163
|
:max_candidates,
|
1143
1164
|
:max_runtime_per_training_job_in_seconds,
|
1144
1165
|
:max_auto_ml_job_runtime_in_seconds)
|
1166
|
+
SENSITIVE = []
|
1145
1167
|
include Aws::Structure
|
1146
1168
|
end
|
1147
1169
|
|
@@ -1181,6 +1203,7 @@ module Aws::SageMaker
|
|
1181
1203
|
class AutoMLJobConfig < Struct.new(
|
1182
1204
|
:completion_criteria,
|
1183
1205
|
:security_config)
|
1206
|
+
SENSITIVE = []
|
1184
1207
|
include Aws::Structure
|
1185
1208
|
end
|
1186
1209
|
|
@@ -1201,6 +1224,7 @@ module Aws::SageMaker
|
|
1201
1224
|
#
|
1202
1225
|
class AutoMLJobObjective < Struct.new(
|
1203
1226
|
:metric_name)
|
1227
|
+
SENSITIVE = []
|
1204
1228
|
include Aws::Structure
|
1205
1229
|
end
|
1206
1230
|
|
@@ -1249,6 +1273,7 @@ module Aws::SageMaker
|
|
1249
1273
|
:end_time,
|
1250
1274
|
:last_modified_time,
|
1251
1275
|
:failure_reason)
|
1276
|
+
SENSITIVE = []
|
1252
1277
|
include Aws::Structure
|
1253
1278
|
end
|
1254
1279
|
|
@@ -1275,6 +1300,7 @@ module Aws::SageMaker
|
|
1275
1300
|
class AutoMLOutputDataConfig < Struct.new(
|
1276
1301
|
:kms_key_id,
|
1277
1302
|
:s3_output_path)
|
1303
|
+
SENSITIVE = []
|
1278
1304
|
include Aws::Structure
|
1279
1305
|
end
|
1280
1306
|
|
@@ -1301,6 +1327,7 @@ module Aws::SageMaker
|
|
1301
1327
|
class AutoMLS3DataSource < Struct.new(
|
1302
1328
|
:s3_data_type,
|
1303
1329
|
:s3_uri)
|
1330
|
+
SENSITIVE = []
|
1304
1331
|
include Aws::Structure
|
1305
1332
|
end
|
1306
1333
|
|
@@ -1336,6 +1363,7 @@ module Aws::SageMaker
|
|
1336
1363
|
:volume_kms_key_id,
|
1337
1364
|
:enable_inter_container_traffic_encryption,
|
1338
1365
|
:vpc_config)
|
1366
|
+
SENSITIVE = []
|
1339
1367
|
include Aws::Structure
|
1340
1368
|
end
|
1341
1369
|
|
@@ -1358,6 +1386,7 @@ module Aws::SageMaker
|
|
1358
1386
|
class CaptureContentTypeHeader < Struct.new(
|
1359
1387
|
:csv_content_types,
|
1360
1388
|
:json_content_types)
|
1389
|
+
SENSITIVE = []
|
1361
1390
|
include Aws::Structure
|
1362
1391
|
end
|
1363
1392
|
|
@@ -1375,6 +1404,7 @@ module Aws::SageMaker
|
|
1375
1404
|
#
|
1376
1405
|
class CaptureOption < Struct.new(
|
1377
1406
|
:capture_mode)
|
1407
|
+
SENSITIVE = []
|
1378
1408
|
include Aws::Structure
|
1379
1409
|
end
|
1380
1410
|
|
@@ -1401,6 +1431,7 @@ module Aws::SageMaker
|
|
1401
1431
|
class CategoricalParameterRange < Struct.new(
|
1402
1432
|
:name,
|
1403
1433
|
:values)
|
1434
|
+
SENSITIVE = []
|
1404
1435
|
include Aws::Structure
|
1405
1436
|
end
|
1406
1437
|
|
@@ -1421,6 +1452,7 @@ module Aws::SageMaker
|
|
1421
1452
|
#
|
1422
1453
|
class CategoricalParameterRangeSpecification < Struct.new(
|
1423
1454
|
:values)
|
1455
|
+
SENSITIVE = []
|
1424
1456
|
include Aws::Structure
|
1425
1457
|
end
|
1426
1458
|
|
@@ -1532,6 +1564,7 @@ module Aws::SageMaker
|
|
1532
1564
|
:record_wrapper_type,
|
1533
1565
|
:input_mode,
|
1534
1566
|
:shuffle_config)
|
1567
|
+
SENSITIVE = []
|
1535
1568
|
include Aws::Structure
|
1536
1569
|
end
|
1537
1570
|
|
@@ -1591,6 +1624,7 @@ module Aws::SageMaker
|
|
1591
1624
|
:supported_content_types,
|
1592
1625
|
:supported_compression_types,
|
1593
1626
|
:supported_input_modes)
|
1627
|
+
SENSITIVE = []
|
1594
1628
|
include Aws::Structure
|
1595
1629
|
end
|
1596
1630
|
|
@@ -1620,6 +1654,7 @@ module Aws::SageMaker
|
|
1620
1654
|
class CheckpointConfig < Struct.new(
|
1621
1655
|
:s3_uri,
|
1622
1656
|
:local_path)
|
1657
|
+
SENSITIVE = []
|
1623
1658
|
include Aws::Structure
|
1624
1659
|
end
|
1625
1660
|
|
@@ -1655,6 +1690,7 @@ module Aws::SageMaker
|
|
1655
1690
|
:creation_time,
|
1656
1691
|
:last_modified_time,
|
1657
1692
|
:git_config)
|
1693
|
+
SENSITIVE = []
|
1658
1694
|
include Aws::Structure
|
1659
1695
|
end
|
1660
1696
|
|
@@ -1690,6 +1726,7 @@ module Aws::SageMaker
|
|
1690
1726
|
:user_pool,
|
1691
1727
|
:user_group,
|
1692
1728
|
:client_id)
|
1729
|
+
SENSITIVE = []
|
1693
1730
|
include Aws::Structure
|
1694
1731
|
end
|
1695
1732
|
|
@@ -1721,6 +1758,7 @@ module Aws::SageMaker
|
|
1721
1758
|
class CollectionConfiguration < Struct.new(
|
1722
1759
|
:collection_name,
|
1723
1760
|
:collection_parameters)
|
1761
|
+
SENSITIVE = []
|
1724
1762
|
include Aws::Structure
|
1725
1763
|
end
|
1726
1764
|
|
@@ -1770,6 +1808,7 @@ module Aws::SageMaker
|
|
1770
1808
|
:compilation_target_device,
|
1771
1809
|
:last_modified_time,
|
1772
1810
|
:compilation_job_status)
|
1811
|
+
SENSITIVE = []
|
1773
1812
|
include Aws::Structure
|
1774
1813
|
end
|
1775
1814
|
|
@@ -1783,6 +1822,7 @@ module Aws::SageMaker
|
|
1783
1822
|
#
|
1784
1823
|
class ConflictException < Struct.new(
|
1785
1824
|
:message)
|
1825
|
+
SENSITIVE = []
|
1786
1826
|
include Aws::Structure
|
1787
1827
|
end
|
1788
1828
|
|
@@ -1887,6 +1927,7 @@ module Aws::SageMaker
|
|
1887
1927
|
:model_data_url,
|
1888
1928
|
:environment,
|
1889
1929
|
:model_package_name)
|
1930
|
+
SENSITIVE = []
|
1890
1931
|
include Aws::Structure
|
1891
1932
|
end
|
1892
1933
|
|
@@ -1961,6 +2002,7 @@ module Aws::SageMaker
|
|
1961
2002
|
:min_value,
|
1962
2003
|
:max_value,
|
1963
2004
|
:scaling_type)
|
2005
|
+
SENSITIVE = []
|
1964
2006
|
include Aws::Structure
|
1965
2007
|
end
|
1966
2008
|
|
@@ -1987,6 +2029,7 @@ module Aws::SageMaker
|
|
1987
2029
|
class ContinuousParameterRangeSpecification < Struct.new(
|
1988
2030
|
:min_value,
|
1989
2031
|
:max_value)
|
2032
|
+
SENSITIVE = []
|
1990
2033
|
include Aws::Structure
|
1991
2034
|
end
|
1992
2035
|
|
@@ -2215,6 +2258,7 @@ module Aws::SageMaker
|
|
2215
2258
|
:inference_specification,
|
2216
2259
|
:validation_specification,
|
2217
2260
|
:certify_for_marketplace)
|
2261
|
+
SENSITIVE = []
|
2218
2262
|
include Aws::Structure
|
2219
2263
|
end
|
2220
2264
|
|
@@ -2226,6 +2270,7 @@ module Aws::SageMaker
|
|
2226
2270
|
#
|
2227
2271
|
class CreateAlgorithmOutput < Struct.new(
|
2228
2272
|
:algorithm_arn)
|
2273
|
+
SENSITIVE = []
|
2229
2274
|
include Aws::Structure
|
2230
2275
|
end
|
2231
2276
|
|
@@ -2284,17 +2329,19 @@ module Aws::SageMaker
|
|
2284
2329
|
:app_name,
|
2285
2330
|
:tags,
|
2286
2331
|
:resource_spec)
|
2332
|
+
SENSITIVE = []
|
2287
2333
|
include Aws::Structure
|
2288
2334
|
end
|
2289
2335
|
|
2290
2336
|
# @!attribute [rw] app_arn
|
2291
|
-
# The
|
2337
|
+
# The App's Amazon Resource Name (ARN).
|
2292
2338
|
# @return [String]
|
2293
2339
|
#
|
2294
2340
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateAppResponse AWS API Documentation
|
2295
2341
|
#
|
2296
2342
|
class CreateAppResponse < Struct.new(
|
2297
2343
|
:app_arn)
|
2344
|
+
SENSITIVE = []
|
2298
2345
|
include Aws::Structure
|
2299
2346
|
end
|
2300
2347
|
|
@@ -2406,6 +2453,7 @@ module Aws::SageMaker
|
|
2406
2453
|
:role_arn,
|
2407
2454
|
:generate_candidate_definitions_only,
|
2408
2455
|
:tags)
|
2456
|
+
SENSITIVE = []
|
2409
2457
|
include Aws::Structure
|
2410
2458
|
end
|
2411
2459
|
|
@@ -2417,6 +2465,7 @@ module Aws::SageMaker
|
|
2417
2465
|
#
|
2418
2466
|
class CreateAutoMLJobResponse < Struct.new(
|
2419
2467
|
:auto_ml_job_arn)
|
2468
|
+
SENSITIVE = []
|
2420
2469
|
include Aws::Structure
|
2421
2470
|
end
|
2422
2471
|
|
@@ -2448,6 +2497,7 @@ module Aws::SageMaker
|
|
2448
2497
|
class CreateCodeRepositoryInput < Struct.new(
|
2449
2498
|
:code_repository_name,
|
2450
2499
|
:git_config)
|
2500
|
+
SENSITIVE = []
|
2451
2501
|
include Aws::Structure
|
2452
2502
|
end
|
2453
2503
|
|
@@ -2459,6 +2509,7 @@ module Aws::SageMaker
|
|
2459
2509
|
#
|
2460
2510
|
class CreateCodeRepositoryOutput < Struct.new(
|
2461
2511
|
:code_repository_arn)
|
2512
|
+
SENSITIVE = []
|
2462
2513
|
include Aws::Structure
|
2463
2514
|
end
|
2464
2515
|
|
@@ -2537,6 +2588,7 @@ module Aws::SageMaker
|
|
2537
2588
|
:input_config,
|
2538
2589
|
:output_config,
|
2539
2590
|
:stopping_condition)
|
2591
|
+
SENSITIVE = []
|
2540
2592
|
include Aws::Structure
|
2541
2593
|
end
|
2542
2594
|
|
@@ -2555,6 +2607,7 @@ module Aws::SageMaker
|
|
2555
2607
|
#
|
2556
2608
|
class CreateCompilationJobResponse < Struct.new(
|
2557
2609
|
:compilation_job_arn)
|
2610
|
+
SENSITIVE = []
|
2558
2611
|
include Aws::Structure
|
2559
2612
|
end
|
2560
2613
|
|
@@ -2607,7 +2660,7 @@ module Aws::SageMaker
|
|
2607
2660
|
# @return [String]
|
2608
2661
|
#
|
2609
2662
|
# @!attribute [rw] auth_mode
|
2610
|
-
# The mode of authentication that
|
2663
|
+
# The mode of authentication that members use to access the domain.
|
2611
2664
|
# @return [String]
|
2612
2665
|
#
|
2613
2666
|
# @!attribute [rw] default_user_settings
|
@@ -2615,17 +2668,18 @@ module Aws::SageMaker
|
|
2615
2668
|
# @return [Types::UserSettings]
|
2616
2669
|
#
|
2617
2670
|
# @!attribute [rw] subnet_ids
|
2618
|
-
#
|
2671
|
+
# The VPC subnets to use for communication with the EFS volume.
|
2619
2672
|
# @return [Array<String>]
|
2620
2673
|
#
|
2621
2674
|
# @!attribute [rw] vpc_id
|
2622
|
-
#
|
2623
|
-
#
|
2675
|
+
# The ID of the Amazon Virtual Private Cloud (VPC) to use for
|
2676
|
+
# communication with the EFS volume.
|
2624
2677
|
# @return [String]
|
2625
2678
|
#
|
2626
2679
|
# @!attribute [rw] tags
|
2627
|
-
# Each tag consists of a key and
|
2628
|
-
# unique per resource.
|
2680
|
+
# Tags to associated with the Domain. Each tag consists of a key and
|
2681
|
+
# an optional value. Tag keys must be unique per resource. Tags are
|
2682
|
+
# searchable using the Search API.
|
2629
2683
|
# @return [Array<Types::Tag>]
|
2630
2684
|
#
|
2631
2685
|
# @!attribute [rw] home_efs_file_system_kms_key_id
|
@@ -2643,6 +2697,7 @@ module Aws::SageMaker
|
|
2643
2697
|
:vpc_id,
|
2644
2698
|
:tags,
|
2645
2699
|
:home_efs_file_system_kms_key_id)
|
2700
|
+
SENSITIVE = []
|
2646
2701
|
include Aws::Structure
|
2647
2702
|
end
|
2648
2703
|
|
@@ -2659,6 +2714,7 @@ module Aws::SageMaker
|
|
2659
2714
|
class CreateDomainResponse < Struct.new(
|
2660
2715
|
:domain_arn,
|
2661
2716
|
:url)
|
2717
|
+
SENSITIVE = []
|
2662
2718
|
include Aws::Structure
|
2663
2719
|
end
|
2664
2720
|
|
@@ -2779,6 +2835,7 @@ module Aws::SageMaker
|
|
2779
2835
|
:data_capture_config,
|
2780
2836
|
:tags,
|
2781
2837
|
:kms_key_id)
|
2838
|
+
SENSITIVE = []
|
2782
2839
|
include Aws::Structure
|
2783
2840
|
end
|
2784
2841
|
|
@@ -2790,6 +2847,7 @@ module Aws::SageMaker
|
|
2790
2847
|
#
|
2791
2848
|
class CreateEndpointConfigOutput < Struct.new(
|
2792
2849
|
:endpoint_config_arn)
|
2850
|
+
SENSITIVE = []
|
2793
2851
|
include Aws::Structure
|
2794
2852
|
end
|
2795
2853
|
|
@@ -2833,6 +2891,7 @@ module Aws::SageMaker
|
|
2833
2891
|
:endpoint_name,
|
2834
2892
|
:endpoint_config_name,
|
2835
2893
|
:tags)
|
2894
|
+
SENSITIVE = []
|
2836
2895
|
include Aws::Structure
|
2837
2896
|
end
|
2838
2897
|
|
@@ -2844,6 +2903,7 @@ module Aws::SageMaker
|
|
2844
2903
|
#
|
2845
2904
|
class CreateEndpointOutput < Struct.new(
|
2846
2905
|
:endpoint_arn)
|
2906
|
+
SENSITIVE = []
|
2847
2907
|
include Aws::Structure
|
2848
2908
|
end
|
2849
2909
|
|
@@ -2889,6 +2949,7 @@ module Aws::SageMaker
|
|
2889
2949
|
:display_name,
|
2890
2950
|
:description,
|
2891
2951
|
:tags)
|
2952
|
+
SENSITIVE = []
|
2892
2953
|
include Aws::Structure
|
2893
2954
|
end
|
2894
2955
|
|
@@ -2900,6 +2961,7 @@ module Aws::SageMaker
|
|
2900
2961
|
#
|
2901
2962
|
class CreateExperimentResponse < Struct.new(
|
2902
2963
|
:experiment_arn)
|
2964
|
+
SENSITIVE = []
|
2903
2965
|
include Aws::Structure
|
2904
2966
|
end
|
2905
2967
|
|
@@ -2993,6 +3055,7 @@ module Aws::SageMaker
|
|
2993
3055
|
:output_config,
|
2994
3056
|
:role_arn,
|
2995
3057
|
:tags)
|
3058
|
+
SENSITIVE = []
|
2996
3059
|
include Aws::Structure
|
2997
3060
|
end
|
2998
3061
|
|
@@ -3004,6 +3067,7 @@ module Aws::SageMaker
|
|
3004
3067
|
#
|
3005
3068
|
class CreateFlowDefinitionResponse < Struct.new(
|
3006
3069
|
:flow_definition_arn)
|
3070
|
+
SENSITIVE = []
|
3007
3071
|
include Aws::Structure
|
3008
3072
|
end
|
3009
3073
|
|
@@ -3043,6 +3107,7 @@ module Aws::SageMaker
|
|
3043
3107
|
:human_task_ui_name,
|
3044
3108
|
:ui_template,
|
3045
3109
|
:tags)
|
3110
|
+
SENSITIVE = []
|
3046
3111
|
include Aws::Structure
|
3047
3112
|
end
|
3048
3113
|
|
@@ -3055,6 +3120,7 @@ module Aws::SageMaker
|
|
3055
3120
|
#
|
3056
3121
|
class CreateHumanTaskUiResponse < Struct.new(
|
3057
3122
|
:human_task_ui_arn)
|
3123
|
+
SENSITIVE = []
|
3058
3124
|
include Aws::Structure
|
3059
3125
|
end
|
3060
3126
|
|
@@ -3342,6 +3408,8 @@ module Aws::SageMaker
|
|
3342
3408
|
# @return [Types::HyperParameterTrainingJobDefinition]
|
3343
3409
|
#
|
3344
3410
|
# @!attribute [rw] training_job_definitions
|
3411
|
+
# A list of the HyperParameterTrainingJobDefinition objects launched
|
3412
|
+
# for this tuning job.
|
3345
3413
|
# @return [Array<Types::HyperParameterTrainingJobDefinition>]
|
3346
3414
|
#
|
3347
3415
|
# @!attribute [rw] warm_start_config
|
@@ -3389,6 +3457,7 @@ module Aws::SageMaker
|
|
3389
3457
|
:training_job_definitions,
|
3390
3458
|
:warm_start_config,
|
3391
3459
|
:tags)
|
3460
|
+
SENSITIVE = []
|
3392
3461
|
include Aws::Structure
|
3393
3462
|
end
|
3394
3463
|
|
@@ -3401,6 +3470,7 @@ module Aws::SageMaker
|
|
3401
3470
|
#
|
3402
3471
|
class CreateHyperParameterTuningJobResponse < Struct.new(
|
3403
3472
|
:hyper_parameter_tuning_job_arn)
|
3473
|
+
SENSITIVE = []
|
3404
3474
|
include Aws::Structure
|
3405
3475
|
end
|
3406
3476
|
|
@@ -3441,6 +3511,7 @@ module Aws::SageMaker
|
|
3441
3511
|
# workteam_arn: "WorkteamArn", # required
|
3442
3512
|
# ui_config: { # required
|
3443
3513
|
# ui_template_s3_uri: "S3Uri",
|
3514
|
+
# human_task_ui_arn: "HumanTaskUiArn",
|
3444
3515
|
# },
|
3445
3516
|
# pre_human_task_lambda_arn: "LambdaFunctionArn", # required
|
3446
3517
|
# task_keywords: ["TaskKeyword"],
|
@@ -3579,6 +3650,7 @@ module Aws::SageMaker
|
|
3579
3650
|
:labeling_job_algorithms_config,
|
3580
3651
|
:human_task_config,
|
3581
3652
|
:tags)
|
3653
|
+
SENSITIVE = []
|
3582
3654
|
include Aws::Structure
|
3583
3655
|
end
|
3584
3656
|
|
@@ -3591,6 +3663,7 @@ module Aws::SageMaker
|
|
3591
3663
|
#
|
3592
3664
|
class CreateLabelingJobResponse < Struct.new(
|
3593
3665
|
:labeling_job_arn)
|
3666
|
+
SENSITIVE = []
|
3594
3667
|
include Aws::Structure
|
3595
3668
|
end
|
3596
3669
|
|
@@ -3705,6 +3778,7 @@ module Aws::SageMaker
|
|
3705
3778
|
:tags,
|
3706
3779
|
:vpc_config,
|
3707
3780
|
:enable_network_isolation)
|
3781
|
+
SENSITIVE = []
|
3708
3782
|
include Aws::Structure
|
3709
3783
|
end
|
3710
3784
|
|
@@ -3716,6 +3790,7 @@ module Aws::SageMaker
|
|
3716
3790
|
#
|
3717
3791
|
class CreateModelOutput < Struct.new(
|
3718
3792
|
:model_arn)
|
3793
|
+
SENSITIVE = []
|
3719
3794
|
include Aws::Structure
|
3720
3795
|
end
|
3721
3796
|
|
@@ -3835,6 +3910,7 @@ module Aws::SageMaker
|
|
3835
3910
|
:validation_specification,
|
3836
3911
|
:source_algorithm_specification,
|
3837
3912
|
:certify_for_marketplace)
|
3913
|
+
SENSITIVE = []
|
3838
3914
|
include Aws::Structure
|
3839
3915
|
end
|
3840
3916
|
|
@@ -3846,6 +3922,7 @@ module Aws::SageMaker
|
|
3846
3922
|
#
|
3847
3923
|
class CreateModelPackageOutput < Struct.new(
|
3848
3924
|
:model_package_arn)
|
3925
|
+
SENSITIVE = []
|
3849
3926
|
include Aws::Structure
|
3850
3927
|
end
|
3851
3928
|
|
@@ -3952,6 +4029,7 @@ module Aws::SageMaker
|
|
3952
4029
|
:monitoring_schedule_name,
|
3953
4030
|
:monitoring_schedule_config,
|
3954
4031
|
:tags)
|
4032
|
+
SENSITIVE = []
|
3955
4033
|
include Aws::Structure
|
3956
4034
|
end
|
3957
4035
|
|
@@ -3963,6 +4041,7 @@ module Aws::SageMaker
|
|
3963
4041
|
#
|
3964
4042
|
class CreateMonitoringScheduleResponse < Struct.new(
|
3965
4043
|
:monitoring_schedule_arn)
|
4044
|
+
SENSITIVE = []
|
3966
4045
|
include Aws::Structure
|
3967
4046
|
end
|
3968
4047
|
|
@@ -4146,6 +4225,7 @@ module Aws::SageMaker
|
|
4146
4225
|
:default_code_repository,
|
4147
4226
|
:additional_code_repositories,
|
4148
4227
|
:root_access)
|
4228
|
+
SENSITIVE = []
|
4149
4229
|
include Aws::Structure
|
4150
4230
|
end
|
4151
4231
|
|
@@ -4187,6 +4267,7 @@ module Aws::SageMaker
|
|
4187
4267
|
:notebook_instance_lifecycle_config_name,
|
4188
4268
|
:on_create,
|
4189
4269
|
:on_start)
|
4270
|
+
SENSITIVE = []
|
4190
4271
|
include Aws::Structure
|
4191
4272
|
end
|
4192
4273
|
|
@@ -4198,6 +4279,7 @@ module Aws::SageMaker
|
|
4198
4279
|
#
|
4199
4280
|
class CreateNotebookInstanceLifecycleConfigOutput < Struct.new(
|
4200
4281
|
:notebook_instance_lifecycle_config_arn)
|
4282
|
+
SENSITIVE = []
|
4201
4283
|
include Aws::Structure
|
4202
4284
|
end
|
4203
4285
|
|
@@ -4209,6 +4291,7 @@ module Aws::SageMaker
|
|
4209
4291
|
#
|
4210
4292
|
class CreateNotebookInstanceOutput < Struct.new(
|
4211
4293
|
:notebook_instance_arn)
|
4294
|
+
SENSITIVE = []
|
4212
4295
|
include Aws::Structure
|
4213
4296
|
end
|
4214
4297
|
|
@@ -4239,6 +4322,7 @@ module Aws::SageMaker
|
|
4239
4322
|
:domain_id,
|
4240
4323
|
:user_profile_name,
|
4241
4324
|
:session_expiration_duration_in_seconds)
|
4325
|
+
SENSITIVE = []
|
4242
4326
|
include Aws::Structure
|
4243
4327
|
end
|
4244
4328
|
|
@@ -4250,6 +4334,7 @@ module Aws::SageMaker
|
|
4250
4334
|
#
|
4251
4335
|
class CreatePresignedDomainUrlResponse < Struct.new(
|
4252
4336
|
:authorized_url)
|
4337
|
+
SENSITIVE = []
|
4253
4338
|
include Aws::Structure
|
4254
4339
|
end
|
4255
4340
|
|
@@ -4274,6 +4359,7 @@ module Aws::SageMaker
|
|
4274
4359
|
class CreatePresignedNotebookInstanceUrlInput < Struct.new(
|
4275
4360
|
:notebook_instance_name,
|
4276
4361
|
:session_expiration_duration_in_seconds)
|
4362
|
+
SENSITIVE = []
|
4277
4363
|
include Aws::Structure
|
4278
4364
|
end
|
4279
4365
|
|
@@ -4285,6 +4371,7 @@ module Aws::SageMaker
|
|
4285
4371
|
#
|
4286
4372
|
class CreatePresignedNotebookInstanceUrlOutput < Struct.new(
|
4287
4373
|
:authorized_url)
|
4374
|
+
SENSITIVE = []
|
4288
4375
|
include Aws::Structure
|
4289
4376
|
end
|
4290
4377
|
|
@@ -4431,6 +4518,7 @@ module Aws::SageMaker
|
|
4431
4518
|
:role_arn,
|
4432
4519
|
:tags,
|
4433
4520
|
:experiment_config)
|
4521
|
+
SENSITIVE = []
|
4434
4522
|
include Aws::Structure
|
4435
4523
|
end
|
4436
4524
|
|
@@ -4442,6 +4530,7 @@ module Aws::SageMaker
|
|
4442
4530
|
#
|
4443
4531
|
class CreateProcessingJobResponse < Struct.new(
|
4444
4532
|
:processing_job_arn)
|
4533
|
+
SENSITIVE = []
|
4445
4534
|
include Aws::Structure
|
4446
4535
|
end
|
4447
4536
|
|
@@ -4768,6 +4857,7 @@ module Aws::SageMaker
|
|
4768
4857
|
:debug_rule_configurations,
|
4769
4858
|
:tensor_board_output_config,
|
4770
4859
|
:experiment_config)
|
4860
|
+
SENSITIVE = []
|
4771
4861
|
include Aws::Structure
|
4772
4862
|
end
|
4773
4863
|
|
@@ -4779,6 +4869,7 @@ module Aws::SageMaker
|
|
4779
4869
|
#
|
4780
4870
|
class CreateTrainingJobResponse < Struct.new(
|
4781
4871
|
:training_job_arn)
|
4872
|
+
SENSITIVE = []
|
4782
4873
|
include Aws::Structure
|
4783
4874
|
end
|
4784
4875
|
|
@@ -4789,6 +4880,10 @@ module Aws::SageMaker
|
|
4789
4880
|
# transform_job_name: "TransformJobName", # required
|
4790
4881
|
# model_name: "ModelName", # required
|
4791
4882
|
# max_concurrent_transforms: 1,
|
4883
|
+
# model_client_config: {
|
4884
|
+
# invocations_timeout_in_seconds: 1,
|
4885
|
+
# invocations_max_retries: 1,
|
4886
|
+
# },
|
4792
4887
|
# max_payload_in_mb: 1,
|
4793
4888
|
# batch_strategy: "MultiRecord", # accepts MultiRecord, SingleRecord
|
4794
4889
|
# environment: {
|
@@ -4860,6 +4955,11 @@ module Aws::SageMaker
|
|
4860
4955
|
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/your-algorithms-batch-code.html#your-algorithms-batch-code-how-containe-serves-requests
|
4861
4956
|
# @return [Integer]
|
4862
4957
|
#
|
4958
|
+
# @!attribute [rw] model_client_config
|
4959
|
+
# Configures the timeout and maximum number of retries for processing
|
4960
|
+
# a transform job invocation.
|
4961
|
+
# @return [Types::ModelClientConfig]
|
4962
|
+
#
|
4863
4963
|
# @!attribute [rw] max_payload_in_mb
|
4864
4964
|
# The maximum allowed size of the payload, in MB. A *payload* is the
|
4865
4965
|
# data portion of a record (without metadata). The value in
|
@@ -4947,6 +5047,7 @@ module Aws::SageMaker
|
|
4947
5047
|
:transform_job_name,
|
4948
5048
|
:model_name,
|
4949
5049
|
:max_concurrent_transforms,
|
5050
|
+
:model_client_config,
|
4950
5051
|
:max_payload_in_mb,
|
4951
5052
|
:batch_strategy,
|
4952
5053
|
:environment,
|
@@ -4956,6 +5057,7 @@ module Aws::SageMaker
|
|
4956
5057
|
:data_processing,
|
4957
5058
|
:tags,
|
4958
5059
|
:experiment_config)
|
5060
|
+
SENSITIVE = []
|
4959
5061
|
include Aws::Structure
|
4960
5062
|
end
|
4961
5063
|
|
@@ -4967,6 +5069,7 @@ module Aws::SageMaker
|
|
4967
5069
|
#
|
4968
5070
|
class CreateTransformJobResponse < Struct.new(
|
4969
5071
|
:transform_job_arn)
|
5072
|
+
SENSITIVE = []
|
4970
5073
|
include Aws::Structure
|
4971
5074
|
end
|
4972
5075
|
|
@@ -5069,6 +5172,7 @@ module Aws::SageMaker
|
|
5069
5172
|
:input_artifacts,
|
5070
5173
|
:output_artifacts,
|
5071
5174
|
:tags)
|
5175
|
+
SENSITIVE = []
|
5072
5176
|
include Aws::Structure
|
5073
5177
|
end
|
5074
5178
|
|
@@ -5080,6 +5184,7 @@ module Aws::SageMaker
|
|
5080
5184
|
#
|
5081
5185
|
class CreateTrialComponentResponse < Struct.new(
|
5082
5186
|
:trial_component_arn)
|
5187
|
+
SENSITIVE = []
|
5083
5188
|
include Aws::Structure
|
5084
5189
|
end
|
5085
5190
|
|
@@ -5124,6 +5229,7 @@ module Aws::SageMaker
|
|
5124
5229
|
:display_name,
|
5125
5230
|
:experiment_name,
|
5126
5231
|
:tags)
|
5232
|
+
SENSITIVE = []
|
5127
5233
|
include Aws::Structure
|
5128
5234
|
end
|
5129
5235
|
|
@@ -5135,6 +5241,7 @@ module Aws::SageMaker
|
|
5135
5241
|
#
|
5136
5242
|
class CreateTrialResponse < Struct.new(
|
5137
5243
|
:trial_arn)
|
5244
|
+
SENSITIVE = []
|
5138
5245
|
include Aws::Structure
|
5139
5246
|
end
|
5140
5247
|
|
@@ -5223,6 +5330,7 @@ module Aws::SageMaker
|
|
5223
5330
|
:single_sign_on_user_value,
|
5224
5331
|
:tags,
|
5225
5332
|
:user_settings)
|
5333
|
+
SENSITIVE = []
|
5226
5334
|
include Aws::Structure
|
5227
5335
|
end
|
5228
5336
|
|
@@ -5234,6 +5342,7 @@ module Aws::SageMaker
|
|
5234
5342
|
#
|
5235
5343
|
class CreateUserProfileResponse < Struct.new(
|
5236
5344
|
:user_profile_arn)
|
5345
|
+
SENSITIVE = []
|
5237
5346
|
include Aws::Structure
|
5238
5347
|
end
|
5239
5348
|
|
@@ -5310,6 +5419,7 @@ module Aws::SageMaker
|
|
5310
5419
|
:description,
|
5311
5420
|
:notification_configuration,
|
5312
5421
|
:tags)
|
5422
|
+
SENSITIVE = []
|
5313
5423
|
include Aws::Structure
|
5314
5424
|
end
|
5315
5425
|
|
@@ -5322,6 +5432,7 @@ module Aws::SageMaker
|
|
5322
5432
|
#
|
5323
5433
|
class CreateWorkteamResponse < Struct.new(
|
5324
5434
|
:workteam_arn)
|
5435
|
+
SENSITIVE = []
|
5325
5436
|
include Aws::Structure
|
5326
5437
|
end
|
5327
5438
|
|
@@ -5371,6 +5482,7 @@ module Aws::SageMaker
|
|
5371
5482
|
:kms_key_id,
|
5372
5483
|
:capture_options,
|
5373
5484
|
:capture_content_type_header)
|
5485
|
+
SENSITIVE = []
|
5374
5486
|
include Aws::Structure
|
5375
5487
|
end
|
5376
5488
|
|
@@ -5397,6 +5509,7 @@ module Aws::SageMaker
|
|
5397
5509
|
:current_sampling_percentage,
|
5398
5510
|
:destination_s3_uri,
|
5399
5511
|
:kms_key_id)
|
5512
|
+
SENSITIVE = []
|
5400
5513
|
include Aws::Structure
|
5401
5514
|
end
|
5402
5515
|
|
@@ -5478,6 +5591,7 @@ module Aws::SageMaker
|
|
5478
5591
|
:input_filter,
|
5479
5592
|
:output_filter,
|
5480
5593
|
:join_source)
|
5594
|
+
SENSITIVE = []
|
5481
5595
|
include Aws::Structure
|
5482
5596
|
end
|
5483
5597
|
|
@@ -5515,6 +5629,7 @@ module Aws::SageMaker
|
|
5515
5629
|
class DataSource < Struct.new(
|
5516
5630
|
:s3_data_source,
|
5517
5631
|
:file_system_data_source)
|
5632
|
+
SENSITIVE = []
|
5518
5633
|
include Aws::Structure
|
5519
5634
|
end
|
5520
5635
|
|
@@ -5564,6 +5679,7 @@ module Aws::SageMaker
|
|
5564
5679
|
:s3_output_path,
|
5565
5680
|
:hook_parameters,
|
5566
5681
|
:collection_configurations)
|
5682
|
+
SENSITIVE = []
|
5567
5683
|
include Aws::Structure
|
5568
5684
|
end
|
5569
5685
|
|
@@ -5626,6 +5742,7 @@ module Aws::SageMaker
|
|
5626
5742
|
:instance_type,
|
5627
5743
|
:volume_size_in_gb,
|
5628
5744
|
:rule_parameters)
|
5745
|
+
SENSITIVE = []
|
5629
5746
|
include Aws::Structure
|
5630
5747
|
end
|
5631
5748
|
|
@@ -5659,6 +5776,7 @@ module Aws::SageMaker
|
|
5659
5776
|
:rule_evaluation_status,
|
5660
5777
|
:status_details,
|
5661
5778
|
:last_modified_time)
|
5779
|
+
SENSITIVE = []
|
5662
5780
|
include Aws::Structure
|
5663
5781
|
end
|
5664
5782
|
|
@@ -5677,6 +5795,7 @@ module Aws::SageMaker
|
|
5677
5795
|
#
|
5678
5796
|
class DeleteAlgorithmInput < Struct.new(
|
5679
5797
|
:algorithm_name)
|
5798
|
+
SENSITIVE = []
|
5680
5799
|
include Aws::Structure
|
5681
5800
|
end
|
5682
5801
|
|
@@ -5713,6 +5832,7 @@ module Aws::SageMaker
|
|
5713
5832
|
:user_profile_name,
|
5714
5833
|
:app_type,
|
5715
5834
|
:app_name)
|
5835
|
+
SENSITIVE = []
|
5716
5836
|
include Aws::Structure
|
5717
5837
|
end
|
5718
5838
|
|
@@ -5731,6 +5851,7 @@ module Aws::SageMaker
|
|
5731
5851
|
#
|
5732
5852
|
class DeleteCodeRepositoryInput < Struct.new(
|
5733
5853
|
:code_repository_name)
|
5854
|
+
SENSITIVE = []
|
5734
5855
|
include Aws::Structure
|
5735
5856
|
end
|
5736
5857
|
|
@@ -5759,6 +5880,7 @@ module Aws::SageMaker
|
|
5759
5880
|
class DeleteDomainRequest < Struct.new(
|
5760
5881
|
:domain_id,
|
5761
5882
|
:retention_policy)
|
5883
|
+
SENSITIVE = []
|
5762
5884
|
include Aws::Structure
|
5763
5885
|
end
|
5764
5886
|
|
@@ -5777,6 +5899,7 @@ module Aws::SageMaker
|
|
5777
5899
|
#
|
5778
5900
|
class DeleteEndpointConfigInput < Struct.new(
|
5779
5901
|
:endpoint_config_name)
|
5902
|
+
SENSITIVE = []
|
5780
5903
|
include Aws::Structure
|
5781
5904
|
end
|
5782
5905
|
|
@@ -5795,6 +5918,7 @@ module Aws::SageMaker
|
|
5795
5918
|
#
|
5796
5919
|
class DeleteEndpointInput < Struct.new(
|
5797
5920
|
:endpoint_name)
|
5921
|
+
SENSITIVE = []
|
5798
5922
|
include Aws::Structure
|
5799
5923
|
end
|
5800
5924
|
|
@@ -5813,6 +5937,7 @@ module Aws::SageMaker
|
|
5813
5937
|
#
|
5814
5938
|
class DeleteExperimentRequest < Struct.new(
|
5815
5939
|
:experiment_name)
|
5940
|
+
SENSITIVE = []
|
5816
5941
|
include Aws::Structure
|
5817
5942
|
end
|
5818
5943
|
|
@@ -5825,6 +5950,7 @@ module Aws::SageMaker
|
|
5825
5950
|
#
|
5826
5951
|
class DeleteExperimentResponse < Struct.new(
|
5827
5952
|
:experiment_arn)
|
5953
|
+
SENSITIVE = []
|
5828
5954
|
include Aws::Structure
|
5829
5955
|
end
|
5830
5956
|
|
@@ -5843,6 +5969,7 @@ module Aws::SageMaker
|
|
5843
5969
|
#
|
5844
5970
|
class DeleteFlowDefinitionRequest < Struct.new(
|
5845
5971
|
:flow_definition_name)
|
5972
|
+
SENSITIVE = []
|
5846
5973
|
include Aws::Structure
|
5847
5974
|
end
|
5848
5975
|
|
@@ -5865,6 +5992,7 @@ module Aws::SageMaker
|
|
5865
5992
|
#
|
5866
5993
|
class DeleteModelInput < Struct.new(
|
5867
5994
|
:model_name)
|
5995
|
+
SENSITIVE = []
|
5868
5996
|
include Aws::Structure
|
5869
5997
|
end
|
5870
5998
|
|
@@ -5884,6 +6012,7 @@ module Aws::SageMaker
|
|
5884
6012
|
#
|
5885
6013
|
class DeleteModelPackageInput < Struct.new(
|
5886
6014
|
:model_package_name)
|
6015
|
+
SENSITIVE = []
|
5887
6016
|
include Aws::Structure
|
5888
6017
|
end
|
5889
6018
|
|
@@ -5902,6 +6031,7 @@ module Aws::SageMaker
|
|
5902
6031
|
#
|
5903
6032
|
class DeleteMonitoringScheduleRequest < Struct.new(
|
5904
6033
|
:monitoring_schedule_name)
|
6034
|
+
SENSITIVE = []
|
5905
6035
|
include Aws::Structure
|
5906
6036
|
end
|
5907
6037
|
|
@@ -5920,6 +6050,7 @@ module Aws::SageMaker
|
|
5920
6050
|
#
|
5921
6051
|
class DeleteNotebookInstanceInput < Struct.new(
|
5922
6052
|
:notebook_instance_name)
|
6053
|
+
SENSITIVE = []
|
5923
6054
|
include Aws::Structure
|
5924
6055
|
end
|
5925
6056
|
|
@@ -5938,6 +6069,7 @@ module Aws::SageMaker
|
|
5938
6069
|
#
|
5939
6070
|
class DeleteNotebookInstanceLifecycleConfigInput < Struct.new(
|
5940
6071
|
:notebook_instance_lifecycle_config_name)
|
6072
|
+
SENSITIVE = []
|
5941
6073
|
include Aws::Structure
|
5942
6074
|
end
|
5943
6075
|
|
@@ -5963,6 +6095,7 @@ module Aws::SageMaker
|
|
5963
6095
|
class DeleteTagsInput < Struct.new(
|
5964
6096
|
:resource_arn,
|
5965
6097
|
:tag_keys)
|
6098
|
+
SENSITIVE = []
|
5966
6099
|
include Aws::Structure
|
5967
6100
|
end
|
5968
6101
|
|
@@ -5985,6 +6118,7 @@ module Aws::SageMaker
|
|
5985
6118
|
#
|
5986
6119
|
class DeleteTrialComponentRequest < Struct.new(
|
5987
6120
|
:trial_component_name)
|
6121
|
+
SENSITIVE = []
|
5988
6122
|
include Aws::Structure
|
5989
6123
|
end
|
5990
6124
|
|
@@ -5996,6 +6130,7 @@ module Aws::SageMaker
|
|
5996
6130
|
#
|
5997
6131
|
class DeleteTrialComponentResponse < Struct.new(
|
5998
6132
|
:trial_component_arn)
|
6133
|
+
SENSITIVE = []
|
5999
6134
|
include Aws::Structure
|
6000
6135
|
end
|
6001
6136
|
|
@@ -6014,6 +6149,7 @@ module Aws::SageMaker
|
|
6014
6149
|
#
|
6015
6150
|
class DeleteTrialRequest < Struct.new(
|
6016
6151
|
:trial_name)
|
6152
|
+
SENSITIVE = []
|
6017
6153
|
include Aws::Structure
|
6018
6154
|
end
|
6019
6155
|
|
@@ -6025,6 +6161,7 @@ module Aws::SageMaker
|
|
6025
6161
|
#
|
6026
6162
|
class DeleteTrialResponse < Struct.new(
|
6027
6163
|
:trial_arn)
|
6164
|
+
SENSITIVE = []
|
6028
6165
|
include Aws::Structure
|
6029
6166
|
end
|
6030
6167
|
|
@@ -6049,6 +6186,7 @@ module Aws::SageMaker
|
|
6049
6186
|
class DeleteUserProfileRequest < Struct.new(
|
6050
6187
|
:domain_id,
|
6051
6188
|
:user_profile_name)
|
6189
|
+
SENSITIVE = []
|
6052
6190
|
include Aws::Structure
|
6053
6191
|
end
|
6054
6192
|
|
@@ -6067,6 +6205,7 @@ module Aws::SageMaker
|
|
6067
6205
|
#
|
6068
6206
|
class DeleteWorkteamRequest < Struct.new(
|
6069
6207
|
:workteam_name)
|
6208
|
+
SENSITIVE = []
|
6070
6209
|
include Aws::Structure
|
6071
6210
|
end
|
6072
6211
|
|
@@ -6079,6 +6218,7 @@ module Aws::SageMaker
|
|
6079
6218
|
#
|
6080
6219
|
class DeleteWorkteamResponse < Struct.new(
|
6081
6220
|
:success)
|
6221
|
+
SENSITIVE = []
|
6082
6222
|
include Aws::Structure
|
6083
6223
|
end
|
6084
6224
|
|
@@ -6117,6 +6257,7 @@ module Aws::SageMaker
|
|
6117
6257
|
:specified_image,
|
6118
6258
|
:resolved_image,
|
6119
6259
|
:resolution_time)
|
6260
|
+
SENSITIVE = []
|
6120
6261
|
include Aws::Structure
|
6121
6262
|
end
|
6122
6263
|
|
@@ -6135,6 +6276,7 @@ module Aws::SageMaker
|
|
6135
6276
|
#
|
6136
6277
|
class DescribeAlgorithmInput < Struct.new(
|
6137
6278
|
:algorithm_name)
|
6279
|
+
SENSITIVE = []
|
6138
6280
|
include Aws::Structure
|
6139
6281
|
end
|
6140
6282
|
|
@@ -6197,6 +6339,7 @@ module Aws::SageMaker
|
|
6197
6339
|
:algorithm_status_details,
|
6198
6340
|
:product_id,
|
6199
6341
|
:certify_for_marketplace)
|
6342
|
+
SENSITIVE = []
|
6200
6343
|
include Aws::Structure
|
6201
6344
|
end
|
6202
6345
|
|
@@ -6233,6 +6376,7 @@ module Aws::SageMaker
|
|
6233
6376
|
:user_profile_name,
|
6234
6377
|
:app_type,
|
6235
6378
|
:app_name)
|
6379
|
+
SENSITIVE = []
|
6236
6380
|
include Aws::Structure
|
6237
6381
|
end
|
6238
6382
|
|
@@ -6295,6 +6439,7 @@ module Aws::SageMaker
|
|
6295
6439
|
:creation_time,
|
6296
6440
|
:failure_reason,
|
6297
6441
|
:resource_spec)
|
6442
|
+
SENSITIVE = []
|
6298
6443
|
include Aws::Structure
|
6299
6444
|
end
|
6300
6445
|
|
@@ -6313,6 +6458,7 @@ module Aws::SageMaker
|
|
6313
6458
|
#
|
6314
6459
|
class DescribeAutoMLJobRequest < Struct.new(
|
6315
6460
|
:auto_ml_job_name)
|
6461
|
+
SENSITIVE = []
|
6316
6462
|
include Aws::Structure
|
6317
6463
|
end
|
6318
6464
|
|
@@ -6416,6 +6562,7 @@ module Aws::SageMaker
|
|
6416
6562
|
:generate_candidate_definitions_only,
|
6417
6563
|
:auto_ml_job_artifacts,
|
6418
6564
|
:resolved_attributes)
|
6565
|
+
SENSITIVE = []
|
6419
6566
|
include Aws::Structure
|
6420
6567
|
end
|
6421
6568
|
|
@@ -6434,6 +6581,7 @@ module Aws::SageMaker
|
|
6434
6581
|
#
|
6435
6582
|
class DescribeCodeRepositoryInput < Struct.new(
|
6436
6583
|
:code_repository_name)
|
6584
|
+
SENSITIVE = []
|
6437
6585
|
include Aws::Structure
|
6438
6586
|
end
|
6439
6587
|
|
@@ -6468,6 +6616,7 @@ module Aws::SageMaker
|
|
6468
6616
|
:creation_time,
|
6469
6617
|
:last_modified_time,
|
6470
6618
|
:git_config)
|
6619
|
+
SENSITIVE = []
|
6471
6620
|
include Aws::Structure
|
6472
6621
|
end
|
6473
6622
|
|
@@ -6487,6 +6636,7 @@ module Aws::SageMaker
|
|
6487
6636
|
#
|
6488
6637
|
class DescribeCompilationJobRequest < Struct.new(
|
6489
6638
|
:compilation_job_name)
|
6639
|
+
SENSITIVE = []
|
6490
6640
|
include Aws::Structure
|
6491
6641
|
end
|
6492
6642
|
|
@@ -6576,6 +6726,7 @@ module Aws::SageMaker
|
|
6576
6726
|
:role_arn,
|
6577
6727
|
:input_config,
|
6578
6728
|
:output_config)
|
6729
|
+
SENSITIVE = []
|
6579
6730
|
include Aws::Structure
|
6580
6731
|
end
|
6581
6732
|
|
@@ -6594,6 +6745,7 @@ module Aws::SageMaker
|
|
6594
6745
|
#
|
6595
6746
|
class DescribeDomainRequest < Struct.new(
|
6596
6747
|
:domain_id)
|
6748
|
+
SENSITIVE = []
|
6597
6749
|
include Aws::Structure
|
6598
6750
|
end
|
6599
6751
|
|
@@ -6677,6 +6829,7 @@ module Aws::SageMaker
|
|
6677
6829
|
:subnet_ids,
|
6678
6830
|
:url,
|
6679
6831
|
:vpc_id)
|
6832
|
+
SENSITIVE = []
|
6680
6833
|
include Aws::Structure
|
6681
6834
|
end
|
6682
6835
|
|
@@ -6695,6 +6848,7 @@ module Aws::SageMaker
|
|
6695
6848
|
#
|
6696
6849
|
class DescribeEndpointConfigInput < Struct.new(
|
6697
6850
|
:endpoint_config_name)
|
6851
|
+
SENSITIVE = []
|
6698
6852
|
include Aws::Structure
|
6699
6853
|
end
|
6700
6854
|
|
@@ -6732,6 +6886,7 @@ module Aws::SageMaker
|
|
6732
6886
|
:data_capture_config,
|
6733
6887
|
:kms_key_id,
|
6734
6888
|
:creation_time)
|
6889
|
+
SENSITIVE = []
|
6735
6890
|
include Aws::Structure
|
6736
6891
|
end
|
6737
6892
|
|
@@ -6750,6 +6905,7 @@ module Aws::SageMaker
|
|
6750
6905
|
#
|
6751
6906
|
class DescribeEndpointInput < Struct.new(
|
6752
6907
|
:endpoint_name)
|
6908
|
+
SENSITIVE = []
|
6753
6909
|
include Aws::Structure
|
6754
6910
|
end
|
6755
6911
|
|
@@ -6834,6 +6990,7 @@ module Aws::SageMaker
|
|
6834
6990
|
:failure_reason,
|
6835
6991
|
:creation_time,
|
6836
6992
|
:last_modified_time)
|
6993
|
+
SENSITIVE = []
|
6837
6994
|
include Aws::Structure
|
6838
6995
|
end
|
6839
6996
|
|
@@ -6852,6 +7009,7 @@ module Aws::SageMaker
|
|
6852
7009
|
#
|
6853
7010
|
class DescribeExperimentRequest < Struct.new(
|
6854
7011
|
:experiment_name)
|
7012
|
+
SENSITIVE = []
|
6855
7013
|
include Aws::Structure
|
6856
7014
|
end
|
6857
7015
|
|
@@ -6904,6 +7062,7 @@ module Aws::SageMaker
|
|
6904
7062
|
:created_by,
|
6905
7063
|
:last_modified_time,
|
6906
7064
|
:last_modified_by)
|
7065
|
+
SENSITIVE = []
|
6907
7066
|
include Aws::Structure
|
6908
7067
|
end
|
6909
7068
|
|
@@ -6922,6 +7081,7 @@ module Aws::SageMaker
|
|
6922
7081
|
#
|
6923
7082
|
class DescribeFlowDefinitionRequest < Struct.new(
|
6924
7083
|
:flow_definition_name)
|
7084
|
+
SENSITIVE = []
|
6925
7085
|
include Aws::Structure
|
6926
7086
|
end
|
6927
7087
|
|
@@ -6982,6 +7142,7 @@ module Aws::SageMaker
|
|
6982
7142
|
:output_config,
|
6983
7143
|
:role_arn,
|
6984
7144
|
:failure_reason)
|
7145
|
+
SENSITIVE = []
|
6985
7146
|
include Aws::Structure
|
6986
7147
|
end
|
6987
7148
|
|
@@ -7001,6 +7162,7 @@ module Aws::SageMaker
|
|
7001
7162
|
#
|
7002
7163
|
class DescribeHumanTaskUiRequest < Struct.new(
|
7003
7164
|
:human_task_ui_name)
|
7165
|
+
SENSITIVE = []
|
7004
7166
|
include Aws::Structure
|
7005
7167
|
end
|
7006
7168
|
|
@@ -7027,6 +7189,7 @@ module Aws::SageMaker
|
|
7027
7189
|
:human_task_ui_name,
|
7028
7190
|
:creation_time,
|
7029
7191
|
:ui_template)
|
7192
|
+
SENSITIVE = []
|
7030
7193
|
include Aws::Structure
|
7031
7194
|
end
|
7032
7195
|
|
@@ -7045,6 +7208,7 @@ module Aws::SageMaker
|
|
7045
7208
|
#
|
7046
7209
|
class DescribeHyperParameterTuningJobRequest < Struct.new(
|
7047
7210
|
:hyper_parameter_tuning_job_name)
|
7211
|
+
SENSITIVE = []
|
7048
7212
|
include Aws::Structure
|
7049
7213
|
end
|
7050
7214
|
|
@@ -7067,6 +7231,8 @@ module Aws::SageMaker
|
|
7067
7231
|
# @return [Types::HyperParameterTrainingJobDefinition]
|
7068
7232
|
#
|
7069
7233
|
# @!attribute [rw] training_job_definitions
|
7234
|
+
# A list of the HyperParameterTrainingJobDefinition objects launched
|
7235
|
+
# for this tuning job.
|
7070
7236
|
# @return [Array<Types::HyperParameterTrainingJobDefinition>]
|
7071
7237
|
#
|
7072
7238
|
# @!attribute [rw] hyper_parameter_tuning_job_status
|
@@ -7140,6 +7306,7 @@ module Aws::SageMaker
|
|
7140
7306
|
:overall_best_training_job,
|
7141
7307
|
:warm_start_config,
|
7142
7308
|
:failure_reason)
|
7309
|
+
SENSITIVE = []
|
7143
7310
|
include Aws::Structure
|
7144
7311
|
end
|
7145
7312
|
|
@@ -7158,6 +7325,7 @@ module Aws::SageMaker
|
|
7158
7325
|
#
|
7159
7326
|
class DescribeLabelingJobRequest < Struct.new(
|
7160
7327
|
:labeling_job_name)
|
7328
|
+
SENSITIVE = []
|
7161
7329
|
include Aws::Structure
|
7162
7330
|
end
|
7163
7331
|
|
@@ -7307,6 +7475,7 @@ module Aws::SageMaker
|
|
7307
7475
|
:human_task_config,
|
7308
7476
|
:tags,
|
7309
7477
|
:labeling_job_output)
|
7478
|
+
SENSITIVE = []
|
7310
7479
|
include Aws::Structure
|
7311
7480
|
end
|
7312
7481
|
|
@@ -7325,6 +7494,7 @@ module Aws::SageMaker
|
|
7325
7494
|
#
|
7326
7495
|
class DescribeModelInput < Struct.new(
|
7327
7496
|
:model_name)
|
7497
|
+
SENSITIVE = []
|
7328
7498
|
include Aws::Structure
|
7329
7499
|
end
|
7330
7500
|
|
@@ -7381,6 +7551,7 @@ module Aws::SageMaker
|
|
7381
7551
|
:creation_time,
|
7382
7552
|
:model_arn,
|
7383
7553
|
:enable_network_isolation)
|
7554
|
+
SENSITIVE = []
|
7384
7555
|
include Aws::Structure
|
7385
7556
|
end
|
7386
7557
|
|
@@ -7399,6 +7570,7 @@ module Aws::SageMaker
|
|
7399
7570
|
#
|
7400
7571
|
class DescribeModelPackageInput < Struct.new(
|
7401
7572
|
:model_package_name)
|
7573
|
+
SENSITIVE = []
|
7402
7574
|
include Aws::Structure
|
7403
7575
|
end
|
7404
7576
|
|
@@ -7459,6 +7631,7 @@ module Aws::SageMaker
|
|
7459
7631
|
:model_package_status,
|
7460
7632
|
:model_package_status_details,
|
7461
7633
|
:certify_for_marketplace)
|
7634
|
+
SENSITIVE = []
|
7462
7635
|
include Aws::Structure
|
7463
7636
|
end
|
7464
7637
|
|
@@ -7477,6 +7650,7 @@ module Aws::SageMaker
|
|
7477
7650
|
#
|
7478
7651
|
class DescribeMonitoringScheduleRequest < Struct.new(
|
7479
7652
|
:monitoring_schedule_name)
|
7653
|
+
SENSITIVE = []
|
7480
7654
|
include Aws::Structure
|
7481
7655
|
end
|
7482
7656
|
|
@@ -7530,6 +7704,7 @@ module Aws::SageMaker
|
|
7530
7704
|
:monitoring_schedule_config,
|
7531
7705
|
:endpoint_name,
|
7532
7706
|
:last_monitoring_execution_summary)
|
7707
|
+
SENSITIVE = []
|
7533
7708
|
include Aws::Structure
|
7534
7709
|
end
|
7535
7710
|
|
@@ -7548,6 +7723,7 @@ module Aws::SageMaker
|
|
7548
7723
|
#
|
7549
7724
|
class DescribeNotebookInstanceInput < Struct.new(
|
7550
7725
|
:notebook_instance_name)
|
7726
|
+
SENSITIVE = []
|
7551
7727
|
include Aws::Structure
|
7552
7728
|
end
|
7553
7729
|
|
@@ -7566,6 +7742,7 @@ module Aws::SageMaker
|
|
7566
7742
|
#
|
7567
7743
|
class DescribeNotebookInstanceLifecycleConfigInput < Struct.new(
|
7568
7744
|
:notebook_instance_lifecycle_config_name)
|
7745
|
+
SENSITIVE = []
|
7569
7746
|
include Aws::Structure
|
7570
7747
|
end
|
7571
7748
|
|
@@ -7605,6 +7782,7 @@ module Aws::SageMaker
|
|
7605
7782
|
:on_start,
|
7606
7783
|
:last_modified_time,
|
7607
7784
|
:creation_time)
|
7785
|
+
SENSITIVE = []
|
7608
7786
|
include Aws::Structure
|
7609
7787
|
end
|
7610
7788
|
|
@@ -7772,6 +7950,7 @@ module Aws::SageMaker
|
|
7772
7950
|
:default_code_repository,
|
7773
7951
|
:additional_code_repositories,
|
7774
7952
|
:root_access)
|
7953
|
+
SENSITIVE = []
|
7775
7954
|
include Aws::Structure
|
7776
7955
|
end
|
7777
7956
|
|
@@ -7791,6 +7970,7 @@ module Aws::SageMaker
|
|
7791
7970
|
#
|
7792
7971
|
class DescribeProcessingJobRequest < Struct.new(
|
7793
7972
|
:processing_job_name)
|
7973
|
+
SENSITIVE = []
|
7794
7974
|
include Aws::Structure
|
7795
7975
|
end
|
7796
7976
|
|
@@ -7909,6 +8089,7 @@ module Aws::SageMaker
|
|
7909
8089
|
:monitoring_schedule_arn,
|
7910
8090
|
:auto_ml_job_arn,
|
7911
8091
|
:training_job_arn)
|
8092
|
+
SENSITIVE = []
|
7912
8093
|
include Aws::Structure
|
7913
8094
|
end
|
7914
8095
|
|
@@ -7928,6 +8109,7 @@ module Aws::SageMaker
|
|
7928
8109
|
#
|
7929
8110
|
class DescribeSubscribedWorkteamRequest < Struct.new(
|
7930
8111
|
:workteam_arn)
|
8112
|
+
SENSITIVE = []
|
7931
8113
|
include Aws::Structure
|
7932
8114
|
end
|
7933
8115
|
|
@@ -7939,6 +8121,7 @@ module Aws::SageMaker
|
|
7939
8121
|
#
|
7940
8122
|
class DescribeSubscribedWorkteamResponse < Struct.new(
|
7941
8123
|
:subscribed_workteam)
|
8124
|
+
SENSITIVE = []
|
7942
8125
|
include Aws::Structure
|
7943
8126
|
end
|
7944
8127
|
|
@@ -7957,6 +8140,7 @@ module Aws::SageMaker
|
|
7957
8140
|
#
|
7958
8141
|
class DescribeTrainingJobRequest < Struct.new(
|
7959
8142
|
:training_job_name)
|
8143
|
+
SENSITIVE = []
|
7960
8144
|
include Aws::Structure
|
7961
8145
|
end
|
7962
8146
|
|
@@ -7980,6 +8164,7 @@ module Aws::SageMaker
|
|
7980
8164
|
# @return [String]
|
7981
8165
|
#
|
7982
8166
|
# @!attribute [rw] auto_ml_job_arn
|
8167
|
+
# The Amazon Resource Name (ARN) of an AutoML job.
|
7983
8168
|
# @return [String]
|
7984
8169
|
#
|
7985
8170
|
# @!attribute [rw] model_artifacts
|
@@ -8261,6 +8446,7 @@ module Aws::SageMaker
|
|
8261
8446
|
:debug_rule_configurations,
|
8262
8447
|
:tensor_board_output_config,
|
8263
8448
|
:debug_rule_evaluation_statuses)
|
8449
|
+
SENSITIVE = []
|
8264
8450
|
include Aws::Structure
|
8265
8451
|
end
|
8266
8452
|
|
@@ -8279,6 +8465,7 @@ module Aws::SageMaker
|
|
8279
8465
|
#
|
8280
8466
|
class DescribeTransformJobRequest < Struct.new(
|
8281
8467
|
:transform_job_name)
|
8468
|
+
SENSITIVE = []
|
8282
8469
|
include Aws::Structure
|
8283
8470
|
end
|
8284
8471
|
|
@@ -8316,6 +8503,11 @@ module Aws::SageMaker
|
|
8316
8503
|
# can be launched in a transform job. The default value is 1.
|
8317
8504
|
# @return [Integer]
|
8318
8505
|
#
|
8506
|
+
# @!attribute [rw] model_client_config
|
8507
|
+
# The timeout and maximum number of retries for processing a transform
|
8508
|
+
# job invocation.
|
8509
|
+
# @return [Types::ModelClientConfig]
|
8510
|
+
#
|
8319
8511
|
# @!attribute [rw] max_payload_in_mb
|
8320
8512
|
# The maximum payload size, in MB, used in the transform job.
|
8321
8513
|
# @return [Integer]
|
@@ -8372,6 +8564,7 @@ module Aws::SageMaker
|
|
8372
8564
|
# @return [String]
|
8373
8565
|
#
|
8374
8566
|
# @!attribute [rw] auto_ml_job_arn
|
8567
|
+
# The Amazon Resource Name (ARN) of the AutoML transform job.
|
8375
8568
|
# @return [String]
|
8376
8569
|
#
|
8377
8570
|
# @!attribute [rw] data_processing
|
@@ -8402,6 +8595,7 @@ module Aws::SageMaker
|
|
8402
8595
|
:failure_reason,
|
8403
8596
|
:model_name,
|
8404
8597
|
:max_concurrent_transforms,
|
8598
|
+
:model_client_config,
|
8405
8599
|
:max_payload_in_mb,
|
8406
8600
|
:batch_strategy,
|
8407
8601
|
:environment,
|
@@ -8415,6 +8609,7 @@ module Aws::SageMaker
|
|
8415
8609
|
:auto_ml_job_arn,
|
8416
8610
|
:data_processing,
|
8417
8611
|
:experiment_config)
|
8612
|
+
SENSITIVE = []
|
8418
8613
|
include Aws::Structure
|
8419
8614
|
end
|
8420
8615
|
|
@@ -8433,6 +8628,7 @@ module Aws::SageMaker
|
|
8433
8628
|
#
|
8434
8629
|
class DescribeTrialComponentRequest < Struct.new(
|
8435
8630
|
:trial_component_name)
|
8631
|
+
SENSITIVE = []
|
8436
8632
|
include Aws::Structure
|
8437
8633
|
end
|
8438
8634
|
|
@@ -8522,6 +8718,7 @@ module Aws::SageMaker
|
|
8522
8718
|
:input_artifacts,
|
8523
8719
|
:output_artifacts,
|
8524
8720
|
:metrics)
|
8721
|
+
SENSITIVE = []
|
8525
8722
|
include Aws::Structure
|
8526
8723
|
end
|
8527
8724
|
|
@@ -8540,6 +8737,7 @@ module Aws::SageMaker
|
|
8540
8737
|
#
|
8541
8738
|
class DescribeTrialRequest < Struct.new(
|
8542
8739
|
:trial_name)
|
8740
|
+
SENSITIVE = []
|
8543
8741
|
include Aws::Structure
|
8544
8742
|
end
|
8545
8743
|
|
@@ -8593,6 +8791,7 @@ module Aws::SageMaker
|
|
8593
8791
|
:created_by,
|
8594
8792
|
:last_modified_time,
|
8595
8793
|
:last_modified_by)
|
8794
|
+
SENSITIVE = []
|
8596
8795
|
include Aws::Structure
|
8597
8796
|
end
|
8598
8797
|
|
@@ -8617,11 +8816,12 @@ module Aws::SageMaker
|
|
8617
8816
|
class DescribeUserProfileRequest < Struct.new(
|
8618
8817
|
:domain_id,
|
8619
8818
|
:user_profile_name)
|
8819
|
+
SENSITIVE = []
|
8620
8820
|
include Aws::Structure
|
8621
8821
|
end
|
8622
8822
|
|
8623
8823
|
# @!attribute [rw] domain_id
|
8624
|
-
# The domain
|
8824
|
+
# The ID of the domain that contains the profile.
|
8625
8825
|
# @return [String]
|
8626
8826
|
#
|
8627
8827
|
# @!attribute [rw] user_profile_arn
|
@@ -8633,7 +8833,8 @@ module Aws::SageMaker
|
|
8633
8833
|
# @return [String]
|
8634
8834
|
#
|
8635
8835
|
# @!attribute [rw] home_efs_file_system_uid
|
8636
|
-
# The
|
8836
|
+
# The ID of the user's profile in the Amazon Elastic File System
|
8837
|
+
# (EFS) volume.
|
8637
8838
|
# @return [String]
|
8638
8839
|
#
|
8639
8840
|
# @!attribute [rw] status
|
@@ -8678,6 +8879,7 @@ module Aws::SageMaker
|
|
8678
8879
|
:single_sign_on_user_identifier,
|
8679
8880
|
:single_sign_on_user_value,
|
8680
8881
|
:user_settings)
|
8882
|
+
SENSITIVE = []
|
8681
8883
|
include Aws::Structure
|
8682
8884
|
end
|
8683
8885
|
|
@@ -8698,6 +8900,7 @@ module Aws::SageMaker
|
|
8698
8900
|
#
|
8699
8901
|
class DescribeWorkforceRequest < Struct.new(
|
8700
8902
|
:workforce_name)
|
8903
|
+
SENSITIVE = []
|
8701
8904
|
include Aws::Structure
|
8702
8905
|
end
|
8703
8906
|
|
@@ -8718,6 +8921,7 @@ module Aws::SageMaker
|
|
8718
8921
|
#
|
8719
8922
|
class DescribeWorkforceResponse < Struct.new(
|
8720
8923
|
:workforce)
|
8924
|
+
SENSITIVE = []
|
8721
8925
|
include Aws::Structure
|
8722
8926
|
end
|
8723
8927
|
|
@@ -8736,6 +8940,7 @@ module Aws::SageMaker
|
|
8736
8940
|
#
|
8737
8941
|
class DescribeWorkteamRequest < Struct.new(
|
8738
8942
|
:workteam_name)
|
8943
|
+
SENSITIVE = []
|
8739
8944
|
include Aws::Structure
|
8740
8945
|
end
|
8741
8946
|
|
@@ -8747,6 +8952,7 @@ module Aws::SageMaker
|
|
8747
8952
|
#
|
8748
8953
|
class DescribeWorkteamResponse < Struct.new(
|
8749
8954
|
:workteam)
|
8955
|
+
SENSITIVE = []
|
8750
8956
|
include Aws::Structure
|
8751
8957
|
end
|
8752
8958
|
|
@@ -8779,6 +8985,7 @@ module Aws::SageMaker
|
|
8779
8985
|
:variant_name,
|
8780
8986
|
:desired_weight,
|
8781
8987
|
:desired_instance_count)
|
8988
|
+
SENSITIVE = []
|
8782
8989
|
include Aws::Structure
|
8783
8990
|
end
|
8784
8991
|
|
@@ -8803,6 +9010,7 @@ module Aws::SageMaker
|
|
8803
9010
|
class DisassociateTrialComponentRequest < Struct.new(
|
8804
9011
|
:trial_component_name,
|
8805
9012
|
:trial_name)
|
9013
|
+
SENSITIVE = []
|
8806
9014
|
include Aws::Structure
|
8807
9015
|
end
|
8808
9016
|
|
@@ -8819,6 +9027,7 @@ module Aws::SageMaker
|
|
8819
9027
|
class DisassociateTrialComponentResponse < Struct.new(
|
8820
9028
|
:trial_component_arn,
|
8821
9029
|
:trial_arn)
|
9030
|
+
SENSITIVE = []
|
8822
9031
|
include Aws::Structure
|
8823
9032
|
end
|
8824
9033
|
|
@@ -8862,6 +9071,7 @@ module Aws::SageMaker
|
|
8862
9071
|
:creation_time,
|
8863
9072
|
:last_modified_time,
|
8864
9073
|
:url)
|
9074
|
+
SENSITIVE = []
|
8865
9075
|
include Aws::Structure
|
8866
9076
|
end
|
8867
9077
|
|
@@ -8885,6 +9095,7 @@ module Aws::SageMaker
|
|
8885
9095
|
:endpoint_config_name,
|
8886
9096
|
:endpoint_config_arn,
|
8887
9097
|
:creation_time)
|
9098
|
+
SENSITIVE = []
|
8888
9099
|
include Aws::Structure
|
8889
9100
|
end
|
8890
9101
|
|
@@ -8929,6 +9140,7 @@ module Aws::SageMaker
|
|
8929
9140
|
:local_path,
|
8930
9141
|
:s3_input_mode,
|
8931
9142
|
:s3_data_distribution_type)
|
9143
|
+
SENSITIVE = []
|
8932
9144
|
include Aws::Structure
|
8933
9145
|
end
|
8934
9146
|
|
@@ -8997,6 +9209,7 @@ module Aws::SageMaker
|
|
8997
9209
|
:creation_time,
|
8998
9210
|
:last_modified_time,
|
8999
9211
|
:endpoint_status)
|
9212
|
+
SENSITIVE = []
|
9000
9213
|
include Aws::Structure
|
9001
9214
|
end
|
9002
9215
|
|
@@ -9059,6 +9272,7 @@ module Aws::SageMaker
|
|
9059
9272
|
:last_modified_time,
|
9060
9273
|
:last_modified_by,
|
9061
9274
|
:tags)
|
9275
|
+
SENSITIVE = []
|
9062
9276
|
include Aws::Structure
|
9063
9277
|
end
|
9064
9278
|
|
@@ -9091,6 +9305,7 @@ module Aws::SageMaker
|
|
9091
9305
|
:experiment_name,
|
9092
9306
|
:trial_name,
|
9093
9307
|
:trial_component_display_name)
|
9308
|
+
SENSITIVE = []
|
9094
9309
|
include Aws::Structure
|
9095
9310
|
end
|
9096
9311
|
|
@@ -9109,6 +9324,7 @@ module Aws::SageMaker
|
|
9109
9324
|
class ExperimentSource < Struct.new(
|
9110
9325
|
:source_arn,
|
9111
9326
|
:source_type)
|
9327
|
+
SENSITIVE = []
|
9112
9328
|
include Aws::Structure
|
9113
9329
|
end
|
9114
9330
|
|
@@ -9150,6 +9366,7 @@ module Aws::SageMaker
|
|
9150
9366
|
:experiment_source,
|
9151
9367
|
:creation_time,
|
9152
9368
|
:last_modified_time)
|
9369
|
+
SENSITIVE = []
|
9153
9370
|
include Aws::Structure
|
9154
9371
|
end
|
9155
9372
|
|
@@ -9190,6 +9407,7 @@ module Aws::SageMaker
|
|
9190
9407
|
:file_system_access_mode,
|
9191
9408
|
:file_system_type,
|
9192
9409
|
:directory_path)
|
9410
|
+
SENSITIVE = []
|
9193
9411
|
include Aws::Structure
|
9194
9412
|
end
|
9195
9413
|
|
@@ -9270,6 +9488,14 @@ module Aws::SageMaker
|
|
9270
9488
|
#
|
9271
9489
|
# : The value of `Name` doesn't equal `Value`.
|
9272
9490
|
#
|
9491
|
+
# Exists
|
9492
|
+
#
|
9493
|
+
# : The `Name` property exists.
|
9494
|
+
#
|
9495
|
+
# NotExists
|
9496
|
+
#
|
9497
|
+
# : The `Name` property does not exist.
|
9498
|
+
#
|
9273
9499
|
# GreaterThan
|
9274
9500
|
#
|
9275
9501
|
# : The value of `Name` is greater than `Value`. Not supported for
|
@@ -9290,24 +9516,46 @@ module Aws::SageMaker
|
|
9290
9516
|
# : The value of `Name` is less than or equal to `Value`. Not
|
9291
9517
|
# supported for text properties.
|
9292
9518
|
#
|
9519
|
+
# In
|
9520
|
+
#
|
9521
|
+
# : The value of `Name` is one of the comma delimited strings in
|
9522
|
+
# `Value`. Only supported for text properties.
|
9523
|
+
#
|
9293
9524
|
# Contains
|
9294
9525
|
#
|
9295
|
-
# : The value of `Name` contains the string `Value`.
|
9296
|
-
#
|
9297
|
-
# supported for text properties.
|
9526
|
+
# : The value of `Name` contains the string `Value`. Only supported
|
9527
|
+
# for text properties.
|
9298
9528
|
#
|
9299
|
-
#
|
9529
|
+
# A `SearchExpression` can include the `Contains` operator multiple
|
9530
|
+
# times when the value of `Name` is one of the following:
|
9300
9531
|
#
|
9301
|
-
#
|
9532
|
+
# * `Experiment.DisplayName`
|
9302
9533
|
#
|
9303
|
-
#
|
9534
|
+
# * `Experiment.ExperimentName`
|
9304
9535
|
#
|
9305
|
-
#
|
9536
|
+
# * `Experiment.Tags`
|
9306
9537
|
#
|
9307
|
-
#
|
9538
|
+
# * `Trial.DisplayName`
|
9308
9539
|
#
|
9309
|
-
#
|
9310
|
-
#
|
9540
|
+
# * `Trial.TrialName`
|
9541
|
+
#
|
9542
|
+
# * `Trial.Tags`
|
9543
|
+
#
|
9544
|
+
# * `TrialComponent.DisplayName`
|
9545
|
+
#
|
9546
|
+
# * `TrialComponent.TrialComponentName`
|
9547
|
+
#
|
9548
|
+
# * `TrialComponent.Tags`
|
9549
|
+
#
|
9550
|
+
# * `TrialComponent.InputArtifacts`
|
9551
|
+
#
|
9552
|
+
# * `TrialComponent.OutputArtifacts`
|
9553
|
+
#
|
9554
|
+
# A `SearchExpression` can include only one `Contains` operator for
|
9555
|
+
# all other values of `Name`. In these cases, if you include
|
9556
|
+
# multiple `Contains` operators in the `SearchExpression`, the
|
9557
|
+
# result is the following error message: "`'CONTAINS' operator
|
9558
|
+
# usage limit of 1 exceeded.`"
|
9311
9559
|
# @return [String]
|
9312
9560
|
#
|
9313
9561
|
# @!attribute [rw] value
|
@@ -9324,6 +9572,7 @@ module Aws::SageMaker
|
|
9324
9572
|
:name,
|
9325
9573
|
:operator,
|
9326
9574
|
:value)
|
9575
|
+
SENSITIVE = []
|
9327
9576
|
include Aws::Structure
|
9328
9577
|
end
|
9329
9578
|
|
@@ -9347,6 +9596,7 @@ module Aws::SageMaker
|
|
9347
9596
|
:type,
|
9348
9597
|
:metric_name,
|
9349
9598
|
:value)
|
9599
|
+
SENSITIVE = []
|
9350
9600
|
include Aws::Structure
|
9351
9601
|
end
|
9352
9602
|
|
@@ -9374,6 +9624,7 @@ module Aws::SageMaker
|
|
9374
9624
|
:type,
|
9375
9625
|
:metric_name,
|
9376
9626
|
:value)
|
9627
|
+
SENSITIVE = []
|
9377
9628
|
include Aws::Structure
|
9378
9629
|
end
|
9379
9630
|
|
@@ -9402,6 +9653,7 @@ module Aws::SageMaker
|
|
9402
9653
|
class FlowDefinitionOutputConfig < Struct.new(
|
9403
9654
|
:s3_output_path,
|
9404
9655
|
:kms_key_id)
|
9656
|
+
SENSITIVE = []
|
9405
9657
|
include Aws::Structure
|
9406
9658
|
end
|
9407
9659
|
|
@@ -9436,6 +9688,7 @@ module Aws::SageMaker
|
|
9436
9688
|
:flow_definition_status,
|
9437
9689
|
:creation_time,
|
9438
9690
|
:failure_reason)
|
9691
|
+
SENSITIVE = []
|
9439
9692
|
include Aws::Structure
|
9440
9693
|
end
|
9441
9694
|
|
@@ -9464,6 +9717,7 @@ module Aws::SageMaker
|
|
9464
9717
|
class GetSearchSuggestionsRequest < Struct.new(
|
9465
9718
|
:resource,
|
9466
9719
|
:suggestion_query)
|
9720
|
+
SENSITIVE = []
|
9467
9721
|
include Aws::Structure
|
9468
9722
|
end
|
9469
9723
|
|
@@ -9476,6 +9730,7 @@ module Aws::SageMaker
|
|
9476
9730
|
#
|
9477
9731
|
class GetSearchSuggestionsResponse < Struct.new(
|
9478
9732
|
:property_name_suggestions)
|
9733
|
+
SENSITIVE = []
|
9479
9734
|
include Aws::Structure
|
9480
9735
|
end
|
9481
9736
|
|
@@ -9514,6 +9769,7 @@ module Aws::SageMaker
|
|
9514
9769
|
:repository_url,
|
9515
9770
|
:branch,
|
9516
9771
|
:secret_arn)
|
9772
|
+
SENSITIVE = []
|
9517
9773
|
include Aws::Structure
|
9518
9774
|
end
|
9519
9775
|
|
@@ -9540,6 +9796,7 @@ module Aws::SageMaker
|
|
9540
9796
|
#
|
9541
9797
|
class GitConfigForUpdate < Struct.new(
|
9542
9798
|
:secret_arn)
|
9799
|
+
SENSITIVE = []
|
9543
9800
|
include Aws::Structure
|
9544
9801
|
end
|
9545
9802
|
|
@@ -9571,6 +9828,7 @@ module Aws::SageMaker
|
|
9571
9828
|
#
|
9572
9829
|
class HumanLoopActivationConditionsConfig < Struct.new(
|
9573
9830
|
:human_loop_activation_conditions)
|
9831
|
+
SENSITIVE = []
|
9574
9832
|
include Aws::Structure
|
9575
9833
|
end
|
9576
9834
|
|
@@ -9596,6 +9854,7 @@ module Aws::SageMaker
|
|
9596
9854
|
#
|
9597
9855
|
class HumanLoopActivationConfig < Struct.new(
|
9598
9856
|
:human_loop_activation_conditions_config)
|
9857
|
+
SENSITIVE = []
|
9599
9858
|
include Aws::Structure
|
9600
9859
|
end
|
9601
9860
|
|
@@ -9881,6 +10140,7 @@ module Aws::SageMaker
|
|
9881
10140
|
:task_time_limit_in_seconds,
|
9882
10141
|
:task_keywords,
|
9883
10142
|
:public_workforce_task_price)
|
10143
|
+
SENSITIVE = []
|
9884
10144
|
include Aws::Structure
|
9885
10145
|
end
|
9886
10146
|
|
@@ -9903,6 +10163,7 @@ module Aws::SageMaker
|
|
9903
10163
|
#
|
9904
10164
|
class HumanLoopRequestSource < Struct.new(
|
9905
10165
|
:aws_managed_human_loop_request_source)
|
10166
|
+
SENSITIVE = []
|
9906
10167
|
include Aws::Structure
|
9907
10168
|
end
|
9908
10169
|
|
@@ -9915,6 +10176,7 @@ module Aws::SageMaker
|
|
9915
10176
|
# workteam_arn: "WorkteamArn", # required
|
9916
10177
|
# ui_config: { # required
|
9917
10178
|
# ui_template_s3_uri: "S3Uri",
|
10179
|
+
# human_task_ui_arn: "HumanTaskUiArn",
|
9918
10180
|
# },
|
9919
10181
|
# pre_human_task_lambda_arn: "LambdaFunctionArn", # required
|
9920
10182
|
# task_keywords: ["TaskKeyword"],
|
@@ -9955,291 +10217,311 @@ module Aws::SageMaker
|
|
9955
10217
|
# segmentation, and text classification task types, Amazon SageMaker
|
9956
10218
|
# Ground Truth provides the following Lambda functions:
|
9957
10219
|
#
|
9958
|
-
# **
|
10220
|
+
# **Bounding box** - Finds the most similar boxes from different
|
10221
|
+
# workers based on the Jaccard index of the boxes.
|
9959
10222
|
#
|
9960
10223
|
# * `arn:aws:lambda:us-east-1:432418664414:function:PRE-BoundingBox`
|
9961
10224
|
#
|
9962
|
-
# * `arn:aws:lambda:us-east-
|
10225
|
+
# * `arn:aws:lambda:us-east-2:266458841044:function:PRE-BoundingBox`
|
9963
10226
|
#
|
9964
|
-
# * `arn:aws:lambda:us-
|
10227
|
+
# * `arn:aws:lambda:us-west-2:081040173940:function:PRE-BoundingBox`
|
9965
10228
|
#
|
9966
|
-
# * `arn:aws:lambda:
|
10229
|
+
# * `arn:aws:lambda:ca-central-1:918755190332:function:PRE-BoundingBox`
|
9967
10230
|
#
|
9968
|
-
# * `arn:aws:lambda:
|
10231
|
+
# * `arn:aws:lambda:eu-west-1:568282634449:function:PRE-BoundingBox`
|
9969
10232
|
#
|
9970
|
-
# * `arn:aws:lambda:
|
10233
|
+
# * `arn:aws:lambda:eu-west-2:487402164563:function:PRE-BoundingBox`
|
9971
10234
|
#
|
9972
|
-
# * `arn:aws:lambda:
|
10235
|
+
# * `arn:aws:lambda:eu-central-1:203001061592:function:PRE-BoundingBox`
|
9973
10236
|
#
|
9974
|
-
# * `arn:aws:lambda:
|
10237
|
+
# * `arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-BoundingBox`
|
9975
10238
|
#
|
9976
|
-
# * `arn:aws:lambda:
|
10239
|
+
# * `arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-BoundingBox`
|
9977
10240
|
#
|
9978
|
-
# * `arn:aws:lambda:
|
10241
|
+
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-BoundingBox`
|
9979
10242
|
#
|
9980
|
-
# * `arn:aws:lambda:
|
10243
|
+
# * `arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-BoundingBox`
|
9981
10244
|
#
|
9982
|
-
#
|
10245
|
+
# * `arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-BoundingBox`
|
9983
10246
|
#
|
9984
|
-
#
|
10247
|
+
# **Image classification** - Uses a variant of the Expectation
|
10248
|
+
# Maximization approach to estimate the true class of an image based
|
10249
|
+
# on annotations from individual workers.
|
10250
|
+
#
|
10251
|
+
# * `arn:aws:lambda:us-east-1:432418664414:function:PRE-ImageMultiClass`
|
9985
10252
|
#
|
9986
10253
|
# * `arn:aws:lambda:us-east-2:266458841044:function:PRE-ImageMultiClass`
|
9987
10254
|
#
|
9988
|
-
# * `arn:aws:lambda:us-
|
10255
|
+
# * `arn:aws:lambda:us-west-2:081040173940:function:PRE-ImageMultiClass`
|
9989
10256
|
#
|
9990
|
-
# * `arn:aws:lambda:
|
10257
|
+
# * `arn:aws:lambda:ca-central-1:918755190332:function:PRE-ImageMultiClass`
|
9991
10258
|
#
|
9992
|
-
# * `arn:aws:lambda:
|
10259
|
+
# * `arn:aws:lambda:eu-west-1:568282634449:function:PRE-ImageMultiClass`
|
9993
10260
|
#
|
9994
|
-
# * `arn:aws:lambda:
|
10261
|
+
# * `arn:aws:lambda:eu-west-2:487402164563:function:PRE-ImageMultiClass`
|
9995
10262
|
#
|
9996
|
-
# * `arn:aws:lambda:
|
10263
|
+
# * `arn:aws:lambda:eu-central-1:203001061592:function:PRE-ImageMultiClass`
|
9997
10264
|
#
|
9998
|
-
# * `arn:aws:lambda:
|
10265
|
+
# * `arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-ImageMultiClass`
|
9999
10266
|
#
|
10000
|
-
# * `arn:aws:lambda:
|
10267
|
+
# * `arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-ImageMultiClass`
|
10001
10268
|
#
|
10002
|
-
# * `arn:aws:lambda:
|
10269
|
+
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-ImageMultiClass`
|
10003
10270
|
#
|
10004
|
-
# * `arn:aws:lambda:
|
10271
|
+
# * `arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-ImageMultiClass`
|
10005
10272
|
#
|
10006
|
-
#
|
10273
|
+
# * `arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-ImageMultiClass`
|
10007
10274
|
#
|
10008
|
-
#
|
10275
|
+
# **Multi-label image classification** - Uses a variant of the
|
10276
|
+
# Expectation Maximization approach to estimate the true classes of an
|
10277
|
+
# image based on annotations from individual workers.
|
10009
10278
|
#
|
10010
|
-
# * `arn:aws:lambda:us-
|
10279
|
+
# * `arn:aws:lambda:us-east-1:432418664414:function:PRE-ImageMultiClassMultiLabel`
|
10280
|
+
#
|
10281
|
+
# * `arn:aws:lambda:us-east-2:266458841044:function:PRE-ImageMultiClassMultiLabel`
|
10011
10282
|
#
|
10012
10283
|
# * `arn:aws:lambda:us-west-2:081040173940:function:PRE-ImageMultiClassMultiLabel`
|
10013
10284
|
#
|
10014
|
-
# * `arn:aws:lambda:
|
10285
|
+
# * `arn:aws:lambda:ca-central-1:918755190332:function:PRE-ImageMultiClassMultiLabel`
|
10015
10286
|
#
|
10016
|
-
# * `arn:aws:lambda:
|
10287
|
+
# * `arn:aws:lambda:eu-west-1:568282634449:function:PRE-ImageMultiClassMultiLabel`
|
10017
10288
|
#
|
10018
|
-
# * `arn:aws:lambda:
|
10289
|
+
# * `arn:aws:lambda:eu-west-2:487402164563:function:PRE-ImageMultiClassMultiLabel`
|
10019
10290
|
#
|
10020
|
-
# * `arn:aws:lambda:
|
10291
|
+
# * `arn:aws:lambda:eu-central-1:203001061592:function:PRE-ImageMultiClassMultiLabel`
|
10021
10292
|
#
|
10022
|
-
# * `arn:aws:lambda:
|
10293
|
+
# * `arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-ImageMultiClassMultiLabel`
|
10023
10294
|
#
|
10024
|
-
# * `arn:aws:lambda:
|
10295
|
+
# * `arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-ImageMultiClassMultiLabel`
|
10025
10296
|
#
|
10026
|
-
# * `arn:aws:lambda:
|
10297
|
+
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-ImageMultiClassMultiLabel`
|
10027
10298
|
#
|
10028
|
-
# * `arn:aws:lambda:
|
10299
|
+
# * `arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-ImageMultiClassMultiLabel`
|
10029
10300
|
#
|
10030
|
-
#
|
10301
|
+
# * `arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-ImageMultiClassMultiLabel`
|
10031
10302
|
#
|
10032
|
-
#
|
10303
|
+
# **Semantic segmentation** - Treats each pixel in an image as a
|
10304
|
+
# multi-class classification and treats pixel annotations from workers
|
10305
|
+
# as "votes" for the correct label.
|
10033
10306
|
#
|
10034
|
-
# * `arn:aws:lambda:
|
10307
|
+
# * `arn:aws:lambda:us-east-1:432418664414:function:PRE-SemanticSegmentation`
|
10035
10308
|
#
|
10036
|
-
# * `arn:aws:lambda:
|
10309
|
+
# * `arn:aws:lambda:us-east-2:266458841044:function:PRE-SemanticSegmentation`
|
10310
|
+
#
|
10311
|
+
# * `arn:aws:lambda:us-west-2:081040173940:function:PRE-SemanticSegmentation`
|
10037
10312
|
#
|
10038
10313
|
# * `arn:aws:lambda:ca-central-1:918755190332:function:PRE-SemanticSegmentation`
|
10039
10314
|
#
|
10040
|
-
# * `arn:aws:lambda:
|
10315
|
+
# * `arn:aws:lambda:eu-west-1:568282634449:function:PRE-SemanticSegmentation`
|
10041
10316
|
#
|
10042
|
-
# * `arn:aws:lambda:
|
10317
|
+
# * `arn:aws:lambda:eu-west-2:487402164563:function:PRE-SemanticSegmentation`
|
10043
10318
|
#
|
10044
|
-
# * `arn:aws:lambda:
|
10319
|
+
# * `arn:aws:lambda:eu-central-1:203001061592:function:PRE-SemanticSegmentation`
|
10045
10320
|
#
|
10046
|
-
# * `arn:aws:lambda:
|
10321
|
+
# * `arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-SemanticSegmentation`
|
10047
10322
|
#
|
10048
|
-
# * `arn:aws:lambda:
|
10323
|
+
# * `arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-SemanticSegmentation`
|
10049
10324
|
#
|
10050
|
-
# * `arn:aws:lambda:
|
10325
|
+
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-SemanticSegmentation`
|
10051
10326
|
#
|
10052
|
-
# * `arn:aws:lambda:
|
10327
|
+
# * `arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-SemanticSegmentation`
|
10053
10328
|
#
|
10054
|
-
#
|
10329
|
+
# * `arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-SemanticSegmentation`
|
10055
10330
|
#
|
10056
|
-
#
|
10331
|
+
# **Text classification** - Uses a variant of the Expectation
|
10332
|
+
# Maximization approach to estimate the true class of text based on
|
10333
|
+
# annotations from individual workers.
|
10057
10334
|
#
|
10058
|
-
# * `arn:aws:lambda:
|
10335
|
+
# * `arn:aws:lambda:us-east-1:432418664414:function:PRE-TextMultiClass`
|
10059
10336
|
#
|
10060
|
-
# * `arn:aws:lambda:
|
10337
|
+
# * `arn:aws:lambda:us-east-2:266458841044:function:PRE-TextMultiClass`
|
10061
10338
|
#
|
10062
|
-
# * `arn:aws:lambda:
|
10339
|
+
# * `arn:aws:lambda:us-west-2:081040173940:function:PRE-TextMultiClass`
|
10340
|
+
#
|
10341
|
+
# * `arn:aws:lambda:ca-central-1:918755190332:function:PRE-TextMultiClass`
|
10063
10342
|
#
|
10064
10343
|
# * `arn:aws:lambda:eu-west-1:568282634449:function:PRE-TextMultiClass`
|
10065
10344
|
#
|
10066
|
-
# * `arn:aws:lambda:eu-west-
|
10345
|
+
# * `arn:aws:lambda:eu-west-2:487402164563:function:PRE-TextMultiClass`
|
10067
10346
|
#
|
10068
|
-
# * `arn:aws:lambda:eu-
|
10347
|
+
# * `arn:aws:lambda:eu-central-1:203001061592:function:PRE-TextMultiClass`
|
10069
10348
|
#
|
10070
|
-
# * `arn:aws:lambda:
|
10349
|
+
# * `arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-TextMultiClass`
|
10071
10350
|
#
|
10072
|
-
# * `arn:aws:lambda:
|
10351
|
+
# * `arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-TextMultiClass`
|
10073
10352
|
#
|
10074
|
-
# * `arn:aws:lambda:
|
10353
|
+
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-TextMultiClass`
|
10075
10354
|
#
|
10076
|
-
# * `arn:aws:lambda:
|
10355
|
+
# * `arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-TextMultiClass`
|
10077
10356
|
#
|
10078
|
-
#
|
10357
|
+
# * `arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-TextMultiClass`
|
10079
10358
|
#
|
10080
|
-
#
|
10359
|
+
# **Multi-label text classification** - Uses a variant of the
|
10360
|
+
# Expectation Maximization approach to estimate the true classes of
|
10361
|
+
# text based on annotations from individual workers.
|
10081
10362
|
#
|
10082
|
-
# * `arn:aws:lambda:
|
10363
|
+
# * `arn:aws:lambda:us-east-1:432418664414:function:PRE-TextMultiClassMultiLabel`
|
10083
10364
|
#
|
10084
|
-
# * `arn:aws:lambda:
|
10365
|
+
# * `arn:aws:lambda:us-east-2:266458841044:function:PRE-TextMultiClassMultiLabel`
|
10085
10366
|
#
|
10086
|
-
# * `arn:aws:lambda:
|
10367
|
+
# * `arn:aws:lambda:us-west-2:081040173940:function:PRE-TextMultiClassMultiLabel`
|
10087
10368
|
#
|
10088
|
-
# * `arn:aws:lambda:
|
10369
|
+
# * `arn:aws:lambda:ca-central-1:918755190332:function:PRE-TextMultiClassMultiLabel`
|
10370
|
+
#
|
10371
|
+
# * `arn:aws:lambda:eu-west-1:568282634449:function:PRE-TextMultiClassMultiLabel`
|
10089
10372
|
#
|
10090
10373
|
# * `arn:aws:lambda:eu-west-2:487402164563:function:PRE-TextMultiClassMultiLabel`
|
10091
10374
|
#
|
10092
|
-
# * `arn:aws:lambda:eu-
|
10375
|
+
# * `arn:aws:lambda:eu-central-1:203001061592:function:PRE-TextMultiClassMultiLabel`
|
10093
10376
|
#
|
10094
|
-
# * `arn:aws:lambda:
|
10377
|
+
# * `arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-TextMultiClassMultiLabel`
|
10095
10378
|
#
|
10096
|
-
# * `arn:aws:lambda:
|
10379
|
+
# * `arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-TextMultiClassMultiLabel`
|
10097
10380
|
#
|
10098
|
-
# * `arn:aws:lambda:
|
10381
|
+
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-TextMultiClassMultiLabel`
|
10099
10382
|
#
|
10100
|
-
# * `arn:aws:lambda:
|
10383
|
+
# * `arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-TextMultiClassMultiLabel`
|
10101
10384
|
#
|
10102
|
-
#
|
10385
|
+
# * `arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-TextMultiClassMultiLabel`
|
10103
10386
|
#
|
10104
|
-
#
|
10387
|
+
# **Named entity recognition** - Groups similar selections and
|
10388
|
+
# calculates aggregate boundaries, resolving to most-assigned label.
|
10105
10389
|
#
|
10106
|
-
# * `arn:aws:lambda:
|
10390
|
+
# * `arn:aws:lambda:us-east-1:432418664414:function:PRE-NamedEntityRecognition`
|
10107
10391
|
#
|
10108
|
-
# * `arn:aws:lambda:
|
10392
|
+
# * `arn:aws:lambda:us-east-2:266458841044:function:PRE-NamedEntityRecognition`
|
10109
10393
|
#
|
10110
|
-
# * `arn:aws:lambda:
|
10394
|
+
# * `arn:aws:lambda:us-west-2:081040173940:function:PRE-NamedEntityRecognition`
|
10111
10395
|
#
|
10112
|
-
# * `arn:aws:lambda:
|
10396
|
+
# * `arn:aws:lambda:ca-central-1:918755190332:function:PRE-NamedEntityRecognition`
|
10113
10397
|
#
|
10114
|
-
# * `arn:aws:lambda:eu-
|
10398
|
+
# * `arn:aws:lambda:eu-west-1:568282634449:function:PRE-NamedEntityRecognition`
|
10399
|
+
#
|
10400
|
+
# * `arn:aws:lambda:eu-west-2:487402164563:function:PRE-NamedEntityRecognition`
|
10115
10401
|
#
|
10116
10402
|
# * `arn:aws:lambda:eu-central-1:203001061592:function:PRE-NamedEntityRecognition`
|
10117
10403
|
#
|
10118
|
-
# * `arn:aws:lambda:
|
10404
|
+
# * `arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-NamedEntityRecognition`
|
10119
10405
|
#
|
10120
|
-
# * `arn:aws:lambda:
|
10406
|
+
# * `arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-NamedEntityRecognition`
|
10121
10407
|
#
|
10122
|
-
# * `arn:aws:lambda:
|
10408
|
+
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-NamedEntityRecognition`
|
10123
10409
|
#
|
10124
|
-
# * `arn:aws:lambda:
|
10410
|
+
# * `arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-NamedEntityRecognition`
|
10125
10411
|
#
|
10126
|
-
#
|
10412
|
+
# * `arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-NamedEntityRecognition`
|
10127
10413
|
#
|
10128
|
-
#
|
10414
|
+
# **Bounding box verification** - Uses a variant of the Expectation
|
10415
|
+
# Maximization approach to estimate the true class of verification
|
10416
|
+
# judgement for bounding box labels based on annotations from
|
10417
|
+
# individual workers.
|
10129
10418
|
#
|
10130
|
-
# * `arn:aws:lambda:
|
10419
|
+
# * `arn:aws:lambda:us-east-1:432418664414:function:PRE-VerificationBoundingBox`
|
10131
10420
|
#
|
10132
|
-
# * `arn:aws:lambda:
|
10421
|
+
# * `arn:aws:lambda:us-east-2:266458841044:function:PRE-VerificationBoundingBox`
|
10133
10422
|
#
|
10134
|
-
# * `arn:aws:lambda:
|
10423
|
+
# * `arn:aws:lambda:us-west-2:081040173940:function:PRE-VerificationBoundingBox`
|
10135
10424
|
#
|
10136
|
-
# * `arn:aws:lambda:
|
10425
|
+
# * `arn:aws:lambda:ca-central-1:918755190332:function:PRE-VerificationBoundingBox`
|
10137
10426
|
#
|
10138
|
-
# * `arn:aws:lambda:
|
10427
|
+
# * `arn:aws:lambda:eu-west-1:568282634449:function:PRE-VerificationBoundingBox`
|
10139
10428
|
#
|
10140
|
-
# * `arn:aws:lambda:
|
10429
|
+
# * `arn:aws:lambda:eu-west-2:487402164563:function:PRE-VerificationBoundingBox`
|
10430
|
+
#
|
10431
|
+
# * `arn:aws:lambda:eu-central-1:203001061592:function:PRE-VerificationBoundingBox`
|
10141
10432
|
#
|
10142
10433
|
# * `arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-VerificationBoundingBox`
|
10143
10434
|
#
|
10144
|
-
# * `arn:aws:lambda:ap-northeast-
|
10435
|
+
# * `arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-VerificationBoundingBox`
|
10145
10436
|
#
|
10146
|
-
# * `arn:aws:lambda:ap-
|
10437
|
+
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-VerificationBoundingBox`
|
10147
10438
|
#
|
10148
|
-
# * `arn:aws:lambda:ap-
|
10439
|
+
# * `arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-VerificationBoundingBox`
|
10149
10440
|
#
|
10150
|
-
#
|
10441
|
+
# * `arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-VerificationBoundingBox`
|
10151
10442
|
#
|
10152
|
-
#
|
10443
|
+
# **Bounding box adjustment** - Finds the most similar boxes from
|
10444
|
+
# different workers based on the Jaccard index of the adjusted
|
10445
|
+
# annotations.
|
10153
10446
|
#
|
10154
|
-
# * `arn:aws:lambda:
|
10447
|
+
# * `arn:aws:lambda:us-east-1:432418664414:function:PRE-AdjustmentBoundingBox`
|
10155
10448
|
#
|
10156
|
-
# * `arn:aws:lambda:
|
10449
|
+
# * `arn:aws:lambda:us-east-2:266458841044:function:PRE-AdjustmentBoundingBox`
|
10157
10450
|
#
|
10158
|
-
# * `arn:aws:lambda:
|
10451
|
+
# * `arn:aws:lambda:us-west-2:081040173940:function:PRE-AdjustmentBoundingBox`
|
10159
10452
|
#
|
10160
|
-
# * `arn:aws:lambda:
|
10453
|
+
# * `arn:aws:lambda:ca-central-1:918755190332:function:PRE-AdjustmentBoundingBox`
|
10161
10454
|
#
|
10162
|
-
# * `arn:aws:lambda:
|
10455
|
+
# * `arn:aws:lambda:eu-west-1:568282634449:function:PRE-AdjustmentBoundingBox`
|
10163
10456
|
#
|
10164
|
-
# * `arn:aws:lambda:
|
10457
|
+
# * `arn:aws:lambda:eu-west-2:487402164563:function:PRE-AdjustmentBoundingBox`
|
10165
10458
|
#
|
10166
|
-
# * `arn:aws:lambda:
|
10459
|
+
# * `arn:aws:lambda:eu-central-1:203001061592:function:PRE-AdjustmentBoundingBox`
|
10167
10460
|
#
|
10168
|
-
# * `arn:aws:lambda:ap-northeast-
|
10461
|
+
# * `arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-AdjustmentBoundingBox`
|
10169
10462
|
#
|
10170
10463
|
# * `arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-AdjustmentBoundingBox`
|
10171
10464
|
#
|
10172
|
-
# * `arn:aws:lambda:ap-
|
10173
|
-
#
|
10174
|
-
# **Asia Pacific (Mumbai) (ap-south-1):**
|
10175
|
-
#
|
10176
|
-
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-BoundingBox`
|
10177
|
-
#
|
10178
|
-
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-ImageMultiClass`
|
10179
|
-
#
|
10180
|
-
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-ImageMultiClassMultiLabel`
|
10181
|
-
#
|
10182
|
-
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-SemanticSegmentation`
|
10183
|
-
#
|
10184
|
-
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-TextMultiClass`
|
10185
|
-
#
|
10186
|
-
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-TextMultiClassMultiLabel`
|
10187
|
-
#
|
10188
|
-
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-NamedEntityRecognition`
|
10465
|
+
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-AdjustmentBoundingBox`
|
10189
10466
|
#
|
10190
|
-
# * `arn:aws:lambda:ap-
|
10467
|
+
# * `arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-AdjustmentBoundingBox`
|
10191
10468
|
#
|
10192
|
-
# * `arn:aws:lambda:ap-
|
10469
|
+
# * `arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-AdjustmentBoundingBox`
|
10193
10470
|
#
|
10194
|
-
#
|
10471
|
+
# **Semantic segmentation verification** - Uses a variant of the
|
10472
|
+
# Expectation Maximization approach to estimate the true class of
|
10473
|
+
# verification judgment for semantic segmentation labels based on
|
10474
|
+
# annotations from individual workers.
|
10195
10475
|
#
|
10196
|
-
# * `arn:aws:lambda:
|
10476
|
+
# * `arn:aws:lambda:us-east-1:432418664414:function:PRE-VerificationSemanticSegmentation`
|
10197
10477
|
#
|
10198
|
-
#
|
10478
|
+
# * `arn:aws:lambda:us-east-2:266458841044:function:PRE-VerificationSemanticSegmentation`
|
10199
10479
|
#
|
10200
|
-
# * `arn:aws:lambda:
|
10480
|
+
# * `arn:aws:lambda:us-west-2:081040173940:function:PRE-VerificationSemanticSegmentation`
|
10201
10481
|
#
|
10202
|
-
# * `arn:aws:lambda:
|
10482
|
+
# * `arn:aws:lambda:ca-central-1:918755190332:function:PRE-VerificationSemanticSegmentation`
|
10203
10483
|
#
|
10204
|
-
# * `arn:aws:lambda:
|
10484
|
+
# * `arn:aws:lambda:eu-west-1:568282634449:function:PRE-VerificationSemanticSegmentation`
|
10205
10485
|
#
|
10206
|
-
# * `arn:aws:lambda:
|
10486
|
+
# * `arn:aws:lambda:eu-west-2:487402164563:function:PRE-VerificationSemanticSegmentation`
|
10207
10487
|
#
|
10208
|
-
# * `arn:aws:lambda:
|
10488
|
+
# * `arn:aws:lambda:eu-central-1:203001061592:function:PRE-VerificationSemanticSegmentation`
|
10209
10489
|
#
|
10210
|
-
# * `arn:aws:lambda:ap-
|
10490
|
+
# * `arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-VerificationSemanticSegmentation`
|
10211
10491
|
#
|
10212
|
-
# * `arn:aws:lambda:ap-
|
10492
|
+
# * `arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-VerificationSemanticSegmentation`
|
10213
10493
|
#
|
10214
|
-
# * `arn:aws:lambda:ap-
|
10494
|
+
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-VerificationSemanticSegmentation`
|
10215
10495
|
#
|
10216
10496
|
# * `arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-VerificationSemanticSegmentation`
|
10217
10497
|
#
|
10218
|
-
# * `arn:aws:lambda:ap-southeast-
|
10498
|
+
# * `arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-VerificationSemanticSegmentation`
|
10219
10499
|
#
|
10220
|
-
#
|
10500
|
+
# **Semantic segmentation adjustment** - Treats each pixel in an image
|
10501
|
+
# as a multi-class classification and treats pixel adjusted
|
10502
|
+
# annotations from workers as "votes" for the correct label.
|
10221
10503
|
#
|
10222
|
-
#
|
10504
|
+
# * `arn:aws:lambda:us-east-1:432418664414:function:PRE-AdjustmentSemanticSegmentation`
|
10223
10505
|
#
|
10224
|
-
# * `arn:aws:lambda:
|
10506
|
+
# * `arn:aws:lambda:us-east-2:266458841044:function:PRE-AdjustmentSemanticSegmentation`
|
10225
10507
|
#
|
10226
|
-
# * `arn:aws:lambda:
|
10508
|
+
# * `arn:aws:lambda:us-west-2:081040173940:function:PRE-AdjustmentSemanticSegmentation`
|
10227
10509
|
#
|
10228
|
-
# * `arn:aws:lambda:
|
10510
|
+
# * `arn:aws:lambda:ca-central-1:918755190332:function:PRE-AdjustmentSemanticSegmentation`
|
10229
10511
|
#
|
10230
|
-
# * `arn:aws:lambda:
|
10512
|
+
# * `arn:aws:lambda:eu-west-1:568282634449:function:PRE-AdjustmentSemanticSegmentation`
|
10231
10513
|
#
|
10232
|
-
# * `arn:aws:lambda:
|
10514
|
+
# * `arn:aws:lambda:eu-west-2:487402164563:function:PRE-AdjustmentSemanticSegmentation`
|
10233
10515
|
#
|
10234
|
-
# * `arn:aws:lambda:
|
10516
|
+
# * `arn:aws:lambda:eu-central-1:203001061592:function:PRE-AdjustmentSemanticSegmentation`
|
10235
10517
|
#
|
10236
|
-
# * `arn:aws:lambda:ap-
|
10518
|
+
# * `arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-AdjustmentSemanticSegmentation`
|
10237
10519
|
#
|
10238
|
-
# * `arn:aws:lambda:ap-
|
10520
|
+
# * `arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-AdjustmentSemanticSegmentation`
|
10239
10521
|
#
|
10240
|
-
# * `arn:aws:lambda:ap-
|
10522
|
+
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-AdjustmentSemanticSegmentation`
|
10241
10523
|
#
|
10242
|
-
# * `arn:aws:lambda:ap-southeast-
|
10524
|
+
# * `arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-AdjustmentSemanticSegmentation`
|
10243
10525
|
#
|
10244
10526
|
# * `arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-AdjustmentSemanticSegmentation`
|
10245
10527
|
# @return [String]
|
@@ -10304,6 +10586,7 @@ module Aws::SageMaker
|
|
10304
10586
|
:max_concurrent_task_count,
|
10305
10587
|
:annotation_consolidation_config,
|
10306
10588
|
:public_workforce_task_price)
|
10589
|
+
SENSITIVE = []
|
10307
10590
|
include Aws::Structure
|
10308
10591
|
end
|
10309
10592
|
|
@@ -10327,6 +10610,7 @@ module Aws::SageMaker
|
|
10327
10610
|
:human_task_ui_name,
|
10328
10611
|
:human_task_ui_arn,
|
10329
10612
|
:creation_time)
|
10613
|
+
SENSITIVE = []
|
10330
10614
|
include Aws::Structure
|
10331
10615
|
end
|
10332
10616
|
|
@@ -10403,6 +10687,7 @@ module Aws::SageMaker
|
|
10403
10687
|
:training_input_mode,
|
10404
10688
|
:algorithm_name,
|
10405
10689
|
:metric_definitions)
|
10690
|
+
SENSITIVE = []
|
10406
10691
|
include Aws::Structure
|
10407
10692
|
end
|
10408
10693
|
|
@@ -10474,6 +10759,7 @@ module Aws::SageMaker
|
|
10474
10759
|
:is_tunable,
|
10475
10760
|
:is_required,
|
10476
10761
|
:default_value)
|
10762
|
+
SENSITIVE = []
|
10477
10763
|
include Aws::Structure
|
10478
10764
|
end
|
10479
10765
|
|
@@ -10712,6 +10998,7 @@ module Aws::SageMaker
|
|
10712
10998
|
:enable_inter_container_traffic_encryption,
|
10713
10999
|
:enable_managed_spot_training,
|
10714
11000
|
:checkpoint_config)
|
11001
|
+
SENSITIVE = []
|
10715
11002
|
include Aws::Structure
|
10716
11003
|
end
|
10717
11004
|
|
@@ -10808,6 +11095,7 @@ module Aws::SageMaker
|
|
10808
11095
|
:failure_reason,
|
10809
11096
|
:final_hyper_parameter_tuning_job_objective_metric,
|
10810
11097
|
:objective_status)
|
11098
|
+
SENSITIVE = []
|
10811
11099
|
include Aws::Structure
|
10812
11100
|
end
|
10813
11101
|
|
@@ -10918,6 +11206,7 @@ module Aws::SageMaker
|
|
10918
11206
|
:parameter_ranges,
|
10919
11207
|
:training_job_early_stopping_type,
|
10920
11208
|
:tuning_job_completion_criteria)
|
11209
|
+
SENSITIVE = []
|
10921
11210
|
include Aws::Structure
|
10922
11211
|
end
|
10923
11212
|
|
@@ -10948,6 +11237,7 @@ module Aws::SageMaker
|
|
10948
11237
|
class HyperParameterTuningJobObjective < Struct.new(
|
10949
11238
|
:type,
|
10950
11239
|
:metric_name)
|
11240
|
+
SENSITIVE = []
|
10951
11241
|
include Aws::Structure
|
10952
11242
|
end
|
10953
11243
|
|
@@ -11013,6 +11303,7 @@ module Aws::SageMaker
|
|
11013
11303
|
:training_job_status_counters,
|
11014
11304
|
:objective_status_counters,
|
11015
11305
|
:resource_limits)
|
11306
|
+
SENSITIVE = []
|
11016
11307
|
include Aws::Structure
|
11017
11308
|
end
|
11018
11309
|
|
@@ -11097,6 +11388,7 @@ module Aws::SageMaker
|
|
11097
11388
|
class HyperParameterTuningJobWarmStartConfig < Struct.new(
|
11098
11389
|
:parent_hyper_parameter_tuning_jobs,
|
11099
11390
|
:warm_start_type)
|
11391
|
+
SENSITIVE = []
|
11100
11392
|
include Aws::Structure
|
11101
11393
|
end
|
11102
11394
|
|
@@ -11153,6 +11445,7 @@ module Aws::SageMaker
|
|
11153
11445
|
:supported_realtime_inference_instance_types,
|
11154
11446
|
:supported_content_types,
|
11155
11447
|
:supported_response_mime_types)
|
11448
|
+
SENSITIVE = []
|
11156
11449
|
include Aws::Structure
|
11157
11450
|
end
|
11158
11451
|
|
@@ -11279,6 +11572,7 @@ module Aws::SageMaker
|
|
11279
11572
|
:s3_uri,
|
11280
11573
|
:data_input_config,
|
11281
11574
|
:framework)
|
11575
|
+
SENSITIVE = []
|
11282
11576
|
include Aws::Structure
|
11283
11577
|
end
|
11284
11578
|
|
@@ -11343,6 +11637,7 @@ module Aws::SageMaker
|
|
11343
11637
|
:min_value,
|
11344
11638
|
:max_value,
|
11345
11639
|
:scaling_type)
|
11640
|
+
SENSITIVE = []
|
11346
11641
|
include Aws::Structure
|
11347
11642
|
end
|
11348
11643
|
|
@@ -11369,6 +11664,7 @@ module Aws::SageMaker
|
|
11369
11664
|
class IntegerParameterRangeSpecification < Struct.new(
|
11370
11665
|
:min_value,
|
11371
11666
|
:max_value)
|
11667
|
+
SENSITIVE = []
|
11372
11668
|
include Aws::Structure
|
11373
11669
|
end
|
11374
11670
|
|
@@ -11393,6 +11689,7 @@ module Aws::SageMaker
|
|
11393
11689
|
#
|
11394
11690
|
class JupyterServerAppSettings < Struct.new(
|
11395
11691
|
:default_resource_spec)
|
11692
|
+
SENSITIVE = []
|
11396
11693
|
include Aws::Structure
|
11397
11694
|
end
|
11398
11695
|
|
@@ -11417,6 +11714,7 @@ module Aws::SageMaker
|
|
11417
11714
|
#
|
11418
11715
|
class KernelGatewayAppSettings < Struct.new(
|
11419
11716
|
:default_resource_spec)
|
11717
|
+
SENSITIVE = []
|
11420
11718
|
include Aws::Structure
|
11421
11719
|
end
|
11422
11720
|
|
@@ -11451,6 +11749,7 @@ module Aws::SageMaker
|
|
11451
11749
|
:machine_labeled,
|
11452
11750
|
:failed_non_retryable_error,
|
11453
11751
|
:unlabeled)
|
11752
|
+
SENSITIVE = []
|
11454
11753
|
include Aws::Structure
|
11455
11754
|
end
|
11456
11755
|
|
@@ -11475,6 +11774,7 @@ module Aws::SageMaker
|
|
11475
11774
|
:human_labeled,
|
11476
11775
|
:pending_human,
|
11477
11776
|
:total)
|
11777
|
+
SENSITIVE = []
|
11478
11778
|
include Aws::Structure
|
11479
11779
|
end
|
11480
11780
|
|
@@ -11531,6 +11831,7 @@ module Aws::SageMaker
|
|
11531
11831
|
:labeling_job_algorithm_specification_arn,
|
11532
11832
|
:initial_active_learning_model_arn,
|
11533
11833
|
:labeling_job_resource_config)
|
11834
|
+
SENSITIVE = []
|
11534
11835
|
include Aws::Structure
|
11535
11836
|
end
|
11536
11837
|
|
@@ -11555,6 +11856,7 @@ module Aws::SageMaker
|
|
11555
11856
|
#
|
11556
11857
|
class LabelingJobDataAttributes < Struct.new(
|
11557
11858
|
:content_classifiers)
|
11859
|
+
SENSITIVE = []
|
11558
11860
|
include Aws::Structure
|
11559
11861
|
end
|
11560
11862
|
|
@@ -11577,6 +11879,7 @@ module Aws::SageMaker
|
|
11577
11879
|
#
|
11578
11880
|
class LabelingJobDataSource < Struct.new(
|
11579
11881
|
:s3_data_source)
|
11882
|
+
SENSITIVE = []
|
11580
11883
|
include Aws::Structure
|
11581
11884
|
end
|
11582
11885
|
|
@@ -11615,6 +11918,7 @@ module Aws::SageMaker
|
|
11615
11918
|
:creation_time,
|
11616
11919
|
:label_counters,
|
11617
11920
|
:number_of_human_workers_per_data_object)
|
11921
|
+
SENSITIVE = []
|
11618
11922
|
include Aws::Structure
|
11619
11923
|
end
|
11620
11924
|
|
@@ -11647,6 +11951,7 @@ module Aws::SageMaker
|
|
11647
11951
|
class LabelingJobInputConfig < Struct.new(
|
11648
11952
|
:data_source,
|
11649
11953
|
:data_attributes)
|
11954
|
+
SENSITIVE = []
|
11650
11955
|
include Aws::Structure
|
11651
11956
|
end
|
11652
11957
|
|
@@ -11666,6 +11971,7 @@ module Aws::SageMaker
|
|
11666
11971
|
class LabelingJobOutput < Struct.new(
|
11667
11972
|
:output_dataset_s3_uri,
|
11668
11973
|
:final_active_learning_model_arn)
|
11974
|
+
SENSITIVE = []
|
11669
11975
|
include Aws::Structure
|
11670
11976
|
end
|
11671
11977
|
|
@@ -11715,6 +12021,7 @@ module Aws::SageMaker
|
|
11715
12021
|
class LabelingJobOutputConfig < Struct.new(
|
11716
12022
|
:s3_output_path,
|
11717
12023
|
:kms_key_id)
|
12024
|
+
SENSITIVE = []
|
11718
12025
|
include Aws::Structure
|
11719
12026
|
end
|
11720
12027
|
|
@@ -11746,6 +12053,7 @@ module Aws::SageMaker
|
|
11746
12053
|
#
|
11747
12054
|
class LabelingJobResourceConfig < Struct.new(
|
11748
12055
|
:volume_kms_key_id)
|
12056
|
+
SENSITIVE = []
|
11749
12057
|
include Aws::Structure
|
11750
12058
|
end
|
11751
12059
|
|
@@ -11767,6 +12075,7 @@ module Aws::SageMaker
|
|
11767
12075
|
#
|
11768
12076
|
class LabelingJobS3DataSource < Struct.new(
|
11769
12077
|
:manifest_s3_uri)
|
12078
|
+
SENSITIVE = []
|
11770
12079
|
include Aws::Structure
|
11771
12080
|
end
|
11772
12081
|
|
@@ -11800,6 +12109,7 @@ module Aws::SageMaker
|
|
11800
12109
|
class LabelingJobStoppingConditions < Struct.new(
|
11801
12110
|
:max_human_labeled_object_count,
|
11802
12111
|
:max_percentage_of_input_dataset_labeled)
|
12112
|
+
SENSITIVE = []
|
11803
12113
|
include Aws::Structure
|
11804
12114
|
end
|
11805
12115
|
|
@@ -11878,6 +12188,7 @@ module Aws::SageMaker
|
|
11878
12188
|
:failure_reason,
|
11879
12189
|
:labeling_job_output,
|
11880
12190
|
:input_config)
|
12191
|
+
SENSITIVE = []
|
11881
12192
|
include Aws::Structure
|
11882
12193
|
end
|
11883
12194
|
|
@@ -11938,6 +12249,7 @@ module Aws::SageMaker
|
|
11938
12249
|
:next_token,
|
11939
12250
|
:sort_by,
|
11940
12251
|
:sort_order)
|
12252
|
+
SENSITIVE = []
|
11941
12253
|
include Aws::Structure
|
11942
12254
|
end
|
11943
12255
|
|
@@ -11957,6 +12269,7 @@ module Aws::SageMaker
|
|
11957
12269
|
class ListAlgorithmsOutput < Struct.new(
|
11958
12270
|
:algorithm_summary_list,
|
11959
12271
|
:next_token)
|
12272
|
+
SENSITIVE = []
|
11960
12273
|
include Aws::Structure
|
11961
12274
|
end
|
11962
12275
|
|
@@ -12007,6 +12320,7 @@ module Aws::SageMaker
|
|
12007
12320
|
:sort_by,
|
12008
12321
|
:domain_id_equals,
|
12009
12322
|
:user_profile_name_equals)
|
12323
|
+
SENSITIVE = []
|
12010
12324
|
include Aws::Structure
|
12011
12325
|
end
|
12012
12326
|
|
@@ -12024,6 +12338,7 @@ module Aws::SageMaker
|
|
12024
12338
|
class ListAppsResponse < Struct.new(
|
12025
12339
|
:apps,
|
12026
12340
|
:next_token)
|
12341
|
+
SENSITIVE = []
|
12027
12342
|
include Aws::Structure
|
12028
12343
|
end
|
12029
12344
|
|
@@ -12098,6 +12413,7 @@ module Aws::SageMaker
|
|
12098
12413
|
:sort_by,
|
12099
12414
|
:max_results,
|
12100
12415
|
:next_token)
|
12416
|
+
SENSITIVE = []
|
12101
12417
|
include Aws::Structure
|
12102
12418
|
end
|
12103
12419
|
|
@@ -12115,6 +12431,7 @@ module Aws::SageMaker
|
|
12115
12431
|
class ListAutoMLJobsResponse < Struct.new(
|
12116
12432
|
:auto_ml_job_summaries,
|
12117
12433
|
:next_token)
|
12434
|
+
SENSITIVE = []
|
12118
12435
|
include Aws::Structure
|
12119
12436
|
end
|
12120
12437
|
|
@@ -12172,6 +12489,7 @@ module Aws::SageMaker
|
|
12172
12489
|
:sort_by,
|
12173
12490
|
:max_results,
|
12174
12491
|
:next_token)
|
12492
|
+
SENSITIVE = []
|
12175
12493
|
include Aws::Structure
|
12176
12494
|
end
|
12177
12495
|
|
@@ -12189,6 +12507,7 @@ module Aws::SageMaker
|
|
12189
12507
|
class ListCandidatesForAutoMLJobResponse < Struct.new(
|
12190
12508
|
:candidates,
|
12191
12509
|
:next_token)
|
12510
|
+
SENSITIVE = []
|
12192
12511
|
include Aws::Structure
|
12193
12512
|
end
|
12194
12513
|
|
@@ -12262,6 +12581,7 @@ module Aws::SageMaker
|
|
12262
12581
|
:next_token,
|
12263
12582
|
:sort_by,
|
12264
12583
|
:sort_order)
|
12584
|
+
SENSITIVE = []
|
12265
12585
|
include Aws::Structure
|
12266
12586
|
end
|
12267
12587
|
|
@@ -12293,6 +12613,7 @@ module Aws::SageMaker
|
|
12293
12613
|
class ListCodeRepositoriesOutput < Struct.new(
|
12294
12614
|
:code_repository_summary_list,
|
12295
12615
|
:next_token)
|
12616
|
+
SENSITIVE = []
|
12296
12617
|
include Aws::Structure
|
12297
12618
|
end
|
12298
12619
|
|
@@ -12374,6 +12695,7 @@ module Aws::SageMaker
|
|
12374
12695
|
:status_equals,
|
12375
12696
|
:sort_by,
|
12376
12697
|
:sort_order)
|
12698
|
+
SENSITIVE = []
|
12377
12699
|
include Aws::Structure
|
12378
12700
|
end
|
12379
12701
|
|
@@ -12393,6 +12715,7 @@ module Aws::SageMaker
|
|
12393
12715
|
class ListCompilationJobsResponse < Struct.new(
|
12394
12716
|
:compilation_job_summaries,
|
12395
12717
|
:next_token)
|
12718
|
+
SENSITIVE = []
|
12396
12719
|
include Aws::Structure
|
12397
12720
|
end
|
12398
12721
|
|
@@ -12418,6 +12741,7 @@ module Aws::SageMaker
|
|
12418
12741
|
class ListDomainsRequest < Struct.new(
|
12419
12742
|
:next_token,
|
12420
12743
|
:max_results)
|
12744
|
+
SENSITIVE = []
|
12421
12745
|
include Aws::Structure
|
12422
12746
|
end
|
12423
12747
|
|
@@ -12435,6 +12759,7 @@ module Aws::SageMaker
|
|
12435
12759
|
class ListDomainsResponse < Struct.new(
|
12436
12760
|
:domains,
|
12437
12761
|
:next_token)
|
12762
|
+
SENSITIVE = []
|
12438
12763
|
include Aws::Structure
|
12439
12764
|
end
|
12440
12765
|
|
@@ -12495,6 +12820,7 @@ module Aws::SageMaker
|
|
12495
12820
|
:name_contains,
|
12496
12821
|
:creation_time_before,
|
12497
12822
|
:creation_time_after)
|
12823
|
+
SENSITIVE = []
|
12498
12824
|
include Aws::Structure
|
12499
12825
|
end
|
12500
12826
|
|
@@ -12513,6 +12839,7 @@ module Aws::SageMaker
|
|
12513
12839
|
class ListEndpointConfigsOutput < Struct.new(
|
12514
12840
|
:endpoint_configs,
|
12515
12841
|
:next_token)
|
12842
|
+
SENSITIVE = []
|
12516
12843
|
include Aws::Structure
|
12517
12844
|
end
|
12518
12845
|
|
@@ -12592,6 +12919,7 @@ module Aws::SageMaker
|
|
12592
12919
|
:last_modified_time_before,
|
12593
12920
|
:last_modified_time_after,
|
12594
12921
|
:status_equals)
|
12922
|
+
SENSITIVE = []
|
12595
12923
|
include Aws::Structure
|
12596
12924
|
end
|
12597
12925
|
|
@@ -12610,6 +12938,7 @@ module Aws::SageMaker
|
|
12610
12938
|
class ListEndpointsOutput < Struct.new(
|
12611
12939
|
:endpoints,
|
12612
12940
|
:next_token)
|
12941
|
+
SENSITIVE = []
|
12613
12942
|
include Aws::Structure
|
12614
12943
|
end
|
12615
12944
|
|
@@ -12664,6 +12993,7 @@ module Aws::SageMaker
|
|
12664
12993
|
:sort_order,
|
12665
12994
|
:next_token,
|
12666
12995
|
:max_results)
|
12996
|
+
SENSITIVE = []
|
12667
12997
|
include Aws::Structure
|
12668
12998
|
end
|
12669
12999
|
|
@@ -12680,6 +13010,7 @@ module Aws::SageMaker
|
|
12680
13010
|
class ListExperimentsResponse < Struct.new(
|
12681
13011
|
:experiment_summaries,
|
12682
13012
|
:next_token)
|
13013
|
+
SENSITIVE = []
|
12683
13014
|
include Aws::Structure
|
12684
13015
|
end
|
12685
13016
|
|
@@ -12728,6 +13059,7 @@ module Aws::SageMaker
|
|
12728
13059
|
:sort_order,
|
12729
13060
|
:next_token,
|
12730
13061
|
:max_results)
|
13062
|
+
SENSITIVE = []
|
12731
13063
|
include Aws::Structure
|
12732
13064
|
end
|
12733
13065
|
|
@@ -12744,6 +13076,7 @@ module Aws::SageMaker
|
|
12744
13076
|
class ListFlowDefinitionsResponse < Struct.new(
|
12745
13077
|
:flow_definition_summaries,
|
12746
13078
|
:next_token)
|
13079
|
+
SENSITIVE = []
|
12747
13080
|
include Aws::Structure
|
12748
13081
|
end
|
12749
13082
|
|
@@ -12792,6 +13125,7 @@ module Aws::SageMaker
|
|
12792
13125
|
:sort_order,
|
12793
13126
|
:next_token,
|
12794
13127
|
:max_results)
|
13128
|
+
SENSITIVE = []
|
12795
13129
|
include Aws::Structure
|
12796
13130
|
end
|
12797
13131
|
|
@@ -12808,6 +13142,7 @@ module Aws::SageMaker
|
|
12808
13142
|
class ListHumanTaskUisResponse < Struct.new(
|
12809
13143
|
:human_task_ui_summaries,
|
12810
13144
|
:next_token)
|
13145
|
+
SENSITIVE = []
|
12811
13146
|
include Aws::Structure
|
12812
13147
|
end
|
12813
13148
|
|
@@ -12888,6 +13223,7 @@ module Aws::SageMaker
|
|
12888
13223
|
:last_modified_time_after,
|
12889
13224
|
:last_modified_time_before,
|
12890
13225
|
:status_equals)
|
13226
|
+
SENSITIVE = []
|
12891
13227
|
include Aws::Structure
|
12892
13228
|
end
|
12893
13229
|
|
@@ -12908,6 +13244,7 @@ module Aws::SageMaker
|
|
12908
13244
|
class ListHyperParameterTuningJobsResponse < Struct.new(
|
12909
13245
|
:hyper_parameter_tuning_job_summaries,
|
12910
13246
|
:next_token)
|
13247
|
+
SENSITIVE = []
|
12911
13248
|
include Aws::Structure
|
12912
13249
|
end
|
12913
13250
|
|
@@ -12975,6 +13312,7 @@ module Aws::SageMaker
|
|
12975
13312
|
:job_reference_code_contains,
|
12976
13313
|
:sort_by,
|
12977
13314
|
:sort_order)
|
13315
|
+
SENSITIVE = []
|
12978
13316
|
include Aws::Structure
|
12979
13317
|
end
|
12980
13318
|
|
@@ -12994,6 +13332,7 @@ module Aws::SageMaker
|
|
12994
13332
|
class ListLabelingJobsForWorkteamResponse < Struct.new(
|
12995
13333
|
:labeling_job_summary_list,
|
12996
13334
|
:next_token)
|
13335
|
+
SENSITIVE = []
|
12997
13336
|
include Aws::Structure
|
12998
13337
|
end
|
12999
13338
|
|
@@ -13074,6 +13413,7 @@ module Aws::SageMaker
|
|
13074
13413
|
:sort_by,
|
13075
13414
|
:sort_order,
|
13076
13415
|
:status_equals)
|
13416
|
+
SENSITIVE = []
|
13077
13417
|
include Aws::Structure
|
13078
13418
|
end
|
13079
13419
|
|
@@ -13093,6 +13433,7 @@ module Aws::SageMaker
|
|
13093
13433
|
class ListLabelingJobsResponse < Struct.new(
|
13094
13434
|
:labeling_job_summary_list,
|
13095
13435
|
:next_token)
|
13436
|
+
SENSITIVE = []
|
13096
13437
|
include Aws::Structure
|
13097
13438
|
end
|
13098
13439
|
|
@@ -13153,6 +13494,7 @@ module Aws::SageMaker
|
|
13153
13494
|
:next_token,
|
13154
13495
|
:sort_by,
|
13155
13496
|
:sort_order)
|
13497
|
+
SENSITIVE = []
|
13156
13498
|
include Aws::Structure
|
13157
13499
|
end
|
13158
13500
|
|
@@ -13172,6 +13514,7 @@ module Aws::SageMaker
|
|
13172
13514
|
class ListModelPackagesOutput < Struct.new(
|
13173
13515
|
:model_package_summary_list,
|
13174
13516
|
:next_token)
|
13517
|
+
SENSITIVE = []
|
13175
13518
|
include Aws::Structure
|
13176
13519
|
end
|
13177
13520
|
|
@@ -13231,6 +13574,7 @@ module Aws::SageMaker
|
|
13231
13574
|
:name_contains,
|
13232
13575
|
:creation_time_before,
|
13233
13576
|
:creation_time_after)
|
13577
|
+
SENSITIVE = []
|
13234
13578
|
include Aws::Structure
|
13235
13579
|
end
|
13236
13580
|
|
@@ -13249,6 +13593,7 @@ module Aws::SageMaker
|
|
13249
13593
|
class ListModelsOutput < Struct.new(
|
13250
13594
|
:models,
|
13251
13595
|
:next_token)
|
13596
|
+
SENSITIVE = []
|
13252
13597
|
include Aws::Structure
|
13253
13598
|
end
|
13254
13599
|
|
@@ -13343,6 +13688,7 @@ module Aws::SageMaker
|
|
13343
13688
|
:last_modified_time_before,
|
13344
13689
|
:last_modified_time_after,
|
13345
13690
|
:status_equals)
|
13691
|
+
SENSITIVE = []
|
13346
13692
|
include Aws::Structure
|
13347
13693
|
end
|
13348
13694
|
|
@@ -13361,6 +13707,7 @@ module Aws::SageMaker
|
|
13361
13707
|
class ListMonitoringExecutionsResponse < Struct.new(
|
13362
13708
|
:monitoring_execution_summaries,
|
13363
13709
|
:next_token)
|
13710
|
+
SENSITIVE = []
|
13364
13711
|
include Aws::Structure
|
13365
13712
|
end
|
13366
13713
|
|
@@ -13449,6 +13796,7 @@ module Aws::SageMaker
|
|
13449
13796
|
:last_modified_time_before,
|
13450
13797
|
:last_modified_time_after,
|
13451
13798
|
:status_equals)
|
13799
|
+
SENSITIVE = []
|
13452
13800
|
include Aws::Structure
|
13453
13801
|
end
|
13454
13802
|
|
@@ -13467,6 +13815,7 @@ module Aws::SageMaker
|
|
13467
13815
|
class ListMonitoringSchedulesResponse < Struct.new(
|
13468
13816
|
:monitoring_schedule_summaries,
|
13469
13817
|
:next_token)
|
13818
|
+
SENSITIVE = []
|
13470
13819
|
include Aws::Structure
|
13471
13820
|
end
|
13472
13821
|
|
@@ -13542,6 +13891,7 @@ module Aws::SageMaker
|
|
13542
13891
|
:creation_time_after,
|
13543
13892
|
:last_modified_time_before,
|
13544
13893
|
:last_modified_time_after)
|
13894
|
+
SENSITIVE = []
|
13545
13895
|
include Aws::Structure
|
13546
13896
|
end
|
13547
13897
|
|
@@ -13561,6 +13911,7 @@ module Aws::SageMaker
|
|
13561
13911
|
class ListNotebookInstanceLifecycleConfigsOutput < Struct.new(
|
13562
13912
|
:next_token,
|
13563
13913
|
:notebook_instance_lifecycle_configs)
|
13914
|
+
SENSITIVE = []
|
13564
13915
|
include Aws::Structure
|
13565
13916
|
end
|
13566
13917
|
|
@@ -13673,6 +14024,7 @@ module Aws::SageMaker
|
|
13673
14024
|
:notebook_instance_lifecycle_config_name_contains,
|
13674
14025
|
:default_code_repository_contains,
|
13675
14026
|
:additional_code_repository_equals)
|
14027
|
+
SENSITIVE = []
|
13676
14028
|
include Aws::Structure
|
13677
14029
|
end
|
13678
14030
|
|
@@ -13692,6 +14044,7 @@ module Aws::SageMaker
|
|
13692
14044
|
class ListNotebookInstancesOutput < Struct.new(
|
13693
14045
|
:next_token,
|
13694
14046
|
:notebook_instances)
|
14047
|
+
SENSITIVE = []
|
13695
14048
|
include Aws::Structure
|
13696
14049
|
end
|
13697
14050
|
|
@@ -13771,6 +14124,7 @@ module Aws::SageMaker
|
|
13771
14124
|
:sort_order,
|
13772
14125
|
:next_token,
|
13773
14126
|
:max_results)
|
14127
|
+
SENSITIVE = []
|
13774
14128
|
include Aws::Structure
|
13775
14129
|
end
|
13776
14130
|
|
@@ -13790,6 +14144,7 @@ module Aws::SageMaker
|
|
13790
14144
|
class ListProcessingJobsResponse < Struct.new(
|
13791
14145
|
:processing_job_summaries,
|
13792
14146
|
:next_token)
|
14147
|
+
SENSITIVE = []
|
13793
14148
|
include Aws::Structure
|
13794
14149
|
end
|
13795
14150
|
|
@@ -13824,6 +14179,7 @@ module Aws::SageMaker
|
|
13824
14179
|
:name_contains,
|
13825
14180
|
:next_token,
|
13826
14181
|
:max_results)
|
14182
|
+
SENSITIVE = []
|
13827
14183
|
include Aws::Structure
|
13828
14184
|
end
|
13829
14185
|
|
@@ -13842,6 +14198,7 @@ module Aws::SageMaker
|
|
13842
14198
|
class ListSubscribedWorkteamsResponse < Struct.new(
|
13843
14199
|
:subscribed_workteams,
|
13844
14200
|
:next_token)
|
14201
|
+
SENSITIVE = []
|
13845
14202
|
include Aws::Structure
|
13846
14203
|
end
|
13847
14204
|
|
@@ -13875,6 +14232,7 @@ module Aws::SageMaker
|
|
13875
14232
|
:resource_arn,
|
13876
14233
|
:next_token,
|
13877
14234
|
:max_results)
|
14235
|
+
SENSITIVE = []
|
13878
14236
|
include Aws::Structure
|
13879
14237
|
end
|
13880
14238
|
|
@@ -13893,6 +14251,7 @@ module Aws::SageMaker
|
|
13893
14251
|
class ListTagsOutput < Struct.new(
|
13894
14252
|
:tags,
|
13895
14253
|
:next_token)
|
14254
|
+
SENSITIVE = []
|
13896
14255
|
include Aws::Structure
|
13897
14256
|
end
|
13898
14257
|
|
@@ -13949,6 +14308,7 @@ module Aws::SageMaker
|
|
13949
14308
|
:status_equals,
|
13950
14309
|
:sort_by,
|
13951
14310
|
:sort_order)
|
14311
|
+
SENSITIVE = []
|
13952
14312
|
include Aws::Structure
|
13953
14313
|
end
|
13954
14314
|
|
@@ -13970,6 +14330,7 @@ module Aws::SageMaker
|
|
13970
14330
|
class ListTrainingJobsForHyperParameterTuningJobResponse < Struct.new(
|
13971
14331
|
:training_job_summaries,
|
13972
14332
|
:next_token)
|
14333
|
+
SENSITIVE = []
|
13973
14334
|
include Aws::Structure
|
13974
14335
|
end
|
13975
14336
|
|
@@ -14049,6 +14410,7 @@ module Aws::SageMaker
|
|
14049
14410
|
:status_equals,
|
14050
14411
|
:sort_by,
|
14051
14412
|
:sort_order)
|
14413
|
+
SENSITIVE = []
|
14052
14414
|
include Aws::Structure
|
14053
14415
|
end
|
14054
14416
|
|
@@ -14068,6 +14430,7 @@ module Aws::SageMaker
|
|
14068
14430
|
class ListTrainingJobsResponse < Struct.new(
|
14069
14431
|
:training_job_summaries,
|
14070
14432
|
:next_token)
|
14433
|
+
SENSITIVE = []
|
14071
14434
|
include Aws::Structure
|
14072
14435
|
end
|
14073
14436
|
|
@@ -14148,6 +14511,7 @@ module Aws::SageMaker
|
|
14148
14511
|
:sort_order,
|
14149
14512
|
:next_token,
|
14150
14513
|
:max_results)
|
14514
|
+
SENSITIVE = []
|
14151
14515
|
include Aws::Structure
|
14152
14516
|
end
|
14153
14517
|
|
@@ -14166,6 +14530,7 @@ module Aws::SageMaker
|
|
14166
14530
|
class ListTransformJobsResponse < Struct.new(
|
14167
14531
|
:transform_job_summaries,
|
14168
14532
|
:next_token)
|
14533
|
+
SENSITIVE = []
|
14169
14534
|
include Aws::Structure
|
14170
14535
|
end
|
14171
14536
|
|
@@ -14244,6 +14609,7 @@ module Aws::SageMaker
|
|
14244
14609
|
:sort_order,
|
14245
14610
|
:max_results,
|
14246
14611
|
:next_token)
|
14612
|
+
SENSITIVE = []
|
14247
14613
|
include Aws::Structure
|
14248
14614
|
end
|
14249
14615
|
|
@@ -14260,6 +14626,7 @@ module Aws::SageMaker
|
|
14260
14626
|
class ListTrialComponentsResponse < Struct.new(
|
14261
14627
|
:trial_component_summaries,
|
14262
14628
|
:next_token)
|
14629
|
+
SENSITIVE = []
|
14263
14630
|
include Aws::Structure
|
14264
14631
|
end
|
14265
14632
|
|
@@ -14325,6 +14692,7 @@ module Aws::SageMaker
|
|
14325
14692
|
:sort_order,
|
14326
14693
|
:max_results,
|
14327
14694
|
:next_token)
|
14695
|
+
SENSITIVE = []
|
14328
14696
|
include Aws::Structure
|
14329
14697
|
end
|
14330
14698
|
|
@@ -14341,6 +14709,7 @@ module Aws::SageMaker
|
|
14341
14709
|
class ListTrialsResponse < Struct.new(
|
14342
14710
|
:trial_summaries,
|
14343
14711
|
:next_token)
|
14712
|
+
SENSITIVE = []
|
14344
14713
|
include Aws::Structure
|
14345
14714
|
end
|
14346
14715
|
|
@@ -14391,6 +14760,7 @@ module Aws::SageMaker
|
|
14391
14760
|
:sort_by,
|
14392
14761
|
:domain_id_equals,
|
14393
14762
|
:user_profile_name_contains)
|
14763
|
+
SENSITIVE = []
|
14394
14764
|
include Aws::Structure
|
14395
14765
|
end
|
14396
14766
|
|
@@ -14408,6 +14778,7 @@ module Aws::SageMaker
|
|
14408
14778
|
class ListUserProfilesResponse < Struct.new(
|
14409
14779
|
:user_profiles,
|
14410
14780
|
:next_token)
|
14781
|
+
SENSITIVE = []
|
14411
14782
|
include Aws::Structure
|
14412
14783
|
end
|
14413
14784
|
|
@@ -14454,6 +14825,7 @@ module Aws::SageMaker
|
|
14454
14825
|
:name_contains,
|
14455
14826
|
:next_token,
|
14456
14827
|
:max_results)
|
14828
|
+
SENSITIVE = []
|
14457
14829
|
include Aws::Structure
|
14458
14830
|
end
|
14459
14831
|
|
@@ -14472,6 +14844,7 @@ module Aws::SageMaker
|
|
14472
14844
|
class ListWorkteamsResponse < Struct.new(
|
14473
14845
|
:workteams,
|
14474
14846
|
:next_token)
|
14847
|
+
SENSITIVE = []
|
14475
14848
|
include Aws::Structure
|
14476
14849
|
end
|
14477
14850
|
|
@@ -14496,6 +14869,7 @@ module Aws::SageMaker
|
|
14496
14869
|
#
|
14497
14870
|
class MemberDefinition < Struct.new(
|
14498
14871
|
:cognito_member_definition)
|
14872
|
+
SENSITIVE = []
|
14499
14873
|
include Aws::Structure
|
14500
14874
|
end
|
14501
14875
|
|
@@ -14520,6 +14894,7 @@ module Aws::SageMaker
|
|
14520
14894
|
:metric_name,
|
14521
14895
|
:value,
|
14522
14896
|
:timestamp)
|
14897
|
+
SENSITIVE = []
|
14523
14898
|
include Aws::Structure
|
14524
14899
|
end
|
14525
14900
|
|
@@ -14556,12 +14931,17 @@ module Aws::SageMaker
|
|
14556
14931
|
class MetricDefinition < Struct.new(
|
14557
14932
|
:name,
|
14558
14933
|
:regex)
|
14934
|
+
SENSITIVE = []
|
14559
14935
|
include Aws::Structure
|
14560
14936
|
end
|
14561
14937
|
|
14562
14938
|
# Provides information about the location that is configured for storing
|
14563
14939
|
# model artifacts.
|
14564
14940
|
#
|
14941
|
+
# Model artifacts are the output that results from training a model, and
|
14942
|
+
# typically consist of trained parameters, a model defintion that
|
14943
|
+
# desribes how to compute inferences, and other metadata.
|
14944
|
+
#
|
14565
14945
|
# @!attribute [rw] s3_model_artifacts
|
14566
14946
|
# The path of the S3 object that contains the model artifacts. For
|
14567
14947
|
# example, `s3://bucket-name/keynameprefix/model.tar.gz`.
|
@@ -14571,6 +14951,35 @@ module Aws::SageMaker
|
|
14571
14951
|
#
|
14572
14952
|
class ModelArtifacts < Struct.new(
|
14573
14953
|
:s3_model_artifacts)
|
14954
|
+
SENSITIVE = []
|
14955
|
+
include Aws::Structure
|
14956
|
+
end
|
14957
|
+
|
14958
|
+
# Configures the timeout and maximum number of retries for processing a
|
14959
|
+
# transform job invocation.
|
14960
|
+
#
|
14961
|
+
# @note When making an API call, you may pass ModelClientConfig
|
14962
|
+
# data as a hash:
|
14963
|
+
#
|
14964
|
+
# {
|
14965
|
+
# invocations_timeout_in_seconds: 1,
|
14966
|
+
# invocations_max_retries: 1,
|
14967
|
+
# }
|
14968
|
+
#
|
14969
|
+
# @!attribute [rw] invocations_timeout_in_seconds
|
14970
|
+
# The timeout value in seconds for an invocation request.
|
14971
|
+
# @return [Integer]
|
14972
|
+
#
|
14973
|
+
# @!attribute [rw] invocations_max_retries
|
14974
|
+
# The maximum number of retries when invocation requests are failing.
|
14975
|
+
# @return [Integer]
|
14976
|
+
#
|
14977
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ModelClientConfig AWS API Documentation
|
14978
|
+
#
|
14979
|
+
class ModelClientConfig < Struct.new(
|
14980
|
+
:invocations_timeout_in_seconds,
|
14981
|
+
:invocations_max_retries)
|
14982
|
+
SENSITIVE = []
|
14574
14983
|
include Aws::Structure
|
14575
14984
|
end
|
14576
14985
|
|
@@ -14630,6 +15039,7 @@ module Aws::SageMaker
|
|
14630
15039
|
:image_digest,
|
14631
15040
|
:model_data_url,
|
14632
15041
|
:product_id)
|
15042
|
+
SENSITIVE = []
|
14633
15043
|
include Aws::Structure
|
14634
15044
|
end
|
14635
15045
|
|
@@ -14649,6 +15059,7 @@ module Aws::SageMaker
|
|
14649
15059
|
class ModelPackageStatusDetails < Struct.new(
|
14650
15060
|
:validation_statuses,
|
14651
15061
|
:image_scan_statuses)
|
15062
|
+
SENSITIVE = []
|
14652
15063
|
include Aws::Structure
|
14653
15064
|
end
|
14654
15065
|
|
@@ -14673,6 +15084,7 @@ module Aws::SageMaker
|
|
14673
15084
|
:name,
|
14674
15085
|
:status,
|
14675
15086
|
:failure_reason)
|
15087
|
+
SENSITIVE = []
|
14676
15088
|
include Aws::Structure
|
14677
15089
|
end
|
14678
15090
|
|
@@ -14706,6 +15118,7 @@ module Aws::SageMaker
|
|
14706
15118
|
:model_package_description,
|
14707
15119
|
:creation_time,
|
14708
15120
|
:model_package_status)
|
15121
|
+
SENSITIVE = []
|
14709
15122
|
include Aws::Structure
|
14710
15123
|
end
|
14711
15124
|
|
@@ -14766,6 +15179,7 @@ module Aws::SageMaker
|
|
14766
15179
|
class ModelPackageValidationProfile < Struct.new(
|
14767
15180
|
:profile_name,
|
14768
15181
|
:transform_job_definition)
|
15182
|
+
SENSITIVE = []
|
14769
15183
|
include Aws::Structure
|
14770
15184
|
end
|
14771
15185
|
|
@@ -14829,6 +15243,7 @@ module Aws::SageMaker
|
|
14829
15243
|
class ModelPackageValidationSpecification < Struct.new(
|
14830
15244
|
:validation_role,
|
14831
15245
|
:validation_profiles)
|
15246
|
+
SENSITIVE = []
|
14832
15247
|
include Aws::Structure
|
14833
15248
|
end
|
14834
15249
|
|
@@ -14852,6 +15267,7 @@ module Aws::SageMaker
|
|
14852
15267
|
:model_name,
|
14853
15268
|
:model_arn,
|
14854
15269
|
:creation_time)
|
15270
|
+
SENSITIVE = []
|
14855
15271
|
include Aws::Structure
|
14856
15272
|
end
|
14857
15273
|
|
@@ -14903,6 +15319,7 @@ module Aws::SageMaker
|
|
14903
15319
|
:container_arguments,
|
14904
15320
|
:record_preprocessor_source_uri,
|
14905
15321
|
:post_analytics_processor_source_uri)
|
15322
|
+
SENSITIVE = []
|
14906
15323
|
include Aws::Structure
|
14907
15324
|
end
|
14908
15325
|
|
@@ -14938,6 +15355,7 @@ module Aws::SageMaker
|
|
14938
15355
|
class MonitoringBaselineConfig < Struct.new(
|
14939
15356
|
:constraints_resource,
|
14940
15357
|
:statistics_resource)
|
15358
|
+
SENSITIVE = []
|
14941
15359
|
include Aws::Structure
|
14942
15360
|
end
|
14943
15361
|
|
@@ -14981,6 +15399,7 @@ module Aws::SageMaker
|
|
14981
15399
|
:instance_type,
|
14982
15400
|
:volume_size_in_gb,
|
14983
15401
|
:volume_kms_key_id)
|
15402
|
+
SENSITIVE = []
|
14984
15403
|
include Aws::Structure
|
14985
15404
|
end
|
14986
15405
|
|
@@ -15001,6 +15420,7 @@ module Aws::SageMaker
|
|
15001
15420
|
#
|
15002
15421
|
class MonitoringConstraintsResource < Struct.new(
|
15003
15422
|
:s3_uri)
|
15423
|
+
SENSITIVE = []
|
15004
15424
|
include Aws::Structure
|
15005
15425
|
end
|
15006
15426
|
|
@@ -15050,6 +15470,7 @@ module Aws::SageMaker
|
|
15050
15470
|
:processing_job_arn,
|
15051
15471
|
:endpoint_name,
|
15052
15472
|
:failure_reason)
|
15473
|
+
SENSITIVE = []
|
15053
15474
|
include Aws::Structure
|
15054
15475
|
end
|
15055
15476
|
|
@@ -15075,6 +15496,7 @@ module Aws::SageMaker
|
|
15075
15496
|
#
|
15076
15497
|
class MonitoringInput < Struct.new(
|
15077
15498
|
:endpoint_input)
|
15499
|
+
SENSITIVE = []
|
15078
15500
|
include Aws::Structure
|
15079
15501
|
end
|
15080
15502
|
|
@@ -15202,6 +15624,7 @@ module Aws::SageMaker
|
|
15202
15624
|
:environment,
|
15203
15625
|
:network_config,
|
15204
15626
|
:role_arn)
|
15627
|
+
SENSITIVE = []
|
15205
15628
|
include Aws::Structure
|
15206
15629
|
end
|
15207
15630
|
|
@@ -15227,6 +15650,7 @@ module Aws::SageMaker
|
|
15227
15650
|
#
|
15228
15651
|
class MonitoringOutput < Struct.new(
|
15229
15652
|
:s3_output)
|
15653
|
+
SENSITIVE = []
|
15230
15654
|
include Aws::Structure
|
15231
15655
|
end
|
15232
15656
|
|
@@ -15264,6 +15688,7 @@ module Aws::SageMaker
|
|
15264
15688
|
class MonitoringOutputConfig < Struct.new(
|
15265
15689
|
:monitoring_outputs,
|
15266
15690
|
:kms_key_id)
|
15691
|
+
SENSITIVE = []
|
15267
15692
|
include Aws::Structure
|
15268
15693
|
end
|
15269
15694
|
|
@@ -15290,6 +15715,7 @@ module Aws::SageMaker
|
|
15290
15715
|
#
|
15291
15716
|
class MonitoringResources < Struct.new(
|
15292
15717
|
:cluster_config)
|
15718
|
+
SENSITIVE = []
|
15293
15719
|
include Aws::Structure
|
15294
15720
|
end
|
15295
15721
|
|
@@ -15327,6 +15753,7 @@ module Aws::SageMaker
|
|
15327
15753
|
:s3_uri,
|
15328
15754
|
:local_path,
|
15329
15755
|
:s3_upload_mode)
|
15756
|
+
SENSITIVE = []
|
15330
15757
|
include Aws::Structure
|
15331
15758
|
end
|
15332
15759
|
|
@@ -15416,6 +15843,7 @@ module Aws::SageMaker
|
|
15416
15843
|
class MonitoringScheduleConfig < Struct.new(
|
15417
15844
|
:schedule_config,
|
15418
15845
|
:monitoring_job_definition)
|
15846
|
+
SENSITIVE = []
|
15419
15847
|
include Aws::Structure
|
15420
15848
|
end
|
15421
15849
|
|
@@ -15454,6 +15882,7 @@ module Aws::SageMaker
|
|
15454
15882
|
:last_modified_time,
|
15455
15883
|
:monitoring_schedule_status,
|
15456
15884
|
:endpoint_name)
|
15885
|
+
SENSITIVE = []
|
15457
15886
|
include Aws::Structure
|
15458
15887
|
end
|
15459
15888
|
|
@@ -15474,6 +15903,7 @@ module Aws::SageMaker
|
|
15474
15903
|
#
|
15475
15904
|
class MonitoringStatisticsResource < Struct.new(
|
15476
15905
|
:s3_uri)
|
15906
|
+
SENSITIVE = []
|
15477
15907
|
include Aws::Structure
|
15478
15908
|
end
|
15479
15909
|
|
@@ -15495,6 +15925,7 @@ module Aws::SageMaker
|
|
15495
15925
|
#
|
15496
15926
|
class MonitoringStoppingCondition < Struct.new(
|
15497
15927
|
:max_runtime_in_seconds)
|
15928
|
+
SENSITIVE = []
|
15498
15929
|
include Aws::Structure
|
15499
15930
|
end
|
15500
15931
|
|
@@ -15544,6 +15975,7 @@ module Aws::SageMaker
|
|
15544
15975
|
class NestedFilters < Struct.new(
|
15545
15976
|
:nested_property_name,
|
15546
15977
|
:filters)
|
15978
|
+
SENSITIVE = []
|
15547
15979
|
include Aws::Structure
|
15548
15980
|
end
|
15549
15981
|
|
@@ -15595,6 +16027,7 @@ module Aws::SageMaker
|
|
15595
16027
|
:enable_inter_container_traffic_encryption,
|
15596
16028
|
:enable_network_isolation,
|
15597
16029
|
:vpc_config)
|
16030
|
+
SENSITIVE = []
|
15598
16031
|
include Aws::Structure
|
15599
16032
|
end
|
15600
16033
|
|
@@ -15624,6 +16057,7 @@ module Aws::SageMaker
|
|
15624
16057
|
:notebook_instance_lifecycle_config_arn,
|
15625
16058
|
:creation_time,
|
15626
16059
|
:last_modified_time)
|
16060
|
+
SENSITIVE = []
|
15627
16061
|
include Aws::Structure
|
15628
16062
|
end
|
15629
16063
|
|
@@ -15665,6 +16099,7 @@ module Aws::SageMaker
|
|
15665
16099
|
#
|
15666
16100
|
class NotebookInstanceLifecycleHook < Struct.new(
|
15667
16101
|
:content)
|
16102
|
+
SENSITIVE = []
|
15668
16103
|
include Aws::Structure
|
15669
16104
|
end
|
15670
16105
|
|
@@ -15756,6 +16191,7 @@ module Aws::SageMaker
|
|
15756
16191
|
:notebook_instance_lifecycle_config_name,
|
15757
16192
|
:default_code_repository,
|
15758
16193
|
:additional_code_repositories)
|
16194
|
+
SENSITIVE = []
|
15759
16195
|
include Aws::Structure
|
15760
16196
|
end
|
15761
16197
|
|
@@ -15778,6 +16214,7 @@ module Aws::SageMaker
|
|
15778
16214
|
#
|
15779
16215
|
class NotificationConfiguration < Struct.new(
|
15780
16216
|
:notification_topic_arn)
|
16217
|
+
SENSITIVE = []
|
15781
16218
|
include Aws::Structure
|
15782
16219
|
end
|
15783
16220
|
|
@@ -15811,6 +16248,7 @@ module Aws::SageMaker
|
|
15811
16248
|
:succeeded,
|
15812
16249
|
:pending,
|
15813
16250
|
:failed)
|
16251
|
+
SENSITIVE = []
|
15814
16252
|
include Aws::Structure
|
15815
16253
|
end
|
15816
16254
|
|
@@ -15840,6 +16278,7 @@ module Aws::SageMaker
|
|
15840
16278
|
class OutputConfig < Struct.new(
|
15841
16279
|
:s3_output_location,
|
15842
16280
|
:target_device)
|
16281
|
+
SENSITIVE = []
|
15843
16282
|
include Aws::Structure
|
15844
16283
|
end
|
15845
16284
|
|
@@ -15910,6 +16349,7 @@ module Aws::SageMaker
|
|
15910
16349
|
class OutputDataConfig < Struct.new(
|
15911
16350
|
:kms_key_id,
|
15912
16351
|
:s3_output_path)
|
16352
|
+
SENSITIVE = []
|
15913
16353
|
include Aws::Structure
|
15914
16354
|
end
|
15915
16355
|
|
@@ -15954,6 +16394,7 @@ module Aws::SageMaker
|
|
15954
16394
|
:integer_parameter_range_specification,
|
15955
16395
|
:continuous_parameter_range_specification,
|
15956
16396
|
:categorical_parameter_range_specification)
|
16397
|
+
SENSITIVE = []
|
15957
16398
|
include Aws::Structure
|
15958
16399
|
end
|
15959
16400
|
|
@@ -16021,6 +16462,7 @@ module Aws::SageMaker
|
|
16021
16462
|
:integer_parameter_ranges,
|
16022
16463
|
:continuous_parameter_ranges,
|
16023
16464
|
:categorical_parameter_ranges)
|
16465
|
+
SENSITIVE = []
|
16024
16466
|
include Aws::Structure
|
16025
16467
|
end
|
16026
16468
|
|
@@ -16041,6 +16483,7 @@ module Aws::SageMaker
|
|
16041
16483
|
class Parent < Struct.new(
|
16042
16484
|
:trial_name,
|
16043
16485
|
:experiment_name)
|
16486
|
+
SENSITIVE = []
|
16044
16487
|
include Aws::Structure
|
16045
16488
|
end
|
16046
16489
|
|
@@ -16063,6 +16506,7 @@ module Aws::SageMaker
|
|
16063
16506
|
#
|
16064
16507
|
class ParentHyperParameterTuningJob < Struct.new(
|
16065
16508
|
:hyper_parameter_tuning_job_name)
|
16509
|
+
SENSITIVE = []
|
16066
16510
|
include Aws::Structure
|
16067
16511
|
end
|
16068
16512
|
|
@@ -16106,6 +16550,7 @@ module Aws::SageMaker
|
|
16106
16550
|
:instance_type,
|
16107
16551
|
:volume_size_in_gb,
|
16108
16552
|
:volume_kms_key_id)
|
16553
|
+
SENSITIVE = []
|
16109
16554
|
include Aws::Structure
|
16110
16555
|
end
|
16111
16556
|
|
@@ -16139,6 +16584,7 @@ module Aws::SageMaker
|
|
16139
16584
|
class ProcessingInput < Struct.new(
|
16140
16585
|
:input_name,
|
16141
16586
|
:s3_input)
|
16587
|
+
SENSITIVE = []
|
16142
16588
|
include Aws::Structure
|
16143
16589
|
end
|
16144
16590
|
|
@@ -16282,6 +16728,7 @@ module Aws::SageMaker
|
|
16282
16728
|
:auto_ml_job_arn,
|
16283
16729
|
:training_job_arn,
|
16284
16730
|
:tags)
|
16731
|
+
SENSITIVE = []
|
16285
16732
|
include Aws::Structure
|
16286
16733
|
end
|
16287
16734
|
|
@@ -16333,6 +16780,7 @@ module Aws::SageMaker
|
|
16333
16780
|
:processing_job_status,
|
16334
16781
|
:failure_reason,
|
16335
16782
|
:exit_message)
|
16783
|
+
SENSITIVE = []
|
16336
16784
|
include Aws::Structure
|
16337
16785
|
end
|
16338
16786
|
|
@@ -16363,6 +16811,7 @@ module Aws::SageMaker
|
|
16363
16811
|
class ProcessingOutput < Struct.new(
|
16364
16812
|
:output_name,
|
16365
16813
|
:s3_output)
|
16814
|
+
SENSITIVE = []
|
16366
16815
|
include Aws::Structure
|
16367
16816
|
end
|
16368
16817
|
|
@@ -16401,6 +16850,7 @@ module Aws::SageMaker
|
|
16401
16850
|
class ProcessingOutputConfig < Struct.new(
|
16402
16851
|
:outputs,
|
16403
16852
|
:kms_key_id)
|
16853
|
+
SENSITIVE = []
|
16404
16854
|
include Aws::Structure
|
16405
16855
|
end
|
16406
16856
|
|
@@ -16429,6 +16879,7 @@ module Aws::SageMaker
|
|
16429
16879
|
#
|
16430
16880
|
class ProcessingResources < Struct.new(
|
16431
16881
|
:cluster_config)
|
16882
|
+
SENSITIVE = []
|
16432
16883
|
include Aws::Structure
|
16433
16884
|
end
|
16434
16885
|
|
@@ -16495,6 +16946,7 @@ module Aws::SageMaker
|
|
16495
16946
|
:s3_input_mode,
|
16496
16947
|
:s3_data_distribution_type,
|
16497
16948
|
:s3_compression_type)
|
16949
|
+
SENSITIVE = []
|
16498
16950
|
include Aws::Structure
|
16499
16951
|
end
|
16500
16952
|
|
@@ -16532,6 +16984,7 @@ module Aws::SageMaker
|
|
16532
16984
|
:s3_uri,
|
16533
16985
|
:local_path,
|
16534
16986
|
:s3_upload_mode)
|
16987
|
+
SENSITIVE = []
|
16535
16988
|
include Aws::Structure
|
16536
16989
|
end
|
16537
16990
|
|
@@ -16553,6 +17006,7 @@ module Aws::SageMaker
|
|
16553
17006
|
#
|
16554
17007
|
class ProcessingStoppingCondition < Struct.new(
|
16555
17008
|
:max_runtime_in_seconds)
|
17009
|
+
SENSITIVE = []
|
16556
17010
|
include Aws::Structure
|
16557
17011
|
end
|
16558
17012
|
|
@@ -16618,6 +17072,7 @@ module Aws::SageMaker
|
|
16618
17072
|
:instance_type,
|
16619
17073
|
:initial_variant_weight,
|
16620
17074
|
:accelerator_type)
|
17075
|
+
SENSITIVE = []
|
16621
17076
|
include Aws::Structure
|
16622
17077
|
end
|
16623
17078
|
|
@@ -16663,6 +17118,7 @@ module Aws::SageMaker
|
|
16663
17118
|
:desired_weight,
|
16664
17119
|
:current_instance_count,
|
16665
17120
|
:desired_instance_count)
|
17121
|
+
SENSITIVE = []
|
16666
17122
|
include Aws::Structure
|
16667
17123
|
end
|
16668
17124
|
|
@@ -16684,6 +17140,7 @@ module Aws::SageMaker
|
|
16684
17140
|
#
|
16685
17141
|
class PropertyNameQuery < Struct.new(
|
16686
17142
|
:property_name_hint)
|
17143
|
+
SENSITIVE = []
|
16687
17144
|
include Aws::Structure
|
16688
17145
|
end
|
16689
17146
|
|
@@ -16699,6 +17156,7 @@ module Aws::SageMaker
|
|
16699
17156
|
#
|
16700
17157
|
class PropertyNameSuggestion < Struct.new(
|
16701
17158
|
:property_name)
|
17159
|
+
SENSITIVE = []
|
16702
17160
|
include Aws::Structure
|
16703
17161
|
end
|
16704
17162
|
|
@@ -16928,6 +17386,7 @@ module Aws::SageMaker
|
|
16928
17386
|
#
|
16929
17387
|
class PublicWorkforceTaskPrice < Struct.new(
|
16930
17388
|
:amount_in_usd)
|
17389
|
+
SENSITIVE = []
|
16931
17390
|
include Aws::Structure
|
16932
17391
|
end
|
16933
17392
|
|
@@ -16942,6 +17401,7 @@ module Aws::SageMaker
|
|
16942
17401
|
# input: "TaskInput", # required
|
16943
17402
|
# },
|
16944
17403
|
# role_arn: "RoleArn", # required
|
17404
|
+
# human_task_ui_arn: "HumanTaskUiArn",
|
16945
17405
|
# }
|
16946
17406
|
#
|
16947
17407
|
# @!attribute [rw] ui_template
|
@@ -16958,12 +17418,20 @@ module Aws::SageMaker
|
|
16958
17418
|
# that are used by the template.
|
16959
17419
|
# @return [String]
|
16960
17420
|
#
|
17421
|
+
# @!attribute [rw] human_task_ui_arn
|
17422
|
+
# The `HumanTaskUiArn` of the worker UI that you want to render. Do
|
17423
|
+
# not provide a `HumanTaskUiArn` if you use the `UiTemplate`
|
17424
|
+
# parameter.
|
17425
|
+
# @return [String]
|
17426
|
+
#
|
16961
17427
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/RenderUiTemplateRequest AWS API Documentation
|
16962
17428
|
#
|
16963
17429
|
class RenderUiTemplateRequest < Struct.new(
|
16964
17430
|
:ui_template,
|
16965
17431
|
:task,
|
16966
|
-
:role_arn
|
17432
|
+
:role_arn,
|
17433
|
+
:human_task_ui_arn)
|
17434
|
+
SENSITIVE = []
|
16967
17435
|
include Aws::Structure
|
16968
17436
|
end
|
16969
17437
|
|
@@ -16982,6 +17450,7 @@ module Aws::SageMaker
|
|
16982
17450
|
class RenderUiTemplateResponse < Struct.new(
|
16983
17451
|
:rendered_content,
|
16984
17452
|
:errors)
|
17453
|
+
SENSITIVE = []
|
16985
17454
|
include Aws::Structure
|
16986
17455
|
end
|
16987
17456
|
|
@@ -17006,6 +17475,7 @@ module Aws::SageMaker
|
|
17006
17475
|
#
|
17007
17476
|
class RenderableTask < Struct.new(
|
17008
17477
|
:input)
|
17478
|
+
SENSITIVE = []
|
17009
17479
|
include Aws::Structure
|
17010
17480
|
end
|
17011
17481
|
|
@@ -17024,6 +17494,7 @@ module Aws::SageMaker
|
|
17024
17494
|
class RenderingError < Struct.new(
|
17025
17495
|
:code,
|
17026
17496
|
:message)
|
17497
|
+
SENSITIVE = []
|
17027
17498
|
include Aws::Structure
|
17028
17499
|
end
|
17029
17500
|
|
@@ -17048,6 +17519,7 @@ module Aws::SageMaker
|
|
17048
17519
|
:auto_ml_job_objective,
|
17049
17520
|
:problem_type,
|
17050
17521
|
:completion_criteria)
|
17522
|
+
SENSITIVE = []
|
17051
17523
|
include Aws::Structure
|
17052
17524
|
end
|
17053
17525
|
|
@@ -17148,6 +17620,7 @@ module Aws::SageMaker
|
|
17148
17620
|
:instance_count,
|
17149
17621
|
:volume_size_in_gb,
|
17150
17622
|
:volume_kms_key_id)
|
17623
|
+
SENSITIVE = []
|
17151
17624
|
include Aws::Structure
|
17152
17625
|
end
|
17153
17626
|
|
@@ -17160,6 +17633,7 @@ module Aws::SageMaker
|
|
17160
17633
|
#
|
17161
17634
|
class ResourceInUse < Struct.new(
|
17162
17635
|
:message)
|
17636
|
+
SENSITIVE = []
|
17163
17637
|
include Aws::Structure
|
17164
17638
|
end
|
17165
17639
|
|
@@ -17173,6 +17647,7 @@ module Aws::SageMaker
|
|
17173
17647
|
#
|
17174
17648
|
class ResourceLimitExceeded < Struct.new(
|
17175
17649
|
:message)
|
17650
|
+
SENSITIVE = []
|
17176
17651
|
include Aws::Structure
|
17177
17652
|
end
|
17178
17653
|
|
@@ -17202,6 +17677,7 @@ module Aws::SageMaker
|
|
17202
17677
|
class ResourceLimits < Struct.new(
|
17203
17678
|
:max_number_of_training_jobs,
|
17204
17679
|
:max_parallel_training_jobs)
|
17680
|
+
SENSITIVE = []
|
17205
17681
|
include Aws::Structure
|
17206
17682
|
end
|
17207
17683
|
|
@@ -17214,11 +17690,12 @@ module Aws::SageMaker
|
|
17214
17690
|
#
|
17215
17691
|
class ResourceNotFound < Struct.new(
|
17216
17692
|
:message)
|
17693
|
+
SENSITIVE = []
|
17217
17694
|
include Aws::Structure
|
17218
17695
|
end
|
17219
17696
|
|
17220
17697
|
# The instance type and the Amazon Resource Name (ARN) of the SageMaker
|
17221
|
-
# image created on the instance. The ARN is stored as metadata in
|
17698
|
+
# image created on the instance. The ARN is stored as metadata in
|
17222
17699
|
# SageMaker Studio notebooks.
|
17223
17700
|
#
|
17224
17701
|
# @note When making an API call, you may pass ResourceSpec
|
@@ -17243,6 +17720,7 @@ module Aws::SageMaker
|
|
17243
17720
|
class ResourceSpec < Struct.new(
|
17244
17721
|
:sage_maker_image_arn,
|
17245
17722
|
:instance_type)
|
17723
|
+
SENSITIVE = []
|
17246
17724
|
include Aws::Structure
|
17247
17725
|
end
|
17248
17726
|
|
@@ -17267,6 +17745,7 @@ module Aws::SageMaker
|
|
17267
17745
|
#
|
17268
17746
|
class RetentionPolicy < Struct.new(
|
17269
17747
|
:home_efs_file_system)
|
17748
|
+
SENSITIVE = []
|
17270
17749
|
include Aws::Structure
|
17271
17750
|
end
|
17272
17751
|
|
@@ -17378,6 +17857,7 @@ module Aws::SageMaker
|
|
17378
17857
|
:s3_uri,
|
17379
17858
|
:s3_data_distribution_type,
|
17380
17859
|
:attribute_names)
|
17860
|
+
SENSITIVE = []
|
17381
17861
|
include Aws::Structure
|
17382
17862
|
end
|
17383
17863
|
|
@@ -17437,6 +17917,7 @@ module Aws::SageMaker
|
|
17437
17917
|
#
|
17438
17918
|
class ScheduleConfig < Struct.new(
|
17439
17919
|
:schedule_expression)
|
17920
|
+
SENSITIVE = []
|
17440
17921
|
include Aws::Structure
|
17441
17922
|
end
|
17442
17923
|
|
@@ -17450,8 +17931,7 @@ module Aws::SageMaker
|
|
17450
17931
|
#
|
17451
17932
|
# * A list of `Filter` objects. Each filter defines a simple Boolean
|
17452
17933
|
# expression comprised of a resource property name, Boolean operator,
|
17453
|
-
# and value.
|
17454
|
-
# operator.
|
17934
|
+
# and value.
|
17455
17935
|
#
|
17456
17936
|
# * A list of `NestedFilter` objects. Each nested filter defines a list
|
17457
17937
|
# of Boolean expressions using a list of resource properties. A nested
|
@@ -17543,6 +18023,7 @@ module Aws::SageMaker
|
|
17543
18023
|
:nested_filters,
|
17544
18024
|
:sub_expressions,
|
17545
18025
|
:operator)
|
18026
|
+
SENSITIVE = []
|
17546
18027
|
include Aws::Structure
|
17547
18028
|
end
|
17548
18029
|
|
@@ -17571,6 +18052,7 @@ module Aws::SageMaker
|
|
17571
18052
|
:experiment,
|
17572
18053
|
:trial,
|
17573
18054
|
:trial_component)
|
18055
|
+
SENSITIVE = []
|
17574
18056
|
include Aws::Structure
|
17575
18057
|
end
|
17576
18058
|
|
@@ -17654,6 +18136,7 @@ module Aws::SageMaker
|
|
17654
18136
|
:sort_order,
|
17655
18137
|
:next_token,
|
17656
18138
|
:max_results)
|
18139
|
+
SENSITIVE = []
|
17657
18140
|
include Aws::Structure
|
17658
18141
|
end
|
17659
18142
|
|
@@ -17672,6 +18155,7 @@ module Aws::SageMaker
|
|
17672
18155
|
class SearchResponse < Struct.new(
|
17673
18156
|
:results,
|
17674
18157
|
:next_token)
|
18158
|
+
SENSITIVE = []
|
17675
18159
|
include Aws::Structure
|
17676
18160
|
end
|
17677
18161
|
|
@@ -17791,10 +18275,14 @@ module Aws::SageMaker
|
|
17791
18275
|
:start_time,
|
17792
18276
|
:end_time,
|
17793
18277
|
:status_message)
|
18278
|
+
SENSITIVE = []
|
17794
18279
|
include Aws::Structure
|
17795
18280
|
end
|
17796
18281
|
|
17797
|
-
#
|
18282
|
+
# Specifies options when sharing an Amazon SageMaker Studio notebook.
|
18283
|
+
# These settings are specified as part of `DefaultUserSettings` when the
|
18284
|
+
# CreateDomain API is called, and as part of `UserSettings` when the
|
18285
|
+
# CreateUserProfile API is called.
|
17798
18286
|
#
|
17799
18287
|
# @note When making an API call, you may pass SharingSettings
|
17800
18288
|
# data as a hash:
|
@@ -17806,15 +18294,20 @@ module Aws::SageMaker
|
|
17806
18294
|
# }
|
17807
18295
|
#
|
17808
18296
|
# @!attribute [rw] notebook_output_option
|
17809
|
-
#
|
18297
|
+
# Whether to include the notebook cell output when sharing the
|
18298
|
+
# notebook. The default is `Disabled`.
|
17810
18299
|
# @return [String]
|
17811
18300
|
#
|
17812
18301
|
# @!attribute [rw] s3_output_path
|
17813
|
-
#
|
18302
|
+
# When `NotebookOutputOption` is `Allowed`, the Amazon S3 bucket used
|
18303
|
+
# to save the notebook cell output. If `S3OutputPath` isn't
|
18304
|
+
# specified, a default bucket is used.
|
17814
18305
|
# @return [String]
|
17815
18306
|
#
|
17816
18307
|
# @!attribute [rw] s3_kms_key_id
|
17817
|
-
#
|
18308
|
+
# When `NotebookOutputOption` is `Allowed`, the AWS Key Management
|
18309
|
+
# Service (KMS) encryption key ID used to encrypt the notebook cell
|
18310
|
+
# output in the Amazon S3 bucket.
|
17818
18311
|
# @return [String]
|
17819
18312
|
#
|
17820
18313
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SharingSettings AWS API Documentation
|
@@ -17823,6 +18316,7 @@ module Aws::SageMaker
|
|
17823
18316
|
:notebook_output_option,
|
17824
18317
|
:s3_output_path,
|
17825
18318
|
:s3_kms_key_id)
|
18319
|
+
SENSITIVE = []
|
17826
18320
|
include Aws::Structure
|
17827
18321
|
end
|
17828
18322
|
|
@@ -17858,6 +18352,7 @@ module Aws::SageMaker
|
|
17858
18352
|
#
|
17859
18353
|
class ShuffleConfig < Struct.new(
|
17860
18354
|
:seed)
|
18355
|
+
SENSITIVE = []
|
17861
18356
|
include Aws::Structure
|
17862
18357
|
end
|
17863
18358
|
|
@@ -17892,6 +18387,7 @@ module Aws::SageMaker
|
|
17892
18387
|
class SourceAlgorithm < Struct.new(
|
17893
18388
|
:model_data_url,
|
17894
18389
|
:algorithm_name)
|
18390
|
+
SENSITIVE = []
|
17895
18391
|
include Aws::Structure
|
17896
18392
|
end
|
17897
18393
|
|
@@ -17917,6 +18413,7 @@ module Aws::SageMaker
|
|
17917
18413
|
#
|
17918
18414
|
class SourceAlgorithmSpecification < Struct.new(
|
17919
18415
|
:source_algorithms)
|
18416
|
+
SENSITIVE = []
|
17920
18417
|
include Aws::Structure
|
17921
18418
|
end
|
17922
18419
|
|
@@ -17954,6 +18451,7 @@ module Aws::SageMaker
|
|
17954
18451
|
#
|
17955
18452
|
class SourceIpConfig < Struct.new(
|
17956
18453
|
:cidrs)
|
18454
|
+
SENSITIVE = []
|
17957
18455
|
include Aws::Structure
|
17958
18456
|
end
|
17959
18457
|
|
@@ -17972,6 +18470,7 @@ module Aws::SageMaker
|
|
17972
18470
|
#
|
17973
18471
|
class StartMonitoringScheduleRequest < Struct.new(
|
17974
18472
|
:monitoring_schedule_name)
|
18473
|
+
SENSITIVE = []
|
17975
18474
|
include Aws::Structure
|
17976
18475
|
end
|
17977
18476
|
|
@@ -17990,6 +18489,7 @@ module Aws::SageMaker
|
|
17990
18489
|
#
|
17991
18490
|
class StartNotebookInstanceInput < Struct.new(
|
17992
18491
|
:notebook_instance_name)
|
18492
|
+
SENSITIVE = []
|
17993
18493
|
include Aws::Structure
|
17994
18494
|
end
|
17995
18495
|
|
@@ -18008,6 +18508,7 @@ module Aws::SageMaker
|
|
18008
18508
|
#
|
18009
18509
|
class StopAutoMLJobRequest < Struct.new(
|
18010
18510
|
:auto_ml_job_name)
|
18511
|
+
SENSITIVE = []
|
18011
18512
|
include Aws::Structure
|
18012
18513
|
end
|
18013
18514
|
|
@@ -18026,6 +18527,7 @@ module Aws::SageMaker
|
|
18026
18527
|
#
|
18027
18528
|
class StopCompilationJobRequest < Struct.new(
|
18028
18529
|
:compilation_job_name)
|
18530
|
+
SENSITIVE = []
|
18029
18531
|
include Aws::Structure
|
18030
18532
|
end
|
18031
18533
|
|
@@ -18044,6 +18546,7 @@ module Aws::SageMaker
|
|
18044
18546
|
#
|
18045
18547
|
class StopHyperParameterTuningJobRequest < Struct.new(
|
18046
18548
|
:hyper_parameter_tuning_job_name)
|
18549
|
+
SENSITIVE = []
|
18047
18550
|
include Aws::Structure
|
18048
18551
|
end
|
18049
18552
|
|
@@ -18062,6 +18565,7 @@ module Aws::SageMaker
|
|
18062
18565
|
#
|
18063
18566
|
class StopLabelingJobRequest < Struct.new(
|
18064
18567
|
:labeling_job_name)
|
18568
|
+
SENSITIVE = []
|
18065
18569
|
include Aws::Structure
|
18066
18570
|
end
|
18067
18571
|
|
@@ -18080,6 +18584,7 @@ module Aws::SageMaker
|
|
18080
18584
|
#
|
18081
18585
|
class StopMonitoringScheduleRequest < Struct.new(
|
18082
18586
|
:monitoring_schedule_name)
|
18587
|
+
SENSITIVE = []
|
18083
18588
|
include Aws::Structure
|
18084
18589
|
end
|
18085
18590
|
|
@@ -18098,6 +18603,7 @@ module Aws::SageMaker
|
|
18098
18603
|
#
|
18099
18604
|
class StopNotebookInstanceInput < Struct.new(
|
18100
18605
|
:notebook_instance_name)
|
18606
|
+
SENSITIVE = []
|
18101
18607
|
include Aws::Structure
|
18102
18608
|
end
|
18103
18609
|
|
@@ -18116,6 +18622,7 @@ module Aws::SageMaker
|
|
18116
18622
|
#
|
18117
18623
|
class StopProcessingJobRequest < Struct.new(
|
18118
18624
|
:processing_job_name)
|
18625
|
+
SENSITIVE = []
|
18119
18626
|
include Aws::Structure
|
18120
18627
|
end
|
18121
18628
|
|
@@ -18134,6 +18641,7 @@ module Aws::SageMaker
|
|
18134
18641
|
#
|
18135
18642
|
class StopTrainingJobRequest < Struct.new(
|
18136
18643
|
:training_job_name)
|
18644
|
+
SENSITIVE = []
|
18137
18645
|
include Aws::Structure
|
18138
18646
|
end
|
18139
18647
|
|
@@ -18152,6 +18660,7 @@ module Aws::SageMaker
|
|
18152
18660
|
#
|
18153
18661
|
class StopTransformJobRequest < Struct.new(
|
18154
18662
|
:transform_job_name)
|
18663
|
+
SENSITIVE = []
|
18155
18664
|
include Aws::Structure
|
18156
18665
|
end
|
18157
18666
|
|
@@ -18208,6 +18717,7 @@ module Aws::SageMaker
|
|
18208
18717
|
class StoppingCondition < Struct.new(
|
18209
18718
|
:max_runtime_in_seconds,
|
18210
18719
|
:max_wait_time_in_seconds)
|
18720
|
+
SENSITIVE = []
|
18211
18721
|
include Aws::Structure
|
18212
18722
|
end
|
18213
18723
|
|
@@ -18242,6 +18752,7 @@ module Aws::SageMaker
|
|
18242
18752
|
:seller_name,
|
18243
18753
|
:marketplace_description,
|
18244
18754
|
:listing_id)
|
18755
|
+
SENSITIVE = []
|
18245
18756
|
include Aws::Structure
|
18246
18757
|
end
|
18247
18758
|
|
@@ -18266,6 +18777,7 @@ module Aws::SageMaker
|
|
18266
18777
|
#
|
18267
18778
|
class SuggestionQuery < Struct.new(
|
18268
18779
|
:property_name_query)
|
18780
|
+
SENSITIVE = []
|
18269
18781
|
include Aws::Structure
|
18270
18782
|
end
|
18271
18783
|
|
@@ -18292,6 +18804,7 @@ module Aws::SageMaker
|
|
18292
18804
|
class Tag < Struct.new(
|
18293
18805
|
:key,
|
18294
18806
|
:value)
|
18807
|
+
SENSITIVE = []
|
18295
18808
|
include Aws::Structure
|
18296
18809
|
end
|
18297
18810
|
|
@@ -18316,6 +18829,7 @@ module Aws::SageMaker
|
|
18316
18829
|
#
|
18317
18830
|
class TensorBoardAppSettings < Struct.new(
|
18318
18831
|
:default_resource_spec)
|
18832
|
+
SENSITIVE = []
|
18319
18833
|
include Aws::Structure
|
18320
18834
|
end
|
18321
18835
|
|
@@ -18343,6 +18857,7 @@ module Aws::SageMaker
|
|
18343
18857
|
class TensorBoardOutputConfig < Struct.new(
|
18344
18858
|
:local_path,
|
18345
18859
|
:s3_output_path)
|
18860
|
+
SENSITIVE = []
|
18346
18861
|
include Aws::Structure
|
18347
18862
|
end
|
18348
18863
|
|
@@ -18650,6 +19165,7 @@ module Aws::SageMaker
|
|
18650
19165
|
:tensor_board_output_config,
|
18651
19166
|
:debug_rule_evaluation_statuses,
|
18652
19167
|
:tags)
|
19168
|
+
SENSITIVE = []
|
18653
19169
|
include Aws::Structure
|
18654
19170
|
end
|
18655
19171
|
|
@@ -18759,6 +19275,7 @@ module Aws::SageMaker
|
|
18759
19275
|
:output_data_config,
|
18760
19276
|
:resource_config,
|
18761
19277
|
:stopping_condition)
|
19278
|
+
SENSITIVE = []
|
18762
19279
|
include Aws::Structure
|
18763
19280
|
end
|
18764
19281
|
|
@@ -18800,6 +19317,7 @@ module Aws::SageMaker
|
|
18800
19317
|
:retryable_error,
|
18801
19318
|
:non_retryable_error,
|
18802
19319
|
:stopped)
|
19320
|
+
SENSITIVE = []
|
18803
19321
|
include Aws::Structure
|
18804
19322
|
end
|
18805
19323
|
|
@@ -18840,6 +19358,7 @@ module Aws::SageMaker
|
|
18840
19358
|
:training_end_time,
|
18841
19359
|
:last_modified_time,
|
18842
19360
|
:training_job_status)
|
19361
|
+
SENSITIVE = []
|
18843
19362
|
include Aws::Structure
|
18844
19363
|
end
|
18845
19364
|
|
@@ -18953,6 +19472,7 @@ module Aws::SageMaker
|
|
18953
19472
|
:metric_definitions,
|
18954
19473
|
:training_channels,
|
18955
19474
|
:supported_tuning_job_objective_metrics)
|
19475
|
+
SENSITIVE = []
|
18956
19476
|
include Aws::Structure
|
18957
19477
|
end
|
18958
19478
|
|
@@ -18977,6 +19497,7 @@ module Aws::SageMaker
|
|
18977
19497
|
#
|
18978
19498
|
class TransformDataSource < Struct.new(
|
18979
19499
|
:s3_data_source)
|
19500
|
+
SENSITIVE = []
|
18980
19501
|
include Aws::Structure
|
18981
19502
|
end
|
18982
19503
|
|
@@ -19061,6 +19582,7 @@ module Aws::SageMaker
|
|
19061
19582
|
:content_type,
|
19062
19583
|
:compression_type,
|
19063
19584
|
:split_type)
|
19585
|
+
SENSITIVE = []
|
19064
19586
|
include Aws::Structure
|
19065
19587
|
end
|
19066
19588
|
|
@@ -19149,6 +19671,7 @@ module Aws::SageMaker
|
|
19149
19671
|
:transform_input,
|
19150
19672
|
:transform_output,
|
19151
19673
|
:transform_resources)
|
19674
|
+
SENSITIVE = []
|
19152
19675
|
include Aws::Structure
|
19153
19676
|
end
|
19154
19677
|
|
@@ -19197,6 +19720,7 @@ module Aws::SageMaker
|
|
19197
19720
|
:last_modified_time,
|
19198
19721
|
:transform_job_status,
|
19199
19722
|
:failure_reason)
|
19723
|
+
SENSITIVE = []
|
19200
19724
|
include Aws::Structure
|
19201
19725
|
end
|
19202
19726
|
|
@@ -19286,6 +19810,7 @@ module Aws::SageMaker
|
|
19286
19810
|
:accept,
|
19287
19811
|
:assemble_with,
|
19288
19812
|
:kms_key_id)
|
19813
|
+
SENSITIVE = []
|
19289
19814
|
include Aws::Structure
|
19290
19815
|
end
|
19291
19816
|
|
@@ -19336,6 +19861,7 @@ module Aws::SageMaker
|
|
19336
19861
|
:instance_type,
|
19337
19862
|
:instance_count,
|
19338
19863
|
:volume_kms_key_id)
|
19864
|
+
SENSITIVE = []
|
19339
19865
|
include Aws::Structure
|
19340
19866
|
end
|
19341
19867
|
|
@@ -19409,6 +19935,7 @@ module Aws::SageMaker
|
|
19409
19935
|
class TransformS3DataSource < Struct.new(
|
19410
19936
|
:s3_data_type,
|
19411
19937
|
:s3_uri)
|
19938
|
+
SENSITIVE = []
|
19412
19939
|
include Aws::Structure
|
19413
19940
|
end
|
19414
19941
|
|
@@ -19477,6 +20004,7 @@ module Aws::SageMaker
|
|
19477
20004
|
:last_modified_by,
|
19478
20005
|
:tags,
|
19479
20006
|
:trial_component_summaries)
|
20007
|
+
SENSITIVE = []
|
19480
20008
|
include Aws::Structure
|
19481
20009
|
end
|
19482
20010
|
|
@@ -19582,6 +20110,7 @@ module Aws::SageMaker
|
|
19582
20110
|
:source_detail,
|
19583
20111
|
:tags,
|
19584
20112
|
:parents)
|
20113
|
+
SENSITIVE = []
|
19585
20114
|
include Aws::Structure
|
19586
20115
|
end
|
19587
20116
|
|
@@ -19618,6 +20147,7 @@ module Aws::SageMaker
|
|
19618
20147
|
class TrialComponentArtifact < Struct.new(
|
19619
20148
|
:media_type,
|
19620
20149
|
:value)
|
20150
|
+
SENSITIVE = []
|
19621
20151
|
include Aws::Structure
|
19622
20152
|
end
|
19623
20153
|
|
@@ -19671,6 +20201,7 @@ module Aws::SageMaker
|
|
19671
20201
|
:count,
|
19672
20202
|
:avg,
|
19673
20203
|
:std_dev)
|
20204
|
+
SENSITIVE = []
|
19674
20205
|
include Aws::Structure
|
19675
20206
|
end
|
19676
20207
|
|
@@ -19704,6 +20235,7 @@ module Aws::SageMaker
|
|
19704
20235
|
class TrialComponentParameterValue < Struct.new(
|
19705
20236
|
:string_value,
|
19706
20237
|
:number_value)
|
20238
|
+
SENSITIVE = []
|
19707
20239
|
include Aws::Structure
|
19708
20240
|
end
|
19709
20241
|
|
@@ -19739,6 +20271,7 @@ module Aws::SageMaker
|
|
19739
20271
|
:trial_component_source,
|
19740
20272
|
:creation_time,
|
19741
20273
|
:created_by)
|
20274
|
+
SENSITIVE = []
|
19742
20275
|
include Aws::Structure
|
19743
20276
|
end
|
19744
20277
|
|
@@ -19758,6 +20291,7 @@ module Aws::SageMaker
|
|
19758
20291
|
class TrialComponentSource < Struct.new(
|
19759
20292
|
:source_arn,
|
19760
20293
|
:source_type)
|
20294
|
+
SENSITIVE = []
|
19761
20295
|
include Aws::Structure
|
19762
20296
|
end
|
19763
20297
|
|
@@ -19784,6 +20318,7 @@ module Aws::SageMaker
|
|
19784
20318
|
:source_arn,
|
19785
20319
|
:training_job,
|
19786
20320
|
:processing_job)
|
20321
|
+
SENSITIVE = []
|
19787
20322
|
include Aws::Structure
|
19788
20323
|
end
|
19789
20324
|
|
@@ -19810,6 +20345,7 @@ module Aws::SageMaker
|
|
19810
20345
|
class TrialComponentStatus < Struct.new(
|
19811
20346
|
:primary_status,
|
19812
20347
|
:message)
|
20348
|
+
SENSITIVE = []
|
19813
20349
|
include Aws::Structure
|
19814
20350
|
end
|
19815
20351
|
|
@@ -19883,6 +20419,7 @@ module Aws::SageMaker
|
|
19883
20419
|
:created_by,
|
19884
20420
|
:last_modified_time,
|
19885
20421
|
:last_modified_by)
|
20422
|
+
SENSITIVE = []
|
19886
20423
|
include Aws::Structure
|
19887
20424
|
end
|
19888
20425
|
|
@@ -19901,6 +20438,7 @@ module Aws::SageMaker
|
|
19901
20438
|
class TrialSource < Struct.new(
|
19902
20439
|
:source_arn,
|
19903
20440
|
:source_type)
|
20441
|
+
SENSITIVE = []
|
19904
20442
|
include Aws::Structure
|
19905
20443
|
end
|
19906
20444
|
|
@@ -19941,6 +20479,7 @@ module Aws::SageMaker
|
|
19941
20479
|
:trial_source,
|
19942
20480
|
:creation_time,
|
19943
20481
|
:last_modified_time)
|
20482
|
+
SENSITIVE = []
|
19944
20483
|
include Aws::Structure
|
19945
20484
|
end
|
19946
20485
|
|
@@ -19961,6 +20500,7 @@ module Aws::SageMaker
|
|
19961
20500
|
#
|
19962
20501
|
class TuningJobCompletionCriteria < Struct.new(
|
19963
20502
|
:target_objective_metric_value)
|
20503
|
+
SENSITIVE = []
|
19964
20504
|
include Aws::Structure
|
19965
20505
|
end
|
19966
20506
|
|
@@ -19993,6 +20533,7 @@ module Aws::SageMaker
|
|
19993
20533
|
:dollars,
|
19994
20534
|
:cents,
|
19995
20535
|
:tenth_fractions_of_a_cent)
|
20536
|
+
SENSITIVE = []
|
19996
20537
|
include Aws::Structure
|
19997
20538
|
end
|
19998
20539
|
|
@@ -20004,22 +20545,33 @@ module Aws::SageMaker
|
|
20004
20545
|
#
|
20005
20546
|
# {
|
20006
20547
|
# ui_template_s3_uri: "S3Uri",
|
20548
|
+
# human_task_ui_arn: "HumanTaskUiArn",
|
20007
20549
|
# }
|
20008
20550
|
#
|
20009
20551
|
# @!attribute [rw] ui_template_s3_uri
|
20010
|
-
# The Amazon S3 bucket location of the UI template
|
20011
|
-
#
|
20012
|
-
#
|
20552
|
+
# The Amazon S3 bucket location of the UI template, or worker task
|
20553
|
+
# template. This is the template used to render the worker UI and
|
20554
|
+
# tools for labeling job tasks. For more information about the
|
20555
|
+
# contents of a UI template, see [ Creating Your Custom Labeling Task
|
20556
|
+
# Template][1].
|
20013
20557
|
#
|
20014
20558
|
#
|
20015
20559
|
#
|
20016
20560
|
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/sms-custom-templates-step2.html
|
20017
20561
|
# @return [String]
|
20018
20562
|
#
|
20563
|
+
# @!attribute [rw] human_task_ui_arn
|
20564
|
+
# The ARN of the worker task template used to render the worker UI and
|
20565
|
+
# tools for labeling job tasks. Do not use this parameter if you use
|
20566
|
+
# UiTemplateS3Uri.
|
20567
|
+
# @return [String]
|
20568
|
+
#
|
20019
20569
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UiConfig AWS API Documentation
|
20020
20570
|
#
|
20021
20571
|
class UiConfig < Struct.new(
|
20022
|
-
:ui_template_s3_uri
|
20572
|
+
:ui_template_s3_uri,
|
20573
|
+
:human_task_ui_arn)
|
20574
|
+
SENSITIVE = []
|
20023
20575
|
include Aws::Structure
|
20024
20576
|
end
|
20025
20577
|
|
@@ -20040,6 +20592,7 @@ module Aws::SageMaker
|
|
20040
20592
|
#
|
20041
20593
|
class UiTemplate < Struct.new(
|
20042
20594
|
:content)
|
20595
|
+
SENSITIVE = []
|
20043
20596
|
include Aws::Structure
|
20044
20597
|
end
|
20045
20598
|
|
@@ -20058,6 +20611,7 @@ module Aws::SageMaker
|
|
20058
20611
|
class UiTemplateInfo < Struct.new(
|
20059
20612
|
:url,
|
20060
20613
|
:content_sha_256)
|
20614
|
+
SENSITIVE = []
|
20061
20615
|
include Aws::Structure
|
20062
20616
|
end
|
20063
20617
|
|
@@ -20090,6 +20644,7 @@ module Aws::SageMaker
|
|
20090
20644
|
class UpdateCodeRepositoryInput < Struct.new(
|
20091
20645
|
:code_repository_name,
|
20092
20646
|
:git_config)
|
20647
|
+
SENSITIVE = []
|
20093
20648
|
include Aws::Structure
|
20094
20649
|
end
|
20095
20650
|
|
@@ -20101,6 +20656,7 @@ module Aws::SageMaker
|
|
20101
20656
|
#
|
20102
20657
|
class UpdateCodeRepositoryOutput < Struct.new(
|
20103
20658
|
:code_repository_arn)
|
20659
|
+
SENSITIVE = []
|
20104
20660
|
include Aws::Structure
|
20105
20661
|
end
|
20106
20662
|
|
@@ -20139,7 +20695,7 @@ module Aws::SageMaker
|
|
20139
20695
|
# }
|
20140
20696
|
#
|
20141
20697
|
# @!attribute [rw] domain_id
|
20142
|
-
# The domain
|
20698
|
+
# The ID of the domain to be updated.
|
20143
20699
|
# @return [String]
|
20144
20700
|
#
|
20145
20701
|
# @!attribute [rw] default_user_settings
|
@@ -20151,17 +20707,19 @@ module Aws::SageMaker
|
|
20151
20707
|
class UpdateDomainRequest < Struct.new(
|
20152
20708
|
:domain_id,
|
20153
20709
|
:default_user_settings)
|
20710
|
+
SENSITIVE = []
|
20154
20711
|
include Aws::Structure
|
20155
20712
|
end
|
20156
20713
|
|
20157
20714
|
# @!attribute [rw] domain_arn
|
20158
|
-
# The
|
20715
|
+
# The Amazon Resource Name (ARN) of the domain.
|
20159
20716
|
# @return [String]
|
20160
20717
|
#
|
20161
20718
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateDomainResponse AWS API Documentation
|
20162
20719
|
#
|
20163
20720
|
class UpdateDomainResponse < Struct.new(
|
20164
20721
|
:domain_arn)
|
20722
|
+
SENSITIVE = []
|
20165
20723
|
include Aws::Structure
|
20166
20724
|
end
|
20167
20725
|
|
@@ -20212,6 +20770,7 @@ module Aws::SageMaker
|
|
20212
20770
|
:endpoint_config_name,
|
20213
20771
|
:retain_all_variant_properties,
|
20214
20772
|
:exclude_retained_variant_properties)
|
20773
|
+
SENSITIVE = []
|
20215
20774
|
include Aws::Structure
|
20216
20775
|
end
|
20217
20776
|
|
@@ -20223,6 +20782,7 @@ module Aws::SageMaker
|
|
20223
20782
|
#
|
20224
20783
|
class UpdateEndpointOutput < Struct.new(
|
20225
20784
|
:endpoint_arn)
|
20785
|
+
SENSITIVE = []
|
20226
20786
|
include Aws::Structure
|
20227
20787
|
end
|
20228
20788
|
|
@@ -20254,6 +20814,7 @@ module Aws::SageMaker
|
|
20254
20814
|
class UpdateEndpointWeightsAndCapacitiesInput < Struct.new(
|
20255
20815
|
:endpoint_name,
|
20256
20816
|
:desired_weights_and_capacities)
|
20817
|
+
SENSITIVE = []
|
20257
20818
|
include Aws::Structure
|
20258
20819
|
end
|
20259
20820
|
|
@@ -20265,6 +20826,7 @@ module Aws::SageMaker
|
|
20265
20826
|
#
|
20266
20827
|
class UpdateEndpointWeightsAndCapacitiesOutput < Struct.new(
|
20267
20828
|
:endpoint_arn)
|
20829
|
+
SENSITIVE = []
|
20268
20830
|
include Aws::Structure
|
20269
20831
|
end
|
20270
20832
|
|
@@ -20297,6 +20859,7 @@ module Aws::SageMaker
|
|
20297
20859
|
:experiment_name,
|
20298
20860
|
:display_name,
|
20299
20861
|
:description)
|
20862
|
+
SENSITIVE = []
|
20300
20863
|
include Aws::Structure
|
20301
20864
|
end
|
20302
20865
|
|
@@ -20308,6 +20871,7 @@ module Aws::SageMaker
|
|
20308
20871
|
#
|
20309
20872
|
class UpdateExperimentResponse < Struct.new(
|
20310
20873
|
:experiment_arn)
|
20874
|
+
SENSITIVE = []
|
20311
20875
|
include Aws::Structure
|
20312
20876
|
end
|
20313
20877
|
|
@@ -20400,6 +20964,7 @@ module Aws::SageMaker
|
|
20400
20964
|
class UpdateMonitoringScheduleRequest < Struct.new(
|
20401
20965
|
:monitoring_schedule_name,
|
20402
20966
|
:monitoring_schedule_config)
|
20967
|
+
SENSITIVE = []
|
20403
20968
|
include Aws::Structure
|
20404
20969
|
end
|
20405
20970
|
|
@@ -20411,6 +20976,7 @@ module Aws::SageMaker
|
|
20411
20976
|
#
|
20412
20977
|
class UpdateMonitoringScheduleResponse < Struct.new(
|
20413
20978
|
:monitoring_schedule_arn)
|
20979
|
+
SENSITIVE = []
|
20414
20980
|
include Aws::Structure
|
20415
20981
|
end
|
20416
20982
|
|
@@ -20574,6 +21140,7 @@ module Aws::SageMaker
|
|
20574
21140
|
:disassociate_default_code_repository,
|
20575
21141
|
:disassociate_additional_code_repositories,
|
20576
21142
|
:root_access)
|
21143
|
+
SENSITIVE = []
|
20577
21144
|
include Aws::Structure
|
20578
21145
|
end
|
20579
21146
|
|
@@ -20615,6 +21182,7 @@ module Aws::SageMaker
|
|
20615
21182
|
:notebook_instance_lifecycle_config_name,
|
20616
21183
|
:on_create,
|
20617
21184
|
:on_start)
|
21185
|
+
SENSITIVE = []
|
20618
21186
|
include Aws::Structure
|
20619
21187
|
end
|
20620
21188
|
|
@@ -20724,6 +21292,7 @@ module Aws::SageMaker
|
|
20724
21292
|
:input_artifacts_to_remove,
|
20725
21293
|
:output_artifacts,
|
20726
21294
|
:output_artifacts_to_remove)
|
21295
|
+
SENSITIVE = []
|
20727
21296
|
include Aws::Structure
|
20728
21297
|
end
|
20729
21298
|
|
@@ -20735,6 +21304,7 @@ module Aws::SageMaker
|
|
20735
21304
|
#
|
20736
21305
|
class UpdateTrialComponentResponse < Struct.new(
|
20737
21306
|
:trial_component_arn)
|
21307
|
+
SENSITIVE = []
|
20738
21308
|
include Aws::Structure
|
20739
21309
|
end
|
20740
21310
|
|
@@ -20760,6 +21330,7 @@ module Aws::SageMaker
|
|
20760
21330
|
class UpdateTrialRequest < Struct.new(
|
20761
21331
|
:trial_name,
|
20762
21332
|
:display_name)
|
21333
|
+
SENSITIVE = []
|
20763
21334
|
include Aws::Structure
|
20764
21335
|
end
|
20765
21336
|
|
@@ -20771,6 +21342,7 @@ module Aws::SageMaker
|
|
20771
21342
|
#
|
20772
21343
|
class UpdateTrialResponse < Struct.new(
|
20773
21344
|
:trial_arn)
|
21345
|
+
SENSITIVE = []
|
20774
21346
|
include Aws::Structure
|
20775
21347
|
end
|
20776
21348
|
|
@@ -20827,6 +21399,7 @@ module Aws::SageMaker
|
|
20827
21399
|
:domain_id,
|
20828
21400
|
:user_profile_name,
|
20829
21401
|
:user_settings)
|
21402
|
+
SENSITIVE = []
|
20830
21403
|
include Aws::Structure
|
20831
21404
|
end
|
20832
21405
|
|
@@ -20838,6 +21411,7 @@ module Aws::SageMaker
|
|
20838
21411
|
#
|
20839
21412
|
class UpdateUserProfileResponse < Struct.new(
|
20840
21413
|
:user_profile_arn)
|
21414
|
+
SENSITIVE = []
|
20841
21415
|
include Aws::Structure
|
20842
21416
|
end
|
20843
21417
|
|
@@ -20873,6 +21447,7 @@ module Aws::SageMaker
|
|
20873
21447
|
class UpdateWorkforceRequest < Struct.new(
|
20874
21448
|
:workforce_name,
|
20875
21449
|
:source_ip_config)
|
21450
|
+
SENSITIVE = []
|
20876
21451
|
include Aws::Structure
|
20877
21452
|
end
|
20878
21453
|
|
@@ -20893,6 +21468,7 @@ module Aws::SageMaker
|
|
20893
21468
|
#
|
20894
21469
|
class UpdateWorkforceResponse < Struct.new(
|
20895
21470
|
:workforce)
|
21471
|
+
SENSITIVE = []
|
20896
21472
|
include Aws::Structure
|
20897
21473
|
end
|
20898
21474
|
|
@@ -20941,6 +21517,7 @@ module Aws::SageMaker
|
|
20941
21517
|
:member_definitions,
|
20942
21518
|
:description,
|
20943
21519
|
:notification_configuration)
|
21520
|
+
SENSITIVE = []
|
20944
21521
|
include Aws::Structure
|
20945
21522
|
end
|
20946
21523
|
|
@@ -20952,6 +21529,7 @@ module Aws::SageMaker
|
|
20952
21529
|
#
|
20953
21530
|
class UpdateWorkteamResponse < Struct.new(
|
20954
21531
|
:workteam)
|
21532
|
+
SENSITIVE = []
|
20955
21533
|
include Aws::Structure
|
20956
21534
|
end
|
20957
21535
|
|
@@ -20976,6 +21554,7 @@ module Aws::SageMaker
|
|
20976
21554
|
:user_profile_arn,
|
20977
21555
|
:user_profile_name,
|
20978
21556
|
:domain_id)
|
21557
|
+
SENSITIVE = []
|
20979
21558
|
include Aws::Structure
|
20980
21559
|
end
|
20981
21560
|
|
@@ -21009,6 +21588,7 @@ module Aws::SageMaker
|
|
21009
21588
|
:status,
|
21010
21589
|
:creation_time,
|
21011
21590
|
:last_modified_time)
|
21591
|
+
SENSITIVE = []
|
21012
21592
|
include Aws::Structure
|
21013
21593
|
end
|
21014
21594
|
|
@@ -21078,6 +21658,7 @@ module Aws::SageMaker
|
|
21078
21658
|
:jupyter_server_app_settings,
|
21079
21659
|
:kernel_gateway_app_settings,
|
21080
21660
|
:tensor_board_app_settings)
|
21661
|
+
SENSITIVE = []
|
21081
21662
|
include Aws::Structure
|
21082
21663
|
end
|
21083
21664
|
|
@@ -21114,6 +21695,7 @@ module Aws::SageMaker
|
|
21114
21695
|
#
|
21115
21696
|
class VariantProperty < Struct.new(
|
21116
21697
|
:variant_property_type)
|
21698
|
+
SENSITIVE = []
|
21117
21699
|
include Aws::Structure
|
21118
21700
|
end
|
21119
21701
|
|
@@ -21158,6 +21740,7 @@ module Aws::SageMaker
|
|
21158
21740
|
class VpcConfig < Struct.new(
|
21159
21741
|
:security_group_ids,
|
21160
21742
|
:subnets)
|
21743
|
+
SENSITIVE = []
|
21161
21744
|
include Aws::Structure
|
21162
21745
|
end
|
21163
21746
|
|
@@ -21207,6 +21790,7 @@ module Aws::SageMaker
|
|
21207
21790
|
:workforce_arn,
|
21208
21791
|
:last_updated_date,
|
21209
21792
|
:source_ip_config)
|
21793
|
+
SENSITIVE = []
|
21210
21794
|
include Aws::Structure
|
21211
21795
|
end
|
21212
21796
|
|
@@ -21262,6 +21846,7 @@ module Aws::SageMaker
|
|
21262
21846
|
:create_date,
|
21263
21847
|
:last_updated_date,
|
21264
21848
|
:notification_configuration)
|
21849
|
+
SENSITIVE = []
|
21265
21850
|
include Aws::Structure
|
21266
21851
|
end
|
21267
21852
|
|