aws-sdk-sagemaker 1.56.0 → 1.61.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-sagemaker.rb +3 -1
- data/lib/aws-sdk-sagemaker/client.rb +145 -65
- data/lib/aws-sdk-sagemaker/client_api.rb +7 -2
- 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 +756 -221
- 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:
|
@@ -3049,6 +3051,7 @@ module Aws::SageMaker
|
|
3049
3051
|
|
3050
3052
|
NestedFiltersList.member = Shapes::ShapeRef.new(shape: NestedFilters)
|
3051
3053
|
|
3054
|
+
NetworkConfig.add_member(:enable_inter_container_traffic_encryption, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableInterContainerTrafficEncryption"))
|
3052
3055
|
NetworkConfig.add_member(:enable_network_isolation, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableNetworkIsolation"))
|
3053
3056
|
NetworkConfig.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VpcConfig, location_name: "VpcConfig"))
|
3054
3057
|
NetworkConfig.struct_class = Types::NetworkConfig
|
@@ -3236,9 +3239,10 @@ module Aws::SageMaker
|
|
3236
3239
|
|
3237
3240
|
RealtimeInferenceInstanceTypes.member = Shapes::ShapeRef.new(shape: ProductionVariantInstanceType)
|
3238
3241
|
|
3239
|
-
RenderUiTemplateRequest.add_member(:ui_template, Shapes::ShapeRef.new(shape: UiTemplate,
|
3242
|
+
RenderUiTemplateRequest.add_member(:ui_template, Shapes::ShapeRef.new(shape: UiTemplate, location_name: "UiTemplate"))
|
3240
3243
|
RenderUiTemplateRequest.add_member(:task, Shapes::ShapeRef.new(shape: RenderableTask, required: true, location_name: "Task"))
|
3241
3244
|
RenderUiTemplateRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "RoleArn"))
|
3245
|
+
RenderUiTemplateRequest.add_member(:human_task_ui_arn, Shapes::ShapeRef.new(shape: HumanTaskUiArn, location_name: "HumanTaskUiArn"))
|
3242
3246
|
RenderUiTemplateRequest.struct_class = Types::RenderUiTemplateRequest
|
3243
3247
|
|
3244
3248
|
RenderUiTemplateResponse.add_member(:rendered_content, Shapes::ShapeRef.new(shape: String, required: true, location_name: "RenderedContent"))
|
@@ -3667,7 +3671,8 @@ module Aws::SageMaker
|
|
3667
3671
|
USD.add_member(:tenth_fractions_of_a_cent, Shapes::ShapeRef.new(shape: TenthFractionsOfACent, location_name: "TenthFractionsOfACent"))
|
3668
3672
|
USD.struct_class = Types::USD
|
3669
3673
|
|
3670
|
-
UiConfig.add_member(:ui_template_s3_uri, Shapes::ShapeRef.new(shape: S3Uri,
|
3674
|
+
UiConfig.add_member(:ui_template_s3_uri, Shapes::ShapeRef.new(shape: S3Uri, location_name: "UiTemplateS3Uri"))
|
3675
|
+
UiConfig.add_member(:human_task_ui_arn, Shapes::ShapeRef.new(shape: HumanTaskUiArn, location_name: "HumanTaskUiArn"))
|
3671
3676
|
UiConfig.struct_class = Types::UiConfig
|
3672
3677
|
|
3673
3678
|
UiTemplate.add_member(:content, Shapes::ShapeRef.new(shape: TemplateContent, required: true, location_name: "Content"))
|
@@ -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
|
|
@@ -2271,7 +2316,8 @@ module Aws::SageMaker
|
|
2271
2316
|
# @return [Array<Types::Tag>]
|
2272
2317
|
#
|
2273
2318
|
# @!attribute [rw] resource_spec
|
2274
|
-
# The instance type and
|
2319
|
+
# The instance type and the Amazon Resource Name (ARN) of the
|
2320
|
+
# SageMaker image created on the instance.
|
2275
2321
|
# @return [Types::ResourceSpec]
|
2276
2322
|
#
|
2277
2323
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateAppRequest AWS API Documentation
|
@@ -2283,17 +2329,19 @@ module Aws::SageMaker
|
|
2283
2329
|
:app_name,
|
2284
2330
|
:tags,
|
2285
2331
|
:resource_spec)
|
2332
|
+
SENSITIVE = []
|
2286
2333
|
include Aws::Structure
|
2287
2334
|
end
|
2288
2335
|
|
2289
2336
|
# @!attribute [rw] app_arn
|
2290
|
-
# The
|
2337
|
+
# The App's Amazon Resource Name (ARN).
|
2291
2338
|
# @return [String]
|
2292
2339
|
#
|
2293
2340
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateAppResponse AWS API Documentation
|
2294
2341
|
#
|
2295
2342
|
class CreateAppResponse < Struct.new(
|
2296
2343
|
:app_arn)
|
2344
|
+
SENSITIVE = []
|
2297
2345
|
include Aws::Structure
|
2298
2346
|
end
|
2299
2347
|
|
@@ -2405,6 +2453,7 @@ module Aws::SageMaker
|
|
2405
2453
|
:role_arn,
|
2406
2454
|
:generate_candidate_definitions_only,
|
2407
2455
|
:tags)
|
2456
|
+
SENSITIVE = []
|
2408
2457
|
include Aws::Structure
|
2409
2458
|
end
|
2410
2459
|
|
@@ -2416,6 +2465,7 @@ module Aws::SageMaker
|
|
2416
2465
|
#
|
2417
2466
|
class CreateAutoMLJobResponse < Struct.new(
|
2418
2467
|
:auto_ml_job_arn)
|
2468
|
+
SENSITIVE = []
|
2419
2469
|
include Aws::Structure
|
2420
2470
|
end
|
2421
2471
|
|
@@ -2447,6 +2497,7 @@ module Aws::SageMaker
|
|
2447
2497
|
class CreateCodeRepositoryInput < Struct.new(
|
2448
2498
|
:code_repository_name,
|
2449
2499
|
:git_config)
|
2500
|
+
SENSITIVE = []
|
2450
2501
|
include Aws::Structure
|
2451
2502
|
end
|
2452
2503
|
|
@@ -2458,6 +2509,7 @@ module Aws::SageMaker
|
|
2458
2509
|
#
|
2459
2510
|
class CreateCodeRepositoryOutput < Struct.new(
|
2460
2511
|
:code_repository_arn)
|
2512
|
+
SENSITIVE = []
|
2461
2513
|
include Aws::Structure
|
2462
2514
|
end
|
2463
2515
|
|
@@ -2536,6 +2588,7 @@ module Aws::SageMaker
|
|
2536
2588
|
:input_config,
|
2537
2589
|
:output_config,
|
2538
2590
|
:stopping_condition)
|
2591
|
+
SENSITIVE = []
|
2539
2592
|
include Aws::Structure
|
2540
2593
|
end
|
2541
2594
|
|
@@ -2554,6 +2607,7 @@ module Aws::SageMaker
|
|
2554
2607
|
#
|
2555
2608
|
class CreateCompilationJobResponse < Struct.new(
|
2556
2609
|
:compilation_job_arn)
|
2610
|
+
SENSITIVE = []
|
2557
2611
|
include Aws::Structure
|
2558
2612
|
end
|
2559
2613
|
|
@@ -2606,7 +2660,7 @@ module Aws::SageMaker
|
|
2606
2660
|
# @return [String]
|
2607
2661
|
#
|
2608
2662
|
# @!attribute [rw] auth_mode
|
2609
|
-
# The mode of authentication that
|
2663
|
+
# The mode of authentication that members use to access the domain.
|
2610
2664
|
# @return [String]
|
2611
2665
|
#
|
2612
2666
|
# @!attribute [rw] default_user_settings
|
@@ -2614,21 +2668,23 @@ module Aws::SageMaker
|
|
2614
2668
|
# @return [Types::UserSettings]
|
2615
2669
|
#
|
2616
2670
|
# @!attribute [rw] subnet_ids
|
2617
|
-
#
|
2671
|
+
# The VPC subnets to use for communication with the EFS volume.
|
2618
2672
|
# @return [Array<String>]
|
2619
2673
|
#
|
2620
2674
|
# @!attribute [rw] vpc_id
|
2621
|
-
#
|
2622
|
-
#
|
2675
|
+
# The ID of the Amazon Virtual Private Cloud (VPC) to use for
|
2676
|
+
# communication with the EFS volume.
|
2623
2677
|
# @return [String]
|
2624
2678
|
#
|
2625
2679
|
# @!attribute [rw] tags
|
2626
|
-
# Each tag consists of a key and
|
2627
|
-
# 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.
|
2628
2683
|
# @return [Array<Types::Tag>]
|
2629
2684
|
#
|
2630
2685
|
# @!attribute [rw] home_efs_file_system_kms_key_id
|
2631
|
-
# The AWS Key Management Service encryption key ID.
|
2686
|
+
# The AWS Key Management Service (KMS) encryption key ID. Encryption
|
2687
|
+
# with a customer master key (CMK) is not supported.
|
2632
2688
|
# @return [String]
|
2633
2689
|
#
|
2634
2690
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateDomainRequest AWS API Documentation
|
@@ -2641,6 +2697,7 @@ module Aws::SageMaker
|
|
2641
2697
|
:vpc_id,
|
2642
2698
|
:tags,
|
2643
2699
|
:home_efs_file_system_kms_key_id)
|
2700
|
+
SENSITIVE = []
|
2644
2701
|
include Aws::Structure
|
2645
2702
|
end
|
2646
2703
|
|
@@ -2657,6 +2714,7 @@ module Aws::SageMaker
|
|
2657
2714
|
class CreateDomainResponse < Struct.new(
|
2658
2715
|
:domain_arn,
|
2659
2716
|
:url)
|
2717
|
+
SENSITIVE = []
|
2660
2718
|
include Aws::Structure
|
2661
2719
|
end
|
2662
2720
|
|
@@ -2777,6 +2835,7 @@ module Aws::SageMaker
|
|
2777
2835
|
:data_capture_config,
|
2778
2836
|
:tags,
|
2779
2837
|
:kms_key_id)
|
2838
|
+
SENSITIVE = []
|
2780
2839
|
include Aws::Structure
|
2781
2840
|
end
|
2782
2841
|
|
@@ -2788,6 +2847,7 @@ module Aws::SageMaker
|
|
2788
2847
|
#
|
2789
2848
|
class CreateEndpointConfigOutput < Struct.new(
|
2790
2849
|
:endpoint_config_arn)
|
2850
|
+
SENSITIVE = []
|
2791
2851
|
include Aws::Structure
|
2792
2852
|
end
|
2793
2853
|
|
@@ -2831,6 +2891,7 @@ module Aws::SageMaker
|
|
2831
2891
|
:endpoint_name,
|
2832
2892
|
:endpoint_config_name,
|
2833
2893
|
:tags)
|
2894
|
+
SENSITIVE = []
|
2834
2895
|
include Aws::Structure
|
2835
2896
|
end
|
2836
2897
|
|
@@ -2842,6 +2903,7 @@ module Aws::SageMaker
|
|
2842
2903
|
#
|
2843
2904
|
class CreateEndpointOutput < Struct.new(
|
2844
2905
|
:endpoint_arn)
|
2906
|
+
SENSITIVE = []
|
2845
2907
|
include Aws::Structure
|
2846
2908
|
end
|
2847
2909
|
|
@@ -2887,6 +2949,7 @@ module Aws::SageMaker
|
|
2887
2949
|
:display_name,
|
2888
2950
|
:description,
|
2889
2951
|
:tags)
|
2952
|
+
SENSITIVE = []
|
2890
2953
|
include Aws::Structure
|
2891
2954
|
end
|
2892
2955
|
|
@@ -2898,6 +2961,7 @@ module Aws::SageMaker
|
|
2898
2961
|
#
|
2899
2962
|
class CreateExperimentResponse < Struct.new(
|
2900
2963
|
:experiment_arn)
|
2964
|
+
SENSITIVE = []
|
2901
2965
|
include Aws::Structure
|
2902
2966
|
end
|
2903
2967
|
|
@@ -2991,6 +3055,7 @@ module Aws::SageMaker
|
|
2991
3055
|
:output_config,
|
2992
3056
|
:role_arn,
|
2993
3057
|
:tags)
|
3058
|
+
SENSITIVE = []
|
2994
3059
|
include Aws::Structure
|
2995
3060
|
end
|
2996
3061
|
|
@@ -3002,6 +3067,7 @@ module Aws::SageMaker
|
|
3002
3067
|
#
|
3003
3068
|
class CreateFlowDefinitionResponse < Struct.new(
|
3004
3069
|
:flow_definition_arn)
|
3070
|
+
SENSITIVE = []
|
3005
3071
|
include Aws::Structure
|
3006
3072
|
end
|
3007
3073
|
|
@@ -3041,6 +3107,7 @@ module Aws::SageMaker
|
|
3041
3107
|
:human_task_ui_name,
|
3042
3108
|
:ui_template,
|
3043
3109
|
:tags)
|
3110
|
+
SENSITIVE = []
|
3044
3111
|
include Aws::Structure
|
3045
3112
|
end
|
3046
3113
|
|
@@ -3053,6 +3120,7 @@ module Aws::SageMaker
|
|
3053
3120
|
#
|
3054
3121
|
class CreateHumanTaskUiResponse < Struct.new(
|
3055
3122
|
:human_task_ui_arn)
|
3123
|
+
SENSITIVE = []
|
3056
3124
|
include Aws::Structure
|
3057
3125
|
end
|
3058
3126
|
|
@@ -3340,6 +3408,8 @@ module Aws::SageMaker
|
|
3340
3408
|
# @return [Types::HyperParameterTrainingJobDefinition]
|
3341
3409
|
#
|
3342
3410
|
# @!attribute [rw] training_job_definitions
|
3411
|
+
# A list of the HyperParameterTrainingJobDefinition objects launched
|
3412
|
+
# for this tuning job.
|
3343
3413
|
# @return [Array<Types::HyperParameterTrainingJobDefinition>]
|
3344
3414
|
#
|
3345
3415
|
# @!attribute [rw] warm_start_config
|
@@ -3387,6 +3457,7 @@ module Aws::SageMaker
|
|
3387
3457
|
:training_job_definitions,
|
3388
3458
|
:warm_start_config,
|
3389
3459
|
:tags)
|
3460
|
+
SENSITIVE = []
|
3390
3461
|
include Aws::Structure
|
3391
3462
|
end
|
3392
3463
|
|
@@ -3399,6 +3470,7 @@ module Aws::SageMaker
|
|
3399
3470
|
#
|
3400
3471
|
class CreateHyperParameterTuningJobResponse < Struct.new(
|
3401
3472
|
:hyper_parameter_tuning_job_arn)
|
3473
|
+
SENSITIVE = []
|
3402
3474
|
include Aws::Structure
|
3403
3475
|
end
|
3404
3476
|
|
@@ -3438,7 +3510,8 @@ module Aws::SageMaker
|
|
3438
3510
|
# human_task_config: { # required
|
3439
3511
|
# workteam_arn: "WorkteamArn", # required
|
3440
3512
|
# ui_config: { # required
|
3441
|
-
# ui_template_s3_uri: "S3Uri",
|
3513
|
+
# ui_template_s3_uri: "S3Uri",
|
3514
|
+
# human_task_ui_arn: "HumanTaskUiArn",
|
3442
3515
|
# },
|
3443
3516
|
# pre_human_task_lambda_arn: "LambdaFunctionArn", # required
|
3444
3517
|
# task_keywords: ["TaskKeyword"],
|
@@ -3577,6 +3650,7 @@ module Aws::SageMaker
|
|
3577
3650
|
:labeling_job_algorithms_config,
|
3578
3651
|
:human_task_config,
|
3579
3652
|
:tags)
|
3653
|
+
SENSITIVE = []
|
3580
3654
|
include Aws::Structure
|
3581
3655
|
end
|
3582
3656
|
|
@@ -3589,6 +3663,7 @@ module Aws::SageMaker
|
|
3589
3663
|
#
|
3590
3664
|
class CreateLabelingJobResponse < Struct.new(
|
3591
3665
|
:labeling_job_arn)
|
3666
|
+
SENSITIVE = []
|
3592
3667
|
include Aws::Structure
|
3593
3668
|
end
|
3594
3669
|
|
@@ -3703,6 +3778,7 @@ module Aws::SageMaker
|
|
3703
3778
|
:tags,
|
3704
3779
|
:vpc_config,
|
3705
3780
|
:enable_network_isolation)
|
3781
|
+
SENSITIVE = []
|
3706
3782
|
include Aws::Structure
|
3707
3783
|
end
|
3708
3784
|
|
@@ -3714,6 +3790,7 @@ module Aws::SageMaker
|
|
3714
3790
|
#
|
3715
3791
|
class CreateModelOutput < Struct.new(
|
3716
3792
|
:model_arn)
|
3793
|
+
SENSITIVE = []
|
3717
3794
|
include Aws::Structure
|
3718
3795
|
end
|
3719
3796
|
|
@@ -3833,6 +3910,7 @@ module Aws::SageMaker
|
|
3833
3910
|
:validation_specification,
|
3834
3911
|
:source_algorithm_specification,
|
3835
3912
|
:certify_for_marketplace)
|
3913
|
+
SENSITIVE = []
|
3836
3914
|
include Aws::Structure
|
3837
3915
|
end
|
3838
3916
|
|
@@ -3844,6 +3922,7 @@ module Aws::SageMaker
|
|
3844
3922
|
#
|
3845
3923
|
class CreateModelPackageOutput < Struct.new(
|
3846
3924
|
:model_package_arn)
|
3925
|
+
SENSITIVE = []
|
3847
3926
|
include Aws::Structure
|
3848
3927
|
end
|
3849
3928
|
|
@@ -3909,6 +3988,7 @@ module Aws::SageMaker
|
|
3909
3988
|
# "ProcessingEnvironmentKey" => "ProcessingEnvironmentValue",
|
3910
3989
|
# },
|
3911
3990
|
# network_config: {
|
3991
|
+
# enable_inter_container_traffic_encryption: false,
|
3912
3992
|
# enable_network_isolation: false,
|
3913
3993
|
# vpc_config: {
|
3914
3994
|
# security_group_ids: ["SecurityGroupId"], # required
|
@@ -3949,6 +4029,7 @@ module Aws::SageMaker
|
|
3949
4029
|
:monitoring_schedule_name,
|
3950
4030
|
:monitoring_schedule_config,
|
3951
4031
|
:tags)
|
4032
|
+
SENSITIVE = []
|
3952
4033
|
include Aws::Structure
|
3953
4034
|
end
|
3954
4035
|
|
@@ -3960,6 +4041,7 @@ module Aws::SageMaker
|
|
3960
4041
|
#
|
3961
4042
|
class CreateMonitoringScheduleResponse < Struct.new(
|
3962
4043
|
:monitoring_schedule_arn)
|
4044
|
+
SENSITIVE = []
|
3963
4045
|
include Aws::Structure
|
3964
4046
|
end
|
3965
4047
|
|
@@ -4143,6 +4225,7 @@ module Aws::SageMaker
|
|
4143
4225
|
:default_code_repository,
|
4144
4226
|
:additional_code_repositories,
|
4145
4227
|
:root_access)
|
4228
|
+
SENSITIVE = []
|
4146
4229
|
include Aws::Structure
|
4147
4230
|
end
|
4148
4231
|
|
@@ -4184,6 +4267,7 @@ module Aws::SageMaker
|
|
4184
4267
|
:notebook_instance_lifecycle_config_name,
|
4185
4268
|
:on_create,
|
4186
4269
|
:on_start)
|
4270
|
+
SENSITIVE = []
|
4187
4271
|
include Aws::Structure
|
4188
4272
|
end
|
4189
4273
|
|
@@ -4195,6 +4279,7 @@ module Aws::SageMaker
|
|
4195
4279
|
#
|
4196
4280
|
class CreateNotebookInstanceLifecycleConfigOutput < Struct.new(
|
4197
4281
|
:notebook_instance_lifecycle_config_arn)
|
4282
|
+
SENSITIVE = []
|
4198
4283
|
include Aws::Structure
|
4199
4284
|
end
|
4200
4285
|
|
@@ -4206,6 +4291,7 @@ module Aws::SageMaker
|
|
4206
4291
|
#
|
4207
4292
|
class CreateNotebookInstanceOutput < Struct.new(
|
4208
4293
|
:notebook_instance_arn)
|
4294
|
+
SENSITIVE = []
|
4209
4295
|
include Aws::Structure
|
4210
4296
|
end
|
4211
4297
|
|
@@ -4236,6 +4322,7 @@ module Aws::SageMaker
|
|
4236
4322
|
:domain_id,
|
4237
4323
|
:user_profile_name,
|
4238
4324
|
:session_expiration_duration_in_seconds)
|
4325
|
+
SENSITIVE = []
|
4239
4326
|
include Aws::Structure
|
4240
4327
|
end
|
4241
4328
|
|
@@ -4247,6 +4334,7 @@ module Aws::SageMaker
|
|
4247
4334
|
#
|
4248
4335
|
class CreatePresignedDomainUrlResponse < Struct.new(
|
4249
4336
|
:authorized_url)
|
4337
|
+
SENSITIVE = []
|
4250
4338
|
include Aws::Structure
|
4251
4339
|
end
|
4252
4340
|
|
@@ -4271,6 +4359,7 @@ module Aws::SageMaker
|
|
4271
4359
|
class CreatePresignedNotebookInstanceUrlInput < Struct.new(
|
4272
4360
|
:notebook_instance_name,
|
4273
4361
|
:session_expiration_duration_in_seconds)
|
4362
|
+
SENSITIVE = []
|
4274
4363
|
include Aws::Structure
|
4275
4364
|
end
|
4276
4365
|
|
@@ -4282,6 +4371,7 @@ module Aws::SageMaker
|
|
4282
4371
|
#
|
4283
4372
|
class CreatePresignedNotebookInstanceUrlOutput < Struct.new(
|
4284
4373
|
:authorized_url)
|
4374
|
+
SENSITIVE = []
|
4285
4375
|
include Aws::Structure
|
4286
4376
|
end
|
4287
4377
|
|
@@ -4336,6 +4426,7 @@ module Aws::SageMaker
|
|
4336
4426
|
# "ProcessingEnvironmentKey" => "ProcessingEnvironmentValue",
|
4337
4427
|
# },
|
4338
4428
|
# network_config: {
|
4429
|
+
# enable_inter_container_traffic_encryption: false,
|
4339
4430
|
# enable_network_isolation: false,
|
4340
4431
|
# vpc_config: {
|
4341
4432
|
# security_group_ids: ["SecurityGroupId"], # required
|
@@ -4427,6 +4518,7 @@ module Aws::SageMaker
|
|
4427
4518
|
:role_arn,
|
4428
4519
|
:tags,
|
4429
4520
|
:experiment_config)
|
4521
|
+
SENSITIVE = []
|
4430
4522
|
include Aws::Structure
|
4431
4523
|
end
|
4432
4524
|
|
@@ -4438,6 +4530,7 @@ module Aws::SageMaker
|
|
4438
4530
|
#
|
4439
4531
|
class CreateProcessingJobResponse < Struct.new(
|
4440
4532
|
:processing_job_arn)
|
4533
|
+
SENSITIVE = []
|
4441
4534
|
include Aws::Structure
|
4442
4535
|
end
|
4443
4536
|
|
@@ -4764,6 +4857,7 @@ module Aws::SageMaker
|
|
4764
4857
|
:debug_rule_configurations,
|
4765
4858
|
:tensor_board_output_config,
|
4766
4859
|
:experiment_config)
|
4860
|
+
SENSITIVE = []
|
4767
4861
|
include Aws::Structure
|
4768
4862
|
end
|
4769
4863
|
|
@@ -4775,6 +4869,7 @@ module Aws::SageMaker
|
|
4775
4869
|
#
|
4776
4870
|
class CreateTrainingJobResponse < Struct.new(
|
4777
4871
|
:training_job_arn)
|
4872
|
+
SENSITIVE = []
|
4778
4873
|
include Aws::Structure
|
4779
4874
|
end
|
4780
4875
|
|
@@ -4952,6 +5047,7 @@ module Aws::SageMaker
|
|
4952
5047
|
:data_processing,
|
4953
5048
|
:tags,
|
4954
5049
|
:experiment_config)
|
5050
|
+
SENSITIVE = []
|
4955
5051
|
include Aws::Structure
|
4956
5052
|
end
|
4957
5053
|
|
@@ -4963,6 +5059,7 @@ module Aws::SageMaker
|
|
4963
5059
|
#
|
4964
5060
|
class CreateTransformJobResponse < Struct.new(
|
4965
5061
|
:transform_job_arn)
|
5062
|
+
SENSITIVE = []
|
4966
5063
|
include Aws::Structure
|
4967
5064
|
end
|
4968
5065
|
|
@@ -5065,6 +5162,7 @@ module Aws::SageMaker
|
|
5065
5162
|
:input_artifacts,
|
5066
5163
|
:output_artifacts,
|
5067
5164
|
:tags)
|
5165
|
+
SENSITIVE = []
|
5068
5166
|
include Aws::Structure
|
5069
5167
|
end
|
5070
5168
|
|
@@ -5076,6 +5174,7 @@ module Aws::SageMaker
|
|
5076
5174
|
#
|
5077
5175
|
class CreateTrialComponentResponse < Struct.new(
|
5078
5176
|
:trial_component_arn)
|
5177
|
+
SENSITIVE = []
|
5079
5178
|
include Aws::Structure
|
5080
5179
|
end
|
5081
5180
|
|
@@ -5120,6 +5219,7 @@ module Aws::SageMaker
|
|
5120
5219
|
:display_name,
|
5121
5220
|
:experiment_name,
|
5122
5221
|
:tags)
|
5222
|
+
SENSITIVE = []
|
5123
5223
|
include Aws::Structure
|
5124
5224
|
end
|
5125
5225
|
|
@@ -5131,6 +5231,7 @@ module Aws::SageMaker
|
|
5131
5231
|
#
|
5132
5232
|
class CreateTrialResponse < Struct.new(
|
5133
5233
|
:trial_arn)
|
5234
|
+
SENSITIVE = []
|
5134
5235
|
include Aws::Structure
|
5135
5236
|
end
|
5136
5237
|
|
@@ -5219,6 +5320,7 @@ module Aws::SageMaker
|
|
5219
5320
|
:single_sign_on_user_value,
|
5220
5321
|
:tags,
|
5221
5322
|
:user_settings)
|
5323
|
+
SENSITIVE = []
|
5222
5324
|
include Aws::Structure
|
5223
5325
|
end
|
5224
5326
|
|
@@ -5230,6 +5332,7 @@ module Aws::SageMaker
|
|
5230
5332
|
#
|
5231
5333
|
class CreateUserProfileResponse < Struct.new(
|
5232
5334
|
:user_profile_arn)
|
5335
|
+
SENSITIVE = []
|
5233
5336
|
include Aws::Structure
|
5234
5337
|
end
|
5235
5338
|
|
@@ -5306,6 +5409,7 @@ module Aws::SageMaker
|
|
5306
5409
|
:description,
|
5307
5410
|
:notification_configuration,
|
5308
5411
|
:tags)
|
5412
|
+
SENSITIVE = []
|
5309
5413
|
include Aws::Structure
|
5310
5414
|
end
|
5311
5415
|
|
@@ -5318,6 +5422,7 @@ module Aws::SageMaker
|
|
5318
5422
|
#
|
5319
5423
|
class CreateWorkteamResponse < Struct.new(
|
5320
5424
|
:workteam_arn)
|
5425
|
+
SENSITIVE = []
|
5321
5426
|
include Aws::Structure
|
5322
5427
|
end
|
5323
5428
|
|
@@ -5367,6 +5472,7 @@ module Aws::SageMaker
|
|
5367
5472
|
:kms_key_id,
|
5368
5473
|
:capture_options,
|
5369
5474
|
:capture_content_type_header)
|
5475
|
+
SENSITIVE = []
|
5370
5476
|
include Aws::Structure
|
5371
5477
|
end
|
5372
5478
|
|
@@ -5393,6 +5499,7 @@ module Aws::SageMaker
|
|
5393
5499
|
:current_sampling_percentage,
|
5394
5500
|
:destination_s3_uri,
|
5395
5501
|
:kms_key_id)
|
5502
|
+
SENSITIVE = []
|
5396
5503
|
include Aws::Structure
|
5397
5504
|
end
|
5398
5505
|
|
@@ -5474,6 +5581,7 @@ module Aws::SageMaker
|
|
5474
5581
|
:input_filter,
|
5475
5582
|
:output_filter,
|
5476
5583
|
:join_source)
|
5584
|
+
SENSITIVE = []
|
5477
5585
|
include Aws::Structure
|
5478
5586
|
end
|
5479
5587
|
|
@@ -5511,6 +5619,7 @@ module Aws::SageMaker
|
|
5511
5619
|
class DataSource < Struct.new(
|
5512
5620
|
:s3_data_source,
|
5513
5621
|
:file_system_data_source)
|
5622
|
+
SENSITIVE = []
|
5514
5623
|
include Aws::Structure
|
5515
5624
|
end
|
5516
5625
|
|
@@ -5560,6 +5669,7 @@ module Aws::SageMaker
|
|
5560
5669
|
:s3_output_path,
|
5561
5670
|
:hook_parameters,
|
5562
5671
|
:collection_configurations)
|
5672
|
+
SENSITIVE = []
|
5563
5673
|
include Aws::Structure
|
5564
5674
|
end
|
5565
5675
|
|
@@ -5622,6 +5732,7 @@ module Aws::SageMaker
|
|
5622
5732
|
:instance_type,
|
5623
5733
|
:volume_size_in_gb,
|
5624
5734
|
:rule_parameters)
|
5735
|
+
SENSITIVE = []
|
5625
5736
|
include Aws::Structure
|
5626
5737
|
end
|
5627
5738
|
|
@@ -5655,6 +5766,7 @@ module Aws::SageMaker
|
|
5655
5766
|
:rule_evaluation_status,
|
5656
5767
|
:status_details,
|
5657
5768
|
:last_modified_time)
|
5769
|
+
SENSITIVE = []
|
5658
5770
|
include Aws::Structure
|
5659
5771
|
end
|
5660
5772
|
|
@@ -5673,6 +5785,7 @@ module Aws::SageMaker
|
|
5673
5785
|
#
|
5674
5786
|
class DeleteAlgorithmInput < Struct.new(
|
5675
5787
|
:algorithm_name)
|
5788
|
+
SENSITIVE = []
|
5676
5789
|
include Aws::Structure
|
5677
5790
|
end
|
5678
5791
|
|
@@ -5709,6 +5822,7 @@ module Aws::SageMaker
|
|
5709
5822
|
:user_profile_name,
|
5710
5823
|
:app_type,
|
5711
5824
|
:app_name)
|
5825
|
+
SENSITIVE = []
|
5712
5826
|
include Aws::Structure
|
5713
5827
|
end
|
5714
5828
|
|
@@ -5727,6 +5841,7 @@ module Aws::SageMaker
|
|
5727
5841
|
#
|
5728
5842
|
class DeleteCodeRepositoryInput < Struct.new(
|
5729
5843
|
:code_repository_name)
|
5844
|
+
SENSITIVE = []
|
5730
5845
|
include Aws::Structure
|
5731
5846
|
end
|
5732
5847
|
|
@@ -5745,7 +5860,7 @@ module Aws::SageMaker
|
|
5745
5860
|
# @return [String]
|
5746
5861
|
#
|
5747
5862
|
# @!attribute [rw] retention_policy
|
5748
|
-
# The retention policy for this domain, which specifies
|
5863
|
+
# The retention policy for this domain, which specifies whether
|
5749
5864
|
# resources will be retained after the Domain is deleted. By default,
|
5750
5865
|
# all resources are retained (not automatically deleted).
|
5751
5866
|
# @return [Types::RetentionPolicy]
|
@@ -5755,6 +5870,7 @@ module Aws::SageMaker
|
|
5755
5870
|
class DeleteDomainRequest < Struct.new(
|
5756
5871
|
:domain_id,
|
5757
5872
|
:retention_policy)
|
5873
|
+
SENSITIVE = []
|
5758
5874
|
include Aws::Structure
|
5759
5875
|
end
|
5760
5876
|
|
@@ -5773,6 +5889,7 @@ module Aws::SageMaker
|
|
5773
5889
|
#
|
5774
5890
|
class DeleteEndpointConfigInput < Struct.new(
|
5775
5891
|
:endpoint_config_name)
|
5892
|
+
SENSITIVE = []
|
5776
5893
|
include Aws::Structure
|
5777
5894
|
end
|
5778
5895
|
|
@@ -5791,6 +5908,7 @@ module Aws::SageMaker
|
|
5791
5908
|
#
|
5792
5909
|
class DeleteEndpointInput < Struct.new(
|
5793
5910
|
:endpoint_name)
|
5911
|
+
SENSITIVE = []
|
5794
5912
|
include Aws::Structure
|
5795
5913
|
end
|
5796
5914
|
|
@@ -5809,6 +5927,7 @@ module Aws::SageMaker
|
|
5809
5927
|
#
|
5810
5928
|
class DeleteExperimentRequest < Struct.new(
|
5811
5929
|
:experiment_name)
|
5930
|
+
SENSITIVE = []
|
5812
5931
|
include Aws::Structure
|
5813
5932
|
end
|
5814
5933
|
|
@@ -5821,6 +5940,7 @@ module Aws::SageMaker
|
|
5821
5940
|
#
|
5822
5941
|
class DeleteExperimentResponse < Struct.new(
|
5823
5942
|
:experiment_arn)
|
5943
|
+
SENSITIVE = []
|
5824
5944
|
include Aws::Structure
|
5825
5945
|
end
|
5826
5946
|
|
@@ -5839,6 +5959,7 @@ module Aws::SageMaker
|
|
5839
5959
|
#
|
5840
5960
|
class DeleteFlowDefinitionRequest < Struct.new(
|
5841
5961
|
:flow_definition_name)
|
5962
|
+
SENSITIVE = []
|
5842
5963
|
include Aws::Structure
|
5843
5964
|
end
|
5844
5965
|
|
@@ -5861,6 +5982,7 @@ module Aws::SageMaker
|
|
5861
5982
|
#
|
5862
5983
|
class DeleteModelInput < Struct.new(
|
5863
5984
|
:model_name)
|
5985
|
+
SENSITIVE = []
|
5864
5986
|
include Aws::Structure
|
5865
5987
|
end
|
5866
5988
|
|
@@ -5880,6 +6002,7 @@ module Aws::SageMaker
|
|
5880
6002
|
#
|
5881
6003
|
class DeleteModelPackageInput < Struct.new(
|
5882
6004
|
:model_package_name)
|
6005
|
+
SENSITIVE = []
|
5883
6006
|
include Aws::Structure
|
5884
6007
|
end
|
5885
6008
|
|
@@ -5898,6 +6021,7 @@ module Aws::SageMaker
|
|
5898
6021
|
#
|
5899
6022
|
class DeleteMonitoringScheduleRequest < Struct.new(
|
5900
6023
|
:monitoring_schedule_name)
|
6024
|
+
SENSITIVE = []
|
5901
6025
|
include Aws::Structure
|
5902
6026
|
end
|
5903
6027
|
|
@@ -5916,6 +6040,7 @@ module Aws::SageMaker
|
|
5916
6040
|
#
|
5917
6041
|
class DeleteNotebookInstanceInput < Struct.new(
|
5918
6042
|
:notebook_instance_name)
|
6043
|
+
SENSITIVE = []
|
5919
6044
|
include Aws::Structure
|
5920
6045
|
end
|
5921
6046
|
|
@@ -5934,6 +6059,7 @@ module Aws::SageMaker
|
|
5934
6059
|
#
|
5935
6060
|
class DeleteNotebookInstanceLifecycleConfigInput < Struct.new(
|
5936
6061
|
:notebook_instance_lifecycle_config_name)
|
6062
|
+
SENSITIVE = []
|
5937
6063
|
include Aws::Structure
|
5938
6064
|
end
|
5939
6065
|
|
@@ -5959,6 +6085,7 @@ module Aws::SageMaker
|
|
5959
6085
|
class DeleteTagsInput < Struct.new(
|
5960
6086
|
:resource_arn,
|
5961
6087
|
:tag_keys)
|
6088
|
+
SENSITIVE = []
|
5962
6089
|
include Aws::Structure
|
5963
6090
|
end
|
5964
6091
|
|
@@ -5981,6 +6108,7 @@ module Aws::SageMaker
|
|
5981
6108
|
#
|
5982
6109
|
class DeleteTrialComponentRequest < Struct.new(
|
5983
6110
|
:trial_component_name)
|
6111
|
+
SENSITIVE = []
|
5984
6112
|
include Aws::Structure
|
5985
6113
|
end
|
5986
6114
|
|
@@ -5992,6 +6120,7 @@ module Aws::SageMaker
|
|
5992
6120
|
#
|
5993
6121
|
class DeleteTrialComponentResponse < Struct.new(
|
5994
6122
|
:trial_component_arn)
|
6123
|
+
SENSITIVE = []
|
5995
6124
|
include Aws::Structure
|
5996
6125
|
end
|
5997
6126
|
|
@@ -6010,6 +6139,7 @@ module Aws::SageMaker
|
|
6010
6139
|
#
|
6011
6140
|
class DeleteTrialRequest < Struct.new(
|
6012
6141
|
:trial_name)
|
6142
|
+
SENSITIVE = []
|
6013
6143
|
include Aws::Structure
|
6014
6144
|
end
|
6015
6145
|
|
@@ -6021,6 +6151,7 @@ module Aws::SageMaker
|
|
6021
6151
|
#
|
6022
6152
|
class DeleteTrialResponse < Struct.new(
|
6023
6153
|
:trial_arn)
|
6154
|
+
SENSITIVE = []
|
6024
6155
|
include Aws::Structure
|
6025
6156
|
end
|
6026
6157
|
|
@@ -6045,6 +6176,7 @@ module Aws::SageMaker
|
|
6045
6176
|
class DeleteUserProfileRequest < Struct.new(
|
6046
6177
|
:domain_id,
|
6047
6178
|
:user_profile_name)
|
6179
|
+
SENSITIVE = []
|
6048
6180
|
include Aws::Structure
|
6049
6181
|
end
|
6050
6182
|
|
@@ -6063,6 +6195,7 @@ module Aws::SageMaker
|
|
6063
6195
|
#
|
6064
6196
|
class DeleteWorkteamRequest < Struct.new(
|
6065
6197
|
:workteam_name)
|
6198
|
+
SENSITIVE = []
|
6066
6199
|
include Aws::Structure
|
6067
6200
|
end
|
6068
6201
|
|
@@ -6075,6 +6208,7 @@ module Aws::SageMaker
|
|
6075
6208
|
#
|
6076
6209
|
class DeleteWorkteamResponse < Struct.new(
|
6077
6210
|
:success)
|
6211
|
+
SENSITIVE = []
|
6078
6212
|
include Aws::Structure
|
6079
6213
|
end
|
6080
6214
|
|
@@ -6113,6 +6247,7 @@ module Aws::SageMaker
|
|
6113
6247
|
:specified_image,
|
6114
6248
|
:resolved_image,
|
6115
6249
|
:resolution_time)
|
6250
|
+
SENSITIVE = []
|
6116
6251
|
include Aws::Structure
|
6117
6252
|
end
|
6118
6253
|
|
@@ -6131,6 +6266,7 @@ module Aws::SageMaker
|
|
6131
6266
|
#
|
6132
6267
|
class DescribeAlgorithmInput < Struct.new(
|
6133
6268
|
:algorithm_name)
|
6269
|
+
SENSITIVE = []
|
6134
6270
|
include Aws::Structure
|
6135
6271
|
end
|
6136
6272
|
|
@@ -6193,6 +6329,7 @@ module Aws::SageMaker
|
|
6193
6329
|
:algorithm_status_details,
|
6194
6330
|
:product_id,
|
6195
6331
|
:certify_for_marketplace)
|
6332
|
+
SENSITIVE = []
|
6196
6333
|
include Aws::Structure
|
6197
6334
|
end
|
6198
6335
|
|
@@ -6229,6 +6366,7 @@ module Aws::SageMaker
|
|
6229
6366
|
:user_profile_name,
|
6230
6367
|
:app_type,
|
6231
6368
|
:app_name)
|
6369
|
+
SENSITIVE = []
|
6232
6370
|
include Aws::Structure
|
6233
6371
|
end
|
6234
6372
|
|
@@ -6273,7 +6411,8 @@ module Aws::SageMaker
|
|
6273
6411
|
# @return [String]
|
6274
6412
|
#
|
6275
6413
|
# @!attribute [rw] resource_spec
|
6276
|
-
# The instance type and
|
6414
|
+
# The instance type and the Amazon Resource Name (ARN) of the
|
6415
|
+
# SageMaker image created on the instance.
|
6277
6416
|
# @return [Types::ResourceSpec]
|
6278
6417
|
#
|
6279
6418
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeAppResponse AWS API Documentation
|
@@ -6290,6 +6429,7 @@ module Aws::SageMaker
|
|
6290
6429
|
:creation_time,
|
6291
6430
|
:failure_reason,
|
6292
6431
|
:resource_spec)
|
6432
|
+
SENSITIVE = []
|
6293
6433
|
include Aws::Structure
|
6294
6434
|
end
|
6295
6435
|
|
@@ -6308,6 +6448,7 @@ module Aws::SageMaker
|
|
6308
6448
|
#
|
6309
6449
|
class DescribeAutoMLJobRequest < Struct.new(
|
6310
6450
|
:auto_ml_job_name)
|
6451
|
+
SENSITIVE = []
|
6311
6452
|
include Aws::Structure
|
6312
6453
|
end
|
6313
6454
|
|
@@ -6411,6 +6552,7 @@ module Aws::SageMaker
|
|
6411
6552
|
:generate_candidate_definitions_only,
|
6412
6553
|
:auto_ml_job_artifacts,
|
6413
6554
|
:resolved_attributes)
|
6555
|
+
SENSITIVE = []
|
6414
6556
|
include Aws::Structure
|
6415
6557
|
end
|
6416
6558
|
|
@@ -6429,6 +6571,7 @@ module Aws::SageMaker
|
|
6429
6571
|
#
|
6430
6572
|
class DescribeCodeRepositoryInput < Struct.new(
|
6431
6573
|
:code_repository_name)
|
6574
|
+
SENSITIVE = []
|
6432
6575
|
include Aws::Structure
|
6433
6576
|
end
|
6434
6577
|
|
@@ -6463,6 +6606,7 @@ module Aws::SageMaker
|
|
6463
6606
|
:creation_time,
|
6464
6607
|
:last_modified_time,
|
6465
6608
|
:git_config)
|
6609
|
+
SENSITIVE = []
|
6466
6610
|
include Aws::Structure
|
6467
6611
|
end
|
6468
6612
|
|
@@ -6482,6 +6626,7 @@ module Aws::SageMaker
|
|
6482
6626
|
#
|
6483
6627
|
class DescribeCompilationJobRequest < Struct.new(
|
6484
6628
|
:compilation_job_name)
|
6629
|
+
SENSITIVE = []
|
6485
6630
|
include Aws::Structure
|
6486
6631
|
end
|
6487
6632
|
|
@@ -6571,6 +6716,7 @@ module Aws::SageMaker
|
|
6571
6716
|
:role_arn,
|
6572
6717
|
:input_config,
|
6573
6718
|
:output_config)
|
6719
|
+
SENSITIVE = []
|
6574
6720
|
include Aws::Structure
|
6575
6721
|
end
|
6576
6722
|
|
@@ -6589,6 +6735,7 @@ module Aws::SageMaker
|
|
6589
6735
|
#
|
6590
6736
|
class DescribeDomainRequest < Struct.new(
|
6591
6737
|
:domain_id)
|
6738
|
+
SENSITIVE = []
|
6592
6739
|
include Aws::Structure
|
6593
6740
|
end
|
6594
6741
|
|
@@ -6672,6 +6819,7 @@ module Aws::SageMaker
|
|
6672
6819
|
:subnet_ids,
|
6673
6820
|
:url,
|
6674
6821
|
:vpc_id)
|
6822
|
+
SENSITIVE = []
|
6675
6823
|
include Aws::Structure
|
6676
6824
|
end
|
6677
6825
|
|
@@ -6690,6 +6838,7 @@ module Aws::SageMaker
|
|
6690
6838
|
#
|
6691
6839
|
class DescribeEndpointConfigInput < Struct.new(
|
6692
6840
|
:endpoint_config_name)
|
6841
|
+
SENSITIVE = []
|
6693
6842
|
include Aws::Structure
|
6694
6843
|
end
|
6695
6844
|
|
@@ -6727,6 +6876,7 @@ module Aws::SageMaker
|
|
6727
6876
|
:data_capture_config,
|
6728
6877
|
:kms_key_id,
|
6729
6878
|
:creation_time)
|
6879
|
+
SENSITIVE = []
|
6730
6880
|
include Aws::Structure
|
6731
6881
|
end
|
6732
6882
|
|
@@ -6745,6 +6895,7 @@ module Aws::SageMaker
|
|
6745
6895
|
#
|
6746
6896
|
class DescribeEndpointInput < Struct.new(
|
6747
6897
|
:endpoint_name)
|
6898
|
+
SENSITIVE = []
|
6748
6899
|
include Aws::Structure
|
6749
6900
|
end
|
6750
6901
|
|
@@ -6829,6 +6980,7 @@ module Aws::SageMaker
|
|
6829
6980
|
:failure_reason,
|
6830
6981
|
:creation_time,
|
6831
6982
|
:last_modified_time)
|
6983
|
+
SENSITIVE = []
|
6832
6984
|
include Aws::Structure
|
6833
6985
|
end
|
6834
6986
|
|
@@ -6847,6 +6999,7 @@ module Aws::SageMaker
|
|
6847
6999
|
#
|
6848
7000
|
class DescribeExperimentRequest < Struct.new(
|
6849
7001
|
:experiment_name)
|
7002
|
+
SENSITIVE = []
|
6850
7003
|
include Aws::Structure
|
6851
7004
|
end
|
6852
7005
|
|
@@ -6899,6 +7052,7 @@ module Aws::SageMaker
|
|
6899
7052
|
:created_by,
|
6900
7053
|
:last_modified_time,
|
6901
7054
|
:last_modified_by)
|
7055
|
+
SENSITIVE = []
|
6902
7056
|
include Aws::Structure
|
6903
7057
|
end
|
6904
7058
|
|
@@ -6917,6 +7071,7 @@ module Aws::SageMaker
|
|
6917
7071
|
#
|
6918
7072
|
class DescribeFlowDefinitionRequest < Struct.new(
|
6919
7073
|
:flow_definition_name)
|
7074
|
+
SENSITIVE = []
|
6920
7075
|
include Aws::Structure
|
6921
7076
|
end
|
6922
7077
|
|
@@ -6977,6 +7132,7 @@ module Aws::SageMaker
|
|
6977
7132
|
:output_config,
|
6978
7133
|
:role_arn,
|
6979
7134
|
:failure_reason)
|
7135
|
+
SENSITIVE = []
|
6980
7136
|
include Aws::Structure
|
6981
7137
|
end
|
6982
7138
|
|
@@ -6996,6 +7152,7 @@ module Aws::SageMaker
|
|
6996
7152
|
#
|
6997
7153
|
class DescribeHumanTaskUiRequest < Struct.new(
|
6998
7154
|
:human_task_ui_name)
|
7155
|
+
SENSITIVE = []
|
6999
7156
|
include Aws::Structure
|
7000
7157
|
end
|
7001
7158
|
|
@@ -7022,6 +7179,7 @@ module Aws::SageMaker
|
|
7022
7179
|
:human_task_ui_name,
|
7023
7180
|
:creation_time,
|
7024
7181
|
:ui_template)
|
7182
|
+
SENSITIVE = []
|
7025
7183
|
include Aws::Structure
|
7026
7184
|
end
|
7027
7185
|
|
@@ -7040,6 +7198,7 @@ module Aws::SageMaker
|
|
7040
7198
|
#
|
7041
7199
|
class DescribeHyperParameterTuningJobRequest < Struct.new(
|
7042
7200
|
:hyper_parameter_tuning_job_name)
|
7201
|
+
SENSITIVE = []
|
7043
7202
|
include Aws::Structure
|
7044
7203
|
end
|
7045
7204
|
|
@@ -7062,6 +7221,8 @@ module Aws::SageMaker
|
|
7062
7221
|
# @return [Types::HyperParameterTrainingJobDefinition]
|
7063
7222
|
#
|
7064
7223
|
# @!attribute [rw] training_job_definitions
|
7224
|
+
# A list of the HyperParameterTrainingJobDefinition objects launched
|
7225
|
+
# for this tuning job.
|
7065
7226
|
# @return [Array<Types::HyperParameterTrainingJobDefinition>]
|
7066
7227
|
#
|
7067
7228
|
# @!attribute [rw] hyper_parameter_tuning_job_status
|
@@ -7135,6 +7296,7 @@ module Aws::SageMaker
|
|
7135
7296
|
:overall_best_training_job,
|
7136
7297
|
:warm_start_config,
|
7137
7298
|
:failure_reason)
|
7299
|
+
SENSITIVE = []
|
7138
7300
|
include Aws::Structure
|
7139
7301
|
end
|
7140
7302
|
|
@@ -7153,6 +7315,7 @@ module Aws::SageMaker
|
|
7153
7315
|
#
|
7154
7316
|
class DescribeLabelingJobRequest < Struct.new(
|
7155
7317
|
:labeling_job_name)
|
7318
|
+
SENSITIVE = []
|
7156
7319
|
include Aws::Structure
|
7157
7320
|
end
|
7158
7321
|
|
@@ -7302,6 +7465,7 @@ module Aws::SageMaker
|
|
7302
7465
|
:human_task_config,
|
7303
7466
|
:tags,
|
7304
7467
|
:labeling_job_output)
|
7468
|
+
SENSITIVE = []
|
7305
7469
|
include Aws::Structure
|
7306
7470
|
end
|
7307
7471
|
|
@@ -7320,6 +7484,7 @@ module Aws::SageMaker
|
|
7320
7484
|
#
|
7321
7485
|
class DescribeModelInput < Struct.new(
|
7322
7486
|
:model_name)
|
7487
|
+
SENSITIVE = []
|
7323
7488
|
include Aws::Structure
|
7324
7489
|
end
|
7325
7490
|
|
@@ -7376,6 +7541,7 @@ module Aws::SageMaker
|
|
7376
7541
|
:creation_time,
|
7377
7542
|
:model_arn,
|
7378
7543
|
:enable_network_isolation)
|
7544
|
+
SENSITIVE = []
|
7379
7545
|
include Aws::Structure
|
7380
7546
|
end
|
7381
7547
|
|
@@ -7394,6 +7560,7 @@ module Aws::SageMaker
|
|
7394
7560
|
#
|
7395
7561
|
class DescribeModelPackageInput < Struct.new(
|
7396
7562
|
:model_package_name)
|
7563
|
+
SENSITIVE = []
|
7397
7564
|
include Aws::Structure
|
7398
7565
|
end
|
7399
7566
|
|
@@ -7454,6 +7621,7 @@ module Aws::SageMaker
|
|
7454
7621
|
:model_package_status,
|
7455
7622
|
:model_package_status_details,
|
7456
7623
|
:certify_for_marketplace)
|
7624
|
+
SENSITIVE = []
|
7457
7625
|
include Aws::Structure
|
7458
7626
|
end
|
7459
7627
|
|
@@ -7472,6 +7640,7 @@ module Aws::SageMaker
|
|
7472
7640
|
#
|
7473
7641
|
class DescribeMonitoringScheduleRequest < Struct.new(
|
7474
7642
|
:monitoring_schedule_name)
|
7643
|
+
SENSITIVE = []
|
7475
7644
|
include Aws::Structure
|
7476
7645
|
end
|
7477
7646
|
|
@@ -7525,6 +7694,7 @@ module Aws::SageMaker
|
|
7525
7694
|
:monitoring_schedule_config,
|
7526
7695
|
:endpoint_name,
|
7527
7696
|
:last_monitoring_execution_summary)
|
7697
|
+
SENSITIVE = []
|
7528
7698
|
include Aws::Structure
|
7529
7699
|
end
|
7530
7700
|
|
@@ -7543,6 +7713,7 @@ module Aws::SageMaker
|
|
7543
7713
|
#
|
7544
7714
|
class DescribeNotebookInstanceInput < Struct.new(
|
7545
7715
|
:notebook_instance_name)
|
7716
|
+
SENSITIVE = []
|
7546
7717
|
include Aws::Structure
|
7547
7718
|
end
|
7548
7719
|
|
@@ -7561,6 +7732,7 @@ module Aws::SageMaker
|
|
7561
7732
|
#
|
7562
7733
|
class DescribeNotebookInstanceLifecycleConfigInput < Struct.new(
|
7563
7734
|
:notebook_instance_lifecycle_config_name)
|
7735
|
+
SENSITIVE = []
|
7564
7736
|
include Aws::Structure
|
7565
7737
|
end
|
7566
7738
|
|
@@ -7600,6 +7772,7 @@ module Aws::SageMaker
|
|
7600
7772
|
:on_start,
|
7601
7773
|
:last_modified_time,
|
7602
7774
|
:creation_time)
|
7775
|
+
SENSITIVE = []
|
7603
7776
|
include Aws::Structure
|
7604
7777
|
end
|
7605
7778
|
|
@@ -7767,6 +7940,7 @@ module Aws::SageMaker
|
|
7767
7940
|
:default_code_repository,
|
7768
7941
|
:additional_code_repositories,
|
7769
7942
|
:root_access)
|
7943
|
+
SENSITIVE = []
|
7770
7944
|
include Aws::Structure
|
7771
7945
|
end
|
7772
7946
|
|
@@ -7786,6 +7960,7 @@ module Aws::SageMaker
|
|
7786
7960
|
#
|
7787
7961
|
class DescribeProcessingJobRequest < Struct.new(
|
7788
7962
|
:processing_job_name)
|
7963
|
+
SENSITIVE = []
|
7789
7964
|
include Aws::Structure
|
7790
7965
|
end
|
7791
7966
|
|
@@ -7904,6 +8079,7 @@ module Aws::SageMaker
|
|
7904
8079
|
:monitoring_schedule_arn,
|
7905
8080
|
:auto_ml_job_arn,
|
7906
8081
|
:training_job_arn)
|
8082
|
+
SENSITIVE = []
|
7907
8083
|
include Aws::Structure
|
7908
8084
|
end
|
7909
8085
|
|
@@ -7923,6 +8099,7 @@ module Aws::SageMaker
|
|
7923
8099
|
#
|
7924
8100
|
class DescribeSubscribedWorkteamRequest < Struct.new(
|
7925
8101
|
:workteam_arn)
|
8102
|
+
SENSITIVE = []
|
7926
8103
|
include Aws::Structure
|
7927
8104
|
end
|
7928
8105
|
|
@@ -7934,6 +8111,7 @@ module Aws::SageMaker
|
|
7934
8111
|
#
|
7935
8112
|
class DescribeSubscribedWorkteamResponse < Struct.new(
|
7936
8113
|
:subscribed_workteam)
|
8114
|
+
SENSITIVE = []
|
7937
8115
|
include Aws::Structure
|
7938
8116
|
end
|
7939
8117
|
|
@@ -7952,6 +8130,7 @@ module Aws::SageMaker
|
|
7952
8130
|
#
|
7953
8131
|
class DescribeTrainingJobRequest < Struct.new(
|
7954
8132
|
:training_job_name)
|
8133
|
+
SENSITIVE = []
|
7955
8134
|
include Aws::Structure
|
7956
8135
|
end
|
7957
8136
|
|
@@ -8256,6 +8435,7 @@ module Aws::SageMaker
|
|
8256
8435
|
:debug_rule_configurations,
|
8257
8436
|
:tensor_board_output_config,
|
8258
8437
|
:debug_rule_evaluation_statuses)
|
8438
|
+
SENSITIVE = []
|
8259
8439
|
include Aws::Structure
|
8260
8440
|
end
|
8261
8441
|
|
@@ -8274,6 +8454,7 @@ module Aws::SageMaker
|
|
8274
8454
|
#
|
8275
8455
|
class DescribeTransformJobRequest < Struct.new(
|
8276
8456
|
:transform_job_name)
|
8457
|
+
SENSITIVE = []
|
8277
8458
|
include Aws::Structure
|
8278
8459
|
end
|
8279
8460
|
|
@@ -8410,6 +8591,7 @@ module Aws::SageMaker
|
|
8410
8591
|
:auto_ml_job_arn,
|
8411
8592
|
:data_processing,
|
8412
8593
|
:experiment_config)
|
8594
|
+
SENSITIVE = []
|
8413
8595
|
include Aws::Structure
|
8414
8596
|
end
|
8415
8597
|
|
@@ -8428,6 +8610,7 @@ module Aws::SageMaker
|
|
8428
8610
|
#
|
8429
8611
|
class DescribeTrialComponentRequest < Struct.new(
|
8430
8612
|
:trial_component_name)
|
8613
|
+
SENSITIVE = []
|
8431
8614
|
include Aws::Structure
|
8432
8615
|
end
|
8433
8616
|
|
@@ -8517,6 +8700,7 @@ module Aws::SageMaker
|
|
8517
8700
|
:input_artifacts,
|
8518
8701
|
:output_artifacts,
|
8519
8702
|
:metrics)
|
8703
|
+
SENSITIVE = []
|
8520
8704
|
include Aws::Structure
|
8521
8705
|
end
|
8522
8706
|
|
@@ -8535,6 +8719,7 @@ module Aws::SageMaker
|
|
8535
8719
|
#
|
8536
8720
|
class DescribeTrialRequest < Struct.new(
|
8537
8721
|
:trial_name)
|
8722
|
+
SENSITIVE = []
|
8538
8723
|
include Aws::Structure
|
8539
8724
|
end
|
8540
8725
|
|
@@ -8588,6 +8773,7 @@ module Aws::SageMaker
|
|
8588
8773
|
:created_by,
|
8589
8774
|
:last_modified_time,
|
8590
8775
|
:last_modified_by)
|
8776
|
+
SENSITIVE = []
|
8591
8777
|
include Aws::Structure
|
8592
8778
|
end
|
8593
8779
|
|
@@ -8612,11 +8798,12 @@ module Aws::SageMaker
|
|
8612
8798
|
class DescribeUserProfileRequest < Struct.new(
|
8613
8799
|
:domain_id,
|
8614
8800
|
:user_profile_name)
|
8801
|
+
SENSITIVE = []
|
8615
8802
|
include Aws::Structure
|
8616
8803
|
end
|
8617
8804
|
|
8618
8805
|
# @!attribute [rw] domain_id
|
8619
|
-
# The domain
|
8806
|
+
# The ID of the domain that contains the profile.
|
8620
8807
|
# @return [String]
|
8621
8808
|
#
|
8622
8809
|
# @!attribute [rw] user_profile_arn
|
@@ -8628,7 +8815,8 @@ module Aws::SageMaker
|
|
8628
8815
|
# @return [String]
|
8629
8816
|
#
|
8630
8817
|
# @!attribute [rw] home_efs_file_system_uid
|
8631
|
-
# The
|
8818
|
+
# The ID of the user's profile in the Amazon Elastic File System
|
8819
|
+
# (EFS) volume.
|
8632
8820
|
# @return [String]
|
8633
8821
|
#
|
8634
8822
|
# @!attribute [rw] status
|
@@ -8673,6 +8861,7 @@ module Aws::SageMaker
|
|
8673
8861
|
:single_sign_on_user_identifier,
|
8674
8862
|
:single_sign_on_user_value,
|
8675
8863
|
:user_settings)
|
8864
|
+
SENSITIVE = []
|
8676
8865
|
include Aws::Structure
|
8677
8866
|
end
|
8678
8867
|
|
@@ -8693,6 +8882,7 @@ module Aws::SageMaker
|
|
8693
8882
|
#
|
8694
8883
|
class DescribeWorkforceRequest < Struct.new(
|
8695
8884
|
:workforce_name)
|
8885
|
+
SENSITIVE = []
|
8696
8886
|
include Aws::Structure
|
8697
8887
|
end
|
8698
8888
|
|
@@ -8713,6 +8903,7 @@ module Aws::SageMaker
|
|
8713
8903
|
#
|
8714
8904
|
class DescribeWorkforceResponse < Struct.new(
|
8715
8905
|
:workforce)
|
8906
|
+
SENSITIVE = []
|
8716
8907
|
include Aws::Structure
|
8717
8908
|
end
|
8718
8909
|
|
@@ -8731,6 +8922,7 @@ module Aws::SageMaker
|
|
8731
8922
|
#
|
8732
8923
|
class DescribeWorkteamRequest < Struct.new(
|
8733
8924
|
:workteam_name)
|
8925
|
+
SENSITIVE = []
|
8734
8926
|
include Aws::Structure
|
8735
8927
|
end
|
8736
8928
|
|
@@ -8742,6 +8934,7 @@ module Aws::SageMaker
|
|
8742
8934
|
#
|
8743
8935
|
class DescribeWorkteamResponse < Struct.new(
|
8744
8936
|
:workteam)
|
8937
|
+
SENSITIVE = []
|
8745
8938
|
include Aws::Structure
|
8746
8939
|
end
|
8747
8940
|
|
@@ -8774,6 +8967,7 @@ module Aws::SageMaker
|
|
8774
8967
|
:variant_name,
|
8775
8968
|
:desired_weight,
|
8776
8969
|
:desired_instance_count)
|
8970
|
+
SENSITIVE = []
|
8777
8971
|
include Aws::Structure
|
8778
8972
|
end
|
8779
8973
|
|
@@ -8798,6 +8992,7 @@ module Aws::SageMaker
|
|
8798
8992
|
class DisassociateTrialComponentRequest < Struct.new(
|
8799
8993
|
:trial_component_name,
|
8800
8994
|
:trial_name)
|
8995
|
+
SENSITIVE = []
|
8801
8996
|
include Aws::Structure
|
8802
8997
|
end
|
8803
8998
|
|
@@ -8814,6 +9009,7 @@ module Aws::SageMaker
|
|
8814
9009
|
class DisassociateTrialComponentResponse < Struct.new(
|
8815
9010
|
:trial_component_arn,
|
8816
9011
|
:trial_arn)
|
9012
|
+
SENSITIVE = []
|
8817
9013
|
include Aws::Structure
|
8818
9014
|
end
|
8819
9015
|
|
@@ -8857,6 +9053,7 @@ module Aws::SageMaker
|
|
8857
9053
|
:creation_time,
|
8858
9054
|
:last_modified_time,
|
8859
9055
|
:url)
|
9056
|
+
SENSITIVE = []
|
8860
9057
|
include Aws::Structure
|
8861
9058
|
end
|
8862
9059
|
|
@@ -8880,6 +9077,7 @@ module Aws::SageMaker
|
|
8880
9077
|
:endpoint_config_name,
|
8881
9078
|
:endpoint_config_arn,
|
8882
9079
|
:creation_time)
|
9080
|
+
SENSITIVE = []
|
8883
9081
|
include Aws::Structure
|
8884
9082
|
end
|
8885
9083
|
|
@@ -8924,6 +9122,7 @@ module Aws::SageMaker
|
|
8924
9122
|
:local_path,
|
8925
9123
|
:s3_input_mode,
|
8926
9124
|
:s3_data_distribution_type)
|
9125
|
+
SENSITIVE = []
|
8927
9126
|
include Aws::Structure
|
8928
9127
|
end
|
8929
9128
|
|
@@ -8992,6 +9191,7 @@ module Aws::SageMaker
|
|
8992
9191
|
:creation_time,
|
8993
9192
|
:last_modified_time,
|
8994
9193
|
:endpoint_status)
|
9194
|
+
SENSITIVE = []
|
8995
9195
|
include Aws::Structure
|
8996
9196
|
end
|
8997
9197
|
|
@@ -9054,6 +9254,7 @@ module Aws::SageMaker
|
|
9054
9254
|
:last_modified_time,
|
9055
9255
|
:last_modified_by,
|
9056
9256
|
:tags)
|
9257
|
+
SENSITIVE = []
|
9057
9258
|
include Aws::Structure
|
9058
9259
|
end
|
9059
9260
|
|
@@ -9086,6 +9287,7 @@ module Aws::SageMaker
|
|
9086
9287
|
:experiment_name,
|
9087
9288
|
:trial_name,
|
9088
9289
|
:trial_component_display_name)
|
9290
|
+
SENSITIVE = []
|
9089
9291
|
include Aws::Structure
|
9090
9292
|
end
|
9091
9293
|
|
@@ -9104,6 +9306,7 @@ module Aws::SageMaker
|
|
9104
9306
|
class ExperimentSource < Struct.new(
|
9105
9307
|
:source_arn,
|
9106
9308
|
:source_type)
|
9309
|
+
SENSITIVE = []
|
9107
9310
|
include Aws::Structure
|
9108
9311
|
end
|
9109
9312
|
|
@@ -9145,6 +9348,7 @@ module Aws::SageMaker
|
|
9145
9348
|
:experiment_source,
|
9146
9349
|
:creation_time,
|
9147
9350
|
:last_modified_time)
|
9351
|
+
SENSITIVE = []
|
9148
9352
|
include Aws::Structure
|
9149
9353
|
end
|
9150
9354
|
|
@@ -9185,6 +9389,7 @@ module Aws::SageMaker
|
|
9185
9389
|
:file_system_access_mode,
|
9186
9390
|
:file_system_type,
|
9187
9391
|
:directory_path)
|
9392
|
+
SENSITIVE = []
|
9188
9393
|
include Aws::Structure
|
9189
9394
|
end
|
9190
9395
|
|
@@ -9319,6 +9524,7 @@ module Aws::SageMaker
|
|
9319
9524
|
:name,
|
9320
9525
|
:operator,
|
9321
9526
|
:value)
|
9527
|
+
SENSITIVE = []
|
9322
9528
|
include Aws::Structure
|
9323
9529
|
end
|
9324
9530
|
|
@@ -9342,6 +9548,7 @@ module Aws::SageMaker
|
|
9342
9548
|
:type,
|
9343
9549
|
:metric_name,
|
9344
9550
|
:value)
|
9551
|
+
SENSITIVE = []
|
9345
9552
|
include Aws::Structure
|
9346
9553
|
end
|
9347
9554
|
|
@@ -9369,6 +9576,7 @@ module Aws::SageMaker
|
|
9369
9576
|
:type,
|
9370
9577
|
:metric_name,
|
9371
9578
|
:value)
|
9579
|
+
SENSITIVE = []
|
9372
9580
|
include Aws::Structure
|
9373
9581
|
end
|
9374
9582
|
|
@@ -9397,6 +9605,7 @@ module Aws::SageMaker
|
|
9397
9605
|
class FlowDefinitionOutputConfig < Struct.new(
|
9398
9606
|
:s3_output_path,
|
9399
9607
|
:kms_key_id)
|
9608
|
+
SENSITIVE = []
|
9400
9609
|
include Aws::Structure
|
9401
9610
|
end
|
9402
9611
|
|
@@ -9431,6 +9640,7 @@ module Aws::SageMaker
|
|
9431
9640
|
:flow_definition_status,
|
9432
9641
|
:creation_time,
|
9433
9642
|
:failure_reason)
|
9643
|
+
SENSITIVE = []
|
9434
9644
|
include Aws::Structure
|
9435
9645
|
end
|
9436
9646
|
|
@@ -9459,6 +9669,7 @@ module Aws::SageMaker
|
|
9459
9669
|
class GetSearchSuggestionsRequest < Struct.new(
|
9460
9670
|
:resource,
|
9461
9671
|
:suggestion_query)
|
9672
|
+
SENSITIVE = []
|
9462
9673
|
include Aws::Structure
|
9463
9674
|
end
|
9464
9675
|
|
@@ -9471,6 +9682,7 @@ module Aws::SageMaker
|
|
9471
9682
|
#
|
9472
9683
|
class GetSearchSuggestionsResponse < Struct.new(
|
9473
9684
|
:property_name_suggestions)
|
9685
|
+
SENSITIVE = []
|
9474
9686
|
include Aws::Structure
|
9475
9687
|
end
|
9476
9688
|
|
@@ -9509,6 +9721,7 @@ module Aws::SageMaker
|
|
9509
9721
|
:repository_url,
|
9510
9722
|
:branch,
|
9511
9723
|
:secret_arn)
|
9724
|
+
SENSITIVE = []
|
9512
9725
|
include Aws::Structure
|
9513
9726
|
end
|
9514
9727
|
|
@@ -9535,6 +9748,7 @@ module Aws::SageMaker
|
|
9535
9748
|
#
|
9536
9749
|
class GitConfigForUpdate < Struct.new(
|
9537
9750
|
:secret_arn)
|
9751
|
+
SENSITIVE = []
|
9538
9752
|
include Aws::Structure
|
9539
9753
|
end
|
9540
9754
|
|
@@ -9566,6 +9780,7 @@ module Aws::SageMaker
|
|
9566
9780
|
#
|
9567
9781
|
class HumanLoopActivationConditionsConfig < Struct.new(
|
9568
9782
|
:human_loop_activation_conditions)
|
9783
|
+
SENSITIVE = []
|
9569
9784
|
include Aws::Structure
|
9570
9785
|
end
|
9571
9786
|
|
@@ -9591,6 +9806,7 @@ module Aws::SageMaker
|
|
9591
9806
|
#
|
9592
9807
|
class HumanLoopActivationConfig < Struct.new(
|
9593
9808
|
:human_loop_activation_conditions_config)
|
9809
|
+
SENSITIVE = []
|
9594
9810
|
include Aws::Structure
|
9595
9811
|
end
|
9596
9812
|
|
@@ -9876,6 +10092,7 @@ module Aws::SageMaker
|
|
9876
10092
|
:task_time_limit_in_seconds,
|
9877
10093
|
:task_keywords,
|
9878
10094
|
:public_workforce_task_price)
|
10095
|
+
SENSITIVE = []
|
9879
10096
|
include Aws::Structure
|
9880
10097
|
end
|
9881
10098
|
|
@@ -9898,6 +10115,7 @@ module Aws::SageMaker
|
|
9898
10115
|
#
|
9899
10116
|
class HumanLoopRequestSource < Struct.new(
|
9900
10117
|
:aws_managed_human_loop_request_source)
|
10118
|
+
SENSITIVE = []
|
9901
10119
|
include Aws::Structure
|
9902
10120
|
end
|
9903
10121
|
|
@@ -9909,7 +10127,8 @@ module Aws::SageMaker
|
|
9909
10127
|
# {
|
9910
10128
|
# workteam_arn: "WorkteamArn", # required
|
9911
10129
|
# ui_config: { # required
|
9912
|
-
# ui_template_s3_uri: "S3Uri",
|
10130
|
+
# ui_template_s3_uri: "S3Uri",
|
10131
|
+
# human_task_ui_arn: "HumanTaskUiArn",
|
9913
10132
|
# },
|
9914
10133
|
# pre_human_task_lambda_arn: "LambdaFunctionArn", # required
|
9915
10134
|
# task_keywords: ["TaskKeyword"],
|
@@ -9950,291 +10169,311 @@ module Aws::SageMaker
|
|
9950
10169
|
# segmentation, and text classification task types, Amazon SageMaker
|
9951
10170
|
# Ground Truth provides the following Lambda functions:
|
9952
10171
|
#
|
9953
|
-
# **
|
10172
|
+
# **Bounding box** - Finds the most similar boxes from different
|
10173
|
+
# workers based on the Jaccard index of the boxes.
|
9954
10174
|
#
|
9955
10175
|
# * `arn:aws:lambda:us-east-1:432418664414:function:PRE-BoundingBox`
|
9956
10176
|
#
|
9957
|
-
# * `arn:aws:lambda:us-east-
|
10177
|
+
# * `arn:aws:lambda:us-east-2:266458841044:function:PRE-BoundingBox`
|
9958
10178
|
#
|
9959
|
-
# * `arn:aws:lambda:us-
|
10179
|
+
# * `arn:aws:lambda:us-west-2:081040173940:function:PRE-BoundingBox`
|
9960
10180
|
#
|
9961
|
-
# * `arn:aws:lambda:
|
10181
|
+
# * `arn:aws:lambda:ca-central-1:918755190332:function:PRE-BoundingBox`
|
9962
10182
|
#
|
9963
|
-
# * `arn:aws:lambda:
|
10183
|
+
# * `arn:aws:lambda:eu-west-1:568282634449:function:PRE-BoundingBox`
|
9964
10184
|
#
|
9965
|
-
# * `arn:aws:lambda:
|
10185
|
+
# * `arn:aws:lambda:eu-west-2:487402164563:function:PRE-BoundingBox`
|
9966
10186
|
#
|
9967
|
-
# * `arn:aws:lambda:
|
10187
|
+
# * `arn:aws:lambda:eu-central-1:203001061592:function:PRE-BoundingBox`
|
9968
10188
|
#
|
9969
|
-
# * `arn:aws:lambda:
|
10189
|
+
# * `arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-BoundingBox`
|
9970
10190
|
#
|
9971
|
-
# * `arn:aws:lambda:
|
10191
|
+
# * `arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-BoundingBox`
|
9972
10192
|
#
|
9973
|
-
# * `arn:aws:lambda:
|
10193
|
+
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-BoundingBox`
|
9974
10194
|
#
|
9975
|
-
# * `arn:aws:lambda:
|
10195
|
+
# * `arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-BoundingBox`
|
9976
10196
|
#
|
9977
|
-
#
|
10197
|
+
# * `arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-BoundingBox`
|
9978
10198
|
#
|
9979
|
-
#
|
10199
|
+
# **Image classification** - Uses a variant of the Expectation
|
10200
|
+
# Maximization approach to estimate the true class of an image based
|
10201
|
+
# on annotations from individual workers.
|
10202
|
+
#
|
10203
|
+
# * `arn:aws:lambda:us-east-1:432418664414:function:PRE-ImageMultiClass`
|
9980
10204
|
#
|
9981
10205
|
# * `arn:aws:lambda:us-east-2:266458841044:function:PRE-ImageMultiClass`
|
9982
10206
|
#
|
9983
|
-
# * `arn:aws:lambda:us-
|
10207
|
+
# * `arn:aws:lambda:us-west-2:081040173940:function:PRE-ImageMultiClass`
|
9984
10208
|
#
|
9985
|
-
# * `arn:aws:lambda:
|
10209
|
+
# * `arn:aws:lambda:ca-central-1:918755190332:function:PRE-ImageMultiClass`
|
9986
10210
|
#
|
9987
|
-
# * `arn:aws:lambda:
|
10211
|
+
# * `arn:aws:lambda:eu-west-1:568282634449:function:PRE-ImageMultiClass`
|
9988
10212
|
#
|
9989
|
-
# * `arn:aws:lambda:
|
10213
|
+
# * `arn:aws:lambda:eu-west-2:487402164563:function:PRE-ImageMultiClass`
|
9990
10214
|
#
|
9991
|
-
# * `arn:aws:lambda:
|
10215
|
+
# * `arn:aws:lambda:eu-central-1:203001061592:function:PRE-ImageMultiClass`
|
9992
10216
|
#
|
9993
|
-
# * `arn:aws:lambda:
|
10217
|
+
# * `arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-ImageMultiClass`
|
9994
10218
|
#
|
9995
|
-
# * `arn:aws:lambda:
|
10219
|
+
# * `arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-ImageMultiClass`
|
9996
10220
|
#
|
9997
|
-
# * `arn:aws:lambda:
|
10221
|
+
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-ImageMultiClass`
|
9998
10222
|
#
|
9999
|
-
# * `arn:aws:lambda:
|
10223
|
+
# * `arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-ImageMultiClass`
|
10000
10224
|
#
|
10001
|
-
#
|
10225
|
+
# * `arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-ImageMultiClass`
|
10002
10226
|
#
|
10003
|
-
#
|
10227
|
+
# **Multi-label image classification** - Uses a variant of the
|
10228
|
+
# Expectation Maximization approach to estimate the true classes of an
|
10229
|
+
# image based on annotations from individual workers.
|
10004
10230
|
#
|
10005
|
-
# * `arn:aws:lambda:us-
|
10231
|
+
# * `arn:aws:lambda:us-east-1:432418664414:function:PRE-ImageMultiClassMultiLabel`
|
10232
|
+
#
|
10233
|
+
# * `arn:aws:lambda:us-east-2:266458841044:function:PRE-ImageMultiClassMultiLabel`
|
10006
10234
|
#
|
10007
10235
|
# * `arn:aws:lambda:us-west-2:081040173940:function:PRE-ImageMultiClassMultiLabel`
|
10008
10236
|
#
|
10009
|
-
# * `arn:aws:lambda:
|
10237
|
+
# * `arn:aws:lambda:ca-central-1:918755190332:function:PRE-ImageMultiClassMultiLabel`
|
10010
10238
|
#
|
10011
|
-
# * `arn:aws:lambda:
|
10239
|
+
# * `arn:aws:lambda:eu-west-1:568282634449:function:PRE-ImageMultiClassMultiLabel`
|
10012
10240
|
#
|
10013
|
-
# * `arn:aws:lambda:
|
10241
|
+
# * `arn:aws:lambda:eu-west-2:487402164563:function:PRE-ImageMultiClassMultiLabel`
|
10014
10242
|
#
|
10015
|
-
# * `arn:aws:lambda:
|
10243
|
+
# * `arn:aws:lambda:eu-central-1:203001061592:function:PRE-ImageMultiClassMultiLabel`
|
10016
10244
|
#
|
10017
|
-
# * `arn:aws:lambda:
|
10245
|
+
# * `arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-ImageMultiClassMultiLabel`
|
10018
10246
|
#
|
10019
|
-
# * `arn:aws:lambda:
|
10247
|
+
# * `arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-ImageMultiClassMultiLabel`
|
10020
10248
|
#
|
10021
|
-
# * `arn:aws:lambda:
|
10249
|
+
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-ImageMultiClassMultiLabel`
|
10022
10250
|
#
|
10023
|
-
# * `arn:aws:lambda:
|
10251
|
+
# * `arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-ImageMultiClassMultiLabel`
|
10024
10252
|
#
|
10025
|
-
#
|
10253
|
+
# * `arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-ImageMultiClassMultiLabel`
|
10026
10254
|
#
|
10027
|
-
#
|
10255
|
+
# **Semantic segmentation** - Treats each pixel in an image as a
|
10256
|
+
# multi-class classification and treats pixel annotations from workers
|
10257
|
+
# as "votes" for the correct label.
|
10028
10258
|
#
|
10029
|
-
# * `arn:aws:lambda:
|
10259
|
+
# * `arn:aws:lambda:us-east-1:432418664414:function:PRE-SemanticSegmentation`
|
10030
10260
|
#
|
10031
|
-
# * `arn:aws:lambda:
|
10261
|
+
# * `arn:aws:lambda:us-east-2:266458841044:function:PRE-SemanticSegmentation`
|
10262
|
+
#
|
10263
|
+
# * `arn:aws:lambda:us-west-2:081040173940:function:PRE-SemanticSegmentation`
|
10032
10264
|
#
|
10033
10265
|
# * `arn:aws:lambda:ca-central-1:918755190332:function:PRE-SemanticSegmentation`
|
10034
10266
|
#
|
10035
|
-
# * `arn:aws:lambda:
|
10267
|
+
# * `arn:aws:lambda:eu-west-1:568282634449:function:PRE-SemanticSegmentation`
|
10036
10268
|
#
|
10037
|
-
# * `arn:aws:lambda:
|
10269
|
+
# * `arn:aws:lambda:eu-west-2:487402164563:function:PRE-SemanticSegmentation`
|
10038
10270
|
#
|
10039
|
-
# * `arn:aws:lambda:
|
10271
|
+
# * `arn:aws:lambda:eu-central-1:203001061592:function:PRE-SemanticSegmentation`
|
10040
10272
|
#
|
10041
|
-
# * `arn:aws:lambda:
|
10273
|
+
# * `arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-SemanticSegmentation`
|
10042
10274
|
#
|
10043
|
-
# * `arn:aws:lambda:
|
10275
|
+
# * `arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-SemanticSegmentation`
|
10044
10276
|
#
|
10045
|
-
# * `arn:aws:lambda:
|
10277
|
+
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-SemanticSegmentation`
|
10046
10278
|
#
|
10047
|
-
# * `arn:aws:lambda:
|
10279
|
+
# * `arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-SemanticSegmentation`
|
10048
10280
|
#
|
10049
|
-
#
|
10281
|
+
# * `arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-SemanticSegmentation`
|
10050
10282
|
#
|
10051
|
-
#
|
10283
|
+
# **Text classification** - Uses a variant of the Expectation
|
10284
|
+
# Maximization approach to estimate the true class of text based on
|
10285
|
+
# annotations from individual workers.
|
10052
10286
|
#
|
10053
|
-
# * `arn:aws:lambda:
|
10287
|
+
# * `arn:aws:lambda:us-east-1:432418664414:function:PRE-TextMultiClass`
|
10054
10288
|
#
|
10055
|
-
# * `arn:aws:lambda:
|
10289
|
+
# * `arn:aws:lambda:us-east-2:266458841044:function:PRE-TextMultiClass`
|
10056
10290
|
#
|
10057
|
-
# * `arn:aws:lambda:
|
10291
|
+
# * `arn:aws:lambda:us-west-2:081040173940:function:PRE-TextMultiClass`
|
10292
|
+
#
|
10293
|
+
# * `arn:aws:lambda:ca-central-1:918755190332:function:PRE-TextMultiClass`
|
10058
10294
|
#
|
10059
10295
|
# * `arn:aws:lambda:eu-west-1:568282634449:function:PRE-TextMultiClass`
|
10060
10296
|
#
|
10061
|
-
# * `arn:aws:lambda:eu-west-
|
10297
|
+
# * `arn:aws:lambda:eu-west-2:487402164563:function:PRE-TextMultiClass`
|
10062
10298
|
#
|
10063
|
-
# * `arn:aws:lambda:eu-
|
10299
|
+
# * `arn:aws:lambda:eu-central-1:203001061592:function:PRE-TextMultiClass`
|
10064
10300
|
#
|
10065
|
-
# * `arn:aws:lambda:
|
10301
|
+
# * `arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-TextMultiClass`
|
10066
10302
|
#
|
10067
|
-
# * `arn:aws:lambda:
|
10303
|
+
# * `arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-TextMultiClass`
|
10068
10304
|
#
|
10069
|
-
# * `arn:aws:lambda:
|
10305
|
+
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-TextMultiClass`
|
10070
10306
|
#
|
10071
|
-
# * `arn:aws:lambda:
|
10307
|
+
# * `arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-TextMultiClass`
|
10072
10308
|
#
|
10073
|
-
#
|
10309
|
+
# * `arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-TextMultiClass`
|
10074
10310
|
#
|
10075
|
-
#
|
10311
|
+
# **Multi-label text classification** - Uses a variant of the
|
10312
|
+
# Expectation Maximization approach to estimate the true classes of
|
10313
|
+
# text based on annotations from individual workers.
|
10076
10314
|
#
|
10077
|
-
# * `arn:aws:lambda:
|
10315
|
+
# * `arn:aws:lambda:us-east-1:432418664414:function:PRE-TextMultiClassMultiLabel`
|
10078
10316
|
#
|
10079
|
-
# * `arn:aws:lambda:
|
10317
|
+
# * `arn:aws:lambda:us-east-2:266458841044:function:PRE-TextMultiClassMultiLabel`
|
10080
10318
|
#
|
10081
|
-
# * `arn:aws:lambda:
|
10319
|
+
# * `arn:aws:lambda:us-west-2:081040173940:function:PRE-TextMultiClassMultiLabel`
|
10082
10320
|
#
|
10083
|
-
# * `arn:aws:lambda:
|
10321
|
+
# * `arn:aws:lambda:ca-central-1:918755190332:function:PRE-TextMultiClassMultiLabel`
|
10322
|
+
#
|
10323
|
+
# * `arn:aws:lambda:eu-west-1:568282634449:function:PRE-TextMultiClassMultiLabel`
|
10084
10324
|
#
|
10085
10325
|
# * `arn:aws:lambda:eu-west-2:487402164563:function:PRE-TextMultiClassMultiLabel`
|
10086
10326
|
#
|
10087
|
-
# * `arn:aws:lambda:eu-
|
10327
|
+
# * `arn:aws:lambda:eu-central-1:203001061592:function:PRE-TextMultiClassMultiLabel`
|
10088
10328
|
#
|
10089
|
-
# * `arn:aws:lambda:
|
10329
|
+
# * `arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-TextMultiClassMultiLabel`
|
10090
10330
|
#
|
10091
|
-
# * `arn:aws:lambda:
|
10331
|
+
# * `arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-TextMultiClassMultiLabel`
|
10092
10332
|
#
|
10093
|
-
# * `arn:aws:lambda:
|
10333
|
+
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-TextMultiClassMultiLabel`
|
10094
10334
|
#
|
10095
|
-
# * `arn:aws:lambda:
|
10335
|
+
# * `arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-TextMultiClassMultiLabel`
|
10096
10336
|
#
|
10097
|
-
#
|
10337
|
+
# * `arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-TextMultiClassMultiLabel`
|
10098
10338
|
#
|
10099
|
-
#
|
10339
|
+
# **Named entity recognition** - Groups similar selections and
|
10340
|
+
# calculates aggregate boundaries, resolving to most-assigned label.
|
10100
10341
|
#
|
10101
|
-
# * `arn:aws:lambda:
|
10342
|
+
# * `arn:aws:lambda:us-east-1:432418664414:function:PRE-NamedEntityRecognition`
|
10102
10343
|
#
|
10103
|
-
# * `arn:aws:lambda:
|
10344
|
+
# * `arn:aws:lambda:us-east-2:266458841044:function:PRE-NamedEntityRecognition`
|
10104
10345
|
#
|
10105
|
-
# * `arn:aws:lambda:
|
10346
|
+
# * `arn:aws:lambda:us-west-2:081040173940:function:PRE-NamedEntityRecognition`
|
10106
10347
|
#
|
10107
|
-
# * `arn:aws:lambda:
|
10348
|
+
# * `arn:aws:lambda:ca-central-1:918755190332:function:PRE-NamedEntityRecognition`
|
10108
10349
|
#
|
10109
|
-
# * `arn:aws:lambda:eu-
|
10350
|
+
# * `arn:aws:lambda:eu-west-1:568282634449:function:PRE-NamedEntityRecognition`
|
10351
|
+
#
|
10352
|
+
# * `arn:aws:lambda:eu-west-2:487402164563:function:PRE-NamedEntityRecognition`
|
10110
10353
|
#
|
10111
10354
|
# * `arn:aws:lambda:eu-central-1:203001061592:function:PRE-NamedEntityRecognition`
|
10112
10355
|
#
|
10113
|
-
# * `arn:aws:lambda:
|
10356
|
+
# * `arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-NamedEntityRecognition`
|
10114
10357
|
#
|
10115
|
-
# * `arn:aws:lambda:
|
10358
|
+
# * `arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-NamedEntityRecognition`
|
10116
10359
|
#
|
10117
|
-
# * `arn:aws:lambda:
|
10360
|
+
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-NamedEntityRecognition`
|
10118
10361
|
#
|
10119
|
-
# * `arn:aws:lambda:
|
10362
|
+
# * `arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-NamedEntityRecognition`
|
10120
10363
|
#
|
10121
|
-
#
|
10364
|
+
# * `arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-NamedEntityRecognition`
|
10122
10365
|
#
|
10123
|
-
#
|
10366
|
+
# **Bounding box verification** - Uses a variant of the Expectation
|
10367
|
+
# Maximization approach to estimate the true class of verification
|
10368
|
+
# judgement for bounding box labels based on annotations from
|
10369
|
+
# individual workers.
|
10124
10370
|
#
|
10125
|
-
# * `arn:aws:lambda:
|
10371
|
+
# * `arn:aws:lambda:us-east-1:432418664414:function:PRE-VerificationBoundingBox`
|
10126
10372
|
#
|
10127
|
-
# * `arn:aws:lambda:
|
10373
|
+
# * `arn:aws:lambda:us-east-2:266458841044:function:PRE-VerificationBoundingBox`
|
10128
10374
|
#
|
10129
|
-
# * `arn:aws:lambda:
|
10375
|
+
# * `arn:aws:lambda:us-west-2:081040173940:function:PRE-VerificationBoundingBox`
|
10130
10376
|
#
|
10131
|
-
# * `arn:aws:lambda:
|
10377
|
+
# * `arn:aws:lambda:ca-central-1:918755190332:function:PRE-VerificationBoundingBox`
|
10132
10378
|
#
|
10133
|
-
# * `arn:aws:lambda:
|
10379
|
+
# * `arn:aws:lambda:eu-west-1:568282634449:function:PRE-VerificationBoundingBox`
|
10134
10380
|
#
|
10135
|
-
# * `arn:aws:lambda:
|
10381
|
+
# * `arn:aws:lambda:eu-west-2:487402164563:function:PRE-VerificationBoundingBox`
|
10382
|
+
#
|
10383
|
+
# * `arn:aws:lambda:eu-central-1:203001061592:function:PRE-VerificationBoundingBox`
|
10136
10384
|
#
|
10137
10385
|
# * `arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-VerificationBoundingBox`
|
10138
10386
|
#
|
10139
|
-
# * `arn:aws:lambda:ap-northeast-
|
10387
|
+
# * `arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-VerificationBoundingBox`
|
10140
10388
|
#
|
10141
|
-
# * `arn:aws:lambda:ap-
|
10389
|
+
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-VerificationBoundingBox`
|
10142
10390
|
#
|
10143
|
-
# * `arn:aws:lambda:ap-
|
10391
|
+
# * `arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-VerificationBoundingBox`
|
10144
10392
|
#
|
10145
|
-
#
|
10393
|
+
# * `arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-VerificationBoundingBox`
|
10146
10394
|
#
|
10147
|
-
#
|
10395
|
+
# **Bounding box adjustment** - Finds the most similar boxes from
|
10396
|
+
# different workers based on the Jaccard index of the adjusted
|
10397
|
+
# annotations.
|
10148
10398
|
#
|
10149
|
-
# * `arn:aws:lambda:
|
10399
|
+
# * `arn:aws:lambda:us-east-1:432418664414:function:PRE-AdjustmentBoundingBox`
|
10150
10400
|
#
|
10151
|
-
# * `arn:aws:lambda:
|
10401
|
+
# * `arn:aws:lambda:us-east-2:266458841044:function:PRE-AdjustmentBoundingBox`
|
10152
10402
|
#
|
10153
|
-
# * `arn:aws:lambda:
|
10403
|
+
# * `arn:aws:lambda:us-west-2:081040173940:function:PRE-AdjustmentBoundingBox`
|
10154
10404
|
#
|
10155
|
-
# * `arn:aws:lambda:
|
10405
|
+
# * `arn:aws:lambda:ca-central-1:918755190332:function:PRE-AdjustmentBoundingBox`
|
10156
10406
|
#
|
10157
|
-
# * `arn:aws:lambda:
|
10407
|
+
# * `arn:aws:lambda:eu-west-1:568282634449:function:PRE-AdjustmentBoundingBox`
|
10158
10408
|
#
|
10159
|
-
# * `arn:aws:lambda:
|
10409
|
+
# * `arn:aws:lambda:eu-west-2:487402164563:function:PRE-AdjustmentBoundingBox`
|
10160
10410
|
#
|
10161
|
-
# * `arn:aws:lambda:
|
10411
|
+
# * `arn:aws:lambda:eu-central-1:203001061592:function:PRE-AdjustmentBoundingBox`
|
10162
10412
|
#
|
10163
|
-
# * `arn:aws:lambda:ap-northeast-
|
10413
|
+
# * `arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-AdjustmentBoundingBox`
|
10164
10414
|
#
|
10165
10415
|
# * `arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-AdjustmentBoundingBox`
|
10166
10416
|
#
|
10167
|
-
# * `arn:aws:lambda:ap-
|
10168
|
-
#
|
10169
|
-
# **Asia Pacific (Mumbai) (ap-south-1):**
|
10170
|
-
#
|
10171
|
-
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-BoundingBox`
|
10172
|
-
#
|
10173
|
-
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-ImageMultiClass`
|
10174
|
-
#
|
10175
|
-
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-ImageMultiClassMultiLabel`
|
10176
|
-
#
|
10177
|
-
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-SemanticSegmentation`
|
10178
|
-
#
|
10179
|
-
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-TextMultiClass`
|
10180
|
-
#
|
10181
|
-
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-TextMultiClassMultiLabel`
|
10182
|
-
#
|
10183
|
-
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-NamedEntityRecognition`
|
10417
|
+
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-AdjustmentBoundingBox`
|
10184
10418
|
#
|
10185
|
-
# * `arn:aws:lambda:ap-
|
10419
|
+
# * `arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-AdjustmentBoundingBox`
|
10186
10420
|
#
|
10187
|
-
# * `arn:aws:lambda:ap-
|
10421
|
+
# * `arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-AdjustmentBoundingBox`
|
10188
10422
|
#
|
10189
|
-
#
|
10423
|
+
# **Semantic segmentation verification** - Uses a variant of the
|
10424
|
+
# Expectation Maximization approach to estimate the true class of
|
10425
|
+
# verification judgment for semantic segmentation labels based on
|
10426
|
+
# annotations from individual workers.
|
10190
10427
|
#
|
10191
|
-
# * `arn:aws:lambda:
|
10428
|
+
# * `arn:aws:lambda:us-east-1:432418664414:function:PRE-VerificationSemanticSegmentation`
|
10192
10429
|
#
|
10193
|
-
#
|
10430
|
+
# * `arn:aws:lambda:us-east-2:266458841044:function:PRE-VerificationSemanticSegmentation`
|
10194
10431
|
#
|
10195
|
-
# * `arn:aws:lambda:
|
10432
|
+
# * `arn:aws:lambda:us-west-2:081040173940:function:PRE-VerificationSemanticSegmentation`
|
10196
10433
|
#
|
10197
|
-
# * `arn:aws:lambda:
|
10434
|
+
# * `arn:aws:lambda:ca-central-1:918755190332:function:PRE-VerificationSemanticSegmentation`
|
10198
10435
|
#
|
10199
|
-
# * `arn:aws:lambda:
|
10436
|
+
# * `arn:aws:lambda:eu-west-1:568282634449:function:PRE-VerificationSemanticSegmentation`
|
10200
10437
|
#
|
10201
|
-
# * `arn:aws:lambda:
|
10438
|
+
# * `arn:aws:lambda:eu-west-2:487402164563:function:PRE-VerificationSemanticSegmentation`
|
10202
10439
|
#
|
10203
|
-
# * `arn:aws:lambda:
|
10440
|
+
# * `arn:aws:lambda:eu-central-1:203001061592:function:PRE-VerificationSemanticSegmentation`
|
10204
10441
|
#
|
10205
|
-
# * `arn:aws:lambda:ap-
|
10442
|
+
# * `arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-VerificationSemanticSegmentation`
|
10206
10443
|
#
|
10207
|
-
# * `arn:aws:lambda:ap-
|
10444
|
+
# * `arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-VerificationSemanticSegmentation`
|
10208
10445
|
#
|
10209
|
-
# * `arn:aws:lambda:ap-
|
10446
|
+
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-VerificationSemanticSegmentation`
|
10210
10447
|
#
|
10211
10448
|
# * `arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-VerificationSemanticSegmentation`
|
10212
10449
|
#
|
10213
|
-
# * `arn:aws:lambda:ap-southeast-
|
10450
|
+
# * `arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-VerificationSemanticSegmentation`
|
10214
10451
|
#
|
10215
|
-
#
|
10452
|
+
# **Semantic segmentation adjustment** - Treats each pixel in an image
|
10453
|
+
# as a multi-class classification and treats pixel adjusted
|
10454
|
+
# annotations from workers as "votes" for the correct label.
|
10216
10455
|
#
|
10217
|
-
#
|
10456
|
+
# * `arn:aws:lambda:us-east-1:432418664414:function:PRE-AdjustmentSemanticSegmentation`
|
10218
10457
|
#
|
10219
|
-
# * `arn:aws:lambda:
|
10458
|
+
# * `arn:aws:lambda:us-east-2:266458841044:function:PRE-AdjustmentSemanticSegmentation`
|
10220
10459
|
#
|
10221
|
-
# * `arn:aws:lambda:
|
10460
|
+
# * `arn:aws:lambda:us-west-2:081040173940:function:PRE-AdjustmentSemanticSegmentation`
|
10222
10461
|
#
|
10223
|
-
# * `arn:aws:lambda:
|
10462
|
+
# * `arn:aws:lambda:ca-central-1:918755190332:function:PRE-AdjustmentSemanticSegmentation`
|
10224
10463
|
#
|
10225
|
-
# * `arn:aws:lambda:
|
10464
|
+
# * `arn:aws:lambda:eu-west-1:568282634449:function:PRE-AdjustmentSemanticSegmentation`
|
10226
10465
|
#
|
10227
|
-
# * `arn:aws:lambda:
|
10466
|
+
# * `arn:aws:lambda:eu-west-2:487402164563:function:PRE-AdjustmentSemanticSegmentation`
|
10228
10467
|
#
|
10229
|
-
# * `arn:aws:lambda:
|
10468
|
+
# * `arn:aws:lambda:eu-central-1:203001061592:function:PRE-AdjustmentSemanticSegmentation`
|
10230
10469
|
#
|
10231
|
-
# * `arn:aws:lambda:ap-
|
10470
|
+
# * `arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-AdjustmentSemanticSegmentation`
|
10232
10471
|
#
|
10233
|
-
# * `arn:aws:lambda:ap-
|
10472
|
+
# * `arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-AdjustmentSemanticSegmentation`
|
10234
10473
|
#
|
10235
|
-
# * `arn:aws:lambda:ap-
|
10474
|
+
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-AdjustmentSemanticSegmentation`
|
10236
10475
|
#
|
10237
|
-
# * `arn:aws:lambda:ap-southeast-
|
10476
|
+
# * `arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-AdjustmentSemanticSegmentation`
|
10238
10477
|
#
|
10239
10478
|
# * `arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-AdjustmentSemanticSegmentation`
|
10240
10479
|
# @return [String]
|
@@ -10299,6 +10538,7 @@ module Aws::SageMaker
|
|
10299
10538
|
:max_concurrent_task_count,
|
10300
10539
|
:annotation_consolidation_config,
|
10301
10540
|
:public_workforce_task_price)
|
10541
|
+
SENSITIVE = []
|
10302
10542
|
include Aws::Structure
|
10303
10543
|
end
|
10304
10544
|
|
@@ -10322,6 +10562,7 @@ module Aws::SageMaker
|
|
10322
10562
|
:human_task_ui_name,
|
10323
10563
|
:human_task_ui_arn,
|
10324
10564
|
:creation_time)
|
10565
|
+
SENSITIVE = []
|
10325
10566
|
include Aws::Structure
|
10326
10567
|
end
|
10327
10568
|
|
@@ -10398,6 +10639,7 @@ module Aws::SageMaker
|
|
10398
10639
|
:training_input_mode,
|
10399
10640
|
:algorithm_name,
|
10400
10641
|
:metric_definitions)
|
10642
|
+
SENSITIVE = []
|
10401
10643
|
include Aws::Structure
|
10402
10644
|
end
|
10403
10645
|
|
@@ -10469,6 +10711,7 @@ module Aws::SageMaker
|
|
10469
10711
|
:is_tunable,
|
10470
10712
|
:is_required,
|
10471
10713
|
:default_value)
|
10714
|
+
SENSITIVE = []
|
10472
10715
|
include Aws::Structure
|
10473
10716
|
end
|
10474
10717
|
|
@@ -10707,6 +10950,7 @@ module Aws::SageMaker
|
|
10707
10950
|
:enable_inter_container_traffic_encryption,
|
10708
10951
|
:enable_managed_spot_training,
|
10709
10952
|
:checkpoint_config)
|
10953
|
+
SENSITIVE = []
|
10710
10954
|
include Aws::Structure
|
10711
10955
|
end
|
10712
10956
|
|
@@ -10803,6 +11047,7 @@ module Aws::SageMaker
|
|
10803
11047
|
:failure_reason,
|
10804
11048
|
:final_hyper_parameter_tuning_job_objective_metric,
|
10805
11049
|
:objective_status)
|
11050
|
+
SENSITIVE = []
|
10806
11051
|
include Aws::Structure
|
10807
11052
|
end
|
10808
11053
|
|
@@ -10913,6 +11158,7 @@ module Aws::SageMaker
|
|
10913
11158
|
:parameter_ranges,
|
10914
11159
|
:training_job_early_stopping_type,
|
10915
11160
|
:tuning_job_completion_criteria)
|
11161
|
+
SENSITIVE = []
|
10916
11162
|
include Aws::Structure
|
10917
11163
|
end
|
10918
11164
|
|
@@ -10943,6 +11189,7 @@ module Aws::SageMaker
|
|
10943
11189
|
class HyperParameterTuningJobObjective < Struct.new(
|
10944
11190
|
:type,
|
10945
11191
|
:metric_name)
|
11192
|
+
SENSITIVE = []
|
10946
11193
|
include Aws::Structure
|
10947
11194
|
end
|
10948
11195
|
|
@@ -11008,6 +11255,7 @@ module Aws::SageMaker
|
|
11008
11255
|
:training_job_status_counters,
|
11009
11256
|
:objective_status_counters,
|
11010
11257
|
:resource_limits)
|
11258
|
+
SENSITIVE = []
|
11011
11259
|
include Aws::Structure
|
11012
11260
|
end
|
11013
11261
|
|
@@ -11092,6 +11340,7 @@ module Aws::SageMaker
|
|
11092
11340
|
class HyperParameterTuningJobWarmStartConfig < Struct.new(
|
11093
11341
|
:parent_hyper_parameter_tuning_jobs,
|
11094
11342
|
:warm_start_type)
|
11343
|
+
SENSITIVE = []
|
11095
11344
|
include Aws::Structure
|
11096
11345
|
end
|
11097
11346
|
|
@@ -11148,6 +11397,7 @@ module Aws::SageMaker
|
|
11148
11397
|
:supported_realtime_inference_instance_types,
|
11149
11398
|
:supported_content_types,
|
11150
11399
|
:supported_response_mime_types)
|
11400
|
+
SENSITIVE = []
|
11151
11401
|
include Aws::Structure
|
11152
11402
|
end
|
11153
11403
|
|
@@ -11274,6 +11524,7 @@ module Aws::SageMaker
|
|
11274
11524
|
:s3_uri,
|
11275
11525
|
:data_input_config,
|
11276
11526
|
:framework)
|
11527
|
+
SENSITIVE = []
|
11277
11528
|
include Aws::Structure
|
11278
11529
|
end
|
11279
11530
|
|
@@ -11338,6 +11589,7 @@ module Aws::SageMaker
|
|
11338
11589
|
:min_value,
|
11339
11590
|
:max_value,
|
11340
11591
|
:scaling_type)
|
11592
|
+
SENSITIVE = []
|
11341
11593
|
include Aws::Structure
|
11342
11594
|
end
|
11343
11595
|
|
@@ -11364,6 +11616,7 @@ module Aws::SageMaker
|
|
11364
11616
|
class IntegerParameterRangeSpecification < Struct.new(
|
11365
11617
|
:min_value,
|
11366
11618
|
:max_value)
|
11619
|
+
SENSITIVE = []
|
11367
11620
|
include Aws::Structure
|
11368
11621
|
end
|
11369
11622
|
|
@@ -11380,13 +11633,15 @@ module Aws::SageMaker
|
|
11380
11633
|
# }
|
11381
11634
|
#
|
11382
11635
|
# @!attribute [rw] default_resource_spec
|
11383
|
-
# The instance type and
|
11636
|
+
# The default instance type and the Amazon Resource Name (ARN) of the
|
11637
|
+
# SageMaker image created on the instance.
|
11384
11638
|
# @return [Types::ResourceSpec]
|
11385
11639
|
#
|
11386
11640
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/JupyterServerAppSettings AWS API Documentation
|
11387
11641
|
#
|
11388
11642
|
class JupyterServerAppSettings < Struct.new(
|
11389
11643
|
:default_resource_spec)
|
11644
|
+
SENSITIVE = []
|
11390
11645
|
include Aws::Structure
|
11391
11646
|
end
|
11392
11647
|
|
@@ -11403,13 +11658,15 @@ module Aws::SageMaker
|
|
11403
11658
|
# }
|
11404
11659
|
#
|
11405
11660
|
# @!attribute [rw] default_resource_spec
|
11406
|
-
# The instance type and
|
11661
|
+
# The default instance type and the Amazon Resource Name (ARN) of the
|
11662
|
+
# SageMaker image created on the instance.
|
11407
11663
|
# @return [Types::ResourceSpec]
|
11408
11664
|
#
|
11409
11665
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/KernelGatewayAppSettings AWS API Documentation
|
11410
11666
|
#
|
11411
11667
|
class KernelGatewayAppSettings < Struct.new(
|
11412
11668
|
:default_resource_spec)
|
11669
|
+
SENSITIVE = []
|
11413
11670
|
include Aws::Structure
|
11414
11671
|
end
|
11415
11672
|
|
@@ -11444,6 +11701,7 @@ module Aws::SageMaker
|
|
11444
11701
|
:machine_labeled,
|
11445
11702
|
:failed_non_retryable_error,
|
11446
11703
|
:unlabeled)
|
11704
|
+
SENSITIVE = []
|
11447
11705
|
include Aws::Structure
|
11448
11706
|
end
|
11449
11707
|
|
@@ -11468,6 +11726,7 @@ module Aws::SageMaker
|
|
11468
11726
|
:human_labeled,
|
11469
11727
|
:pending_human,
|
11470
11728
|
:total)
|
11729
|
+
SENSITIVE = []
|
11471
11730
|
include Aws::Structure
|
11472
11731
|
end
|
11473
11732
|
|
@@ -11524,6 +11783,7 @@ module Aws::SageMaker
|
|
11524
11783
|
:labeling_job_algorithm_specification_arn,
|
11525
11784
|
:initial_active_learning_model_arn,
|
11526
11785
|
:labeling_job_resource_config)
|
11786
|
+
SENSITIVE = []
|
11527
11787
|
include Aws::Structure
|
11528
11788
|
end
|
11529
11789
|
|
@@ -11548,6 +11808,7 @@ module Aws::SageMaker
|
|
11548
11808
|
#
|
11549
11809
|
class LabelingJobDataAttributes < Struct.new(
|
11550
11810
|
:content_classifiers)
|
11811
|
+
SENSITIVE = []
|
11551
11812
|
include Aws::Structure
|
11552
11813
|
end
|
11553
11814
|
|
@@ -11570,6 +11831,7 @@ module Aws::SageMaker
|
|
11570
11831
|
#
|
11571
11832
|
class LabelingJobDataSource < Struct.new(
|
11572
11833
|
:s3_data_source)
|
11834
|
+
SENSITIVE = []
|
11573
11835
|
include Aws::Structure
|
11574
11836
|
end
|
11575
11837
|
|
@@ -11608,6 +11870,7 @@ module Aws::SageMaker
|
|
11608
11870
|
:creation_time,
|
11609
11871
|
:label_counters,
|
11610
11872
|
:number_of_human_workers_per_data_object)
|
11873
|
+
SENSITIVE = []
|
11611
11874
|
include Aws::Structure
|
11612
11875
|
end
|
11613
11876
|
|
@@ -11640,6 +11903,7 @@ module Aws::SageMaker
|
|
11640
11903
|
class LabelingJobInputConfig < Struct.new(
|
11641
11904
|
:data_source,
|
11642
11905
|
:data_attributes)
|
11906
|
+
SENSITIVE = []
|
11643
11907
|
include Aws::Structure
|
11644
11908
|
end
|
11645
11909
|
|
@@ -11659,6 +11923,7 @@ module Aws::SageMaker
|
|
11659
11923
|
class LabelingJobOutput < Struct.new(
|
11660
11924
|
:output_dataset_s3_uri,
|
11661
11925
|
:final_active_learning_model_arn)
|
11926
|
+
SENSITIVE = []
|
11662
11927
|
include Aws::Structure
|
11663
11928
|
end
|
11664
11929
|
|
@@ -11708,6 +11973,7 @@ module Aws::SageMaker
|
|
11708
11973
|
class LabelingJobOutputConfig < Struct.new(
|
11709
11974
|
:s3_output_path,
|
11710
11975
|
:kms_key_id)
|
11976
|
+
SENSITIVE = []
|
11711
11977
|
include Aws::Structure
|
11712
11978
|
end
|
11713
11979
|
|
@@ -11739,6 +12005,7 @@ module Aws::SageMaker
|
|
11739
12005
|
#
|
11740
12006
|
class LabelingJobResourceConfig < Struct.new(
|
11741
12007
|
:volume_kms_key_id)
|
12008
|
+
SENSITIVE = []
|
11742
12009
|
include Aws::Structure
|
11743
12010
|
end
|
11744
12011
|
|
@@ -11760,6 +12027,7 @@ module Aws::SageMaker
|
|
11760
12027
|
#
|
11761
12028
|
class LabelingJobS3DataSource < Struct.new(
|
11762
12029
|
:manifest_s3_uri)
|
12030
|
+
SENSITIVE = []
|
11763
12031
|
include Aws::Structure
|
11764
12032
|
end
|
11765
12033
|
|
@@ -11793,6 +12061,7 @@ module Aws::SageMaker
|
|
11793
12061
|
class LabelingJobStoppingConditions < Struct.new(
|
11794
12062
|
:max_human_labeled_object_count,
|
11795
12063
|
:max_percentage_of_input_dataset_labeled)
|
12064
|
+
SENSITIVE = []
|
11796
12065
|
include Aws::Structure
|
11797
12066
|
end
|
11798
12067
|
|
@@ -11871,6 +12140,7 @@ module Aws::SageMaker
|
|
11871
12140
|
:failure_reason,
|
11872
12141
|
:labeling_job_output,
|
11873
12142
|
:input_config)
|
12143
|
+
SENSITIVE = []
|
11874
12144
|
include Aws::Structure
|
11875
12145
|
end
|
11876
12146
|
|
@@ -11931,6 +12201,7 @@ module Aws::SageMaker
|
|
11931
12201
|
:next_token,
|
11932
12202
|
:sort_by,
|
11933
12203
|
:sort_order)
|
12204
|
+
SENSITIVE = []
|
11934
12205
|
include Aws::Structure
|
11935
12206
|
end
|
11936
12207
|
|
@@ -11950,6 +12221,7 @@ module Aws::SageMaker
|
|
11950
12221
|
class ListAlgorithmsOutput < Struct.new(
|
11951
12222
|
:algorithm_summary_list,
|
11952
12223
|
:next_token)
|
12224
|
+
SENSITIVE = []
|
11953
12225
|
include Aws::Structure
|
11954
12226
|
end
|
11955
12227
|
|
@@ -12000,6 +12272,7 @@ module Aws::SageMaker
|
|
12000
12272
|
:sort_by,
|
12001
12273
|
:domain_id_equals,
|
12002
12274
|
:user_profile_name_equals)
|
12275
|
+
SENSITIVE = []
|
12003
12276
|
include Aws::Structure
|
12004
12277
|
end
|
12005
12278
|
|
@@ -12017,6 +12290,7 @@ module Aws::SageMaker
|
|
12017
12290
|
class ListAppsResponse < Struct.new(
|
12018
12291
|
:apps,
|
12019
12292
|
:next_token)
|
12293
|
+
SENSITIVE = []
|
12020
12294
|
include Aws::Structure
|
12021
12295
|
end
|
12022
12296
|
|
@@ -12091,6 +12365,7 @@ module Aws::SageMaker
|
|
12091
12365
|
:sort_by,
|
12092
12366
|
:max_results,
|
12093
12367
|
:next_token)
|
12368
|
+
SENSITIVE = []
|
12094
12369
|
include Aws::Structure
|
12095
12370
|
end
|
12096
12371
|
|
@@ -12108,6 +12383,7 @@ module Aws::SageMaker
|
|
12108
12383
|
class ListAutoMLJobsResponse < Struct.new(
|
12109
12384
|
:auto_ml_job_summaries,
|
12110
12385
|
:next_token)
|
12386
|
+
SENSITIVE = []
|
12111
12387
|
include Aws::Structure
|
12112
12388
|
end
|
12113
12389
|
|
@@ -12165,6 +12441,7 @@ module Aws::SageMaker
|
|
12165
12441
|
:sort_by,
|
12166
12442
|
:max_results,
|
12167
12443
|
:next_token)
|
12444
|
+
SENSITIVE = []
|
12168
12445
|
include Aws::Structure
|
12169
12446
|
end
|
12170
12447
|
|
@@ -12182,6 +12459,7 @@ module Aws::SageMaker
|
|
12182
12459
|
class ListCandidatesForAutoMLJobResponse < Struct.new(
|
12183
12460
|
:candidates,
|
12184
12461
|
:next_token)
|
12462
|
+
SENSITIVE = []
|
12185
12463
|
include Aws::Structure
|
12186
12464
|
end
|
12187
12465
|
|
@@ -12255,6 +12533,7 @@ module Aws::SageMaker
|
|
12255
12533
|
:next_token,
|
12256
12534
|
:sort_by,
|
12257
12535
|
:sort_order)
|
12536
|
+
SENSITIVE = []
|
12258
12537
|
include Aws::Structure
|
12259
12538
|
end
|
12260
12539
|
|
@@ -12286,6 +12565,7 @@ module Aws::SageMaker
|
|
12286
12565
|
class ListCodeRepositoriesOutput < Struct.new(
|
12287
12566
|
:code_repository_summary_list,
|
12288
12567
|
:next_token)
|
12568
|
+
SENSITIVE = []
|
12289
12569
|
include Aws::Structure
|
12290
12570
|
end
|
12291
12571
|
|
@@ -12367,6 +12647,7 @@ module Aws::SageMaker
|
|
12367
12647
|
:status_equals,
|
12368
12648
|
:sort_by,
|
12369
12649
|
:sort_order)
|
12650
|
+
SENSITIVE = []
|
12370
12651
|
include Aws::Structure
|
12371
12652
|
end
|
12372
12653
|
|
@@ -12386,6 +12667,7 @@ module Aws::SageMaker
|
|
12386
12667
|
class ListCompilationJobsResponse < Struct.new(
|
12387
12668
|
:compilation_job_summaries,
|
12388
12669
|
:next_token)
|
12670
|
+
SENSITIVE = []
|
12389
12671
|
include Aws::Structure
|
12390
12672
|
end
|
12391
12673
|
|
@@ -12411,6 +12693,7 @@ module Aws::SageMaker
|
|
12411
12693
|
class ListDomainsRequest < Struct.new(
|
12412
12694
|
:next_token,
|
12413
12695
|
:max_results)
|
12696
|
+
SENSITIVE = []
|
12414
12697
|
include Aws::Structure
|
12415
12698
|
end
|
12416
12699
|
|
@@ -12428,6 +12711,7 @@ module Aws::SageMaker
|
|
12428
12711
|
class ListDomainsResponse < Struct.new(
|
12429
12712
|
:domains,
|
12430
12713
|
:next_token)
|
12714
|
+
SENSITIVE = []
|
12431
12715
|
include Aws::Structure
|
12432
12716
|
end
|
12433
12717
|
|
@@ -12488,6 +12772,7 @@ module Aws::SageMaker
|
|
12488
12772
|
:name_contains,
|
12489
12773
|
:creation_time_before,
|
12490
12774
|
:creation_time_after)
|
12775
|
+
SENSITIVE = []
|
12491
12776
|
include Aws::Structure
|
12492
12777
|
end
|
12493
12778
|
|
@@ -12506,6 +12791,7 @@ module Aws::SageMaker
|
|
12506
12791
|
class ListEndpointConfigsOutput < Struct.new(
|
12507
12792
|
:endpoint_configs,
|
12508
12793
|
:next_token)
|
12794
|
+
SENSITIVE = []
|
12509
12795
|
include Aws::Structure
|
12510
12796
|
end
|
12511
12797
|
|
@@ -12585,6 +12871,7 @@ module Aws::SageMaker
|
|
12585
12871
|
:last_modified_time_before,
|
12586
12872
|
:last_modified_time_after,
|
12587
12873
|
:status_equals)
|
12874
|
+
SENSITIVE = []
|
12588
12875
|
include Aws::Structure
|
12589
12876
|
end
|
12590
12877
|
|
@@ -12603,6 +12890,7 @@ module Aws::SageMaker
|
|
12603
12890
|
class ListEndpointsOutput < Struct.new(
|
12604
12891
|
:endpoints,
|
12605
12892
|
:next_token)
|
12893
|
+
SENSITIVE = []
|
12606
12894
|
include Aws::Structure
|
12607
12895
|
end
|
12608
12896
|
|
@@ -12657,6 +12945,7 @@ module Aws::SageMaker
|
|
12657
12945
|
:sort_order,
|
12658
12946
|
:next_token,
|
12659
12947
|
:max_results)
|
12948
|
+
SENSITIVE = []
|
12660
12949
|
include Aws::Structure
|
12661
12950
|
end
|
12662
12951
|
|
@@ -12673,6 +12962,7 @@ module Aws::SageMaker
|
|
12673
12962
|
class ListExperimentsResponse < Struct.new(
|
12674
12963
|
:experiment_summaries,
|
12675
12964
|
:next_token)
|
12965
|
+
SENSITIVE = []
|
12676
12966
|
include Aws::Structure
|
12677
12967
|
end
|
12678
12968
|
|
@@ -12721,6 +13011,7 @@ module Aws::SageMaker
|
|
12721
13011
|
:sort_order,
|
12722
13012
|
:next_token,
|
12723
13013
|
:max_results)
|
13014
|
+
SENSITIVE = []
|
12724
13015
|
include Aws::Structure
|
12725
13016
|
end
|
12726
13017
|
|
@@ -12737,6 +13028,7 @@ module Aws::SageMaker
|
|
12737
13028
|
class ListFlowDefinitionsResponse < Struct.new(
|
12738
13029
|
:flow_definition_summaries,
|
12739
13030
|
:next_token)
|
13031
|
+
SENSITIVE = []
|
12740
13032
|
include Aws::Structure
|
12741
13033
|
end
|
12742
13034
|
|
@@ -12785,6 +13077,7 @@ module Aws::SageMaker
|
|
12785
13077
|
:sort_order,
|
12786
13078
|
:next_token,
|
12787
13079
|
:max_results)
|
13080
|
+
SENSITIVE = []
|
12788
13081
|
include Aws::Structure
|
12789
13082
|
end
|
12790
13083
|
|
@@ -12801,6 +13094,7 @@ module Aws::SageMaker
|
|
12801
13094
|
class ListHumanTaskUisResponse < Struct.new(
|
12802
13095
|
:human_task_ui_summaries,
|
12803
13096
|
:next_token)
|
13097
|
+
SENSITIVE = []
|
12804
13098
|
include Aws::Structure
|
12805
13099
|
end
|
12806
13100
|
|
@@ -12881,6 +13175,7 @@ module Aws::SageMaker
|
|
12881
13175
|
:last_modified_time_after,
|
12882
13176
|
:last_modified_time_before,
|
12883
13177
|
:status_equals)
|
13178
|
+
SENSITIVE = []
|
12884
13179
|
include Aws::Structure
|
12885
13180
|
end
|
12886
13181
|
|
@@ -12901,6 +13196,7 @@ module Aws::SageMaker
|
|
12901
13196
|
class ListHyperParameterTuningJobsResponse < Struct.new(
|
12902
13197
|
:hyper_parameter_tuning_job_summaries,
|
12903
13198
|
:next_token)
|
13199
|
+
SENSITIVE = []
|
12904
13200
|
include Aws::Structure
|
12905
13201
|
end
|
12906
13202
|
|
@@ -12968,6 +13264,7 @@ module Aws::SageMaker
|
|
12968
13264
|
:job_reference_code_contains,
|
12969
13265
|
:sort_by,
|
12970
13266
|
:sort_order)
|
13267
|
+
SENSITIVE = []
|
12971
13268
|
include Aws::Structure
|
12972
13269
|
end
|
12973
13270
|
|
@@ -12987,6 +13284,7 @@ module Aws::SageMaker
|
|
12987
13284
|
class ListLabelingJobsForWorkteamResponse < Struct.new(
|
12988
13285
|
:labeling_job_summary_list,
|
12989
13286
|
:next_token)
|
13287
|
+
SENSITIVE = []
|
12990
13288
|
include Aws::Structure
|
12991
13289
|
end
|
12992
13290
|
|
@@ -13067,6 +13365,7 @@ module Aws::SageMaker
|
|
13067
13365
|
:sort_by,
|
13068
13366
|
:sort_order,
|
13069
13367
|
:status_equals)
|
13368
|
+
SENSITIVE = []
|
13070
13369
|
include Aws::Structure
|
13071
13370
|
end
|
13072
13371
|
|
@@ -13086,6 +13385,7 @@ module Aws::SageMaker
|
|
13086
13385
|
class ListLabelingJobsResponse < Struct.new(
|
13087
13386
|
:labeling_job_summary_list,
|
13088
13387
|
:next_token)
|
13388
|
+
SENSITIVE = []
|
13089
13389
|
include Aws::Structure
|
13090
13390
|
end
|
13091
13391
|
|
@@ -13146,6 +13446,7 @@ module Aws::SageMaker
|
|
13146
13446
|
:next_token,
|
13147
13447
|
:sort_by,
|
13148
13448
|
:sort_order)
|
13449
|
+
SENSITIVE = []
|
13149
13450
|
include Aws::Structure
|
13150
13451
|
end
|
13151
13452
|
|
@@ -13165,6 +13466,7 @@ module Aws::SageMaker
|
|
13165
13466
|
class ListModelPackagesOutput < Struct.new(
|
13166
13467
|
:model_package_summary_list,
|
13167
13468
|
:next_token)
|
13469
|
+
SENSITIVE = []
|
13168
13470
|
include Aws::Structure
|
13169
13471
|
end
|
13170
13472
|
|
@@ -13224,6 +13526,7 @@ module Aws::SageMaker
|
|
13224
13526
|
:name_contains,
|
13225
13527
|
:creation_time_before,
|
13226
13528
|
:creation_time_after)
|
13529
|
+
SENSITIVE = []
|
13227
13530
|
include Aws::Structure
|
13228
13531
|
end
|
13229
13532
|
|
@@ -13242,6 +13545,7 @@ module Aws::SageMaker
|
|
13242
13545
|
class ListModelsOutput < Struct.new(
|
13243
13546
|
:models,
|
13244
13547
|
:next_token)
|
13548
|
+
SENSITIVE = []
|
13245
13549
|
include Aws::Structure
|
13246
13550
|
end
|
13247
13551
|
|
@@ -13336,6 +13640,7 @@ module Aws::SageMaker
|
|
13336
13640
|
:last_modified_time_before,
|
13337
13641
|
:last_modified_time_after,
|
13338
13642
|
:status_equals)
|
13643
|
+
SENSITIVE = []
|
13339
13644
|
include Aws::Structure
|
13340
13645
|
end
|
13341
13646
|
|
@@ -13354,6 +13659,7 @@ module Aws::SageMaker
|
|
13354
13659
|
class ListMonitoringExecutionsResponse < Struct.new(
|
13355
13660
|
:monitoring_execution_summaries,
|
13356
13661
|
:next_token)
|
13662
|
+
SENSITIVE = []
|
13357
13663
|
include Aws::Structure
|
13358
13664
|
end
|
13359
13665
|
|
@@ -13442,6 +13748,7 @@ module Aws::SageMaker
|
|
13442
13748
|
:last_modified_time_before,
|
13443
13749
|
:last_modified_time_after,
|
13444
13750
|
:status_equals)
|
13751
|
+
SENSITIVE = []
|
13445
13752
|
include Aws::Structure
|
13446
13753
|
end
|
13447
13754
|
|
@@ -13460,6 +13767,7 @@ module Aws::SageMaker
|
|
13460
13767
|
class ListMonitoringSchedulesResponse < Struct.new(
|
13461
13768
|
:monitoring_schedule_summaries,
|
13462
13769
|
:next_token)
|
13770
|
+
SENSITIVE = []
|
13463
13771
|
include Aws::Structure
|
13464
13772
|
end
|
13465
13773
|
|
@@ -13535,6 +13843,7 @@ module Aws::SageMaker
|
|
13535
13843
|
:creation_time_after,
|
13536
13844
|
:last_modified_time_before,
|
13537
13845
|
:last_modified_time_after)
|
13846
|
+
SENSITIVE = []
|
13538
13847
|
include Aws::Structure
|
13539
13848
|
end
|
13540
13849
|
|
@@ -13554,6 +13863,7 @@ module Aws::SageMaker
|
|
13554
13863
|
class ListNotebookInstanceLifecycleConfigsOutput < Struct.new(
|
13555
13864
|
:next_token,
|
13556
13865
|
:notebook_instance_lifecycle_configs)
|
13866
|
+
SENSITIVE = []
|
13557
13867
|
include Aws::Structure
|
13558
13868
|
end
|
13559
13869
|
|
@@ -13666,6 +13976,7 @@ module Aws::SageMaker
|
|
13666
13976
|
:notebook_instance_lifecycle_config_name_contains,
|
13667
13977
|
:default_code_repository_contains,
|
13668
13978
|
:additional_code_repository_equals)
|
13979
|
+
SENSITIVE = []
|
13669
13980
|
include Aws::Structure
|
13670
13981
|
end
|
13671
13982
|
|
@@ -13685,6 +13996,7 @@ module Aws::SageMaker
|
|
13685
13996
|
class ListNotebookInstancesOutput < Struct.new(
|
13686
13997
|
:next_token,
|
13687
13998
|
:notebook_instances)
|
13999
|
+
SENSITIVE = []
|
13688
14000
|
include Aws::Structure
|
13689
14001
|
end
|
13690
14002
|
|
@@ -13764,6 +14076,7 @@ module Aws::SageMaker
|
|
13764
14076
|
:sort_order,
|
13765
14077
|
:next_token,
|
13766
14078
|
:max_results)
|
14079
|
+
SENSITIVE = []
|
13767
14080
|
include Aws::Structure
|
13768
14081
|
end
|
13769
14082
|
|
@@ -13783,6 +14096,7 @@ module Aws::SageMaker
|
|
13783
14096
|
class ListProcessingJobsResponse < Struct.new(
|
13784
14097
|
:processing_job_summaries,
|
13785
14098
|
:next_token)
|
14099
|
+
SENSITIVE = []
|
13786
14100
|
include Aws::Structure
|
13787
14101
|
end
|
13788
14102
|
|
@@ -13817,6 +14131,7 @@ module Aws::SageMaker
|
|
13817
14131
|
:name_contains,
|
13818
14132
|
:next_token,
|
13819
14133
|
:max_results)
|
14134
|
+
SENSITIVE = []
|
13820
14135
|
include Aws::Structure
|
13821
14136
|
end
|
13822
14137
|
|
@@ -13835,6 +14150,7 @@ module Aws::SageMaker
|
|
13835
14150
|
class ListSubscribedWorkteamsResponse < Struct.new(
|
13836
14151
|
:subscribed_workteams,
|
13837
14152
|
:next_token)
|
14153
|
+
SENSITIVE = []
|
13838
14154
|
include Aws::Structure
|
13839
14155
|
end
|
13840
14156
|
|
@@ -13868,6 +14184,7 @@ module Aws::SageMaker
|
|
13868
14184
|
:resource_arn,
|
13869
14185
|
:next_token,
|
13870
14186
|
:max_results)
|
14187
|
+
SENSITIVE = []
|
13871
14188
|
include Aws::Structure
|
13872
14189
|
end
|
13873
14190
|
|
@@ -13886,6 +14203,7 @@ module Aws::SageMaker
|
|
13886
14203
|
class ListTagsOutput < Struct.new(
|
13887
14204
|
:tags,
|
13888
14205
|
:next_token)
|
14206
|
+
SENSITIVE = []
|
13889
14207
|
include Aws::Structure
|
13890
14208
|
end
|
13891
14209
|
|
@@ -13942,6 +14260,7 @@ module Aws::SageMaker
|
|
13942
14260
|
:status_equals,
|
13943
14261
|
:sort_by,
|
13944
14262
|
:sort_order)
|
14263
|
+
SENSITIVE = []
|
13945
14264
|
include Aws::Structure
|
13946
14265
|
end
|
13947
14266
|
|
@@ -13963,6 +14282,7 @@ module Aws::SageMaker
|
|
13963
14282
|
class ListTrainingJobsForHyperParameterTuningJobResponse < Struct.new(
|
13964
14283
|
:training_job_summaries,
|
13965
14284
|
:next_token)
|
14285
|
+
SENSITIVE = []
|
13966
14286
|
include Aws::Structure
|
13967
14287
|
end
|
13968
14288
|
|
@@ -14042,6 +14362,7 @@ module Aws::SageMaker
|
|
14042
14362
|
:status_equals,
|
14043
14363
|
:sort_by,
|
14044
14364
|
:sort_order)
|
14365
|
+
SENSITIVE = []
|
14045
14366
|
include Aws::Structure
|
14046
14367
|
end
|
14047
14368
|
|
@@ -14061,6 +14382,7 @@ module Aws::SageMaker
|
|
14061
14382
|
class ListTrainingJobsResponse < Struct.new(
|
14062
14383
|
:training_job_summaries,
|
14063
14384
|
:next_token)
|
14385
|
+
SENSITIVE = []
|
14064
14386
|
include Aws::Structure
|
14065
14387
|
end
|
14066
14388
|
|
@@ -14141,6 +14463,7 @@ module Aws::SageMaker
|
|
14141
14463
|
:sort_order,
|
14142
14464
|
:next_token,
|
14143
14465
|
:max_results)
|
14466
|
+
SENSITIVE = []
|
14144
14467
|
include Aws::Structure
|
14145
14468
|
end
|
14146
14469
|
|
@@ -14159,6 +14482,7 @@ module Aws::SageMaker
|
|
14159
14482
|
class ListTransformJobsResponse < Struct.new(
|
14160
14483
|
:transform_job_summaries,
|
14161
14484
|
:next_token)
|
14485
|
+
SENSITIVE = []
|
14162
14486
|
include Aws::Structure
|
14163
14487
|
end
|
14164
14488
|
|
@@ -14237,6 +14561,7 @@ module Aws::SageMaker
|
|
14237
14561
|
:sort_order,
|
14238
14562
|
:max_results,
|
14239
14563
|
:next_token)
|
14564
|
+
SENSITIVE = []
|
14240
14565
|
include Aws::Structure
|
14241
14566
|
end
|
14242
14567
|
|
@@ -14253,6 +14578,7 @@ module Aws::SageMaker
|
|
14253
14578
|
class ListTrialComponentsResponse < Struct.new(
|
14254
14579
|
:trial_component_summaries,
|
14255
14580
|
:next_token)
|
14581
|
+
SENSITIVE = []
|
14256
14582
|
include Aws::Structure
|
14257
14583
|
end
|
14258
14584
|
|
@@ -14318,6 +14644,7 @@ module Aws::SageMaker
|
|
14318
14644
|
:sort_order,
|
14319
14645
|
:max_results,
|
14320
14646
|
:next_token)
|
14647
|
+
SENSITIVE = []
|
14321
14648
|
include Aws::Structure
|
14322
14649
|
end
|
14323
14650
|
|
@@ -14334,6 +14661,7 @@ module Aws::SageMaker
|
|
14334
14661
|
class ListTrialsResponse < Struct.new(
|
14335
14662
|
:trial_summaries,
|
14336
14663
|
:next_token)
|
14664
|
+
SENSITIVE = []
|
14337
14665
|
include Aws::Structure
|
14338
14666
|
end
|
14339
14667
|
|
@@ -14384,6 +14712,7 @@ module Aws::SageMaker
|
|
14384
14712
|
:sort_by,
|
14385
14713
|
:domain_id_equals,
|
14386
14714
|
:user_profile_name_contains)
|
14715
|
+
SENSITIVE = []
|
14387
14716
|
include Aws::Structure
|
14388
14717
|
end
|
14389
14718
|
|
@@ -14401,6 +14730,7 @@ module Aws::SageMaker
|
|
14401
14730
|
class ListUserProfilesResponse < Struct.new(
|
14402
14731
|
:user_profiles,
|
14403
14732
|
:next_token)
|
14733
|
+
SENSITIVE = []
|
14404
14734
|
include Aws::Structure
|
14405
14735
|
end
|
14406
14736
|
|
@@ -14447,6 +14777,7 @@ module Aws::SageMaker
|
|
14447
14777
|
:name_contains,
|
14448
14778
|
:next_token,
|
14449
14779
|
:max_results)
|
14780
|
+
SENSITIVE = []
|
14450
14781
|
include Aws::Structure
|
14451
14782
|
end
|
14452
14783
|
|
@@ -14465,6 +14796,7 @@ module Aws::SageMaker
|
|
14465
14796
|
class ListWorkteamsResponse < Struct.new(
|
14466
14797
|
:workteams,
|
14467
14798
|
:next_token)
|
14799
|
+
SENSITIVE = []
|
14468
14800
|
include Aws::Structure
|
14469
14801
|
end
|
14470
14802
|
|
@@ -14489,6 +14821,7 @@ module Aws::SageMaker
|
|
14489
14821
|
#
|
14490
14822
|
class MemberDefinition < Struct.new(
|
14491
14823
|
:cognito_member_definition)
|
14824
|
+
SENSITIVE = []
|
14492
14825
|
include Aws::Structure
|
14493
14826
|
end
|
14494
14827
|
|
@@ -14513,6 +14846,7 @@ module Aws::SageMaker
|
|
14513
14846
|
:metric_name,
|
14514
14847
|
:value,
|
14515
14848
|
:timestamp)
|
14849
|
+
SENSITIVE = []
|
14516
14850
|
include Aws::Structure
|
14517
14851
|
end
|
14518
14852
|
|
@@ -14549,12 +14883,17 @@ module Aws::SageMaker
|
|
14549
14883
|
class MetricDefinition < Struct.new(
|
14550
14884
|
:name,
|
14551
14885
|
:regex)
|
14886
|
+
SENSITIVE = []
|
14552
14887
|
include Aws::Structure
|
14553
14888
|
end
|
14554
14889
|
|
14555
14890
|
# Provides information about the location that is configured for storing
|
14556
14891
|
# model artifacts.
|
14557
14892
|
#
|
14893
|
+
# Model artifacts are the output that results from training a model, and
|
14894
|
+
# typically consist of trained parameters, a model defintion that
|
14895
|
+
# desribes how to compute inferences, and other metadata.
|
14896
|
+
#
|
14558
14897
|
# @!attribute [rw] s3_model_artifacts
|
14559
14898
|
# The path of the S3 object that contains the model artifacts. For
|
14560
14899
|
# example, `s3://bucket-name/keynameprefix/model.tar.gz`.
|
@@ -14564,6 +14903,7 @@ module Aws::SageMaker
|
|
14564
14903
|
#
|
14565
14904
|
class ModelArtifacts < Struct.new(
|
14566
14905
|
:s3_model_artifacts)
|
14906
|
+
SENSITIVE = []
|
14567
14907
|
include Aws::Structure
|
14568
14908
|
end
|
14569
14909
|
|
@@ -14623,6 +14963,7 @@ module Aws::SageMaker
|
|
14623
14963
|
:image_digest,
|
14624
14964
|
:model_data_url,
|
14625
14965
|
:product_id)
|
14966
|
+
SENSITIVE = []
|
14626
14967
|
include Aws::Structure
|
14627
14968
|
end
|
14628
14969
|
|
@@ -14642,6 +14983,7 @@ module Aws::SageMaker
|
|
14642
14983
|
class ModelPackageStatusDetails < Struct.new(
|
14643
14984
|
:validation_statuses,
|
14644
14985
|
:image_scan_statuses)
|
14986
|
+
SENSITIVE = []
|
14645
14987
|
include Aws::Structure
|
14646
14988
|
end
|
14647
14989
|
|
@@ -14666,6 +15008,7 @@ module Aws::SageMaker
|
|
14666
15008
|
:name,
|
14667
15009
|
:status,
|
14668
15010
|
:failure_reason)
|
15011
|
+
SENSITIVE = []
|
14669
15012
|
include Aws::Structure
|
14670
15013
|
end
|
14671
15014
|
|
@@ -14699,6 +15042,7 @@ module Aws::SageMaker
|
|
14699
15042
|
:model_package_description,
|
14700
15043
|
:creation_time,
|
14701
15044
|
:model_package_status)
|
15045
|
+
SENSITIVE = []
|
14702
15046
|
include Aws::Structure
|
14703
15047
|
end
|
14704
15048
|
|
@@ -14759,6 +15103,7 @@ module Aws::SageMaker
|
|
14759
15103
|
class ModelPackageValidationProfile < Struct.new(
|
14760
15104
|
:profile_name,
|
14761
15105
|
:transform_job_definition)
|
15106
|
+
SENSITIVE = []
|
14762
15107
|
include Aws::Structure
|
14763
15108
|
end
|
14764
15109
|
|
@@ -14822,6 +15167,7 @@ module Aws::SageMaker
|
|
14822
15167
|
class ModelPackageValidationSpecification < Struct.new(
|
14823
15168
|
:validation_role,
|
14824
15169
|
:validation_profiles)
|
15170
|
+
SENSITIVE = []
|
14825
15171
|
include Aws::Structure
|
14826
15172
|
end
|
14827
15173
|
|
@@ -14845,6 +15191,7 @@ module Aws::SageMaker
|
|
14845
15191
|
:model_name,
|
14846
15192
|
:model_arn,
|
14847
15193
|
:creation_time)
|
15194
|
+
SENSITIVE = []
|
14848
15195
|
include Aws::Structure
|
14849
15196
|
end
|
14850
15197
|
|
@@ -14896,6 +15243,7 @@ module Aws::SageMaker
|
|
14896
15243
|
:container_arguments,
|
14897
15244
|
:record_preprocessor_source_uri,
|
14898
15245
|
:post_analytics_processor_source_uri)
|
15246
|
+
SENSITIVE = []
|
14899
15247
|
include Aws::Structure
|
14900
15248
|
end
|
14901
15249
|
|
@@ -14931,6 +15279,7 @@ module Aws::SageMaker
|
|
14931
15279
|
class MonitoringBaselineConfig < Struct.new(
|
14932
15280
|
:constraints_resource,
|
14933
15281
|
:statistics_resource)
|
15282
|
+
SENSITIVE = []
|
14934
15283
|
include Aws::Structure
|
14935
15284
|
end
|
14936
15285
|
|
@@ -14974,6 +15323,7 @@ module Aws::SageMaker
|
|
14974
15323
|
:instance_type,
|
14975
15324
|
:volume_size_in_gb,
|
14976
15325
|
:volume_kms_key_id)
|
15326
|
+
SENSITIVE = []
|
14977
15327
|
include Aws::Structure
|
14978
15328
|
end
|
14979
15329
|
|
@@ -14994,6 +15344,7 @@ module Aws::SageMaker
|
|
14994
15344
|
#
|
14995
15345
|
class MonitoringConstraintsResource < Struct.new(
|
14996
15346
|
:s3_uri)
|
15347
|
+
SENSITIVE = []
|
14997
15348
|
include Aws::Structure
|
14998
15349
|
end
|
14999
15350
|
|
@@ -15043,6 +15394,7 @@ module Aws::SageMaker
|
|
15043
15394
|
:processing_job_arn,
|
15044
15395
|
:endpoint_name,
|
15045
15396
|
:failure_reason)
|
15397
|
+
SENSITIVE = []
|
15046
15398
|
include Aws::Structure
|
15047
15399
|
end
|
15048
15400
|
|
@@ -15068,6 +15420,7 @@ module Aws::SageMaker
|
|
15068
15420
|
#
|
15069
15421
|
class MonitoringInput < Struct.new(
|
15070
15422
|
:endpoint_input)
|
15423
|
+
SENSITIVE = []
|
15071
15424
|
include Aws::Structure
|
15072
15425
|
end
|
15073
15426
|
|
@@ -15129,6 +15482,7 @@ module Aws::SageMaker
|
|
15129
15482
|
# "ProcessingEnvironmentKey" => "ProcessingEnvironmentValue",
|
15130
15483
|
# },
|
15131
15484
|
# network_config: {
|
15485
|
+
# enable_inter_container_traffic_encryption: false,
|
15132
15486
|
# enable_network_isolation: false,
|
15133
15487
|
# vpc_config: {
|
15134
15488
|
# security_group_ids: ["SecurityGroupId"], # required
|
@@ -15194,6 +15548,7 @@ module Aws::SageMaker
|
|
15194
15548
|
:environment,
|
15195
15549
|
:network_config,
|
15196
15550
|
:role_arn)
|
15551
|
+
SENSITIVE = []
|
15197
15552
|
include Aws::Structure
|
15198
15553
|
end
|
15199
15554
|
|
@@ -15219,6 +15574,7 @@ module Aws::SageMaker
|
|
15219
15574
|
#
|
15220
15575
|
class MonitoringOutput < Struct.new(
|
15221
15576
|
:s3_output)
|
15577
|
+
SENSITIVE = []
|
15222
15578
|
include Aws::Structure
|
15223
15579
|
end
|
15224
15580
|
|
@@ -15256,6 +15612,7 @@ module Aws::SageMaker
|
|
15256
15612
|
class MonitoringOutputConfig < Struct.new(
|
15257
15613
|
:monitoring_outputs,
|
15258
15614
|
:kms_key_id)
|
15615
|
+
SENSITIVE = []
|
15259
15616
|
include Aws::Structure
|
15260
15617
|
end
|
15261
15618
|
|
@@ -15282,6 +15639,7 @@ module Aws::SageMaker
|
|
15282
15639
|
#
|
15283
15640
|
class MonitoringResources < Struct.new(
|
15284
15641
|
:cluster_config)
|
15642
|
+
SENSITIVE = []
|
15285
15643
|
include Aws::Structure
|
15286
15644
|
end
|
15287
15645
|
|
@@ -15319,6 +15677,7 @@ module Aws::SageMaker
|
|
15319
15677
|
:s3_uri,
|
15320
15678
|
:local_path,
|
15321
15679
|
:s3_upload_mode)
|
15680
|
+
SENSITIVE = []
|
15322
15681
|
include Aws::Structure
|
15323
15682
|
end
|
15324
15683
|
|
@@ -15384,6 +15743,7 @@ module Aws::SageMaker
|
|
15384
15743
|
# "ProcessingEnvironmentKey" => "ProcessingEnvironmentValue",
|
15385
15744
|
# },
|
15386
15745
|
# network_config: {
|
15746
|
+
# enable_inter_container_traffic_encryption: false,
|
15387
15747
|
# enable_network_isolation: false,
|
15388
15748
|
# vpc_config: {
|
15389
15749
|
# security_group_ids: ["SecurityGroupId"], # required
|
@@ -15407,6 +15767,7 @@ module Aws::SageMaker
|
|
15407
15767
|
class MonitoringScheduleConfig < Struct.new(
|
15408
15768
|
:schedule_config,
|
15409
15769
|
:monitoring_job_definition)
|
15770
|
+
SENSITIVE = []
|
15410
15771
|
include Aws::Structure
|
15411
15772
|
end
|
15412
15773
|
|
@@ -15445,6 +15806,7 @@ module Aws::SageMaker
|
|
15445
15806
|
:last_modified_time,
|
15446
15807
|
:monitoring_schedule_status,
|
15447
15808
|
:endpoint_name)
|
15809
|
+
SENSITIVE = []
|
15448
15810
|
include Aws::Structure
|
15449
15811
|
end
|
15450
15812
|
|
@@ -15465,6 +15827,7 @@ module Aws::SageMaker
|
|
15465
15827
|
#
|
15466
15828
|
class MonitoringStatisticsResource < Struct.new(
|
15467
15829
|
:s3_uri)
|
15830
|
+
SENSITIVE = []
|
15468
15831
|
include Aws::Structure
|
15469
15832
|
end
|
15470
15833
|
|
@@ -15486,6 +15849,7 @@ module Aws::SageMaker
|
|
15486
15849
|
#
|
15487
15850
|
class MonitoringStoppingCondition < Struct.new(
|
15488
15851
|
:max_runtime_in_seconds)
|
15852
|
+
SENSITIVE = []
|
15489
15853
|
include Aws::Structure
|
15490
15854
|
end
|
15491
15855
|
|
@@ -15535,6 +15899,7 @@ module Aws::SageMaker
|
|
15535
15899
|
class NestedFilters < Struct.new(
|
15536
15900
|
:nested_property_name,
|
15537
15901
|
:filters)
|
15902
|
+
SENSITIVE = []
|
15538
15903
|
include Aws::Structure
|
15539
15904
|
end
|
15540
15905
|
|
@@ -15547,6 +15912,7 @@ module Aws::SageMaker
|
|
15547
15912
|
# data as a hash:
|
15548
15913
|
#
|
15549
15914
|
# {
|
15915
|
+
# enable_inter_container_traffic_encryption: false,
|
15550
15916
|
# enable_network_isolation: false,
|
15551
15917
|
# vpc_config: {
|
15552
15918
|
# security_group_ids: ["SecurityGroupId"], # required
|
@@ -15554,6 +15920,13 @@ module Aws::SageMaker
|
|
15554
15920
|
# },
|
15555
15921
|
# }
|
15556
15922
|
#
|
15923
|
+
# @!attribute [rw] enable_inter_container_traffic_encryption
|
15924
|
+
# Whether to encrypt all communications between distributed processing
|
15925
|
+
# jobs. Choose `True` to encrypt communications. Encryption provides
|
15926
|
+
# greater security for distributed processing jobs, but the processing
|
15927
|
+
# might take longer.
|
15928
|
+
# @return [Boolean]
|
15929
|
+
#
|
15557
15930
|
# @!attribute [rw] enable_network_isolation
|
15558
15931
|
# Whether to allow inbound and outbound network calls to and from the
|
15559
15932
|
# containers used for the processing job.
|
@@ -15575,8 +15948,10 @@ module Aws::SageMaker
|
|
15575
15948
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/NetworkConfig AWS API Documentation
|
15576
15949
|
#
|
15577
15950
|
class NetworkConfig < Struct.new(
|
15951
|
+
:enable_inter_container_traffic_encryption,
|
15578
15952
|
:enable_network_isolation,
|
15579
15953
|
:vpc_config)
|
15954
|
+
SENSITIVE = []
|
15580
15955
|
include Aws::Structure
|
15581
15956
|
end
|
15582
15957
|
|
@@ -15606,6 +15981,7 @@ module Aws::SageMaker
|
|
15606
15981
|
:notebook_instance_lifecycle_config_arn,
|
15607
15982
|
:creation_time,
|
15608
15983
|
:last_modified_time)
|
15984
|
+
SENSITIVE = []
|
15609
15985
|
include Aws::Structure
|
15610
15986
|
end
|
15611
15987
|
|
@@ -15647,6 +16023,7 @@ module Aws::SageMaker
|
|
15647
16023
|
#
|
15648
16024
|
class NotebookInstanceLifecycleHook < Struct.new(
|
15649
16025
|
:content)
|
16026
|
+
SENSITIVE = []
|
15650
16027
|
include Aws::Structure
|
15651
16028
|
end
|
15652
16029
|
|
@@ -15738,6 +16115,7 @@ module Aws::SageMaker
|
|
15738
16115
|
:notebook_instance_lifecycle_config_name,
|
15739
16116
|
:default_code_repository,
|
15740
16117
|
:additional_code_repositories)
|
16118
|
+
SENSITIVE = []
|
15741
16119
|
include Aws::Structure
|
15742
16120
|
end
|
15743
16121
|
|
@@ -15760,6 +16138,7 @@ module Aws::SageMaker
|
|
15760
16138
|
#
|
15761
16139
|
class NotificationConfiguration < Struct.new(
|
15762
16140
|
:notification_topic_arn)
|
16141
|
+
SENSITIVE = []
|
15763
16142
|
include Aws::Structure
|
15764
16143
|
end
|
15765
16144
|
|
@@ -15793,6 +16172,7 @@ module Aws::SageMaker
|
|
15793
16172
|
:succeeded,
|
15794
16173
|
:pending,
|
15795
16174
|
:failed)
|
16175
|
+
SENSITIVE = []
|
15796
16176
|
include Aws::Structure
|
15797
16177
|
end
|
15798
16178
|
|
@@ -15822,6 +16202,7 @@ module Aws::SageMaker
|
|
15822
16202
|
class OutputConfig < Struct.new(
|
15823
16203
|
:s3_output_location,
|
15824
16204
|
:target_device)
|
16205
|
+
SENSITIVE = []
|
15825
16206
|
include Aws::Structure
|
15826
16207
|
end
|
15827
16208
|
|
@@ -15892,6 +16273,7 @@ module Aws::SageMaker
|
|
15892
16273
|
class OutputDataConfig < Struct.new(
|
15893
16274
|
:kms_key_id,
|
15894
16275
|
:s3_output_path)
|
16276
|
+
SENSITIVE = []
|
15895
16277
|
include Aws::Structure
|
15896
16278
|
end
|
15897
16279
|
|
@@ -15936,6 +16318,7 @@ module Aws::SageMaker
|
|
15936
16318
|
:integer_parameter_range_specification,
|
15937
16319
|
:continuous_parameter_range_specification,
|
15938
16320
|
:categorical_parameter_range_specification)
|
16321
|
+
SENSITIVE = []
|
15939
16322
|
include Aws::Structure
|
15940
16323
|
end
|
15941
16324
|
|
@@ -16003,6 +16386,7 @@ module Aws::SageMaker
|
|
16003
16386
|
:integer_parameter_ranges,
|
16004
16387
|
:continuous_parameter_ranges,
|
16005
16388
|
:categorical_parameter_ranges)
|
16389
|
+
SENSITIVE = []
|
16006
16390
|
include Aws::Structure
|
16007
16391
|
end
|
16008
16392
|
|
@@ -16023,6 +16407,7 @@ module Aws::SageMaker
|
|
16023
16407
|
class Parent < Struct.new(
|
16024
16408
|
:trial_name,
|
16025
16409
|
:experiment_name)
|
16410
|
+
SENSITIVE = []
|
16026
16411
|
include Aws::Structure
|
16027
16412
|
end
|
16028
16413
|
|
@@ -16045,6 +16430,7 @@ module Aws::SageMaker
|
|
16045
16430
|
#
|
16046
16431
|
class ParentHyperParameterTuningJob < Struct.new(
|
16047
16432
|
:hyper_parameter_tuning_job_name)
|
16433
|
+
SENSITIVE = []
|
16048
16434
|
include Aws::Structure
|
16049
16435
|
end
|
16050
16436
|
|
@@ -16088,6 +16474,7 @@ module Aws::SageMaker
|
|
16088
16474
|
:instance_type,
|
16089
16475
|
:volume_size_in_gb,
|
16090
16476
|
:volume_kms_key_id)
|
16477
|
+
SENSITIVE = []
|
16091
16478
|
include Aws::Structure
|
16092
16479
|
end
|
16093
16480
|
|
@@ -16121,6 +16508,7 @@ module Aws::SageMaker
|
|
16121
16508
|
class ProcessingInput < Struct.new(
|
16122
16509
|
:input_name,
|
16123
16510
|
:s3_input)
|
16511
|
+
SENSITIVE = []
|
16124
16512
|
include Aws::Structure
|
16125
16513
|
end
|
16126
16514
|
|
@@ -16264,6 +16652,7 @@ module Aws::SageMaker
|
|
16264
16652
|
:auto_ml_job_arn,
|
16265
16653
|
:training_job_arn,
|
16266
16654
|
:tags)
|
16655
|
+
SENSITIVE = []
|
16267
16656
|
include Aws::Structure
|
16268
16657
|
end
|
16269
16658
|
|
@@ -16315,6 +16704,7 @@ module Aws::SageMaker
|
|
16315
16704
|
:processing_job_status,
|
16316
16705
|
:failure_reason,
|
16317
16706
|
:exit_message)
|
16707
|
+
SENSITIVE = []
|
16318
16708
|
include Aws::Structure
|
16319
16709
|
end
|
16320
16710
|
|
@@ -16345,6 +16735,7 @@ module Aws::SageMaker
|
|
16345
16735
|
class ProcessingOutput < Struct.new(
|
16346
16736
|
:output_name,
|
16347
16737
|
:s3_output)
|
16738
|
+
SENSITIVE = []
|
16348
16739
|
include Aws::Structure
|
16349
16740
|
end
|
16350
16741
|
|
@@ -16383,6 +16774,7 @@ module Aws::SageMaker
|
|
16383
16774
|
class ProcessingOutputConfig < Struct.new(
|
16384
16775
|
:outputs,
|
16385
16776
|
:kms_key_id)
|
16777
|
+
SENSITIVE = []
|
16386
16778
|
include Aws::Structure
|
16387
16779
|
end
|
16388
16780
|
|
@@ -16411,6 +16803,7 @@ module Aws::SageMaker
|
|
16411
16803
|
#
|
16412
16804
|
class ProcessingResources < Struct.new(
|
16413
16805
|
:cluster_config)
|
16806
|
+
SENSITIVE = []
|
16414
16807
|
include Aws::Structure
|
16415
16808
|
end
|
16416
16809
|
|
@@ -16477,6 +16870,7 @@ module Aws::SageMaker
|
|
16477
16870
|
:s3_input_mode,
|
16478
16871
|
:s3_data_distribution_type,
|
16479
16872
|
:s3_compression_type)
|
16873
|
+
SENSITIVE = []
|
16480
16874
|
include Aws::Structure
|
16481
16875
|
end
|
16482
16876
|
|
@@ -16514,6 +16908,7 @@ module Aws::SageMaker
|
|
16514
16908
|
:s3_uri,
|
16515
16909
|
:local_path,
|
16516
16910
|
:s3_upload_mode)
|
16911
|
+
SENSITIVE = []
|
16517
16912
|
include Aws::Structure
|
16518
16913
|
end
|
16519
16914
|
|
@@ -16535,6 +16930,7 @@ module Aws::SageMaker
|
|
16535
16930
|
#
|
16536
16931
|
class ProcessingStoppingCondition < Struct.new(
|
16537
16932
|
:max_runtime_in_seconds)
|
16933
|
+
SENSITIVE = []
|
16538
16934
|
include Aws::Structure
|
16539
16935
|
end
|
16540
16936
|
|
@@ -16600,6 +16996,7 @@ module Aws::SageMaker
|
|
16600
16996
|
:instance_type,
|
16601
16997
|
:initial_variant_weight,
|
16602
16998
|
:accelerator_type)
|
16999
|
+
SENSITIVE = []
|
16603
17000
|
include Aws::Structure
|
16604
17001
|
end
|
16605
17002
|
|
@@ -16645,6 +17042,7 @@ module Aws::SageMaker
|
|
16645
17042
|
:desired_weight,
|
16646
17043
|
:current_instance_count,
|
16647
17044
|
:desired_instance_count)
|
17045
|
+
SENSITIVE = []
|
16648
17046
|
include Aws::Structure
|
16649
17047
|
end
|
16650
17048
|
|
@@ -16666,6 +17064,7 @@ module Aws::SageMaker
|
|
16666
17064
|
#
|
16667
17065
|
class PropertyNameQuery < Struct.new(
|
16668
17066
|
:property_name_hint)
|
17067
|
+
SENSITIVE = []
|
16669
17068
|
include Aws::Structure
|
16670
17069
|
end
|
16671
17070
|
|
@@ -16681,6 +17080,7 @@ module Aws::SageMaker
|
|
16681
17080
|
#
|
16682
17081
|
class PropertyNameSuggestion < Struct.new(
|
16683
17082
|
:property_name)
|
17083
|
+
SENSITIVE = []
|
16684
17084
|
include Aws::Structure
|
16685
17085
|
end
|
16686
17086
|
|
@@ -16910,6 +17310,7 @@ module Aws::SageMaker
|
|
16910
17310
|
#
|
16911
17311
|
class PublicWorkforceTaskPrice < Struct.new(
|
16912
17312
|
:amount_in_usd)
|
17313
|
+
SENSITIVE = []
|
16913
17314
|
include Aws::Structure
|
16914
17315
|
end
|
16915
17316
|
|
@@ -16917,13 +17318,14 @@ module Aws::SageMaker
|
|
16917
17318
|
# data as a hash:
|
16918
17319
|
#
|
16919
17320
|
# {
|
16920
|
-
# ui_template: {
|
17321
|
+
# ui_template: {
|
16921
17322
|
# content: "TemplateContent", # required
|
16922
17323
|
# },
|
16923
17324
|
# task: { # required
|
16924
17325
|
# input: "TaskInput", # required
|
16925
17326
|
# },
|
16926
17327
|
# role_arn: "RoleArn", # required
|
17328
|
+
# human_task_ui_arn: "HumanTaskUiArn",
|
16927
17329
|
# }
|
16928
17330
|
#
|
16929
17331
|
# @!attribute [rw] ui_template
|
@@ -16940,12 +17342,20 @@ module Aws::SageMaker
|
|
16940
17342
|
# that are used by the template.
|
16941
17343
|
# @return [String]
|
16942
17344
|
#
|
17345
|
+
# @!attribute [rw] human_task_ui_arn
|
17346
|
+
# The `HumanTaskUiArn` of the worker UI that you want to render. Do
|
17347
|
+
# not provide a `HumanTaskUiArn` if you use the `UiTemplate`
|
17348
|
+
# parameter.
|
17349
|
+
# @return [String]
|
17350
|
+
#
|
16943
17351
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/RenderUiTemplateRequest AWS API Documentation
|
16944
17352
|
#
|
16945
17353
|
class RenderUiTemplateRequest < Struct.new(
|
16946
17354
|
:ui_template,
|
16947
17355
|
:task,
|
16948
|
-
:role_arn
|
17356
|
+
:role_arn,
|
17357
|
+
:human_task_ui_arn)
|
17358
|
+
SENSITIVE = []
|
16949
17359
|
include Aws::Structure
|
16950
17360
|
end
|
16951
17361
|
|
@@ -16964,6 +17374,7 @@ module Aws::SageMaker
|
|
16964
17374
|
class RenderUiTemplateResponse < Struct.new(
|
16965
17375
|
:rendered_content,
|
16966
17376
|
:errors)
|
17377
|
+
SENSITIVE = []
|
16967
17378
|
include Aws::Structure
|
16968
17379
|
end
|
16969
17380
|
|
@@ -16988,6 +17399,7 @@ module Aws::SageMaker
|
|
16988
17399
|
#
|
16989
17400
|
class RenderableTask < Struct.new(
|
16990
17401
|
:input)
|
17402
|
+
SENSITIVE = []
|
16991
17403
|
include Aws::Structure
|
16992
17404
|
end
|
16993
17405
|
|
@@ -17006,6 +17418,7 @@ module Aws::SageMaker
|
|
17006
17418
|
class RenderingError < Struct.new(
|
17007
17419
|
:code,
|
17008
17420
|
:message)
|
17421
|
+
SENSITIVE = []
|
17009
17422
|
include Aws::Structure
|
17010
17423
|
end
|
17011
17424
|
|
@@ -17030,6 +17443,7 @@ module Aws::SageMaker
|
|
17030
17443
|
:auto_ml_job_objective,
|
17031
17444
|
:problem_type,
|
17032
17445
|
:completion_criteria)
|
17446
|
+
SENSITIVE = []
|
17033
17447
|
include Aws::Structure
|
17034
17448
|
end
|
17035
17449
|
|
@@ -17130,6 +17544,7 @@ module Aws::SageMaker
|
|
17130
17544
|
:instance_count,
|
17131
17545
|
:volume_size_in_gb,
|
17132
17546
|
:volume_kms_key_id)
|
17547
|
+
SENSITIVE = []
|
17133
17548
|
include Aws::Structure
|
17134
17549
|
end
|
17135
17550
|
|
@@ -17142,6 +17557,7 @@ module Aws::SageMaker
|
|
17142
17557
|
#
|
17143
17558
|
class ResourceInUse < Struct.new(
|
17144
17559
|
:message)
|
17560
|
+
SENSITIVE = []
|
17145
17561
|
include Aws::Structure
|
17146
17562
|
end
|
17147
17563
|
|
@@ -17155,6 +17571,7 @@ module Aws::SageMaker
|
|
17155
17571
|
#
|
17156
17572
|
class ResourceLimitExceeded < Struct.new(
|
17157
17573
|
:message)
|
17574
|
+
SENSITIVE = []
|
17158
17575
|
include Aws::Structure
|
17159
17576
|
end
|
17160
17577
|
|
@@ -17184,6 +17601,7 @@ module Aws::SageMaker
|
|
17184
17601
|
class ResourceLimits < Struct.new(
|
17185
17602
|
:max_number_of_training_jobs,
|
17186
17603
|
:max_parallel_training_jobs)
|
17604
|
+
SENSITIVE = []
|
17187
17605
|
include Aws::Structure
|
17188
17606
|
end
|
17189
17607
|
|
@@ -17196,11 +17614,12 @@ module Aws::SageMaker
|
|
17196
17614
|
#
|
17197
17615
|
class ResourceNotFound < Struct.new(
|
17198
17616
|
:message)
|
17617
|
+
SENSITIVE = []
|
17199
17618
|
include Aws::Structure
|
17200
17619
|
end
|
17201
17620
|
|
17202
|
-
# The instance type and the Amazon Resource Name (ARN) of the
|
17203
|
-
# created on the instance. The ARN is stored as metadata in
|
17621
|
+
# The instance type and the Amazon Resource Name (ARN) of the SageMaker
|
17622
|
+
# image created on the instance. The ARN is stored as metadata in
|
17204
17623
|
# SageMaker Studio notebooks.
|
17205
17624
|
#
|
17206
17625
|
# @note When making an API call, you may pass ResourceSpec
|
@@ -17212,7 +17631,8 @@ module Aws::SageMaker
|
|
17212
17631
|
# }
|
17213
17632
|
#
|
17214
17633
|
# @!attribute [rw] sage_maker_image_arn
|
17215
|
-
# The Amazon Resource Name (ARN) of the image created on the
|
17634
|
+
# The Amazon Resource Name (ARN) of the SageMaker image created on the
|
17635
|
+
# instance.
|
17216
17636
|
# @return [String]
|
17217
17637
|
#
|
17218
17638
|
# @!attribute [rw] instance_type
|
@@ -17224,10 +17644,12 @@ module Aws::SageMaker
|
|
17224
17644
|
class ResourceSpec < Struct.new(
|
17225
17645
|
:sage_maker_image_arn,
|
17226
17646
|
:instance_type)
|
17647
|
+
SENSITIVE = []
|
17227
17648
|
include Aws::Structure
|
17228
17649
|
end
|
17229
17650
|
|
17230
|
-
# The retention policy
|
17651
|
+
# The retention policy for data stored on an Amazon Elastic File System
|
17652
|
+
# (EFS) volume.
|
17231
17653
|
#
|
17232
17654
|
# @note When making an API call, you may pass RetentionPolicy
|
17233
17655
|
# data as a hash:
|
@@ -17237,13 +17659,17 @@ module Aws::SageMaker
|
|
17237
17659
|
# }
|
17238
17660
|
#
|
17239
17661
|
# @!attribute [rw] home_efs_file_system
|
17240
|
-
# The
|
17662
|
+
# The default is `Retain`, which specifies to keep the data stored on
|
17663
|
+
# the EFS volume.
|
17664
|
+
#
|
17665
|
+
# Specify `Delete` to delete the data stored on the EFS volume.
|
17241
17666
|
# @return [String]
|
17242
17667
|
#
|
17243
17668
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/RetentionPolicy AWS API Documentation
|
17244
17669
|
#
|
17245
17670
|
class RetentionPolicy < Struct.new(
|
17246
17671
|
:home_efs_file_system)
|
17672
|
+
SENSITIVE = []
|
17247
17673
|
include Aws::Structure
|
17248
17674
|
end
|
17249
17675
|
|
@@ -17355,6 +17781,7 @@ module Aws::SageMaker
|
|
17355
17781
|
:s3_uri,
|
17356
17782
|
:s3_data_distribution_type,
|
17357
17783
|
:attribute_names)
|
17784
|
+
SENSITIVE = []
|
17358
17785
|
include Aws::Structure
|
17359
17786
|
end
|
17360
17787
|
|
@@ -17414,6 +17841,7 @@ module Aws::SageMaker
|
|
17414
17841
|
#
|
17415
17842
|
class ScheduleConfig < Struct.new(
|
17416
17843
|
:schedule_expression)
|
17844
|
+
SENSITIVE = []
|
17417
17845
|
include Aws::Structure
|
17418
17846
|
end
|
17419
17847
|
|
@@ -17520,6 +17948,7 @@ module Aws::SageMaker
|
|
17520
17948
|
:nested_filters,
|
17521
17949
|
:sub_expressions,
|
17522
17950
|
:operator)
|
17951
|
+
SENSITIVE = []
|
17523
17952
|
include Aws::Structure
|
17524
17953
|
end
|
17525
17954
|
|
@@ -17548,6 +17977,7 @@ module Aws::SageMaker
|
|
17548
17977
|
:experiment,
|
17549
17978
|
:trial,
|
17550
17979
|
:trial_component)
|
17980
|
+
SENSITIVE = []
|
17551
17981
|
include Aws::Structure
|
17552
17982
|
end
|
17553
17983
|
|
@@ -17631,6 +18061,7 @@ module Aws::SageMaker
|
|
17631
18061
|
:sort_order,
|
17632
18062
|
:next_token,
|
17633
18063
|
:max_results)
|
18064
|
+
SENSITIVE = []
|
17634
18065
|
include Aws::Structure
|
17635
18066
|
end
|
17636
18067
|
|
@@ -17649,6 +18080,7 @@ module Aws::SageMaker
|
|
17649
18080
|
class SearchResponse < Struct.new(
|
17650
18081
|
:results,
|
17651
18082
|
:next_token)
|
18083
|
+
SENSITIVE = []
|
17652
18084
|
include Aws::Structure
|
17653
18085
|
end
|
17654
18086
|
|
@@ -17768,10 +18200,14 @@ module Aws::SageMaker
|
|
17768
18200
|
:start_time,
|
17769
18201
|
:end_time,
|
17770
18202
|
:status_message)
|
18203
|
+
SENSITIVE = []
|
17771
18204
|
include Aws::Structure
|
17772
18205
|
end
|
17773
18206
|
|
17774
|
-
#
|
18207
|
+
# Specifies options when sharing an Amazon SageMaker Studio notebook.
|
18208
|
+
# These settings are specified as part of `DefaultUserSettings` when the
|
18209
|
+
# CreateDomain API is called, and as part of `UserSettings` when the
|
18210
|
+
# CreateUserProfile API is called.
|
17775
18211
|
#
|
17776
18212
|
# @note When making an API call, you may pass SharingSettings
|
17777
18213
|
# data as a hash:
|
@@ -17783,15 +18219,20 @@ module Aws::SageMaker
|
|
17783
18219
|
# }
|
17784
18220
|
#
|
17785
18221
|
# @!attribute [rw] notebook_output_option
|
17786
|
-
#
|
18222
|
+
# Whether to include the notebook cell output when sharing the
|
18223
|
+
# notebook. The default is `Disabled`.
|
17787
18224
|
# @return [String]
|
17788
18225
|
#
|
17789
18226
|
# @!attribute [rw] s3_output_path
|
17790
|
-
#
|
18227
|
+
# When `NotebookOutputOption` is `Allowed`, the Amazon S3 bucket used
|
18228
|
+
# to save the notebook cell output. If `S3OutputPath` isn't
|
18229
|
+
# specified, a default bucket is used.
|
17791
18230
|
# @return [String]
|
17792
18231
|
#
|
17793
18232
|
# @!attribute [rw] s3_kms_key_id
|
17794
|
-
#
|
18233
|
+
# When `NotebookOutputOption` is `Allowed`, the AWS Key Management
|
18234
|
+
# Service (KMS) encryption key ID used to encrypt the notebook cell
|
18235
|
+
# output in the Amazon S3 bucket.
|
17795
18236
|
# @return [String]
|
17796
18237
|
#
|
17797
18238
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SharingSettings AWS API Documentation
|
@@ -17800,6 +18241,7 @@ module Aws::SageMaker
|
|
17800
18241
|
:notebook_output_option,
|
17801
18242
|
:s3_output_path,
|
17802
18243
|
:s3_kms_key_id)
|
18244
|
+
SENSITIVE = []
|
17803
18245
|
include Aws::Structure
|
17804
18246
|
end
|
17805
18247
|
|
@@ -17835,6 +18277,7 @@ module Aws::SageMaker
|
|
17835
18277
|
#
|
17836
18278
|
class ShuffleConfig < Struct.new(
|
17837
18279
|
:seed)
|
18280
|
+
SENSITIVE = []
|
17838
18281
|
include Aws::Structure
|
17839
18282
|
end
|
17840
18283
|
|
@@ -17869,6 +18312,7 @@ module Aws::SageMaker
|
|
17869
18312
|
class SourceAlgorithm < Struct.new(
|
17870
18313
|
:model_data_url,
|
17871
18314
|
:algorithm_name)
|
18315
|
+
SENSITIVE = []
|
17872
18316
|
include Aws::Structure
|
17873
18317
|
end
|
17874
18318
|
|
@@ -17894,6 +18338,7 @@ module Aws::SageMaker
|
|
17894
18338
|
#
|
17895
18339
|
class SourceAlgorithmSpecification < Struct.new(
|
17896
18340
|
:source_algorithms)
|
18341
|
+
SENSITIVE = []
|
17897
18342
|
include Aws::Structure
|
17898
18343
|
end
|
17899
18344
|
|
@@ -17931,6 +18376,7 @@ module Aws::SageMaker
|
|
17931
18376
|
#
|
17932
18377
|
class SourceIpConfig < Struct.new(
|
17933
18378
|
:cidrs)
|
18379
|
+
SENSITIVE = []
|
17934
18380
|
include Aws::Structure
|
17935
18381
|
end
|
17936
18382
|
|
@@ -17949,6 +18395,7 @@ module Aws::SageMaker
|
|
17949
18395
|
#
|
17950
18396
|
class StartMonitoringScheduleRequest < Struct.new(
|
17951
18397
|
:monitoring_schedule_name)
|
18398
|
+
SENSITIVE = []
|
17952
18399
|
include Aws::Structure
|
17953
18400
|
end
|
17954
18401
|
|
@@ -17967,6 +18414,7 @@ module Aws::SageMaker
|
|
17967
18414
|
#
|
17968
18415
|
class StartNotebookInstanceInput < Struct.new(
|
17969
18416
|
:notebook_instance_name)
|
18417
|
+
SENSITIVE = []
|
17970
18418
|
include Aws::Structure
|
17971
18419
|
end
|
17972
18420
|
|
@@ -17985,6 +18433,7 @@ module Aws::SageMaker
|
|
17985
18433
|
#
|
17986
18434
|
class StopAutoMLJobRequest < Struct.new(
|
17987
18435
|
:auto_ml_job_name)
|
18436
|
+
SENSITIVE = []
|
17988
18437
|
include Aws::Structure
|
17989
18438
|
end
|
17990
18439
|
|
@@ -18003,6 +18452,7 @@ module Aws::SageMaker
|
|
18003
18452
|
#
|
18004
18453
|
class StopCompilationJobRequest < Struct.new(
|
18005
18454
|
:compilation_job_name)
|
18455
|
+
SENSITIVE = []
|
18006
18456
|
include Aws::Structure
|
18007
18457
|
end
|
18008
18458
|
|
@@ -18021,6 +18471,7 @@ module Aws::SageMaker
|
|
18021
18471
|
#
|
18022
18472
|
class StopHyperParameterTuningJobRequest < Struct.new(
|
18023
18473
|
:hyper_parameter_tuning_job_name)
|
18474
|
+
SENSITIVE = []
|
18024
18475
|
include Aws::Structure
|
18025
18476
|
end
|
18026
18477
|
|
@@ -18039,6 +18490,7 @@ module Aws::SageMaker
|
|
18039
18490
|
#
|
18040
18491
|
class StopLabelingJobRequest < Struct.new(
|
18041
18492
|
:labeling_job_name)
|
18493
|
+
SENSITIVE = []
|
18042
18494
|
include Aws::Structure
|
18043
18495
|
end
|
18044
18496
|
|
@@ -18057,6 +18509,7 @@ module Aws::SageMaker
|
|
18057
18509
|
#
|
18058
18510
|
class StopMonitoringScheduleRequest < Struct.new(
|
18059
18511
|
:monitoring_schedule_name)
|
18512
|
+
SENSITIVE = []
|
18060
18513
|
include Aws::Structure
|
18061
18514
|
end
|
18062
18515
|
|
@@ -18075,6 +18528,7 @@ module Aws::SageMaker
|
|
18075
18528
|
#
|
18076
18529
|
class StopNotebookInstanceInput < Struct.new(
|
18077
18530
|
:notebook_instance_name)
|
18531
|
+
SENSITIVE = []
|
18078
18532
|
include Aws::Structure
|
18079
18533
|
end
|
18080
18534
|
|
@@ -18093,6 +18547,7 @@ module Aws::SageMaker
|
|
18093
18547
|
#
|
18094
18548
|
class StopProcessingJobRequest < Struct.new(
|
18095
18549
|
:processing_job_name)
|
18550
|
+
SENSITIVE = []
|
18096
18551
|
include Aws::Structure
|
18097
18552
|
end
|
18098
18553
|
|
@@ -18111,6 +18566,7 @@ module Aws::SageMaker
|
|
18111
18566
|
#
|
18112
18567
|
class StopTrainingJobRequest < Struct.new(
|
18113
18568
|
:training_job_name)
|
18569
|
+
SENSITIVE = []
|
18114
18570
|
include Aws::Structure
|
18115
18571
|
end
|
18116
18572
|
|
@@ -18129,6 +18585,7 @@ module Aws::SageMaker
|
|
18129
18585
|
#
|
18130
18586
|
class StopTransformJobRequest < Struct.new(
|
18131
18587
|
:transform_job_name)
|
18588
|
+
SENSITIVE = []
|
18132
18589
|
include Aws::Structure
|
18133
18590
|
end
|
18134
18591
|
|
@@ -18185,6 +18642,7 @@ module Aws::SageMaker
|
|
18185
18642
|
class StoppingCondition < Struct.new(
|
18186
18643
|
:max_runtime_in_seconds,
|
18187
18644
|
:max_wait_time_in_seconds)
|
18645
|
+
SENSITIVE = []
|
18188
18646
|
include Aws::Structure
|
18189
18647
|
end
|
18190
18648
|
|
@@ -18219,6 +18677,7 @@ module Aws::SageMaker
|
|
18219
18677
|
:seller_name,
|
18220
18678
|
:marketplace_description,
|
18221
18679
|
:listing_id)
|
18680
|
+
SENSITIVE = []
|
18222
18681
|
include Aws::Structure
|
18223
18682
|
end
|
18224
18683
|
|
@@ -18243,6 +18702,7 @@ module Aws::SageMaker
|
|
18243
18702
|
#
|
18244
18703
|
class SuggestionQuery < Struct.new(
|
18245
18704
|
:property_name_query)
|
18705
|
+
SENSITIVE = []
|
18246
18706
|
include Aws::Structure
|
18247
18707
|
end
|
18248
18708
|
|
@@ -18269,6 +18729,7 @@ module Aws::SageMaker
|
|
18269
18729
|
class Tag < Struct.new(
|
18270
18730
|
:key,
|
18271
18731
|
:value)
|
18732
|
+
SENSITIVE = []
|
18272
18733
|
include Aws::Structure
|
18273
18734
|
end
|
18274
18735
|
|
@@ -18285,13 +18746,15 @@ module Aws::SageMaker
|
|
18285
18746
|
# }
|
18286
18747
|
#
|
18287
18748
|
# @!attribute [rw] default_resource_spec
|
18288
|
-
# The instance type and
|
18749
|
+
# The default instance type and the Amazon Resource Name (ARN) of the
|
18750
|
+
# SageMaker image created on the instance.
|
18289
18751
|
# @return [Types::ResourceSpec]
|
18290
18752
|
#
|
18291
18753
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/TensorBoardAppSettings AWS API Documentation
|
18292
18754
|
#
|
18293
18755
|
class TensorBoardAppSettings < Struct.new(
|
18294
18756
|
:default_resource_spec)
|
18757
|
+
SENSITIVE = []
|
18295
18758
|
include Aws::Structure
|
18296
18759
|
end
|
18297
18760
|
|
@@ -18319,6 +18782,7 @@ module Aws::SageMaker
|
|
18319
18782
|
class TensorBoardOutputConfig < Struct.new(
|
18320
18783
|
:local_path,
|
18321
18784
|
:s3_output_path)
|
18785
|
+
SENSITIVE = []
|
18322
18786
|
include Aws::Structure
|
18323
18787
|
end
|
18324
18788
|
|
@@ -18626,6 +19090,7 @@ module Aws::SageMaker
|
|
18626
19090
|
:tensor_board_output_config,
|
18627
19091
|
:debug_rule_evaluation_statuses,
|
18628
19092
|
:tags)
|
19093
|
+
SENSITIVE = []
|
18629
19094
|
include Aws::Structure
|
18630
19095
|
end
|
18631
19096
|
|
@@ -18735,6 +19200,7 @@ module Aws::SageMaker
|
|
18735
19200
|
:output_data_config,
|
18736
19201
|
:resource_config,
|
18737
19202
|
:stopping_condition)
|
19203
|
+
SENSITIVE = []
|
18738
19204
|
include Aws::Structure
|
18739
19205
|
end
|
18740
19206
|
|
@@ -18776,6 +19242,7 @@ module Aws::SageMaker
|
|
18776
19242
|
:retryable_error,
|
18777
19243
|
:non_retryable_error,
|
18778
19244
|
:stopped)
|
19245
|
+
SENSITIVE = []
|
18779
19246
|
include Aws::Structure
|
18780
19247
|
end
|
18781
19248
|
|
@@ -18816,6 +19283,7 @@ module Aws::SageMaker
|
|
18816
19283
|
:training_end_time,
|
18817
19284
|
:last_modified_time,
|
18818
19285
|
:training_job_status)
|
19286
|
+
SENSITIVE = []
|
18819
19287
|
include Aws::Structure
|
18820
19288
|
end
|
18821
19289
|
|
@@ -18929,6 +19397,7 @@ module Aws::SageMaker
|
|
18929
19397
|
:metric_definitions,
|
18930
19398
|
:training_channels,
|
18931
19399
|
:supported_tuning_job_objective_metrics)
|
19400
|
+
SENSITIVE = []
|
18932
19401
|
include Aws::Structure
|
18933
19402
|
end
|
18934
19403
|
|
@@ -18953,6 +19422,7 @@ module Aws::SageMaker
|
|
18953
19422
|
#
|
18954
19423
|
class TransformDataSource < Struct.new(
|
18955
19424
|
:s3_data_source)
|
19425
|
+
SENSITIVE = []
|
18956
19426
|
include Aws::Structure
|
18957
19427
|
end
|
18958
19428
|
|
@@ -19037,6 +19507,7 @@ module Aws::SageMaker
|
|
19037
19507
|
:content_type,
|
19038
19508
|
:compression_type,
|
19039
19509
|
:split_type)
|
19510
|
+
SENSITIVE = []
|
19040
19511
|
include Aws::Structure
|
19041
19512
|
end
|
19042
19513
|
|
@@ -19125,6 +19596,7 @@ module Aws::SageMaker
|
|
19125
19596
|
:transform_input,
|
19126
19597
|
:transform_output,
|
19127
19598
|
:transform_resources)
|
19599
|
+
SENSITIVE = []
|
19128
19600
|
include Aws::Structure
|
19129
19601
|
end
|
19130
19602
|
|
@@ -19173,6 +19645,7 @@ module Aws::SageMaker
|
|
19173
19645
|
:last_modified_time,
|
19174
19646
|
:transform_job_status,
|
19175
19647
|
:failure_reason)
|
19648
|
+
SENSITIVE = []
|
19176
19649
|
include Aws::Structure
|
19177
19650
|
end
|
19178
19651
|
|
@@ -19262,6 +19735,7 @@ module Aws::SageMaker
|
|
19262
19735
|
:accept,
|
19263
19736
|
:assemble_with,
|
19264
19737
|
:kms_key_id)
|
19738
|
+
SENSITIVE = []
|
19265
19739
|
include Aws::Structure
|
19266
19740
|
end
|
19267
19741
|
|
@@ -19312,6 +19786,7 @@ module Aws::SageMaker
|
|
19312
19786
|
:instance_type,
|
19313
19787
|
:instance_count,
|
19314
19788
|
:volume_kms_key_id)
|
19789
|
+
SENSITIVE = []
|
19315
19790
|
include Aws::Structure
|
19316
19791
|
end
|
19317
19792
|
|
@@ -19385,6 +19860,7 @@ module Aws::SageMaker
|
|
19385
19860
|
class TransformS3DataSource < Struct.new(
|
19386
19861
|
:s3_data_type,
|
19387
19862
|
:s3_uri)
|
19863
|
+
SENSITIVE = []
|
19388
19864
|
include Aws::Structure
|
19389
19865
|
end
|
19390
19866
|
|
@@ -19453,6 +19929,7 @@ module Aws::SageMaker
|
|
19453
19929
|
:last_modified_by,
|
19454
19930
|
:tags,
|
19455
19931
|
:trial_component_summaries)
|
19932
|
+
SENSITIVE = []
|
19456
19933
|
include Aws::Structure
|
19457
19934
|
end
|
19458
19935
|
|
@@ -19558,6 +20035,7 @@ module Aws::SageMaker
|
|
19558
20035
|
:source_detail,
|
19559
20036
|
:tags,
|
19560
20037
|
:parents)
|
20038
|
+
SENSITIVE = []
|
19561
20039
|
include Aws::Structure
|
19562
20040
|
end
|
19563
20041
|
|
@@ -19594,6 +20072,7 @@ module Aws::SageMaker
|
|
19594
20072
|
class TrialComponentArtifact < Struct.new(
|
19595
20073
|
:media_type,
|
19596
20074
|
:value)
|
20075
|
+
SENSITIVE = []
|
19597
20076
|
include Aws::Structure
|
19598
20077
|
end
|
19599
20078
|
|
@@ -19647,6 +20126,7 @@ module Aws::SageMaker
|
|
19647
20126
|
:count,
|
19648
20127
|
:avg,
|
19649
20128
|
:std_dev)
|
20129
|
+
SENSITIVE = []
|
19650
20130
|
include Aws::Structure
|
19651
20131
|
end
|
19652
20132
|
|
@@ -19680,6 +20160,7 @@ module Aws::SageMaker
|
|
19680
20160
|
class TrialComponentParameterValue < Struct.new(
|
19681
20161
|
:string_value,
|
19682
20162
|
:number_value)
|
20163
|
+
SENSITIVE = []
|
19683
20164
|
include Aws::Structure
|
19684
20165
|
end
|
19685
20166
|
|
@@ -19715,6 +20196,7 @@ module Aws::SageMaker
|
|
19715
20196
|
:trial_component_source,
|
19716
20197
|
:creation_time,
|
19717
20198
|
:created_by)
|
20199
|
+
SENSITIVE = []
|
19718
20200
|
include Aws::Structure
|
19719
20201
|
end
|
19720
20202
|
|
@@ -19734,6 +20216,7 @@ module Aws::SageMaker
|
|
19734
20216
|
class TrialComponentSource < Struct.new(
|
19735
20217
|
:source_arn,
|
19736
20218
|
:source_type)
|
20219
|
+
SENSITIVE = []
|
19737
20220
|
include Aws::Structure
|
19738
20221
|
end
|
19739
20222
|
|
@@ -19760,6 +20243,7 @@ module Aws::SageMaker
|
|
19760
20243
|
:source_arn,
|
19761
20244
|
:training_job,
|
19762
20245
|
:processing_job)
|
20246
|
+
SENSITIVE = []
|
19763
20247
|
include Aws::Structure
|
19764
20248
|
end
|
19765
20249
|
|
@@ -19786,6 +20270,7 @@ module Aws::SageMaker
|
|
19786
20270
|
class TrialComponentStatus < Struct.new(
|
19787
20271
|
:primary_status,
|
19788
20272
|
:message)
|
20273
|
+
SENSITIVE = []
|
19789
20274
|
include Aws::Structure
|
19790
20275
|
end
|
19791
20276
|
|
@@ -19859,6 +20344,7 @@ module Aws::SageMaker
|
|
19859
20344
|
:created_by,
|
19860
20345
|
:last_modified_time,
|
19861
20346
|
:last_modified_by)
|
20347
|
+
SENSITIVE = []
|
19862
20348
|
include Aws::Structure
|
19863
20349
|
end
|
19864
20350
|
|
@@ -19877,6 +20363,7 @@ module Aws::SageMaker
|
|
19877
20363
|
class TrialSource < Struct.new(
|
19878
20364
|
:source_arn,
|
19879
20365
|
:source_type)
|
20366
|
+
SENSITIVE = []
|
19880
20367
|
include Aws::Structure
|
19881
20368
|
end
|
19882
20369
|
|
@@ -19917,6 +20404,7 @@ module Aws::SageMaker
|
|
19917
20404
|
:trial_source,
|
19918
20405
|
:creation_time,
|
19919
20406
|
:last_modified_time)
|
20407
|
+
SENSITIVE = []
|
19920
20408
|
include Aws::Structure
|
19921
20409
|
end
|
19922
20410
|
|
@@ -19937,6 +20425,7 @@ module Aws::SageMaker
|
|
19937
20425
|
#
|
19938
20426
|
class TuningJobCompletionCriteria < Struct.new(
|
19939
20427
|
:target_objective_metric_value)
|
20428
|
+
SENSITIVE = []
|
19940
20429
|
include Aws::Structure
|
19941
20430
|
end
|
19942
20431
|
|
@@ -19969,6 +20458,7 @@ module Aws::SageMaker
|
|
19969
20458
|
:dollars,
|
19970
20459
|
:cents,
|
19971
20460
|
:tenth_fractions_of_a_cent)
|
20461
|
+
SENSITIVE = []
|
19972
20462
|
include Aws::Structure
|
19973
20463
|
end
|
19974
20464
|
|
@@ -19979,23 +20469,34 @@ module Aws::SageMaker
|
|
19979
20469
|
# data as a hash:
|
19980
20470
|
#
|
19981
20471
|
# {
|
19982
|
-
# ui_template_s3_uri: "S3Uri",
|
20472
|
+
# ui_template_s3_uri: "S3Uri",
|
20473
|
+
# human_task_ui_arn: "HumanTaskUiArn",
|
19983
20474
|
# }
|
19984
20475
|
#
|
19985
20476
|
# @!attribute [rw] ui_template_s3_uri
|
19986
|
-
# The Amazon S3 bucket location of the UI template
|
19987
|
-
#
|
19988
|
-
#
|
20477
|
+
# The Amazon S3 bucket location of the UI template, or worker task
|
20478
|
+
# template. This is the template used to render the worker UI and
|
20479
|
+
# tools for labeling job tasks. For more information about the
|
20480
|
+
# contents of a UI template, see [ Creating Your Custom Labeling Task
|
20481
|
+
# Template][1].
|
19989
20482
|
#
|
19990
20483
|
#
|
19991
20484
|
#
|
19992
20485
|
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/sms-custom-templates-step2.html
|
19993
20486
|
# @return [String]
|
19994
20487
|
#
|
20488
|
+
# @!attribute [rw] human_task_ui_arn
|
20489
|
+
# The ARN of the worker task template used to render the worker UI and
|
20490
|
+
# tools for labeling job tasks. Do not use this parameter if you use
|
20491
|
+
# UiTemplateS3Uri.
|
20492
|
+
# @return [String]
|
20493
|
+
#
|
19995
20494
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UiConfig AWS API Documentation
|
19996
20495
|
#
|
19997
20496
|
class UiConfig < Struct.new(
|
19998
|
-
:ui_template_s3_uri
|
20497
|
+
:ui_template_s3_uri,
|
20498
|
+
:human_task_ui_arn)
|
20499
|
+
SENSITIVE = []
|
19999
20500
|
include Aws::Structure
|
20000
20501
|
end
|
20001
20502
|
|
@@ -20016,6 +20517,7 @@ module Aws::SageMaker
|
|
20016
20517
|
#
|
20017
20518
|
class UiTemplate < Struct.new(
|
20018
20519
|
:content)
|
20520
|
+
SENSITIVE = []
|
20019
20521
|
include Aws::Structure
|
20020
20522
|
end
|
20021
20523
|
|
@@ -20034,6 +20536,7 @@ module Aws::SageMaker
|
|
20034
20536
|
class UiTemplateInfo < Struct.new(
|
20035
20537
|
:url,
|
20036
20538
|
:content_sha_256)
|
20539
|
+
SENSITIVE = []
|
20037
20540
|
include Aws::Structure
|
20038
20541
|
end
|
20039
20542
|
|
@@ -20066,6 +20569,7 @@ module Aws::SageMaker
|
|
20066
20569
|
class UpdateCodeRepositoryInput < Struct.new(
|
20067
20570
|
:code_repository_name,
|
20068
20571
|
:git_config)
|
20572
|
+
SENSITIVE = []
|
20069
20573
|
include Aws::Structure
|
20070
20574
|
end
|
20071
20575
|
|
@@ -20077,6 +20581,7 @@ module Aws::SageMaker
|
|
20077
20581
|
#
|
20078
20582
|
class UpdateCodeRepositoryOutput < Struct.new(
|
20079
20583
|
:code_repository_arn)
|
20584
|
+
SENSITIVE = []
|
20080
20585
|
include Aws::Structure
|
20081
20586
|
end
|
20082
20587
|
|
@@ -20115,7 +20620,7 @@ module Aws::SageMaker
|
|
20115
20620
|
# }
|
20116
20621
|
#
|
20117
20622
|
# @!attribute [rw] domain_id
|
20118
|
-
# The domain
|
20623
|
+
# The ID of the domain to be updated.
|
20119
20624
|
# @return [String]
|
20120
20625
|
#
|
20121
20626
|
# @!attribute [rw] default_user_settings
|
@@ -20127,17 +20632,19 @@ module Aws::SageMaker
|
|
20127
20632
|
class UpdateDomainRequest < Struct.new(
|
20128
20633
|
:domain_id,
|
20129
20634
|
:default_user_settings)
|
20635
|
+
SENSITIVE = []
|
20130
20636
|
include Aws::Structure
|
20131
20637
|
end
|
20132
20638
|
|
20133
20639
|
# @!attribute [rw] domain_arn
|
20134
|
-
# The
|
20640
|
+
# The Amazon Resource Name (ARN) of the domain.
|
20135
20641
|
# @return [String]
|
20136
20642
|
#
|
20137
20643
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateDomainResponse AWS API Documentation
|
20138
20644
|
#
|
20139
20645
|
class UpdateDomainResponse < Struct.new(
|
20140
20646
|
:domain_arn)
|
20647
|
+
SENSITIVE = []
|
20141
20648
|
include Aws::Structure
|
20142
20649
|
end
|
20143
20650
|
|
@@ -20188,6 +20695,7 @@ module Aws::SageMaker
|
|
20188
20695
|
:endpoint_config_name,
|
20189
20696
|
:retain_all_variant_properties,
|
20190
20697
|
:exclude_retained_variant_properties)
|
20698
|
+
SENSITIVE = []
|
20191
20699
|
include Aws::Structure
|
20192
20700
|
end
|
20193
20701
|
|
@@ -20199,6 +20707,7 @@ module Aws::SageMaker
|
|
20199
20707
|
#
|
20200
20708
|
class UpdateEndpointOutput < Struct.new(
|
20201
20709
|
:endpoint_arn)
|
20710
|
+
SENSITIVE = []
|
20202
20711
|
include Aws::Structure
|
20203
20712
|
end
|
20204
20713
|
|
@@ -20230,6 +20739,7 @@ module Aws::SageMaker
|
|
20230
20739
|
class UpdateEndpointWeightsAndCapacitiesInput < Struct.new(
|
20231
20740
|
:endpoint_name,
|
20232
20741
|
:desired_weights_and_capacities)
|
20742
|
+
SENSITIVE = []
|
20233
20743
|
include Aws::Structure
|
20234
20744
|
end
|
20235
20745
|
|
@@ -20241,6 +20751,7 @@ module Aws::SageMaker
|
|
20241
20751
|
#
|
20242
20752
|
class UpdateEndpointWeightsAndCapacitiesOutput < Struct.new(
|
20243
20753
|
:endpoint_arn)
|
20754
|
+
SENSITIVE = []
|
20244
20755
|
include Aws::Structure
|
20245
20756
|
end
|
20246
20757
|
|
@@ -20273,6 +20784,7 @@ module Aws::SageMaker
|
|
20273
20784
|
:experiment_name,
|
20274
20785
|
:display_name,
|
20275
20786
|
:description)
|
20787
|
+
SENSITIVE = []
|
20276
20788
|
include Aws::Structure
|
20277
20789
|
end
|
20278
20790
|
|
@@ -20284,6 +20796,7 @@ module Aws::SageMaker
|
|
20284
20796
|
#
|
20285
20797
|
class UpdateExperimentResponse < Struct.new(
|
20286
20798
|
:experiment_arn)
|
20799
|
+
SENSITIVE = []
|
20287
20800
|
include Aws::Structure
|
20288
20801
|
end
|
20289
20802
|
|
@@ -20349,6 +20862,7 @@ module Aws::SageMaker
|
|
20349
20862
|
# "ProcessingEnvironmentKey" => "ProcessingEnvironmentValue",
|
20350
20863
|
# },
|
20351
20864
|
# network_config: {
|
20865
|
+
# enable_inter_container_traffic_encryption: false,
|
20352
20866
|
# enable_network_isolation: false,
|
20353
20867
|
# vpc_config: {
|
20354
20868
|
# security_group_ids: ["SecurityGroupId"], # required
|
@@ -20375,6 +20889,7 @@ module Aws::SageMaker
|
|
20375
20889
|
class UpdateMonitoringScheduleRequest < Struct.new(
|
20376
20890
|
:monitoring_schedule_name,
|
20377
20891
|
:monitoring_schedule_config)
|
20892
|
+
SENSITIVE = []
|
20378
20893
|
include Aws::Structure
|
20379
20894
|
end
|
20380
20895
|
|
@@ -20386,6 +20901,7 @@ module Aws::SageMaker
|
|
20386
20901
|
#
|
20387
20902
|
class UpdateMonitoringScheduleResponse < Struct.new(
|
20388
20903
|
:monitoring_schedule_arn)
|
20904
|
+
SENSITIVE = []
|
20389
20905
|
include Aws::Structure
|
20390
20906
|
end
|
20391
20907
|
|
@@ -20549,6 +21065,7 @@ module Aws::SageMaker
|
|
20549
21065
|
:disassociate_default_code_repository,
|
20550
21066
|
:disassociate_additional_code_repositories,
|
20551
21067
|
:root_access)
|
21068
|
+
SENSITIVE = []
|
20552
21069
|
include Aws::Structure
|
20553
21070
|
end
|
20554
21071
|
|
@@ -20590,6 +21107,7 @@ module Aws::SageMaker
|
|
20590
21107
|
:notebook_instance_lifecycle_config_name,
|
20591
21108
|
:on_create,
|
20592
21109
|
:on_start)
|
21110
|
+
SENSITIVE = []
|
20593
21111
|
include Aws::Structure
|
20594
21112
|
end
|
20595
21113
|
|
@@ -20699,6 +21217,7 @@ module Aws::SageMaker
|
|
20699
21217
|
:input_artifacts_to_remove,
|
20700
21218
|
:output_artifacts,
|
20701
21219
|
:output_artifacts_to_remove)
|
21220
|
+
SENSITIVE = []
|
20702
21221
|
include Aws::Structure
|
20703
21222
|
end
|
20704
21223
|
|
@@ -20710,6 +21229,7 @@ module Aws::SageMaker
|
|
20710
21229
|
#
|
20711
21230
|
class UpdateTrialComponentResponse < Struct.new(
|
20712
21231
|
:trial_component_arn)
|
21232
|
+
SENSITIVE = []
|
20713
21233
|
include Aws::Structure
|
20714
21234
|
end
|
20715
21235
|
|
@@ -20735,6 +21255,7 @@ module Aws::SageMaker
|
|
20735
21255
|
class UpdateTrialRequest < Struct.new(
|
20736
21256
|
:trial_name,
|
20737
21257
|
:display_name)
|
21258
|
+
SENSITIVE = []
|
20738
21259
|
include Aws::Structure
|
20739
21260
|
end
|
20740
21261
|
|
@@ -20746,6 +21267,7 @@ module Aws::SageMaker
|
|
20746
21267
|
#
|
20747
21268
|
class UpdateTrialResponse < Struct.new(
|
20748
21269
|
:trial_arn)
|
21270
|
+
SENSITIVE = []
|
20749
21271
|
include Aws::Structure
|
20750
21272
|
end
|
20751
21273
|
|
@@ -20802,6 +21324,7 @@ module Aws::SageMaker
|
|
20802
21324
|
:domain_id,
|
20803
21325
|
:user_profile_name,
|
20804
21326
|
:user_settings)
|
21327
|
+
SENSITIVE = []
|
20805
21328
|
include Aws::Structure
|
20806
21329
|
end
|
20807
21330
|
|
@@ -20813,6 +21336,7 @@ module Aws::SageMaker
|
|
20813
21336
|
#
|
20814
21337
|
class UpdateUserProfileResponse < Struct.new(
|
20815
21338
|
:user_profile_arn)
|
21339
|
+
SENSITIVE = []
|
20816
21340
|
include Aws::Structure
|
20817
21341
|
end
|
20818
21342
|
|
@@ -20848,6 +21372,7 @@ module Aws::SageMaker
|
|
20848
21372
|
class UpdateWorkforceRequest < Struct.new(
|
20849
21373
|
:workforce_name,
|
20850
21374
|
:source_ip_config)
|
21375
|
+
SENSITIVE = []
|
20851
21376
|
include Aws::Structure
|
20852
21377
|
end
|
20853
21378
|
|
@@ -20868,6 +21393,7 @@ module Aws::SageMaker
|
|
20868
21393
|
#
|
20869
21394
|
class UpdateWorkforceResponse < Struct.new(
|
20870
21395
|
:workforce)
|
21396
|
+
SENSITIVE = []
|
20871
21397
|
include Aws::Structure
|
20872
21398
|
end
|
20873
21399
|
|
@@ -20916,6 +21442,7 @@ module Aws::SageMaker
|
|
20916
21442
|
:member_definitions,
|
20917
21443
|
:description,
|
20918
21444
|
:notification_configuration)
|
21445
|
+
SENSITIVE = []
|
20919
21446
|
include Aws::Structure
|
20920
21447
|
end
|
20921
21448
|
|
@@ -20927,6 +21454,7 @@ module Aws::SageMaker
|
|
20927
21454
|
#
|
20928
21455
|
class UpdateWorkteamResponse < Struct.new(
|
20929
21456
|
:workteam)
|
21457
|
+
SENSITIVE = []
|
20930
21458
|
include Aws::Structure
|
20931
21459
|
end
|
20932
21460
|
|
@@ -20951,6 +21479,7 @@ module Aws::SageMaker
|
|
20951
21479
|
:user_profile_arn,
|
20952
21480
|
:user_profile_name,
|
20953
21481
|
:domain_id)
|
21482
|
+
SENSITIVE = []
|
20954
21483
|
include Aws::Structure
|
20955
21484
|
end
|
20956
21485
|
|
@@ -20984,6 +21513,7 @@ module Aws::SageMaker
|
|
20984
21513
|
:status,
|
20985
21514
|
:creation_time,
|
20986
21515
|
:last_modified_time)
|
21516
|
+
SENSITIVE = []
|
20987
21517
|
include Aws::Structure
|
20988
21518
|
end
|
20989
21519
|
|
@@ -21053,6 +21583,7 @@ module Aws::SageMaker
|
|
21053
21583
|
:jupyter_server_app_settings,
|
21054
21584
|
:kernel_gateway_app_settings,
|
21055
21585
|
:tensor_board_app_settings)
|
21586
|
+
SENSITIVE = []
|
21056
21587
|
include Aws::Structure
|
21057
21588
|
end
|
21058
21589
|
|
@@ -21089,6 +21620,7 @@ module Aws::SageMaker
|
|
21089
21620
|
#
|
21090
21621
|
class VariantProperty < Struct.new(
|
21091
21622
|
:variant_property_type)
|
21623
|
+
SENSITIVE = []
|
21092
21624
|
include Aws::Structure
|
21093
21625
|
end
|
21094
21626
|
|
@@ -21133,6 +21665,7 @@ module Aws::SageMaker
|
|
21133
21665
|
class VpcConfig < Struct.new(
|
21134
21666
|
:security_group_ids,
|
21135
21667
|
:subnets)
|
21668
|
+
SENSITIVE = []
|
21136
21669
|
include Aws::Structure
|
21137
21670
|
end
|
21138
21671
|
|
@@ -21182,6 +21715,7 @@ module Aws::SageMaker
|
|
21182
21715
|
:workforce_arn,
|
21183
21716
|
:last_updated_date,
|
21184
21717
|
:source_ip_config)
|
21718
|
+
SENSITIVE = []
|
21185
21719
|
include Aws::Structure
|
21186
21720
|
end
|
21187
21721
|
|
@@ -21237,6 +21771,7 @@ module Aws::SageMaker
|
|
21237
21771
|
:create_date,
|
21238
21772
|
:last_updated_date,
|
21239
21773
|
:notification_configuration)
|
21774
|
+
SENSITIVE = []
|
21240
21775
|
include Aws::Structure
|
21241
21776
|
end
|
21242
21777
|
|