forked from aws-controllers-k8s/sagemaker-controller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenums.go
2147 lines (1751 loc) · 90.4 KB
/
enums.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License"). You may
// not use this file except in compliance with the License. A copy of the
// License is located at
//
// http://aws.amazon.com/apache2.0/
//
// or in the "license" file accompanying this file. This file is distributed
// on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
// express or implied. See the License for the specific language governing
// permissions and limitations under the License.
// Code generated by ack-generate. DO NOT EDIT.
package v1alpha1
type AWSManagedHumanLoopRequestSource string
const (
AWSManagedHumanLoopRequestSource_AWS_Rekognition_DetectModerationLabels_Image_V3 AWSManagedHumanLoopRequestSource = "AWS/Rekognition/DetectModerationLabels/Image/V3"
AWSManagedHumanLoopRequestSource_AWS_Textract_AnalyzeDocument_Forms_V1 AWSManagedHumanLoopRequestSource = "AWS/Textract/AnalyzeDocument/Forms/V1"
)
type ActionStatus string
const (
ActionStatus_Unknown ActionStatus = "Unknown"
ActionStatus_InProgress ActionStatus = "InProgress"
ActionStatus_Completed ActionStatus = "Completed"
ActionStatus_Failed ActionStatus = "Failed"
ActionStatus_Stopping ActionStatus = "Stopping"
ActionStatus_Stopped ActionStatus = "Stopped"
)
type AlgorithmSortBy string
const (
AlgorithmSortBy_Name AlgorithmSortBy = "Name"
AlgorithmSortBy_CreationTime AlgorithmSortBy = "CreationTime"
)
type AlgorithmStatus string
const (
AlgorithmStatus_Pending AlgorithmStatus = "Pending"
AlgorithmStatus_InProgress AlgorithmStatus = "InProgress"
AlgorithmStatus_Completed AlgorithmStatus = "Completed"
AlgorithmStatus_Failed AlgorithmStatus = "Failed"
AlgorithmStatus_Deleting AlgorithmStatus = "Deleting"
)
type AppImageConfigSortKey string
const (
AppImageConfigSortKey_CreationTime AppImageConfigSortKey = "CreationTime"
AppImageConfigSortKey_LastModifiedTime AppImageConfigSortKey = "LastModifiedTime"
AppImageConfigSortKey_Name AppImageConfigSortKey = "Name"
)
type AppInstanceType string
const (
AppInstanceType_system AppInstanceType = "system"
AppInstanceType_ml_t3_micro AppInstanceType = "ml.t3.micro"
AppInstanceType_ml_t3_small AppInstanceType = "ml.t3.small"
AppInstanceType_ml_t3_medium AppInstanceType = "ml.t3.medium"
AppInstanceType_ml_t3_large AppInstanceType = "ml.t3.large"
AppInstanceType_ml_t3_xlarge AppInstanceType = "ml.t3.xlarge"
AppInstanceType_ml_t3_2xlarge AppInstanceType = "ml.t3.2xlarge"
AppInstanceType_ml_m5_large AppInstanceType = "ml.m5.large"
AppInstanceType_ml_m5_xlarge AppInstanceType = "ml.m5.xlarge"
AppInstanceType_ml_m5_2xlarge AppInstanceType = "ml.m5.2xlarge"
AppInstanceType_ml_m5_4xlarge AppInstanceType = "ml.m5.4xlarge"
AppInstanceType_ml_m5_8xlarge AppInstanceType = "ml.m5.8xlarge"
AppInstanceType_ml_m5_12xlarge AppInstanceType = "ml.m5.12xlarge"
AppInstanceType_ml_m5_16xlarge AppInstanceType = "ml.m5.16xlarge"
AppInstanceType_ml_m5_24xlarge AppInstanceType = "ml.m5.24xlarge"
AppInstanceType_ml_m5d_large AppInstanceType = "ml.m5d.large"
AppInstanceType_ml_m5d_xlarge AppInstanceType = "ml.m5d.xlarge"
AppInstanceType_ml_m5d_2xlarge AppInstanceType = "ml.m5d.2xlarge"
AppInstanceType_ml_m5d_4xlarge AppInstanceType = "ml.m5d.4xlarge"
AppInstanceType_ml_m5d_8xlarge AppInstanceType = "ml.m5d.8xlarge"
AppInstanceType_ml_m5d_12xlarge AppInstanceType = "ml.m5d.12xlarge"
AppInstanceType_ml_m5d_16xlarge AppInstanceType = "ml.m5d.16xlarge"
AppInstanceType_ml_m5d_24xlarge AppInstanceType = "ml.m5d.24xlarge"
AppInstanceType_ml_c5_large AppInstanceType = "ml.c5.large"
AppInstanceType_ml_c5_xlarge AppInstanceType = "ml.c5.xlarge"
AppInstanceType_ml_c5_2xlarge AppInstanceType = "ml.c5.2xlarge"
AppInstanceType_ml_c5_4xlarge AppInstanceType = "ml.c5.4xlarge"
AppInstanceType_ml_c5_9xlarge AppInstanceType = "ml.c5.9xlarge"
AppInstanceType_ml_c5_12xlarge AppInstanceType = "ml.c5.12xlarge"
AppInstanceType_ml_c5_18xlarge AppInstanceType = "ml.c5.18xlarge"
AppInstanceType_ml_c5_24xlarge AppInstanceType = "ml.c5.24xlarge"
AppInstanceType_ml_p3_2xlarge AppInstanceType = "ml.p3.2xlarge"
AppInstanceType_ml_p3_8xlarge AppInstanceType = "ml.p3.8xlarge"
AppInstanceType_ml_p3_16xlarge AppInstanceType = "ml.p3.16xlarge"
AppInstanceType_ml_p3dn_24xlarge AppInstanceType = "ml.p3dn.24xlarge"
AppInstanceType_ml_g4dn_xlarge AppInstanceType = "ml.g4dn.xlarge"
AppInstanceType_ml_g4dn_2xlarge AppInstanceType = "ml.g4dn.2xlarge"
AppInstanceType_ml_g4dn_4xlarge AppInstanceType = "ml.g4dn.4xlarge"
AppInstanceType_ml_g4dn_8xlarge AppInstanceType = "ml.g4dn.8xlarge"
AppInstanceType_ml_g4dn_12xlarge AppInstanceType = "ml.g4dn.12xlarge"
AppInstanceType_ml_g4dn_16xlarge AppInstanceType = "ml.g4dn.16xlarge"
AppInstanceType_ml_r5_large AppInstanceType = "ml.r5.large"
AppInstanceType_ml_r5_xlarge AppInstanceType = "ml.r5.xlarge"
AppInstanceType_ml_r5_2xlarge AppInstanceType = "ml.r5.2xlarge"
AppInstanceType_ml_r5_4xlarge AppInstanceType = "ml.r5.4xlarge"
AppInstanceType_ml_r5_8xlarge AppInstanceType = "ml.r5.8xlarge"
AppInstanceType_ml_r5_12xlarge AppInstanceType = "ml.r5.12xlarge"
AppInstanceType_ml_r5_16xlarge AppInstanceType = "ml.r5.16xlarge"
AppInstanceType_ml_r5_24xlarge AppInstanceType = "ml.r5.24xlarge"
AppInstanceType_ml_g5_xlarge AppInstanceType = "ml.g5.xlarge"
AppInstanceType_ml_g5_2xlarge AppInstanceType = "ml.g5.2xlarge"
AppInstanceType_ml_g5_4xlarge AppInstanceType = "ml.g5.4xlarge"
AppInstanceType_ml_g5_8xlarge AppInstanceType = "ml.g5.8xlarge"
AppInstanceType_ml_g5_16xlarge AppInstanceType = "ml.g5.16xlarge"
AppInstanceType_ml_g5_12xlarge AppInstanceType = "ml.g5.12xlarge"
AppInstanceType_ml_g5_24xlarge AppInstanceType = "ml.g5.24xlarge"
AppInstanceType_ml_g5_48xlarge AppInstanceType = "ml.g5.48xlarge"
)
type AppNetworkAccessType string
const (
AppNetworkAccessType_PublicInternetOnly AppNetworkAccessType = "PublicInternetOnly"
AppNetworkAccessType_VpcOnly AppNetworkAccessType = "VpcOnly"
)
type AppSecurityGroupManagement string
const (
AppSecurityGroupManagement_Service AppSecurityGroupManagement = "Service"
AppSecurityGroupManagement_Customer AppSecurityGroupManagement = "Customer"
)
type AppSortKey string
const (
AppSortKey_CreationTime AppSortKey = "CreationTime"
)
type AppStatus_SDK string
const (
AppStatus_SDK_Deleted AppStatus_SDK = "Deleted"
AppStatus_SDK_Deleting AppStatus_SDK = "Deleting"
AppStatus_SDK_Failed AppStatus_SDK = "Failed"
AppStatus_SDK_InService AppStatus_SDK = "InService"
AppStatus_SDK_Pending AppStatus_SDK = "Pending"
)
type AppType string
const (
AppType_JupyterServer AppType = "JupyterServer"
AppType_KernelGateway AppType = "KernelGateway"
AppType_TensorBoard AppType = "TensorBoard"
AppType_RStudioServerPro AppType = "RStudioServerPro"
AppType_RSessionGateway AppType = "RSessionGateway"
)
type ArtifactSourceIDType string
const (
ArtifactSourceIDType_MD5Hash ArtifactSourceIDType = "MD5Hash"
ArtifactSourceIDType_S3ETag ArtifactSourceIDType = "S3ETag"
ArtifactSourceIDType_S3Version ArtifactSourceIDType = "S3Version"
ArtifactSourceIDType_Custom ArtifactSourceIDType = "Custom"
)
type AssemblyType string
const (
AssemblyType_None AssemblyType = "None"
AssemblyType_Line AssemblyType = "Line"
)
type AssociationEdgeType string
const (
AssociationEdgeType_ContributedTo AssociationEdgeType = "ContributedTo"
AssociationEdgeType_AssociatedWith AssociationEdgeType = "AssociatedWith"
AssociationEdgeType_DerivedFrom AssociationEdgeType = "DerivedFrom"
AssociationEdgeType_Produced AssociationEdgeType = "Produced"
)
type AthenaResultCompressionType string
const (
AthenaResultCompressionType_GZIP AthenaResultCompressionType = "GZIP"
AthenaResultCompressionType_SNAPPY AthenaResultCompressionType = "SNAPPY"
AthenaResultCompressionType_ZLIB AthenaResultCompressionType = "ZLIB"
)
type AthenaResultFormat string
const (
AthenaResultFormat_PARQUET AthenaResultFormat = "PARQUET"
AthenaResultFormat_ORC AthenaResultFormat = "ORC"
AthenaResultFormat_AVRO AthenaResultFormat = "AVRO"
AthenaResultFormat_JSON AthenaResultFormat = "JSON"
AthenaResultFormat_TEXTFILE AthenaResultFormat = "TEXTFILE"
)
type AuthMode string
const (
AuthMode_SSO AuthMode = "SSO"
AuthMode_IAM AuthMode = "IAM"
)
type AutoMLChannelType string
const (
AutoMLChannelType_training AutoMLChannelType = "training"
AutoMLChannelType_validation AutoMLChannelType = "validation"
)
type AutoMLJobObjectiveType string
const (
AutoMLJobObjectiveType_Maximize AutoMLJobObjectiveType = "Maximize"
AutoMLJobObjectiveType_Minimize AutoMLJobObjectiveType = "Minimize"
)
type AutoMLJobSecondaryStatus string
const (
AutoMLJobSecondaryStatus_Starting AutoMLJobSecondaryStatus = "Starting"
AutoMLJobSecondaryStatus_AnalyzingData AutoMLJobSecondaryStatus = "AnalyzingData"
AutoMLJobSecondaryStatus_FeatureEngineering AutoMLJobSecondaryStatus = "FeatureEngineering"
AutoMLJobSecondaryStatus_ModelTuning AutoMLJobSecondaryStatus = "ModelTuning"
AutoMLJobSecondaryStatus_MaxCandidatesReached AutoMLJobSecondaryStatus = "MaxCandidatesReached"
AutoMLJobSecondaryStatus_Failed AutoMLJobSecondaryStatus = "Failed"
AutoMLJobSecondaryStatus_Stopped AutoMLJobSecondaryStatus = "Stopped"
AutoMLJobSecondaryStatus_MaxAutoMLJobRuntimeReached AutoMLJobSecondaryStatus = "MaxAutoMLJobRuntimeReached"
AutoMLJobSecondaryStatus_Stopping AutoMLJobSecondaryStatus = "Stopping"
AutoMLJobSecondaryStatus_CandidateDefinitionsGenerated AutoMLJobSecondaryStatus = "CandidateDefinitionsGenerated"
AutoMLJobSecondaryStatus_GeneratingExplainabilityReport AutoMLJobSecondaryStatus = "GeneratingExplainabilityReport"
AutoMLJobSecondaryStatus_Completed AutoMLJobSecondaryStatus = "Completed"
AutoMLJobSecondaryStatus_ExplainabilityError AutoMLJobSecondaryStatus = "ExplainabilityError"
AutoMLJobSecondaryStatus_DeployingModel AutoMLJobSecondaryStatus = "DeployingModel"
AutoMLJobSecondaryStatus_ModelDeploymentError AutoMLJobSecondaryStatus = "ModelDeploymentError"
AutoMLJobSecondaryStatus_GeneratingModelInsightsReport AutoMLJobSecondaryStatus = "GeneratingModelInsightsReport"
AutoMLJobSecondaryStatus_ModelInsightsError AutoMLJobSecondaryStatus = "ModelInsightsError"
)
type AutoMLJobStatus string
const (
AutoMLJobStatus_Completed AutoMLJobStatus = "Completed"
AutoMLJobStatus_InProgress AutoMLJobStatus = "InProgress"
AutoMLJobStatus_Failed AutoMLJobStatus = "Failed"
AutoMLJobStatus_Stopped AutoMLJobStatus = "Stopped"
AutoMLJobStatus_Stopping AutoMLJobStatus = "Stopping"
)
type AutoMLMetricEnum string
const (
AutoMLMetricEnum_Accuracy AutoMLMetricEnum = "Accuracy"
AutoMLMetricEnum_MSE AutoMLMetricEnum = "MSE"
AutoMLMetricEnum_F1 AutoMLMetricEnum = "F1"
AutoMLMetricEnum_F1macro AutoMLMetricEnum = "F1macro"
AutoMLMetricEnum_AUC AutoMLMetricEnum = "AUC"
)
type AutoMLMetricExtendedEnum string
const (
AutoMLMetricExtendedEnum_Accuracy AutoMLMetricExtendedEnum = "Accuracy"
AutoMLMetricExtendedEnum_MSE AutoMLMetricExtendedEnum = "MSE"
AutoMLMetricExtendedEnum_F1 AutoMLMetricExtendedEnum = "F1"
AutoMLMetricExtendedEnum_F1macro AutoMLMetricExtendedEnum = "F1macro"
AutoMLMetricExtendedEnum_AUC AutoMLMetricExtendedEnum = "AUC"
AutoMLMetricExtendedEnum_RMSE AutoMLMetricExtendedEnum = "RMSE"
AutoMLMetricExtendedEnum_MAE AutoMLMetricExtendedEnum = "MAE"
AutoMLMetricExtendedEnum_R2 AutoMLMetricExtendedEnum = "R2"
AutoMLMetricExtendedEnum_BalancedAccuracy AutoMLMetricExtendedEnum = "BalancedAccuracy"
AutoMLMetricExtendedEnum_Precision AutoMLMetricExtendedEnum = "Precision"
AutoMLMetricExtendedEnum_PrecisionMacro AutoMLMetricExtendedEnum = "PrecisionMacro"
AutoMLMetricExtendedEnum_Recall AutoMLMetricExtendedEnum = "Recall"
AutoMLMetricExtendedEnum_RecallMacro AutoMLMetricExtendedEnum = "RecallMacro"
AutoMLMetricExtendedEnum_LogLoss AutoMLMetricExtendedEnum = "LogLoss"
)
type AutoMLMode string
const (
AutoMLMode_AUTO AutoMLMode = "AUTO"
AutoMLMode_ENSEMBLING AutoMLMode = "ENSEMBLING"
AutoMLMode_HYPERPARAMETER_TUNING AutoMLMode = "HYPERPARAMETER_TUNING"
)
type AutoMLS3DataType string
const (
AutoMLS3DataType_ManifestFile AutoMLS3DataType = "ManifestFile"
AutoMLS3DataType_S3Prefix AutoMLS3DataType = "S3Prefix"
)
type AutoMLSortBy string
const (
AutoMLSortBy_Name AutoMLSortBy = "Name"
AutoMLSortBy_CreationTime AutoMLSortBy = "CreationTime"
AutoMLSortBy_Status AutoMLSortBy = "Status"
)
type AutoMLSortOrder string
const (
AutoMLSortOrder_Ascending AutoMLSortOrder = "Ascending"
AutoMLSortOrder_Descending AutoMLSortOrder = "Descending"
)
type BatchStrategy string
const (
BatchStrategy_MultiRecord BatchStrategy = "MultiRecord"
BatchStrategy_SingleRecord BatchStrategy = "SingleRecord"
)
type BooleanOperator string
const (
BooleanOperator_And BooleanOperator = "And"
BooleanOperator_Or BooleanOperator = "Or"
)
type CandidateSortBy string
const (
CandidateSortBy_CreationTime CandidateSortBy = "CreationTime"
CandidateSortBy_Status CandidateSortBy = "Status"
CandidateSortBy_FinalObjectiveMetricValue CandidateSortBy = "FinalObjectiveMetricValue"
)
type CandidateStatus string
const (
CandidateStatus_Completed CandidateStatus = "Completed"
CandidateStatus_InProgress CandidateStatus = "InProgress"
CandidateStatus_Failed CandidateStatus = "Failed"
CandidateStatus_Stopped CandidateStatus = "Stopped"
CandidateStatus_Stopping CandidateStatus = "Stopping"
)
type CandidateStepType string
const (
CandidateStepType_AWS__SageMaker__TrainingJob CandidateStepType = "AWS::SageMaker::TrainingJob"
CandidateStepType_AWS__SageMaker__TransformJob CandidateStepType = "AWS::SageMaker::TransformJob"
CandidateStepType_AWS__SageMaker__ProcessingJob CandidateStepType = "AWS::SageMaker::ProcessingJob"
)
type CapacitySizeType string
const (
CapacitySizeType_INSTANCE_COUNT CapacitySizeType = "INSTANCE_COUNT"
CapacitySizeType_CAPACITY_PERCENT CapacitySizeType = "CAPACITY_PERCENT"
)
type CaptureMode string
const (
CaptureMode_Input CaptureMode = "Input"
CaptureMode_Output CaptureMode = "Output"
)
type CaptureStatus string
const (
CaptureStatus_Started CaptureStatus = "Started"
CaptureStatus_Stopped CaptureStatus = "Stopped"
)
type ClarifyFeatureType string
const (
ClarifyFeatureType_numerical ClarifyFeatureType = "numerical"
ClarifyFeatureType_categorical ClarifyFeatureType = "categorical"
ClarifyFeatureType_text ClarifyFeatureType = "text"
)
type ClarifyTextGranularity string
const (
ClarifyTextGranularity_token ClarifyTextGranularity = "token"
ClarifyTextGranularity_sentence ClarifyTextGranularity = "sentence"
ClarifyTextGranularity_paragraph ClarifyTextGranularity = "paragraph"
)
type ClarifyTextLanguage string
const (
ClarifyTextLanguage_af ClarifyTextLanguage = "af"
ClarifyTextLanguage_sq ClarifyTextLanguage = "sq"
ClarifyTextLanguage_ar ClarifyTextLanguage = "ar"
ClarifyTextLanguage_hy ClarifyTextLanguage = "hy"
ClarifyTextLanguage_eu ClarifyTextLanguage = "eu"
ClarifyTextLanguage_bn ClarifyTextLanguage = "bn"
ClarifyTextLanguage_bg ClarifyTextLanguage = "bg"
ClarifyTextLanguage_ca ClarifyTextLanguage = "ca"
ClarifyTextLanguage_zh ClarifyTextLanguage = "zh"
ClarifyTextLanguage_hr ClarifyTextLanguage = "hr"
ClarifyTextLanguage_cs ClarifyTextLanguage = "cs"
ClarifyTextLanguage_da ClarifyTextLanguage = "da"
ClarifyTextLanguage_nl ClarifyTextLanguage = "nl"
ClarifyTextLanguage_en ClarifyTextLanguage = "en"
ClarifyTextLanguage_et ClarifyTextLanguage = "et"
ClarifyTextLanguage_fi ClarifyTextLanguage = "fi"
ClarifyTextLanguage_fr ClarifyTextLanguage = "fr"
ClarifyTextLanguage_de ClarifyTextLanguage = "de"
ClarifyTextLanguage_el ClarifyTextLanguage = "el"
ClarifyTextLanguage_gu ClarifyTextLanguage = "gu"
ClarifyTextLanguage_he ClarifyTextLanguage = "he"
ClarifyTextLanguage_hi ClarifyTextLanguage = "hi"
ClarifyTextLanguage_hu ClarifyTextLanguage = "hu"
ClarifyTextLanguage_is ClarifyTextLanguage = "is"
ClarifyTextLanguage_id ClarifyTextLanguage = "id"
ClarifyTextLanguage_ga ClarifyTextLanguage = "ga"
ClarifyTextLanguage_it ClarifyTextLanguage = "it"
ClarifyTextLanguage_kn ClarifyTextLanguage = "kn"
ClarifyTextLanguage_ky ClarifyTextLanguage = "ky"
ClarifyTextLanguage_lv ClarifyTextLanguage = "lv"
ClarifyTextLanguage_lt ClarifyTextLanguage = "lt"
ClarifyTextLanguage_lb ClarifyTextLanguage = "lb"
ClarifyTextLanguage_mk ClarifyTextLanguage = "mk"
ClarifyTextLanguage_ml ClarifyTextLanguage = "ml"
ClarifyTextLanguage_mr ClarifyTextLanguage = "mr"
ClarifyTextLanguage_ne ClarifyTextLanguage = "ne"
ClarifyTextLanguage_nb ClarifyTextLanguage = "nb"
ClarifyTextLanguage_fa ClarifyTextLanguage = "fa"
ClarifyTextLanguage_pl ClarifyTextLanguage = "pl"
ClarifyTextLanguage_pt ClarifyTextLanguage = "pt"
ClarifyTextLanguage_ro ClarifyTextLanguage = "ro"
ClarifyTextLanguage_ru ClarifyTextLanguage = "ru"
ClarifyTextLanguage_sa ClarifyTextLanguage = "sa"
ClarifyTextLanguage_sr ClarifyTextLanguage = "sr"
ClarifyTextLanguage_tn ClarifyTextLanguage = "tn"
ClarifyTextLanguage_si ClarifyTextLanguage = "si"
ClarifyTextLanguage_sk ClarifyTextLanguage = "sk"
ClarifyTextLanguage_sl ClarifyTextLanguage = "sl"
ClarifyTextLanguage_es ClarifyTextLanguage = "es"
ClarifyTextLanguage_sv ClarifyTextLanguage = "sv"
ClarifyTextLanguage_tl ClarifyTextLanguage = "tl"
ClarifyTextLanguage_ta ClarifyTextLanguage = "ta"
ClarifyTextLanguage_tt ClarifyTextLanguage = "tt"
ClarifyTextLanguage_te ClarifyTextLanguage = "te"
ClarifyTextLanguage_tr ClarifyTextLanguage = "tr"
ClarifyTextLanguage_uk ClarifyTextLanguage = "uk"
ClarifyTextLanguage_ur ClarifyTextLanguage = "ur"
ClarifyTextLanguage_yo ClarifyTextLanguage = "yo"
ClarifyTextLanguage_lij ClarifyTextLanguage = "lij"
ClarifyTextLanguage_xx ClarifyTextLanguage = "xx"
)
type CodeRepositorySortBy string
const (
CodeRepositorySortBy_Name CodeRepositorySortBy = "Name"
CodeRepositorySortBy_CreationTime CodeRepositorySortBy = "CreationTime"
CodeRepositorySortBy_LastModifiedTime CodeRepositorySortBy = "LastModifiedTime"
)
type CodeRepositorySortOrder string
const (
CodeRepositorySortOrder_Ascending CodeRepositorySortOrder = "Ascending"
CodeRepositorySortOrder_Descending CodeRepositorySortOrder = "Descending"
)
type CompilationJobStatus string
const (
CompilationJobStatus_INPROGRESS CompilationJobStatus = "INPROGRESS"
CompilationJobStatus_COMPLETED CompilationJobStatus = "COMPLETED"
CompilationJobStatus_FAILED CompilationJobStatus = "FAILED"
CompilationJobStatus_STARTING CompilationJobStatus = "STARTING"
CompilationJobStatus_STOPPING CompilationJobStatus = "STOPPING"
CompilationJobStatus_STOPPED CompilationJobStatus = "STOPPED"
)
type CompressionType string
const (
CompressionType_None CompressionType = "None"
CompressionType_Gzip CompressionType = "Gzip"
)
type ConditionOutcome string
const (
ConditionOutcome_True ConditionOutcome = "True"
ConditionOutcome_False ConditionOutcome = "False"
)
type ContainerMode string
const (
ContainerMode_SingleModel ContainerMode = "SingleModel"
ContainerMode_MultiModel ContainerMode = "MultiModel"
)
type ContentClassifier string
const (
ContentClassifier_FreeOfPersonallyIdentifiableInformation ContentClassifier = "FreeOfPersonallyIdentifiableInformation"
ContentClassifier_FreeOfAdultContent ContentClassifier = "FreeOfAdultContent"
)
type DataDistributionType string
const (
DataDistributionType_FullyReplicated DataDistributionType = "FullyReplicated"
DataDistributionType_ShardedByS3Key DataDistributionType = "ShardedByS3Key"
)
type DetailedAlgorithmStatus string
const (
DetailedAlgorithmStatus_NotStarted DetailedAlgorithmStatus = "NotStarted"
DetailedAlgorithmStatus_InProgress DetailedAlgorithmStatus = "InProgress"
DetailedAlgorithmStatus_Completed DetailedAlgorithmStatus = "Completed"
DetailedAlgorithmStatus_Failed DetailedAlgorithmStatus = "Failed"
)
type DetailedModelPackageStatus string
const (
DetailedModelPackageStatus_NotStarted DetailedModelPackageStatus = "NotStarted"
DetailedModelPackageStatus_InProgress DetailedModelPackageStatus = "InProgress"
DetailedModelPackageStatus_Completed DetailedModelPackageStatus = "Completed"
DetailedModelPackageStatus_Failed DetailedModelPackageStatus = "Failed"
)
type DeviceDeploymentStatus string
const (
DeviceDeploymentStatus_READYTODEPLOY DeviceDeploymentStatus = "READYTODEPLOY"
DeviceDeploymentStatus_INPROGRESS DeviceDeploymentStatus = "INPROGRESS"
DeviceDeploymentStatus_DEPLOYED DeviceDeploymentStatus = "DEPLOYED"
DeviceDeploymentStatus_FAILED DeviceDeploymentStatus = "FAILED"
DeviceDeploymentStatus_STOPPING DeviceDeploymentStatus = "STOPPING"
DeviceDeploymentStatus_STOPPED DeviceDeploymentStatus = "STOPPED"
)
type DeviceSubsetType string
const (
DeviceSubsetType_PERCENTAGE DeviceSubsetType = "PERCENTAGE"
DeviceSubsetType_SELECTION DeviceSubsetType = "SELECTION"
DeviceSubsetType_NAMECONTAINS DeviceSubsetType = "NAMECONTAINS"
)
type DirectInternetAccess string
const (
DirectInternetAccess_Enabled DirectInternetAccess = "Enabled"
DirectInternetAccess_Disabled DirectInternetAccess = "Disabled"
)
type Direction string
const (
Direction_Both Direction = "Both"
Direction_Ascendants Direction = "Ascendants"
Direction_Descendants Direction = "Descendants"
)
type DomainStatus_SDK string
const (
DomainStatus_SDK_Deleting DomainStatus_SDK = "Deleting"
DomainStatus_SDK_Failed DomainStatus_SDK = "Failed"
DomainStatus_SDK_InService DomainStatus_SDK = "InService"
DomainStatus_SDK_Pending DomainStatus_SDK = "Pending"
DomainStatus_SDK_Updating DomainStatus_SDK = "Updating"
DomainStatus_SDK_Update_Failed DomainStatus_SDK = "Update_Failed"
DomainStatus_SDK_Delete_Failed DomainStatus_SDK = "Delete_Failed"
)
type EdgePackagingJobStatus string
const (
EdgePackagingJobStatus_STARTING EdgePackagingJobStatus = "STARTING"
EdgePackagingJobStatus_INPROGRESS EdgePackagingJobStatus = "INPROGRESS"
EdgePackagingJobStatus_COMPLETED EdgePackagingJobStatus = "COMPLETED"
EdgePackagingJobStatus_FAILED EdgePackagingJobStatus = "FAILED"
EdgePackagingJobStatus_STOPPING EdgePackagingJobStatus = "STOPPING"
EdgePackagingJobStatus_STOPPED EdgePackagingJobStatus = "STOPPED"
)
type EdgePresetDeploymentStatus string
const (
EdgePresetDeploymentStatus_COMPLETED EdgePresetDeploymentStatus = "COMPLETED"
EdgePresetDeploymentStatus_FAILED EdgePresetDeploymentStatus = "FAILED"
)
type EdgePresetDeploymentType string
const (
EdgePresetDeploymentType_GreengrassV2Component EdgePresetDeploymentType = "GreengrassV2Component"
)
type EndpointConfigSortKey string
const (
EndpointConfigSortKey_Name EndpointConfigSortKey = "Name"
EndpointConfigSortKey_CreationTime EndpointConfigSortKey = "CreationTime"
)
type EndpointSortKey string
const (
EndpointSortKey_Name EndpointSortKey = "Name"
EndpointSortKey_CreationTime EndpointSortKey = "CreationTime"
EndpointSortKey_Status EndpointSortKey = "Status"
)
type EndpointStatus_SDK string
const (
EndpointStatus_SDK_OutOfService EndpointStatus_SDK = "OutOfService"
EndpointStatus_SDK_Creating EndpointStatus_SDK = "Creating"
EndpointStatus_SDK_Updating EndpointStatus_SDK = "Updating"
EndpointStatus_SDK_SystemUpdating EndpointStatus_SDK = "SystemUpdating"
EndpointStatus_SDK_RollingBack EndpointStatus_SDK = "RollingBack"
EndpointStatus_SDK_InService EndpointStatus_SDK = "InService"
EndpointStatus_SDK_Deleting EndpointStatus_SDK = "Deleting"
EndpointStatus_SDK_Failed EndpointStatus_SDK = "Failed"
)
type ExecutionStatus string
const (
ExecutionStatus_Pending ExecutionStatus = "Pending"
ExecutionStatus_Completed ExecutionStatus = "Completed"
ExecutionStatus_CompletedWithViolations ExecutionStatus = "CompletedWithViolations"
ExecutionStatus_InProgress ExecutionStatus = "InProgress"
ExecutionStatus_Failed ExecutionStatus = "Failed"
ExecutionStatus_Stopping ExecutionStatus = "Stopping"
ExecutionStatus_Stopped ExecutionStatus = "Stopped"
)
type FailureHandlingPolicy string
const (
FailureHandlingPolicy_ROLLBACK_ON_FAILURE FailureHandlingPolicy = "ROLLBACK_ON_FAILURE"
FailureHandlingPolicy_DO_NOTHING FailureHandlingPolicy = "DO_NOTHING"
)
type FeatureGroupSortBy string
const (
FeatureGroupSortBy_Name FeatureGroupSortBy = "Name"
FeatureGroupSortBy_FeatureGroupStatus FeatureGroupSortBy = "FeatureGroupStatus"
FeatureGroupSortBy_OfflineStoreStatus FeatureGroupSortBy = "OfflineStoreStatus"
FeatureGroupSortBy_CreationTime FeatureGroupSortBy = "CreationTime"
)
type FeatureGroupSortOrder string
const (
FeatureGroupSortOrder_Ascending FeatureGroupSortOrder = "Ascending"
FeatureGroupSortOrder_Descending FeatureGroupSortOrder = "Descending"
)
type FeatureGroupStatus_SDK string
const (
FeatureGroupStatus_SDK_Creating FeatureGroupStatus_SDK = "Creating"
FeatureGroupStatus_SDK_Created FeatureGroupStatus_SDK = "Created"
FeatureGroupStatus_SDK_CreateFailed FeatureGroupStatus_SDK = "CreateFailed"
FeatureGroupStatus_SDK_Deleting FeatureGroupStatus_SDK = "Deleting"
FeatureGroupStatus_SDK_DeleteFailed FeatureGroupStatus_SDK = "DeleteFailed"
)
type FeatureStatus string
const (
FeatureStatus_ENABLED FeatureStatus = "ENABLED"
FeatureStatus_DISABLED FeatureStatus = "DISABLED"
)
type FeatureType string
const (
FeatureType_Integral FeatureType = "Integral"
FeatureType_Fractional FeatureType = "Fractional"
FeatureType_String FeatureType = "String"
)
type FileSystemAccessMode string
const (
FileSystemAccessMode_rw FileSystemAccessMode = "rw"
FileSystemAccessMode_ro FileSystemAccessMode = "ro"
)
type FileSystemType string
const (
FileSystemType_EFS FileSystemType = "EFS"
FileSystemType_FSxLustre FileSystemType = "FSxLustre"
)
type FlowDefinitionStatus string
const (
FlowDefinitionStatus_Initializing FlowDefinitionStatus = "Initializing"
FlowDefinitionStatus_Active FlowDefinitionStatus = "Active"
FlowDefinitionStatus_Failed FlowDefinitionStatus = "Failed"
FlowDefinitionStatus_Deleting FlowDefinitionStatus = "Deleting"
)
type Framework string
const (
Framework_TENSORFLOW Framework = "TENSORFLOW"
Framework_KERAS Framework = "KERAS"
Framework_MXNET Framework = "MXNET"
Framework_ONNX Framework = "ONNX"
Framework_PYTORCH Framework = "PYTORCH"
Framework_XGBOOST Framework = "XGBOOST"
Framework_TFLITE Framework = "TFLITE"
Framework_DARKNET Framework = "DARKNET"
Framework_SKLEARN Framework = "SKLEARN"
)
type HumanTaskUiStatus string
const (
HumanTaskUiStatus_Active HumanTaskUiStatus = "Active"
HumanTaskUiStatus_Deleting HumanTaskUiStatus = "Deleting"
)
type HyperParameterScalingType string
const (
HyperParameterScalingType_Auto HyperParameterScalingType = "Auto"
HyperParameterScalingType_Linear HyperParameterScalingType = "Linear"
HyperParameterScalingType_Logarithmic HyperParameterScalingType = "Logarithmic"
HyperParameterScalingType_ReverseLogarithmic HyperParameterScalingType = "ReverseLogarithmic"
)
type HyperParameterTuningAllocationStrategy string
const (
HyperParameterTuningAllocationStrategy_Prioritized HyperParameterTuningAllocationStrategy = "Prioritized"
)
type HyperParameterTuningJobObjectiveType string
const (
HyperParameterTuningJobObjectiveType_Maximize HyperParameterTuningJobObjectiveType = "Maximize"
HyperParameterTuningJobObjectiveType_Minimize HyperParameterTuningJobObjectiveType = "Minimize"
)
type HyperParameterTuningJobSortByOptions string
const (
HyperParameterTuningJobSortByOptions_Name HyperParameterTuningJobSortByOptions = "Name"
HyperParameterTuningJobSortByOptions_Status HyperParameterTuningJobSortByOptions = "Status"
HyperParameterTuningJobSortByOptions_CreationTime HyperParameterTuningJobSortByOptions = "CreationTime"
)
type HyperParameterTuningJobStatus_SDK string
const (
HyperParameterTuningJobStatus_SDK_Completed HyperParameterTuningJobStatus_SDK = "Completed"
HyperParameterTuningJobStatus_SDK_InProgress HyperParameterTuningJobStatus_SDK = "InProgress"
HyperParameterTuningJobStatus_SDK_Failed HyperParameterTuningJobStatus_SDK = "Failed"
HyperParameterTuningJobStatus_SDK_Stopped HyperParameterTuningJobStatus_SDK = "Stopped"
HyperParameterTuningJobStatus_SDK_Stopping HyperParameterTuningJobStatus_SDK = "Stopping"
)
type HyperParameterTuningJobStrategyType string
const (
HyperParameterTuningJobStrategyType_Bayesian HyperParameterTuningJobStrategyType = "Bayesian"
HyperParameterTuningJobStrategyType_Random HyperParameterTuningJobStrategyType = "Random"
HyperParameterTuningJobStrategyType_Hyperband HyperParameterTuningJobStrategyType = "Hyperband"
)
type HyperParameterTuningJobWarmStartType string
const (
HyperParameterTuningJobWarmStartType_IdenticalDataAndAlgorithm HyperParameterTuningJobWarmStartType = "IdenticalDataAndAlgorithm"
HyperParameterTuningJobWarmStartType_TransferLearning HyperParameterTuningJobWarmStartType = "TransferLearning"
)
type ImageSortBy string
const (
ImageSortBy_CREATION_TIME ImageSortBy = "CREATION_TIME"
ImageSortBy_LAST_MODIFIED_TIME ImageSortBy = "LAST_MODIFIED_TIME"
ImageSortBy_IMAGE_NAME ImageSortBy = "IMAGE_NAME"
)
type ImageSortOrder string
const (
ImageSortOrder_ASCENDING ImageSortOrder = "ASCENDING"
ImageSortOrder_DESCENDING ImageSortOrder = "DESCENDING"
)
type ImageStatus string
const (
ImageStatus_CREATING ImageStatus = "CREATING"
ImageStatus_CREATED ImageStatus = "CREATED"
ImageStatus_CREATE_FAILED ImageStatus = "CREATE_FAILED"
ImageStatus_UPDATING ImageStatus = "UPDATING"
ImageStatus_UPDATE_FAILED ImageStatus = "UPDATE_FAILED"
ImageStatus_DELETING ImageStatus = "DELETING"
ImageStatus_DELETE_FAILED ImageStatus = "DELETE_FAILED"
)
type ImageVersionSortBy string
const (
ImageVersionSortBy_CREATION_TIME ImageVersionSortBy = "CREATION_TIME"
ImageVersionSortBy_LAST_MODIFIED_TIME ImageVersionSortBy = "LAST_MODIFIED_TIME"
ImageVersionSortBy_VERSION ImageVersionSortBy = "VERSION"
)
type ImageVersionSortOrder string
const (
ImageVersionSortOrder_ASCENDING ImageVersionSortOrder = "ASCENDING"
ImageVersionSortOrder_DESCENDING ImageVersionSortOrder = "DESCENDING"
)
type ImageVersionStatus string
const (
ImageVersionStatus_CREATING ImageVersionStatus = "CREATING"
ImageVersionStatus_CREATED ImageVersionStatus = "CREATED"
ImageVersionStatus_CREATE_FAILED ImageVersionStatus = "CREATE_FAILED"
ImageVersionStatus_DELETING ImageVersionStatus = "DELETING"
ImageVersionStatus_DELETE_FAILED ImageVersionStatus = "DELETE_FAILED"
)
type InferenceExecutionMode string
const (
InferenceExecutionMode_Serial InferenceExecutionMode = "Serial"
InferenceExecutionMode_Direct InferenceExecutionMode = "Direct"
)
type InputMode string
const (
InputMode_Pipe InputMode = "Pipe"
InputMode_File InputMode = "File"
)
type InstanceType string
const (
InstanceType_ml_t2_medium InstanceType = "ml.t2.medium"
InstanceType_ml_t2_large InstanceType = "ml.t2.large"
InstanceType_ml_t2_xlarge InstanceType = "ml.t2.xlarge"
InstanceType_ml_t2_2xlarge InstanceType = "ml.t2.2xlarge"
InstanceType_ml_t3_medium InstanceType = "ml.t3.medium"
InstanceType_ml_t3_large InstanceType = "ml.t3.large"
InstanceType_ml_t3_xlarge InstanceType = "ml.t3.xlarge"
InstanceType_ml_t3_2xlarge InstanceType = "ml.t3.2xlarge"
InstanceType_ml_m4_xlarge InstanceType = "ml.m4.xlarge"
InstanceType_ml_m4_2xlarge InstanceType = "ml.m4.2xlarge"
InstanceType_ml_m4_4xlarge InstanceType = "ml.m4.4xlarge"
InstanceType_ml_m4_10xlarge InstanceType = "ml.m4.10xlarge"
InstanceType_ml_m4_16xlarge InstanceType = "ml.m4.16xlarge"
InstanceType_ml_m5_xlarge InstanceType = "ml.m5.xlarge"
InstanceType_ml_m5_2xlarge InstanceType = "ml.m5.2xlarge"
InstanceType_ml_m5_4xlarge InstanceType = "ml.m5.4xlarge"
InstanceType_ml_m5_12xlarge InstanceType = "ml.m5.12xlarge"
InstanceType_ml_m5_24xlarge InstanceType = "ml.m5.24xlarge"
InstanceType_ml_m5d_large InstanceType = "ml.m5d.large"
InstanceType_ml_m5d_xlarge InstanceType = "ml.m5d.xlarge"
InstanceType_ml_m5d_2xlarge InstanceType = "ml.m5d.2xlarge"
InstanceType_ml_m5d_4xlarge InstanceType = "ml.m5d.4xlarge"
InstanceType_ml_m5d_8xlarge InstanceType = "ml.m5d.8xlarge"
InstanceType_ml_m5d_12xlarge InstanceType = "ml.m5d.12xlarge"
InstanceType_ml_m5d_16xlarge InstanceType = "ml.m5d.16xlarge"
InstanceType_ml_m5d_24xlarge InstanceType = "ml.m5d.24xlarge"
InstanceType_ml_c4_xlarge InstanceType = "ml.c4.xlarge"
InstanceType_ml_c4_2xlarge InstanceType = "ml.c4.2xlarge"
InstanceType_ml_c4_4xlarge InstanceType = "ml.c4.4xlarge"
InstanceType_ml_c4_8xlarge InstanceType = "ml.c4.8xlarge"
InstanceType_ml_c5_xlarge InstanceType = "ml.c5.xlarge"
InstanceType_ml_c5_2xlarge InstanceType = "ml.c5.2xlarge"
InstanceType_ml_c5_4xlarge InstanceType = "ml.c5.4xlarge"
InstanceType_ml_c5_9xlarge InstanceType = "ml.c5.9xlarge"
InstanceType_ml_c5_18xlarge InstanceType = "ml.c5.18xlarge"
InstanceType_ml_c5d_xlarge InstanceType = "ml.c5d.xlarge"
InstanceType_ml_c5d_2xlarge InstanceType = "ml.c5d.2xlarge"
InstanceType_ml_c5d_4xlarge InstanceType = "ml.c5d.4xlarge"
InstanceType_ml_c5d_9xlarge InstanceType = "ml.c5d.9xlarge"
InstanceType_ml_c5d_18xlarge InstanceType = "ml.c5d.18xlarge"
InstanceType_ml_p2_xlarge InstanceType = "ml.p2.xlarge"
InstanceType_ml_p2_8xlarge InstanceType = "ml.p2.8xlarge"
InstanceType_ml_p2_16xlarge InstanceType = "ml.p2.16xlarge"
InstanceType_ml_p3_2xlarge InstanceType = "ml.p3.2xlarge"
InstanceType_ml_p3_8xlarge InstanceType = "ml.p3.8xlarge"
InstanceType_ml_p3_16xlarge InstanceType = "ml.p3.16xlarge"
InstanceType_ml_p3dn_24xlarge InstanceType = "ml.p3dn.24xlarge"
InstanceType_ml_g4dn_xlarge InstanceType = "ml.g4dn.xlarge"
InstanceType_ml_g4dn_2xlarge InstanceType = "ml.g4dn.2xlarge"
InstanceType_ml_g4dn_4xlarge InstanceType = "ml.g4dn.4xlarge"
InstanceType_ml_g4dn_8xlarge InstanceType = "ml.g4dn.8xlarge"
InstanceType_ml_g4dn_12xlarge InstanceType = "ml.g4dn.12xlarge"
InstanceType_ml_g4dn_16xlarge InstanceType = "ml.g4dn.16xlarge"
InstanceType_ml_r5_large InstanceType = "ml.r5.large"
InstanceType_ml_r5_xlarge InstanceType = "ml.r5.xlarge"
InstanceType_ml_r5_2xlarge InstanceType = "ml.r5.2xlarge"
InstanceType_ml_r5_4xlarge InstanceType = "ml.r5.4xlarge"
InstanceType_ml_r5_8xlarge InstanceType = "ml.r5.8xlarge"
InstanceType_ml_r5_12xlarge InstanceType = "ml.r5.12xlarge"
InstanceType_ml_r5_16xlarge InstanceType = "ml.r5.16xlarge"
InstanceType_ml_r5_24xlarge InstanceType = "ml.r5.24xlarge"
InstanceType_ml_g5_xlarge InstanceType = "ml.g5.xlarge"
InstanceType_ml_g5_2xlarge InstanceType = "ml.g5.2xlarge"
InstanceType_ml_g5_4xlarge InstanceType = "ml.g5.4xlarge"
InstanceType_ml_g5_8xlarge InstanceType = "ml.g5.8xlarge"
InstanceType_ml_g5_16xlarge InstanceType = "ml.g5.16xlarge"
InstanceType_ml_g5_12xlarge InstanceType = "ml.g5.12xlarge"
InstanceType_ml_g5_24xlarge InstanceType = "ml.g5.24xlarge"
InstanceType_ml_g5_48xlarge InstanceType = "ml.g5.48xlarge"
)
type JoinSource string
const (
JoinSource_Input JoinSource = "Input"
JoinSource_None JoinSource = "None"
)
type LabelingJobStatus string
const (
LabelingJobStatus_Initializing LabelingJobStatus = "Initializing"
LabelingJobStatus_InProgress LabelingJobStatus = "InProgress"
LabelingJobStatus_Completed LabelingJobStatus = "Completed"
LabelingJobStatus_Failed LabelingJobStatus = "Failed"
LabelingJobStatus_Stopping LabelingJobStatus = "Stopping"
LabelingJobStatus_Stopped LabelingJobStatus = "Stopped"
)
type LastUpdateStatusValue string
const (
LastUpdateStatusValue_Successful LastUpdateStatusValue = "Successful"
LastUpdateStatusValue_Failed LastUpdateStatusValue = "Failed"
LastUpdateStatusValue_InProgress LastUpdateStatusValue = "InProgress"
)
type LineageType string
const (
LineageType_TrialComponent LineageType = "TrialComponent"
LineageType_Artifact LineageType = "Artifact"
LineageType_Context LineageType = "Context"
LineageType_Action LineageType = "Action"
)
type ListCompilationJobsSortBy string
const (
ListCompilationJobsSortBy_Name ListCompilationJobsSortBy = "Name"
ListCompilationJobsSortBy_CreationTime ListCompilationJobsSortBy = "CreationTime"
ListCompilationJobsSortBy_Status ListCompilationJobsSortBy = "Status"
)
type ListDeviceFleetsSortBy string
const (
ListDeviceFleetsSortBy_NAME ListDeviceFleetsSortBy = "NAME"
ListDeviceFleetsSortBy_CREATION_TIME ListDeviceFleetsSortBy = "CREATION_TIME"
ListDeviceFleetsSortBy_LAST_MODIFIED_TIME ListDeviceFleetsSortBy = "LAST_MODIFIED_TIME"
)
type ListEdgeDeploymentPlansSortBy string
const (
ListEdgeDeploymentPlansSortBy_NAME ListEdgeDeploymentPlansSortBy = "NAME"
ListEdgeDeploymentPlansSortBy_DEVICE_FLEET_NAME ListEdgeDeploymentPlansSortBy = "DEVICE_FLEET_NAME"
ListEdgeDeploymentPlansSortBy_CREATION_TIME ListEdgeDeploymentPlansSortBy = "CREATION_TIME"
ListEdgeDeploymentPlansSortBy_LAST_MODIFIED_TIME ListEdgeDeploymentPlansSortBy = "LAST_MODIFIED_TIME"
)
type ListEdgePackagingJobsSortBy string
const (
ListEdgePackagingJobsSortBy_NAME ListEdgePackagingJobsSortBy = "NAME"
ListEdgePackagingJobsSortBy_MODEL_NAME ListEdgePackagingJobsSortBy = "MODEL_NAME"