@aws-sdk/client-sagemaker 3.427.0 → 3.429.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/models/models_0.js +5 -8
- package/dist-cjs/models/models_1.js +4 -1
- package/dist-cjs/models/models_2.js +1 -6
- package/dist-cjs/models/models_3.js +7 -2
- package/dist-es/models/models_0.js +4 -7
- package/dist-es/models/models_1.js +3 -0
- package/dist-es/models/models_2.js +0 -5
- package/dist-es/models/models_3.js +5 -0
- package/dist-types/commands/CreateDataQualityJobDefinitionCommand.d.ts +2 -1
- package/dist-types/commands/CreateDomainCommand.d.ts +6 -0
- package/dist-types/commands/CreateFeatureGroupCommand.d.ts +6 -2
- package/dist-types/commands/CreateUserProfileCommand.d.ts +6 -0
- package/dist-types/commands/DeleteDataQualityJobDefinitionCommand.d.ts +1 -1
- package/dist-types/commands/DeleteDeviceFleetCommand.d.ts +1 -1
- package/dist-types/commands/DeleteFeatureGroupCommand.d.ts +3 -0
- package/dist-types/commands/DescribeDomainCommand.d.ts +6 -0
- package/dist-types/commands/DescribeUserProfileCommand.d.ts +6 -0
- package/dist-types/commands/UpdateDomainCommand.d.ts +6 -0
- package/dist-types/commands/UpdateUserProfileCommand.d.ts +6 -0
- package/dist-types/models/models_0.d.ts +156 -138
- package/dist-types/models/models_1.d.ts +90 -89
- package/dist-types/models/models_2.d.ts +123 -133
- package/dist-types/models/models_3.d.ts +241 -337
- package/dist-types/models/models_4.d.ts +163 -33
- package/dist-types/ts3.4/commands/CreateDataQualityJobDefinitionCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DeleteDataQualityJobDefinitionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteDeviceFleetCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +123 -129
- package/dist-types/ts3.4/models/models_1.d.ts +75 -78
- package/dist-types/ts3.4/models/models_2.d.ts +104 -113
- package/dist-types/ts3.4/models/models_3.d.ts +217 -238
- package/dist-types/ts3.4/models/models_4.d.ts +62 -32
- package/package.json +32 -32
|
@@ -59,7 +59,6 @@ import {
|
|
|
59
59
|
ModelCardSecurityConfig,
|
|
60
60
|
ModelCardStatus,
|
|
61
61
|
ModelClientConfig,
|
|
62
|
-
MonitoringScheduleConfig,
|
|
63
62
|
MonitoringType,
|
|
64
63
|
OfflineStoreConfig,
|
|
65
64
|
OnlineStoreConfig,
|
|
@@ -82,9 +81,7 @@ import {
|
|
|
82
81
|
EdgePackagingJobSummary,
|
|
83
82
|
EMRStepMetadata,
|
|
84
83
|
EndpointConfigSortKey,
|
|
85
|
-
EndpointConfigSummary,
|
|
86
84
|
EndpointOutputConfiguration,
|
|
87
|
-
EndpointSortKey,
|
|
88
85
|
EndpointStatus,
|
|
89
86
|
ExecutionStatus,
|
|
90
87
|
ExperimentSource,
|
|
@@ -133,12 +130,24 @@ import {
|
|
|
133
130
|
Workforce,
|
|
134
131
|
Workteam,
|
|
135
132
|
} from "./models_2";
|
|
133
|
+
export interface EndpointConfigSummary {
|
|
134
|
+
EndpointConfigName: string | undefined;
|
|
135
|
+
EndpointConfigArn: string | undefined;
|
|
136
|
+
CreationTime: Date | undefined;
|
|
137
|
+
}
|
|
138
|
+
export declare const EndpointSortKey: {
|
|
139
|
+
readonly CreationTime: "CreationTime";
|
|
140
|
+
readonly Name: "Name";
|
|
141
|
+
readonly Status: "Status";
|
|
142
|
+
};
|
|
143
|
+
export type EndpointSortKey =
|
|
144
|
+
(typeof EndpointSortKey)[keyof typeof EndpointSortKey];
|
|
136
145
|
export interface EndpointSummary {
|
|
137
146
|
EndpointName: string | undefined;
|
|
138
147
|
EndpointArn: string | undefined;
|
|
139
148
|
CreationTime: Date | undefined;
|
|
140
149
|
LastModifiedTime: Date | undefined;
|
|
141
|
-
EndpointStatus: EndpointStatus |
|
|
150
|
+
EndpointStatus: EndpointStatus | undefined;
|
|
142
151
|
}
|
|
143
152
|
export interface Experiment {
|
|
144
153
|
ExperimentName?: string;
|
|
@@ -174,7 +183,7 @@ export interface FeatureGroup {
|
|
|
174
183
|
OnlineStoreConfig?: OnlineStoreConfig;
|
|
175
184
|
OfflineStoreConfig?: OfflineStoreConfig;
|
|
176
185
|
RoleArn?: string;
|
|
177
|
-
FeatureGroupStatus?: FeatureGroupStatus
|
|
186
|
+
FeatureGroupStatus?: FeatureGroupStatus;
|
|
178
187
|
OfflineStoreStatus?: OfflineStoreStatus;
|
|
179
188
|
LastUpdateStatus?: LastUpdateStatus;
|
|
180
189
|
FailureReason?: string;
|
|
@@ -199,14 +208,14 @@ export interface FeatureGroupSummary {
|
|
|
199
208
|
FeatureGroupName: string | undefined;
|
|
200
209
|
FeatureGroupArn: string | undefined;
|
|
201
210
|
CreationTime: Date | undefined;
|
|
202
|
-
FeatureGroupStatus?: FeatureGroupStatus
|
|
211
|
+
FeatureGroupStatus?: FeatureGroupStatus;
|
|
203
212
|
OfflineStoreStatus?: OfflineStoreStatus;
|
|
204
213
|
}
|
|
205
214
|
export interface FeatureMetadata {
|
|
206
215
|
FeatureGroupArn?: string;
|
|
207
216
|
FeatureGroupName?: string;
|
|
208
217
|
FeatureName?: string;
|
|
209
|
-
FeatureType?: FeatureType
|
|
218
|
+
FeatureType?: FeatureType;
|
|
210
219
|
CreationTime?: Date;
|
|
211
220
|
LastModifiedTime?: Date;
|
|
212
221
|
Description?: string;
|
|
@@ -227,13 +236,13 @@ export declare const Operator: {
|
|
|
227
236
|
export type Operator = (typeof Operator)[keyof typeof Operator];
|
|
228
237
|
export interface Filter {
|
|
229
238
|
Name: string | undefined;
|
|
230
|
-
Operator?: Operator
|
|
239
|
+
Operator?: Operator;
|
|
231
240
|
Value?: string;
|
|
232
241
|
}
|
|
233
242
|
export interface FlowDefinitionSummary {
|
|
234
243
|
FlowDefinitionName: string | undefined;
|
|
235
244
|
FlowDefinitionArn: string | undefined;
|
|
236
|
-
FlowDefinitionStatus: FlowDefinitionStatus |
|
|
245
|
+
FlowDefinitionStatus: FlowDefinitionStatus | undefined;
|
|
237
246
|
CreationTime: Date | undefined;
|
|
238
247
|
FailureReason?: string;
|
|
239
248
|
}
|
|
@@ -271,7 +280,7 @@ export declare const SagemakerServicecatalogStatus: {
|
|
|
271
280
|
export type SagemakerServicecatalogStatus =
|
|
272
281
|
(typeof SagemakerServicecatalogStatus)[keyof typeof SagemakerServicecatalogStatus];
|
|
273
282
|
export interface GetSagemakerServicecatalogPortfolioStatusOutput {
|
|
274
|
-
Status?: SagemakerServicecatalogStatus
|
|
283
|
+
Status?: SagemakerServicecatalogStatus;
|
|
275
284
|
}
|
|
276
285
|
export interface ScalingPolicyObjective {
|
|
277
286
|
MinInvocationsPerMinute?: number;
|
|
@@ -322,7 +331,7 @@ export interface SuggestionQuery {
|
|
|
322
331
|
PropertyNameQuery?: PropertyNameQuery;
|
|
323
332
|
}
|
|
324
333
|
export interface GetSearchSuggestionsRequest {
|
|
325
|
-
Resource: ResourceType |
|
|
334
|
+
Resource: ResourceType | undefined;
|
|
326
335
|
SuggestionQuery?: SuggestionQuery;
|
|
327
336
|
}
|
|
328
337
|
export interface PropertyNameSuggestion {
|
|
@@ -338,12 +347,12 @@ export interface HubContentInfo {
|
|
|
338
347
|
HubContentName: string | undefined;
|
|
339
348
|
HubContentArn: string | undefined;
|
|
340
349
|
HubContentVersion: string | undefined;
|
|
341
|
-
HubContentType: HubContentType |
|
|
350
|
+
HubContentType: HubContentType | undefined;
|
|
342
351
|
DocumentSchemaVersion: string | undefined;
|
|
343
352
|
HubContentDisplayName?: string;
|
|
344
353
|
HubContentDescription?: string;
|
|
345
354
|
HubContentSearchKeywords?: string[];
|
|
346
|
-
HubContentStatus: HubContentStatus |
|
|
355
|
+
HubContentStatus: HubContentStatus | undefined;
|
|
347
356
|
CreationTime: Date | undefined;
|
|
348
357
|
}
|
|
349
358
|
export declare const HubContentSortBy: {
|
|
@@ -359,7 +368,7 @@ export interface HubInfo {
|
|
|
359
368
|
HubDisplayName?: string;
|
|
360
369
|
HubDescription?: string;
|
|
361
370
|
HubSearchKeywords?: string[];
|
|
362
|
-
HubStatus: HubStatus |
|
|
371
|
+
HubStatus: HubStatus | undefined;
|
|
363
372
|
CreationTime: Date | undefined;
|
|
364
373
|
LastModifiedTime: Date | undefined;
|
|
365
374
|
}
|
|
@@ -381,7 +390,7 @@ export interface HyperParameterTuningJobSearchEntity {
|
|
|
381
390
|
HyperParameterTuningJobConfig?: HyperParameterTuningJobConfig;
|
|
382
391
|
TrainingJobDefinition?: HyperParameterTrainingJobDefinition;
|
|
383
392
|
TrainingJobDefinitions?: HyperParameterTrainingJobDefinition[];
|
|
384
|
-
HyperParameterTuningJobStatus?: HyperParameterTuningJobStatus
|
|
393
|
+
HyperParameterTuningJobStatus?: HyperParameterTuningJobStatus;
|
|
385
394
|
CreationTime?: Date;
|
|
386
395
|
HyperParameterTuningEndTime?: Date;
|
|
387
396
|
LastModifiedTime?: Date;
|
|
@@ -405,11 +414,8 @@ export type HyperParameterTuningJobSortByOptions =
|
|
|
405
414
|
export interface HyperParameterTuningJobSummary {
|
|
406
415
|
HyperParameterTuningJobName: string | undefined;
|
|
407
416
|
HyperParameterTuningJobArn: string | undefined;
|
|
408
|
-
HyperParameterTuningJobStatus:
|
|
409
|
-
|
|
410
|
-
| string
|
|
411
|
-
| undefined;
|
|
412
|
-
Strategy: HyperParameterTuningJobStrategyType | string | undefined;
|
|
417
|
+
HyperParameterTuningJobStatus: HyperParameterTuningJobStatus | undefined;
|
|
418
|
+
Strategy: HyperParameterTuningJobStrategyType | undefined;
|
|
413
419
|
CreationTime: Date | undefined;
|
|
414
420
|
HyperParameterTuningEndTime?: Date;
|
|
415
421
|
LastModifiedTime?: Date;
|
|
@@ -424,7 +430,7 @@ export interface Image {
|
|
|
424
430
|
FailureReason?: string;
|
|
425
431
|
ImageArn: string | undefined;
|
|
426
432
|
ImageName: string | undefined;
|
|
427
|
-
ImageStatus: ImageStatus |
|
|
433
|
+
ImageStatus: ImageStatus | undefined;
|
|
428
434
|
LastModifiedTime: Date | undefined;
|
|
429
435
|
}
|
|
430
436
|
export declare const ImageSortBy: {
|
|
@@ -444,7 +450,7 @@ export interface ImageVersion {
|
|
|
444
450
|
FailureReason?: string;
|
|
445
451
|
ImageArn: string | undefined;
|
|
446
452
|
ImageVersionArn: string | undefined;
|
|
447
|
-
ImageVersionStatus: ImageVersionStatus |
|
|
453
|
+
ImageVersionStatus: ImageVersionStatus | undefined;
|
|
448
454
|
LastModifiedTime: Date | undefined;
|
|
449
455
|
Version: number | undefined;
|
|
450
456
|
}
|
|
@@ -464,7 +470,7 @@ export type ImageVersionSortOrder =
|
|
|
464
470
|
export interface ImportHubContentRequest {
|
|
465
471
|
HubContentName: string | undefined;
|
|
466
472
|
HubContentVersion?: string;
|
|
467
|
-
HubContentType: HubContentType |
|
|
473
|
+
HubContentType: HubContentType | undefined;
|
|
468
474
|
DocumentSchemaVersion: string | undefined;
|
|
469
475
|
HubName: string | undefined;
|
|
470
476
|
HubContentDisplayName?: string;
|
|
@@ -480,9 +486,9 @@ export interface ImportHubContentResponse {
|
|
|
480
486
|
}
|
|
481
487
|
export interface InferenceExperimentSummary {
|
|
482
488
|
Name: string | undefined;
|
|
483
|
-
Type: InferenceExperimentType |
|
|
489
|
+
Type: InferenceExperimentType | undefined;
|
|
484
490
|
Schedule?: InferenceExperimentSchedule;
|
|
485
|
-
Status: InferenceExperimentStatus |
|
|
491
|
+
Status: InferenceExperimentStatus | undefined;
|
|
486
492
|
StatusReason?: string;
|
|
487
493
|
Description?: string;
|
|
488
494
|
CreationTime: Date | undefined;
|
|
@@ -499,9 +505,9 @@ export type InferenceExperimentStopDesiredState =
|
|
|
499
505
|
export interface InferenceRecommendationsJob {
|
|
500
506
|
JobName: string | undefined;
|
|
501
507
|
JobDescription: string | undefined;
|
|
502
|
-
JobType: RecommendationJobType |
|
|
508
|
+
JobType: RecommendationJobType | undefined;
|
|
503
509
|
JobArn: string | undefined;
|
|
504
|
-
Status: RecommendationJobStatus |
|
|
510
|
+
Status: RecommendationJobStatus | undefined;
|
|
505
511
|
CreationTime: Date | undefined;
|
|
506
512
|
CompletionTime?: Date;
|
|
507
513
|
RoleArn: string | undefined;
|
|
@@ -526,9 +532,9 @@ export declare const RecommendationStepType: {
|
|
|
526
532
|
export type RecommendationStepType =
|
|
527
533
|
(typeof RecommendationStepType)[keyof typeof RecommendationStepType];
|
|
528
534
|
export interface InferenceRecommendationsJobStep {
|
|
529
|
-
StepType: RecommendationStepType |
|
|
535
|
+
StepType: RecommendationStepType | undefined;
|
|
530
536
|
JobName: string | undefined;
|
|
531
|
-
Status: RecommendationJobStatus |
|
|
537
|
+
Status: RecommendationJobStatus | undefined;
|
|
532
538
|
InferenceBenchmark?: RecommendationJobInferenceBenchmark;
|
|
533
539
|
}
|
|
534
540
|
export interface LabelCountersForWorkteam {
|
|
@@ -549,7 +555,7 @@ export interface LabelingJobSummary {
|
|
|
549
555
|
LabelingJobArn: string | undefined;
|
|
550
556
|
CreationTime: Date | undefined;
|
|
551
557
|
LastModifiedTime: Date | undefined;
|
|
552
|
-
LabelingJobStatus: LabelingJobStatus |
|
|
558
|
+
LabelingJobStatus: LabelingJobStatus | undefined;
|
|
553
559
|
LabelCounters: LabelCounters | undefined;
|
|
554
560
|
WorkteamArn: string | undefined;
|
|
555
561
|
PreHumanTaskLambdaArn: string | undefined;
|
|
@@ -591,8 +597,8 @@ export interface ListActionsRequest {
|
|
|
591
597
|
ActionType?: string;
|
|
592
598
|
CreatedAfter?: Date;
|
|
593
599
|
CreatedBefore?: Date;
|
|
594
|
-
SortBy?: SortActionsBy
|
|
595
|
-
SortOrder?: SortOrder
|
|
600
|
+
SortBy?: SortActionsBy;
|
|
601
|
+
SortOrder?: SortOrder;
|
|
596
602
|
NextToken?: string;
|
|
597
603
|
MaxResults?: number;
|
|
598
604
|
}
|
|
@@ -606,8 +612,8 @@ export interface ListAlgorithmsInput {
|
|
|
606
612
|
MaxResults?: number;
|
|
607
613
|
NameContains?: string;
|
|
608
614
|
NextToken?: string;
|
|
609
|
-
SortBy?: AlgorithmSortBy
|
|
610
|
-
SortOrder?: SortOrder
|
|
615
|
+
SortBy?: AlgorithmSortBy;
|
|
616
|
+
SortOrder?: SortOrder;
|
|
611
617
|
}
|
|
612
618
|
export interface ListAlgorithmsOutput {
|
|
613
619
|
AlgorithmSummaryList: AlgorithmSummary[] | undefined;
|
|
@@ -632,8 +638,8 @@ export interface ListAppImageConfigsRequest {
|
|
|
632
638
|
CreationTimeAfter?: Date;
|
|
633
639
|
ModifiedTimeBefore?: Date;
|
|
634
640
|
ModifiedTimeAfter?: Date;
|
|
635
|
-
SortBy?: AppImageConfigSortKey
|
|
636
|
-
SortOrder?: SortOrder
|
|
641
|
+
SortBy?: AppImageConfigSortKey;
|
|
642
|
+
SortOrder?: SortOrder;
|
|
637
643
|
}
|
|
638
644
|
export interface ListAppImageConfigsResponse {
|
|
639
645
|
NextToken?: string;
|
|
@@ -642,8 +648,8 @@ export interface ListAppImageConfigsResponse {
|
|
|
642
648
|
export interface ListAppsRequest {
|
|
643
649
|
NextToken?: string;
|
|
644
650
|
MaxResults?: number;
|
|
645
|
-
SortOrder?: SortOrder
|
|
646
|
-
SortBy?: AppSortKey
|
|
651
|
+
SortOrder?: SortOrder;
|
|
652
|
+
SortBy?: AppSortKey;
|
|
647
653
|
DomainIdEquals?: string;
|
|
648
654
|
UserProfileNameEquals?: string;
|
|
649
655
|
SpaceNameEquals?: string;
|
|
@@ -662,8 +668,8 @@ export interface ListArtifactsRequest {
|
|
|
662
668
|
ArtifactType?: string;
|
|
663
669
|
CreatedAfter?: Date;
|
|
664
670
|
CreatedBefore?: Date;
|
|
665
|
-
SortBy?: SortArtifactsBy
|
|
666
|
-
SortOrder?: SortOrder
|
|
671
|
+
SortBy?: SortArtifactsBy;
|
|
672
|
+
SortOrder?: SortOrder;
|
|
667
673
|
NextToken?: string;
|
|
668
674
|
MaxResults?: number;
|
|
669
675
|
}
|
|
@@ -685,11 +691,11 @@ export interface ListAssociationsRequest {
|
|
|
685
691
|
DestinationArn?: string;
|
|
686
692
|
SourceType?: string;
|
|
687
693
|
DestinationType?: string;
|
|
688
|
-
AssociationType?: AssociationEdgeType
|
|
694
|
+
AssociationType?: AssociationEdgeType;
|
|
689
695
|
CreatedAfter?: Date;
|
|
690
696
|
CreatedBefore?: Date;
|
|
691
|
-
SortBy?: SortAssociationsBy
|
|
692
|
-
SortOrder?: SortOrder
|
|
697
|
+
SortBy?: SortAssociationsBy;
|
|
698
|
+
SortOrder?: SortOrder;
|
|
693
699
|
NextToken?: string;
|
|
694
700
|
MaxResults?: number;
|
|
695
701
|
}
|
|
@@ -703,9 +709,9 @@ export interface ListAutoMLJobsRequest {
|
|
|
703
709
|
LastModifiedTimeAfter?: Date;
|
|
704
710
|
LastModifiedTimeBefore?: Date;
|
|
705
711
|
NameContains?: string;
|
|
706
|
-
StatusEquals?: AutoMLJobStatus
|
|
707
|
-
SortOrder?: AutoMLSortOrder
|
|
708
|
-
SortBy?: AutoMLSortBy
|
|
712
|
+
StatusEquals?: AutoMLJobStatus;
|
|
713
|
+
SortOrder?: AutoMLSortOrder;
|
|
714
|
+
SortBy?: AutoMLSortBy;
|
|
709
715
|
MaxResults?: number;
|
|
710
716
|
NextToken?: string;
|
|
711
717
|
}
|
|
@@ -715,10 +721,10 @@ export interface ListAutoMLJobsResponse {
|
|
|
715
721
|
}
|
|
716
722
|
export interface ListCandidatesForAutoMLJobRequest {
|
|
717
723
|
AutoMLJobName: string | undefined;
|
|
718
|
-
StatusEquals?: CandidateStatus
|
|
724
|
+
StatusEquals?: CandidateStatus;
|
|
719
725
|
CandidateNameEquals?: string;
|
|
720
|
-
SortOrder?: AutoMLSortOrder
|
|
721
|
-
SortBy?: CandidateSortBy
|
|
726
|
+
SortOrder?: AutoMLSortOrder;
|
|
727
|
+
SortBy?: CandidateSortBy;
|
|
722
728
|
MaxResults?: number;
|
|
723
729
|
NextToken?: string;
|
|
724
730
|
}
|
|
@@ -734,8 +740,8 @@ export interface ListCodeRepositoriesInput {
|
|
|
734
740
|
MaxResults?: number;
|
|
735
741
|
NameContains?: string;
|
|
736
742
|
NextToken?: string;
|
|
737
|
-
SortBy?: CodeRepositorySortBy
|
|
738
|
-
SortOrder?: CodeRepositorySortOrder
|
|
743
|
+
SortBy?: CodeRepositorySortBy;
|
|
744
|
+
SortOrder?: CodeRepositorySortOrder;
|
|
739
745
|
}
|
|
740
746
|
export interface ListCodeRepositoriesOutput {
|
|
741
747
|
CodeRepositorySummaryList: CodeRepositorySummary[] | undefined;
|
|
@@ -756,9 +762,9 @@ export interface ListCompilationJobsRequest {
|
|
|
756
762
|
LastModifiedTimeAfter?: Date;
|
|
757
763
|
LastModifiedTimeBefore?: Date;
|
|
758
764
|
NameContains?: string;
|
|
759
|
-
StatusEquals?: CompilationJobStatus
|
|
760
|
-
SortBy?: ListCompilationJobsSortBy
|
|
761
|
-
SortOrder?: SortOrder
|
|
765
|
+
StatusEquals?: CompilationJobStatus;
|
|
766
|
+
SortBy?: ListCompilationJobsSortBy;
|
|
767
|
+
SortOrder?: SortOrder;
|
|
762
768
|
}
|
|
763
769
|
export interface ListCompilationJobsResponse {
|
|
764
770
|
CompilationJobSummaries: CompilationJobSummary[] | undefined;
|
|
@@ -775,8 +781,8 @@ export interface ListContextsRequest {
|
|
|
775
781
|
ContextType?: string;
|
|
776
782
|
CreatedAfter?: Date;
|
|
777
783
|
CreatedBefore?: Date;
|
|
778
|
-
SortBy?: SortContextsBy
|
|
779
|
-
SortOrder?: SortOrder
|
|
784
|
+
SortBy?: SortContextsBy;
|
|
785
|
+
SortOrder?: SortOrder;
|
|
780
786
|
NextToken?: string;
|
|
781
787
|
MaxResults?: number;
|
|
782
788
|
}
|
|
@@ -792,8 +798,8 @@ export type MonitoringJobDefinitionSortKey =
|
|
|
792
798
|
(typeof MonitoringJobDefinitionSortKey)[keyof typeof MonitoringJobDefinitionSortKey];
|
|
793
799
|
export interface ListDataQualityJobDefinitionsRequest {
|
|
794
800
|
EndpointName?: string;
|
|
795
|
-
SortBy?: MonitoringJobDefinitionSortKey
|
|
796
|
-
SortOrder?: SortOrder
|
|
801
|
+
SortBy?: MonitoringJobDefinitionSortKey;
|
|
802
|
+
SortOrder?: SortOrder;
|
|
797
803
|
NextToken?: string;
|
|
798
804
|
MaxResults?: number;
|
|
799
805
|
NameContains?: string;
|
|
@@ -825,8 +831,8 @@ export interface ListDeviceFleetsRequest {
|
|
|
825
831
|
LastModifiedTimeAfter?: Date;
|
|
826
832
|
LastModifiedTimeBefore?: Date;
|
|
827
833
|
NameContains?: string;
|
|
828
|
-
SortBy?: ListDeviceFleetsSortBy
|
|
829
|
-
SortOrder?: SortOrder
|
|
834
|
+
SortBy?: ListDeviceFleetsSortBy;
|
|
835
|
+
SortOrder?: SortOrder;
|
|
830
836
|
}
|
|
831
837
|
export interface ListDeviceFleetsResponse {
|
|
832
838
|
DeviceFleetSummaries: DeviceFleetSummary[] | undefined;
|
|
@@ -868,8 +874,8 @@ export interface ListEdgeDeploymentPlansRequest {
|
|
|
868
874
|
LastModifiedTimeBefore?: Date;
|
|
869
875
|
NameContains?: string;
|
|
870
876
|
DeviceFleetNameContains?: string;
|
|
871
|
-
SortBy?: ListEdgeDeploymentPlansSortBy
|
|
872
|
-
SortOrder?: SortOrder
|
|
877
|
+
SortBy?: ListEdgeDeploymentPlansSortBy;
|
|
878
|
+
SortOrder?: SortOrder;
|
|
873
879
|
}
|
|
874
880
|
export interface ListEdgeDeploymentPlansResponse {
|
|
875
881
|
EdgeDeploymentPlanSummaries: EdgeDeploymentPlanSummary[] | undefined;
|
|
@@ -893,9 +899,9 @@ export interface ListEdgePackagingJobsRequest {
|
|
|
893
899
|
LastModifiedTimeBefore?: Date;
|
|
894
900
|
NameContains?: string;
|
|
895
901
|
ModelNameContains?: string;
|
|
896
|
-
StatusEquals?: EdgePackagingJobStatus
|
|
897
|
-
SortBy?: ListEdgePackagingJobsSortBy
|
|
898
|
-
SortOrder?: SortOrder
|
|
902
|
+
StatusEquals?: EdgePackagingJobStatus;
|
|
903
|
+
SortBy?: ListEdgePackagingJobsSortBy;
|
|
904
|
+
SortOrder?: SortOrder;
|
|
899
905
|
}
|
|
900
906
|
export interface ListEdgePackagingJobsResponse {
|
|
901
907
|
EdgePackagingJobSummaries: EdgePackagingJobSummary[] | undefined;
|
|
@@ -907,8 +913,8 @@ export declare const OrderKey: {
|
|
|
907
913
|
};
|
|
908
914
|
export type OrderKey = (typeof OrderKey)[keyof typeof OrderKey];
|
|
909
915
|
export interface ListEndpointConfigsInput {
|
|
910
|
-
SortBy?: EndpointConfigSortKey
|
|
911
|
-
SortOrder?: OrderKey
|
|
916
|
+
SortBy?: EndpointConfigSortKey;
|
|
917
|
+
SortOrder?: OrderKey;
|
|
912
918
|
NextToken?: string;
|
|
913
919
|
MaxResults?: number;
|
|
914
920
|
NameContains?: string;
|
|
@@ -920,8 +926,8 @@ export interface ListEndpointConfigsOutput {
|
|
|
920
926
|
NextToken?: string;
|
|
921
927
|
}
|
|
922
928
|
export interface ListEndpointsInput {
|
|
923
|
-
SortBy?: EndpointSortKey
|
|
924
|
-
SortOrder?: OrderKey
|
|
929
|
+
SortBy?: EndpointSortKey;
|
|
930
|
+
SortOrder?: OrderKey;
|
|
925
931
|
NextToken?: string;
|
|
926
932
|
MaxResults?: number;
|
|
927
933
|
NameContains?: string;
|
|
@@ -929,7 +935,7 @@ export interface ListEndpointsInput {
|
|
|
929
935
|
CreationTimeAfter?: Date;
|
|
930
936
|
LastModifiedTimeBefore?: Date;
|
|
931
937
|
LastModifiedTimeAfter?: Date;
|
|
932
|
-
StatusEquals?: EndpointStatus
|
|
938
|
+
StatusEquals?: EndpointStatus;
|
|
933
939
|
}
|
|
934
940
|
export interface ListEndpointsOutput {
|
|
935
941
|
Endpoints: EndpointSummary[] | undefined;
|
|
@@ -944,8 +950,8 @@ export type SortExperimentsBy =
|
|
|
944
950
|
export interface ListExperimentsRequest {
|
|
945
951
|
CreatedAfter?: Date;
|
|
946
952
|
CreatedBefore?: Date;
|
|
947
|
-
SortBy?: SortExperimentsBy
|
|
948
|
-
SortOrder?: SortOrder
|
|
953
|
+
SortBy?: SortExperimentsBy;
|
|
954
|
+
SortOrder?: SortOrder;
|
|
949
955
|
NextToken?: string;
|
|
950
956
|
MaxResults?: number;
|
|
951
957
|
}
|
|
@@ -955,12 +961,12 @@ export interface ListExperimentsResponse {
|
|
|
955
961
|
}
|
|
956
962
|
export interface ListFeatureGroupsRequest {
|
|
957
963
|
NameContains?: string;
|
|
958
|
-
FeatureGroupStatusEquals?: FeatureGroupStatus
|
|
959
|
-
OfflineStoreStatusEquals?: OfflineStoreStatusValue
|
|
964
|
+
FeatureGroupStatusEquals?: FeatureGroupStatus;
|
|
965
|
+
OfflineStoreStatusEquals?: OfflineStoreStatusValue;
|
|
960
966
|
CreationTimeAfter?: Date;
|
|
961
967
|
CreationTimeBefore?: Date;
|
|
962
|
-
SortOrder?: FeatureGroupSortOrder
|
|
963
|
-
SortBy?: FeatureGroupSortBy
|
|
968
|
+
SortOrder?: FeatureGroupSortOrder;
|
|
969
|
+
SortBy?: FeatureGroupSortBy;
|
|
964
970
|
MaxResults?: number;
|
|
965
971
|
NextToken?: string;
|
|
966
972
|
}
|
|
@@ -971,7 +977,7 @@ export interface ListFeatureGroupsResponse {
|
|
|
971
977
|
export interface ListFlowDefinitionsRequest {
|
|
972
978
|
CreationTimeAfter?: Date;
|
|
973
979
|
CreationTimeBefore?: Date;
|
|
974
|
-
SortOrder?: SortOrder
|
|
980
|
+
SortOrder?: SortOrder;
|
|
975
981
|
NextToken?: string;
|
|
976
982
|
MaxResults?: number;
|
|
977
983
|
}
|
|
@@ -981,13 +987,13 @@ export interface ListFlowDefinitionsResponse {
|
|
|
981
987
|
}
|
|
982
988
|
export interface ListHubContentsRequest {
|
|
983
989
|
HubName: string | undefined;
|
|
984
|
-
HubContentType: HubContentType |
|
|
990
|
+
HubContentType: HubContentType | undefined;
|
|
985
991
|
NameContains?: string;
|
|
986
992
|
MaxSchemaVersion?: string;
|
|
987
993
|
CreationTimeBefore?: Date;
|
|
988
994
|
CreationTimeAfter?: Date;
|
|
989
|
-
SortBy?: HubContentSortBy
|
|
990
|
-
SortOrder?: SortOrder
|
|
995
|
+
SortBy?: HubContentSortBy;
|
|
996
|
+
SortOrder?: SortOrder;
|
|
991
997
|
MaxResults?: number;
|
|
992
998
|
NextToken?: string;
|
|
993
999
|
}
|
|
@@ -997,14 +1003,14 @@ export interface ListHubContentsResponse {
|
|
|
997
1003
|
}
|
|
998
1004
|
export interface ListHubContentVersionsRequest {
|
|
999
1005
|
HubName: string | undefined;
|
|
1000
|
-
HubContentType: HubContentType |
|
|
1006
|
+
HubContentType: HubContentType | undefined;
|
|
1001
1007
|
HubContentName: string | undefined;
|
|
1002
1008
|
MinVersion?: string;
|
|
1003
1009
|
MaxSchemaVersion?: string;
|
|
1004
1010
|
CreationTimeBefore?: Date;
|
|
1005
1011
|
CreationTimeAfter?: Date;
|
|
1006
|
-
SortBy?: HubContentSortBy
|
|
1007
|
-
SortOrder?: SortOrder
|
|
1012
|
+
SortBy?: HubContentSortBy;
|
|
1013
|
+
SortOrder?: SortOrder;
|
|
1008
1014
|
MaxResults?: number;
|
|
1009
1015
|
NextToken?: string;
|
|
1010
1016
|
}
|
|
@@ -1018,8 +1024,8 @@ export interface ListHubsRequest {
|
|
|
1018
1024
|
CreationTimeAfter?: Date;
|
|
1019
1025
|
LastModifiedTimeBefore?: Date;
|
|
1020
1026
|
LastModifiedTimeAfter?: Date;
|
|
1021
|
-
SortBy?: HubSortBy
|
|
1022
|
-
SortOrder?: SortOrder
|
|
1027
|
+
SortBy?: HubSortBy;
|
|
1028
|
+
SortOrder?: SortOrder;
|
|
1023
1029
|
MaxResults?: number;
|
|
1024
1030
|
NextToken?: string;
|
|
1025
1031
|
}
|
|
@@ -1030,7 +1036,7 @@ export interface ListHubsResponse {
|
|
|
1030
1036
|
export interface ListHumanTaskUisRequest {
|
|
1031
1037
|
CreationTimeAfter?: Date;
|
|
1032
1038
|
CreationTimeBefore?: Date;
|
|
1033
|
-
SortOrder?: SortOrder
|
|
1039
|
+
SortOrder?: SortOrder;
|
|
1034
1040
|
NextToken?: string;
|
|
1035
1041
|
MaxResults?: number;
|
|
1036
1042
|
}
|
|
@@ -1041,14 +1047,14 @@ export interface ListHumanTaskUisResponse {
|
|
|
1041
1047
|
export interface ListHyperParameterTuningJobsRequest {
|
|
1042
1048
|
NextToken?: string;
|
|
1043
1049
|
MaxResults?: number;
|
|
1044
|
-
SortBy?: HyperParameterTuningJobSortByOptions
|
|
1045
|
-
SortOrder?: SortOrder
|
|
1050
|
+
SortBy?: HyperParameterTuningJobSortByOptions;
|
|
1051
|
+
SortOrder?: SortOrder;
|
|
1046
1052
|
NameContains?: string;
|
|
1047
1053
|
CreationTimeAfter?: Date;
|
|
1048
1054
|
CreationTimeBefore?: Date;
|
|
1049
1055
|
LastModifiedTimeAfter?: Date;
|
|
1050
1056
|
LastModifiedTimeBefore?: Date;
|
|
1051
|
-
StatusEquals?: HyperParameterTuningJobStatus
|
|
1057
|
+
StatusEquals?: HyperParameterTuningJobStatus;
|
|
1052
1058
|
}
|
|
1053
1059
|
export interface ListHyperParameterTuningJobsResponse {
|
|
1054
1060
|
HyperParameterTuningJobSummaries:
|
|
@@ -1064,8 +1070,8 @@ export interface ListImagesRequest {
|
|
|
1064
1070
|
MaxResults?: number;
|
|
1065
1071
|
NameContains?: string;
|
|
1066
1072
|
NextToken?: string;
|
|
1067
|
-
SortBy?: ImageSortBy
|
|
1068
|
-
SortOrder?: ImageSortOrder
|
|
1073
|
+
SortBy?: ImageSortBy;
|
|
1074
|
+
SortOrder?: ImageSortOrder;
|
|
1069
1075
|
}
|
|
1070
1076
|
export interface ListImagesResponse {
|
|
1071
1077
|
Images?: Image[];
|
|
@@ -1079,8 +1085,8 @@ export interface ListImageVersionsRequest {
|
|
|
1079
1085
|
LastModifiedTimeBefore?: Date;
|
|
1080
1086
|
MaxResults?: number;
|
|
1081
1087
|
NextToken?: string;
|
|
1082
|
-
SortBy?: ImageVersionSortBy
|
|
1083
|
-
SortOrder?: ImageVersionSortOrder
|
|
1088
|
+
SortBy?: ImageVersionSortBy;
|
|
1089
|
+
SortOrder?: ImageVersionSortOrder;
|
|
1084
1090
|
}
|
|
1085
1091
|
export interface ListImageVersionsResponse {
|
|
1086
1092
|
ImageVersions?: ImageVersion[];
|
|
@@ -1095,14 +1101,14 @@ export type SortInferenceExperimentsBy =
|
|
|
1095
1101
|
(typeof SortInferenceExperimentsBy)[keyof typeof SortInferenceExperimentsBy];
|
|
1096
1102
|
export interface ListInferenceExperimentsRequest {
|
|
1097
1103
|
NameContains?: string;
|
|
1098
|
-
Type?: InferenceExperimentType
|
|
1099
|
-
StatusEquals?: InferenceExperimentStatus
|
|
1104
|
+
Type?: InferenceExperimentType;
|
|
1105
|
+
StatusEquals?: InferenceExperimentStatus;
|
|
1100
1106
|
CreationTimeAfter?: Date;
|
|
1101
1107
|
CreationTimeBefore?: Date;
|
|
1102
1108
|
LastModifiedTimeAfter?: Date;
|
|
1103
1109
|
LastModifiedTimeBefore?: Date;
|
|
1104
|
-
SortBy?: SortInferenceExperimentsBy
|
|
1105
|
-
SortOrder?: SortOrder
|
|
1110
|
+
SortBy?: SortInferenceExperimentsBy;
|
|
1111
|
+
SortOrder?: SortOrder;
|
|
1106
1112
|
NextToken?: string;
|
|
1107
1113
|
MaxResults?: number;
|
|
1108
1114
|
}
|
|
@@ -1123,9 +1129,9 @@ export interface ListInferenceRecommendationsJobsRequest {
|
|
|
1123
1129
|
LastModifiedTimeAfter?: Date;
|
|
1124
1130
|
LastModifiedTimeBefore?: Date;
|
|
1125
1131
|
NameContains?: string;
|
|
1126
|
-
StatusEquals?: RecommendationJobStatus
|
|
1127
|
-
SortBy?: ListInferenceRecommendationsJobsSortBy
|
|
1128
|
-
SortOrder?: SortOrder
|
|
1132
|
+
StatusEquals?: RecommendationJobStatus;
|
|
1133
|
+
SortBy?: ListInferenceRecommendationsJobsSortBy;
|
|
1134
|
+
SortOrder?: SortOrder;
|
|
1129
1135
|
NextToken?: string;
|
|
1130
1136
|
MaxResults?: number;
|
|
1131
1137
|
ModelNameEquals?: string;
|
|
@@ -1137,8 +1143,8 @@ export interface ListInferenceRecommendationsJobsResponse {
|
|
|
1137
1143
|
}
|
|
1138
1144
|
export interface ListInferenceRecommendationsJobStepsRequest {
|
|
1139
1145
|
JobName: string | undefined;
|
|
1140
|
-
Status?: RecommendationJobStatus
|
|
1141
|
-
StepType?: RecommendationStepType
|
|
1146
|
+
Status?: RecommendationJobStatus;
|
|
1147
|
+
StepType?: RecommendationStepType;
|
|
1142
1148
|
MaxResults?: number;
|
|
1143
1149
|
NextToken?: string;
|
|
1144
1150
|
}
|
|
@@ -1160,9 +1166,9 @@ export interface ListLabelingJobsRequest {
|
|
|
1160
1166
|
MaxResults?: number;
|
|
1161
1167
|
NextToken?: string;
|
|
1162
1168
|
NameContains?: string;
|
|
1163
|
-
SortBy?: SortBy
|
|
1164
|
-
SortOrder?: SortOrder
|
|
1165
|
-
StatusEquals?: LabelingJobStatus
|
|
1169
|
+
SortBy?: SortBy;
|
|
1170
|
+
SortOrder?: SortOrder;
|
|
1171
|
+
StatusEquals?: LabelingJobStatus;
|
|
1166
1172
|
}
|
|
1167
1173
|
export interface ListLabelingJobsResponse {
|
|
1168
1174
|
LabelingJobSummaryList?: LabelingJobSummary[];
|
|
@@ -1180,8 +1186,8 @@ export interface ListLabelingJobsForWorkteamRequest {
|
|
|
1180
1186
|
CreationTimeAfter?: Date;
|
|
1181
1187
|
CreationTimeBefore?: Date;
|
|
1182
1188
|
JobReferenceCodeContains?: string;
|
|
1183
|
-
SortBy?: ListLabelingJobsForWorkteamSortByOptions
|
|
1184
|
-
SortOrder?: SortOrder
|
|
1189
|
+
SortBy?: ListLabelingJobsForWorkteamSortByOptions;
|
|
1190
|
+
SortOrder?: SortOrder;
|
|
1185
1191
|
}
|
|
1186
1192
|
export interface ListLabelingJobsForWorkteamResponse {
|
|
1187
1193
|
LabelingJobSummaryList: LabelingJobForWorkteamSummary[] | undefined;
|
|
@@ -1196,8 +1202,8 @@ export type SortLineageGroupsBy =
|
|
|
1196
1202
|
export interface ListLineageGroupsRequest {
|
|
1197
1203
|
CreatedAfter?: Date;
|
|
1198
1204
|
CreatedBefore?: Date;
|
|
1199
|
-
SortBy?: SortLineageGroupsBy
|
|
1200
|
-
SortOrder?: SortOrder
|
|
1205
|
+
SortBy?: SortLineageGroupsBy;
|
|
1206
|
+
SortOrder?: SortOrder;
|
|
1201
1207
|
NextToken?: string;
|
|
1202
1208
|
MaxResults?: number;
|
|
1203
1209
|
}
|
|
@@ -1207,8 +1213,8 @@ export interface ListLineageGroupsResponse {
|
|
|
1207
1213
|
}
|
|
1208
1214
|
export interface ListModelBiasJobDefinitionsRequest {
|
|
1209
1215
|
EndpointName?: string;
|
|
1210
|
-
SortBy?: MonitoringJobDefinitionSortKey
|
|
1211
|
-
SortOrder?: SortOrder
|
|
1216
|
+
SortBy?: MonitoringJobDefinitionSortKey;
|
|
1217
|
+
SortOrder?: SortOrder;
|
|
1212
1218
|
NextToken?: string;
|
|
1213
1219
|
MaxResults?: number;
|
|
1214
1220
|
NameContains?: string;
|
|
@@ -1238,16 +1244,16 @@ export interface ListModelCardExportJobsRequest {
|
|
|
1238
1244
|
CreationTimeAfter?: Date;
|
|
1239
1245
|
CreationTimeBefore?: Date;
|
|
1240
1246
|
ModelCardExportJobNameContains?: string;
|
|
1241
|
-
StatusEquals?: ModelCardExportJobStatus
|
|
1242
|
-
SortBy?: ModelCardExportJobSortBy
|
|
1243
|
-
SortOrder?: ModelCardExportJobSortOrder
|
|
1247
|
+
StatusEquals?: ModelCardExportJobStatus;
|
|
1248
|
+
SortBy?: ModelCardExportJobSortBy;
|
|
1249
|
+
SortOrder?: ModelCardExportJobSortOrder;
|
|
1244
1250
|
NextToken?: string;
|
|
1245
1251
|
MaxResults?: number;
|
|
1246
1252
|
}
|
|
1247
1253
|
export interface ModelCardExportJobSummary {
|
|
1248
1254
|
ModelCardExportJobName: string | undefined;
|
|
1249
1255
|
ModelCardExportJobArn: string | undefined;
|
|
1250
|
-
Status: ModelCardExportJobStatus |
|
|
1256
|
+
Status: ModelCardExportJobStatus | undefined;
|
|
1251
1257
|
ModelCardName: string | undefined;
|
|
1252
1258
|
ModelCardVersion: number | undefined;
|
|
1253
1259
|
CreatedAt: Date | undefined;
|
|
@@ -1274,15 +1280,15 @@ export interface ListModelCardsRequest {
|
|
|
1274
1280
|
CreationTimeBefore?: Date;
|
|
1275
1281
|
MaxResults?: number;
|
|
1276
1282
|
NameContains?: string;
|
|
1277
|
-
ModelCardStatus?: ModelCardStatus
|
|
1283
|
+
ModelCardStatus?: ModelCardStatus;
|
|
1278
1284
|
NextToken?: string;
|
|
1279
|
-
SortBy?: ModelCardSortBy
|
|
1280
|
-
SortOrder?: ModelCardSortOrder
|
|
1285
|
+
SortBy?: ModelCardSortBy;
|
|
1286
|
+
SortOrder?: ModelCardSortOrder;
|
|
1281
1287
|
}
|
|
1282
1288
|
export interface ModelCardSummary {
|
|
1283
1289
|
ModelCardName: string | undefined;
|
|
1284
1290
|
ModelCardArn: string | undefined;
|
|
1285
|
-
ModelCardStatus: ModelCardStatus |
|
|
1291
|
+
ModelCardStatus: ModelCardStatus | undefined;
|
|
1286
1292
|
CreationTime: Date | undefined;
|
|
1287
1293
|
LastModifiedTime?: Date;
|
|
1288
1294
|
}
|
|
@@ -1300,15 +1306,15 @@ export interface ListModelCardVersionsRequest {
|
|
|
1300
1306
|
CreationTimeBefore?: Date;
|
|
1301
1307
|
MaxResults?: number;
|
|
1302
1308
|
ModelCardName: string | undefined;
|
|
1303
|
-
ModelCardStatus?: ModelCardStatus
|
|
1309
|
+
ModelCardStatus?: ModelCardStatus;
|
|
1304
1310
|
NextToken?: string;
|
|
1305
|
-
SortBy?: ModelCardVersionSortBy
|
|
1306
|
-
SortOrder?: ModelCardSortOrder
|
|
1311
|
+
SortBy?: ModelCardVersionSortBy;
|
|
1312
|
+
SortOrder?: ModelCardSortOrder;
|
|
1307
1313
|
}
|
|
1308
1314
|
export interface ModelCardVersionSummary {
|
|
1309
1315
|
ModelCardName: string | undefined;
|
|
1310
1316
|
ModelCardArn: string | undefined;
|
|
1311
|
-
ModelCardStatus: ModelCardStatus |
|
|
1317
|
+
ModelCardStatus: ModelCardStatus | undefined;
|
|
1312
1318
|
ModelCardVersion: number | undefined;
|
|
1313
1319
|
CreationTime: Date | undefined;
|
|
1314
1320
|
LastModifiedTime?: Date;
|
|
@@ -1319,8 +1325,8 @@ export interface ListModelCardVersionsResponse {
|
|
|
1319
1325
|
}
|
|
1320
1326
|
export interface ListModelExplainabilityJobDefinitionsRequest {
|
|
1321
1327
|
EndpointName?: string;
|
|
1322
|
-
SortBy?: MonitoringJobDefinitionSortKey
|
|
1323
|
-
SortOrder?: SortOrder
|
|
1328
|
+
SortBy?: MonitoringJobDefinitionSortKey;
|
|
1329
|
+
SortOrder?: SortOrder;
|
|
1324
1330
|
NextToken?: string;
|
|
1325
1331
|
MaxResults?: number;
|
|
1326
1332
|
NameContains?: string;
|
|
@@ -1340,7 +1346,7 @@ export declare const ModelMetadataFilterType: {
|
|
|
1340
1346
|
export type ModelMetadataFilterType =
|
|
1341
1347
|
(typeof ModelMetadataFilterType)[keyof typeof ModelMetadataFilterType];
|
|
1342
1348
|
export interface ModelMetadataFilter {
|
|
1343
|
-
Name: ModelMetadataFilterType |
|
|
1349
|
+
Name: ModelMetadataFilterType | undefined;
|
|
1344
1350
|
Value: string | undefined;
|
|
1345
1351
|
}
|
|
1346
1352
|
export interface ModelMetadataSearchExpression {
|
|
@@ -1374,15 +1380,15 @@ export interface ListModelPackageGroupsInput {
|
|
|
1374
1380
|
MaxResults?: number;
|
|
1375
1381
|
NameContains?: string;
|
|
1376
1382
|
NextToken?: string;
|
|
1377
|
-
SortBy?: ModelPackageGroupSortBy
|
|
1378
|
-
SortOrder?: SortOrder
|
|
1383
|
+
SortBy?: ModelPackageGroupSortBy;
|
|
1384
|
+
SortOrder?: SortOrder;
|
|
1379
1385
|
}
|
|
1380
1386
|
export interface ModelPackageGroupSummary {
|
|
1381
1387
|
ModelPackageGroupName: string | undefined;
|
|
1382
1388
|
ModelPackageGroupArn: string | undefined;
|
|
1383
1389
|
ModelPackageGroupDescription?: string;
|
|
1384
1390
|
CreationTime: Date | undefined;
|
|
1385
|
-
ModelPackageGroupStatus: ModelPackageGroupStatus |
|
|
1391
|
+
ModelPackageGroupStatus: ModelPackageGroupStatus | undefined;
|
|
1386
1392
|
}
|
|
1387
1393
|
export interface ListModelPackageGroupsOutput {
|
|
1388
1394
|
ModelPackageGroupSummaryList: ModelPackageGroupSummary[] | undefined;
|
|
@@ -1406,12 +1412,12 @@ export interface ListModelPackagesInput {
|
|
|
1406
1412
|
CreationTimeBefore?: Date;
|
|
1407
1413
|
MaxResults?: number;
|
|
1408
1414
|
NameContains?: string;
|
|
1409
|
-
ModelApprovalStatus?: ModelApprovalStatus
|
|
1415
|
+
ModelApprovalStatus?: ModelApprovalStatus;
|
|
1410
1416
|
ModelPackageGroupName?: string;
|
|
1411
|
-
ModelPackageType?: ModelPackageType
|
|
1417
|
+
ModelPackageType?: ModelPackageType;
|
|
1412
1418
|
NextToken?: string;
|
|
1413
|
-
SortBy?: ModelPackageSortBy
|
|
1414
|
-
SortOrder?: SortOrder
|
|
1419
|
+
SortBy?: ModelPackageSortBy;
|
|
1420
|
+
SortOrder?: SortOrder;
|
|
1415
1421
|
}
|
|
1416
1422
|
export interface ModelPackageSummary {
|
|
1417
1423
|
ModelPackageName: string | undefined;
|
|
@@ -1420,8 +1426,8 @@ export interface ModelPackageSummary {
|
|
|
1420
1426
|
ModelPackageArn: string | undefined;
|
|
1421
1427
|
ModelPackageDescription?: string;
|
|
1422
1428
|
CreationTime: Date | undefined;
|
|
1423
|
-
ModelPackageStatus: ModelPackageStatus |
|
|
1424
|
-
ModelApprovalStatus?: ModelApprovalStatus
|
|
1429
|
+
ModelPackageStatus: ModelPackageStatus | undefined;
|
|
1430
|
+
ModelApprovalStatus?: ModelApprovalStatus;
|
|
1425
1431
|
}
|
|
1426
1432
|
export interface ListModelPackagesOutput {
|
|
1427
1433
|
ModelPackageSummaryList: ModelPackageSummary[] | undefined;
|
|
@@ -1429,8 +1435,8 @@ export interface ListModelPackagesOutput {
|
|
|
1429
1435
|
}
|
|
1430
1436
|
export interface ListModelQualityJobDefinitionsRequest {
|
|
1431
1437
|
EndpointName?: string;
|
|
1432
|
-
SortBy?: MonitoringJobDefinitionSortKey
|
|
1433
|
-
SortOrder?: SortOrder
|
|
1438
|
+
SortBy?: MonitoringJobDefinitionSortKey;
|
|
1439
|
+
SortOrder?: SortOrder;
|
|
1434
1440
|
NextToken?: string;
|
|
1435
1441
|
MaxResults?: number;
|
|
1436
1442
|
NameContains?: string;
|
|
@@ -1447,8 +1453,8 @@ export declare const ModelSortKey: {
|
|
|
1447
1453
|
};
|
|
1448
1454
|
export type ModelSortKey = (typeof ModelSortKey)[keyof typeof ModelSortKey];
|
|
1449
1455
|
export interface ListModelsInput {
|
|
1450
|
-
SortBy?: ModelSortKey
|
|
1451
|
-
SortOrder?: OrderKey
|
|
1456
|
+
SortBy?: ModelSortKey;
|
|
1457
|
+
SortOrder?: OrderKey;
|
|
1452
1458
|
NextToken?: string;
|
|
1453
1459
|
MaxResults?: number;
|
|
1454
1460
|
NameContains?: string;
|
|
@@ -1479,19 +1485,19 @@ export type MonitoringAlertStatus =
|
|
|
1479
1485
|
export interface ListMonitoringAlertHistoryRequest {
|
|
1480
1486
|
MonitoringScheduleName?: string;
|
|
1481
1487
|
MonitoringAlertName?: string;
|
|
1482
|
-
SortBy?: MonitoringAlertHistorySortKey
|
|
1483
|
-
SortOrder?: SortOrder
|
|
1488
|
+
SortBy?: MonitoringAlertHistorySortKey;
|
|
1489
|
+
SortOrder?: SortOrder;
|
|
1484
1490
|
NextToken?: string;
|
|
1485
1491
|
MaxResults?: number;
|
|
1486
1492
|
CreationTimeBefore?: Date;
|
|
1487
1493
|
CreationTimeAfter?: Date;
|
|
1488
|
-
StatusEquals?: MonitoringAlertStatus
|
|
1494
|
+
StatusEquals?: MonitoringAlertStatus;
|
|
1489
1495
|
}
|
|
1490
1496
|
export interface MonitoringAlertHistorySummary {
|
|
1491
1497
|
MonitoringScheduleName: string | undefined;
|
|
1492
1498
|
MonitoringAlertName: string | undefined;
|
|
1493
1499
|
CreationTime: Date | undefined;
|
|
1494
|
-
AlertStatus: MonitoringAlertStatus |
|
|
1500
|
+
AlertStatus: MonitoringAlertStatus | undefined;
|
|
1495
1501
|
}
|
|
1496
1502
|
export interface ListMonitoringAlertHistoryResponse {
|
|
1497
1503
|
MonitoringAlertHistory?: MonitoringAlertHistorySummary[];
|
|
@@ -1512,7 +1518,7 @@ export interface MonitoringAlertSummary {
|
|
|
1512
1518
|
MonitoringAlertName: string | undefined;
|
|
1513
1519
|
CreationTime: Date | undefined;
|
|
1514
1520
|
LastModifiedTime: Date | undefined;
|
|
1515
|
-
AlertStatus: MonitoringAlertStatus |
|
|
1521
|
+
AlertStatus: MonitoringAlertStatus | undefined;
|
|
1516
1522
|
DatapointsToAlert: number | undefined;
|
|
1517
1523
|
EvaluationPeriod: number | undefined;
|
|
1518
1524
|
Actions: MonitoringAlertActions | undefined;
|
|
@@ -1531,8 +1537,8 @@ export type MonitoringExecutionSortKey =
|
|
|
1531
1537
|
export interface ListMonitoringExecutionsRequest {
|
|
1532
1538
|
MonitoringScheduleName?: string;
|
|
1533
1539
|
EndpointName?: string;
|
|
1534
|
-
SortBy?: MonitoringExecutionSortKey
|
|
1535
|
-
SortOrder?: SortOrder
|
|
1540
|
+
SortBy?: MonitoringExecutionSortKey;
|
|
1541
|
+
SortOrder?: SortOrder;
|
|
1536
1542
|
NextToken?: string;
|
|
1537
1543
|
MaxResults?: number;
|
|
1538
1544
|
ScheduledTimeBefore?: Date;
|
|
@@ -1541,9 +1547,9 @@ export interface ListMonitoringExecutionsRequest {
|
|
|
1541
1547
|
CreationTimeAfter?: Date;
|
|
1542
1548
|
LastModifiedTimeBefore?: Date;
|
|
1543
1549
|
LastModifiedTimeAfter?: Date;
|
|
1544
|
-
StatusEquals?: ExecutionStatus
|
|
1550
|
+
StatusEquals?: ExecutionStatus;
|
|
1545
1551
|
MonitoringJobDefinitionName?: string;
|
|
1546
|
-
MonitoringTypeEquals?: MonitoringType
|
|
1552
|
+
MonitoringTypeEquals?: MonitoringType;
|
|
1547
1553
|
}
|
|
1548
1554
|
export interface ListMonitoringExecutionsResponse {
|
|
1549
1555
|
MonitoringExecutionSummaries: MonitoringExecutionSummary[] | undefined;
|
|
@@ -1558,8 +1564,8 @@ export type MonitoringScheduleSortKey =
|
|
|
1558
1564
|
(typeof MonitoringScheduleSortKey)[keyof typeof MonitoringScheduleSortKey];
|
|
1559
1565
|
export interface ListMonitoringSchedulesRequest {
|
|
1560
1566
|
EndpointName?: string;
|
|
1561
|
-
SortBy?: MonitoringScheduleSortKey
|
|
1562
|
-
SortOrder?: SortOrder
|
|
1567
|
+
SortBy?: MonitoringScheduleSortKey;
|
|
1568
|
+
SortOrder?: SortOrder;
|
|
1563
1569
|
NextToken?: string;
|
|
1564
1570
|
MaxResults?: number;
|
|
1565
1571
|
NameContains?: string;
|
|
@@ -1567,19 +1573,19 @@ export interface ListMonitoringSchedulesRequest {
|
|
|
1567
1573
|
CreationTimeAfter?: Date;
|
|
1568
1574
|
LastModifiedTimeBefore?: Date;
|
|
1569
1575
|
LastModifiedTimeAfter?: Date;
|
|
1570
|
-
StatusEquals?: ScheduleStatus
|
|
1576
|
+
StatusEquals?: ScheduleStatus;
|
|
1571
1577
|
MonitoringJobDefinitionName?: string;
|
|
1572
|
-
MonitoringTypeEquals?: MonitoringType
|
|
1578
|
+
MonitoringTypeEquals?: MonitoringType;
|
|
1573
1579
|
}
|
|
1574
1580
|
export interface MonitoringScheduleSummary {
|
|
1575
1581
|
MonitoringScheduleName: string | undefined;
|
|
1576
1582
|
MonitoringScheduleArn: string | undefined;
|
|
1577
1583
|
CreationTime: Date | undefined;
|
|
1578
1584
|
LastModifiedTime: Date | undefined;
|
|
1579
|
-
MonitoringScheduleStatus: ScheduleStatus |
|
|
1585
|
+
MonitoringScheduleStatus: ScheduleStatus | undefined;
|
|
1580
1586
|
EndpointName?: string;
|
|
1581
1587
|
MonitoringJobDefinitionName?: string;
|
|
1582
|
-
MonitoringType?: MonitoringType
|
|
1588
|
+
MonitoringType?: MonitoringType;
|
|
1583
1589
|
}
|
|
1584
1590
|
export interface ListMonitoringSchedulesResponse {
|
|
1585
1591
|
MonitoringScheduleSummaries: MonitoringScheduleSummary[] | undefined;
|
|
@@ -1601,8 +1607,8 @@ export type NotebookInstanceLifecycleConfigSortOrder =
|
|
|
1601
1607
|
export interface ListNotebookInstanceLifecycleConfigsInput {
|
|
1602
1608
|
NextToken?: string;
|
|
1603
1609
|
MaxResults?: number;
|
|
1604
|
-
SortBy?: NotebookInstanceLifecycleConfigSortKey
|
|
1605
|
-
SortOrder?: NotebookInstanceLifecycleConfigSortOrder
|
|
1610
|
+
SortBy?: NotebookInstanceLifecycleConfigSortKey;
|
|
1611
|
+
SortOrder?: NotebookInstanceLifecycleConfigSortOrder;
|
|
1606
1612
|
NameContains?: string;
|
|
1607
1613
|
CreationTimeBefore?: Date;
|
|
1608
1614
|
CreationTimeAfter?: Date;
|
|
@@ -1635,14 +1641,14 @@ export type NotebookInstanceSortOrder =
|
|
|
1635
1641
|
export interface ListNotebookInstancesInput {
|
|
1636
1642
|
NextToken?: string;
|
|
1637
1643
|
MaxResults?: number;
|
|
1638
|
-
SortBy?: NotebookInstanceSortKey
|
|
1639
|
-
SortOrder?: NotebookInstanceSortOrder
|
|
1644
|
+
SortBy?: NotebookInstanceSortKey;
|
|
1645
|
+
SortOrder?: NotebookInstanceSortOrder;
|
|
1640
1646
|
NameContains?: string;
|
|
1641
1647
|
CreationTimeBefore?: Date;
|
|
1642
1648
|
CreationTimeAfter?: Date;
|
|
1643
1649
|
LastModifiedTimeBefore?: Date;
|
|
1644
1650
|
LastModifiedTimeAfter?: Date;
|
|
1645
|
-
StatusEquals?: NotebookInstanceStatus
|
|
1651
|
+
StatusEquals?: NotebookInstanceStatus;
|
|
1646
1652
|
NotebookInstanceLifecycleConfigNameContains?: string;
|
|
1647
1653
|
DefaultCodeRepositoryContains?: string;
|
|
1648
1654
|
AdditionalCodeRepositoryEquals?: string;
|
|
@@ -1650,9 +1656,9 @@ export interface ListNotebookInstancesInput {
|
|
|
1650
1656
|
export interface NotebookInstanceSummary {
|
|
1651
1657
|
NotebookInstanceName: string | undefined;
|
|
1652
1658
|
NotebookInstanceArn: string | undefined;
|
|
1653
|
-
NotebookInstanceStatus?: NotebookInstanceStatus
|
|
1659
|
+
NotebookInstanceStatus?: NotebookInstanceStatus;
|
|
1654
1660
|
Url?: string;
|
|
1655
|
-
InstanceType?: _InstanceType
|
|
1661
|
+
InstanceType?: _InstanceType;
|
|
1656
1662
|
CreationTime?: Date;
|
|
1657
1663
|
LastModifiedTime?: Date;
|
|
1658
1664
|
NotebookInstanceLifecycleConfigName?: string;
|
|
@@ -1673,15 +1679,15 @@ export interface ListPipelineExecutionsRequest {
|
|
|
1673
1679
|
PipelineName: string | undefined;
|
|
1674
1680
|
CreatedAfter?: Date;
|
|
1675
1681
|
CreatedBefore?: Date;
|
|
1676
|
-
SortBy?: SortPipelineExecutionsBy
|
|
1677
|
-
SortOrder?: SortOrder
|
|
1682
|
+
SortBy?: SortPipelineExecutionsBy;
|
|
1683
|
+
SortOrder?: SortOrder;
|
|
1678
1684
|
NextToken?: string;
|
|
1679
1685
|
MaxResults?: number;
|
|
1680
1686
|
}
|
|
1681
1687
|
export interface PipelineExecutionSummary {
|
|
1682
1688
|
PipelineExecutionArn?: string;
|
|
1683
1689
|
StartTime?: Date;
|
|
1684
|
-
PipelineExecutionStatus?: PipelineExecutionStatus
|
|
1690
|
+
PipelineExecutionStatus?: PipelineExecutionStatus;
|
|
1685
1691
|
PipelineExecutionDescription?: string;
|
|
1686
1692
|
PipelineExecutionDisplayName?: string;
|
|
1687
1693
|
PipelineExecutionFailureReason?: string;
|
|
@@ -1694,7 +1700,7 @@ export interface ListPipelineExecutionStepsRequest {
|
|
|
1694
1700
|
PipelineExecutionArn?: string;
|
|
1695
1701
|
NextToken?: string;
|
|
1696
1702
|
MaxResults?: number;
|
|
1697
|
-
SortOrder?: SortOrder
|
|
1703
|
+
SortOrder?: SortOrder;
|
|
1698
1704
|
}
|
|
1699
1705
|
export interface ModelStepMetadata {
|
|
1700
1706
|
Arn?: string;
|
|
@@ -1760,7 +1766,7 @@ export interface PipelineExecutionStep {
|
|
|
1760
1766
|
StepDescription?: string;
|
|
1761
1767
|
StartTime?: Date;
|
|
1762
1768
|
EndTime?: Date;
|
|
1763
|
-
StepStatus?: StepStatus
|
|
1769
|
+
StepStatus?: StepStatus;
|
|
1764
1770
|
CacheHitResult?: CacheHitResult;
|
|
1765
1771
|
AttemptCount?: number;
|
|
1766
1772
|
FailureReason?: string;
|
|
@@ -1794,8 +1800,8 @@ export interface ListPipelinesRequest {
|
|
|
1794
1800
|
PipelineNamePrefix?: string;
|
|
1795
1801
|
CreatedAfter?: Date;
|
|
1796
1802
|
CreatedBefore?: Date;
|
|
1797
|
-
SortBy?: SortPipelinesBy
|
|
1798
|
-
SortOrder?: SortOrder
|
|
1803
|
+
SortBy?: SortPipelinesBy;
|
|
1804
|
+
SortOrder?: SortOrder;
|
|
1799
1805
|
NextToken?: string;
|
|
1800
1806
|
MaxResults?: number;
|
|
1801
1807
|
}
|
|
@@ -1819,9 +1825,9 @@ export interface ListProcessingJobsRequest {
|
|
|
1819
1825
|
LastModifiedTimeAfter?: Date;
|
|
1820
1826
|
LastModifiedTimeBefore?: Date;
|
|
1821
1827
|
NameContains?: string;
|
|
1822
|
-
StatusEquals?: ProcessingJobStatus
|
|
1823
|
-
SortBy?: SortBy
|
|
1824
|
-
SortOrder?: SortOrder
|
|
1828
|
+
StatusEquals?: ProcessingJobStatus;
|
|
1829
|
+
SortBy?: SortBy;
|
|
1830
|
+
SortOrder?: SortOrder;
|
|
1825
1831
|
NextToken?: string;
|
|
1826
1832
|
MaxResults?: number;
|
|
1827
1833
|
}
|
|
@@ -1831,7 +1837,7 @@ export interface ProcessingJobSummary {
|
|
|
1831
1837
|
CreationTime: Date | undefined;
|
|
1832
1838
|
ProcessingEndTime?: Date;
|
|
1833
1839
|
LastModifiedTime?: Date;
|
|
1834
|
-
ProcessingJobStatus: ProcessingJobStatus |
|
|
1840
|
+
ProcessingJobStatus: ProcessingJobStatus | undefined;
|
|
1835
1841
|
FailureReason?: string;
|
|
1836
1842
|
ExitMessage?: string;
|
|
1837
1843
|
}
|
|
@@ -1856,8 +1862,8 @@ export interface ListProjectsInput {
|
|
|
1856
1862
|
MaxResults?: number;
|
|
1857
1863
|
NameContains?: string;
|
|
1858
1864
|
NextToken?: string;
|
|
1859
|
-
SortBy?: ProjectSortBy
|
|
1860
|
-
SortOrder?: ProjectSortOrder
|
|
1865
|
+
SortBy?: ProjectSortBy;
|
|
1866
|
+
SortOrder?: ProjectSortOrder;
|
|
1861
1867
|
}
|
|
1862
1868
|
export interface ProjectSummary {
|
|
1863
1869
|
ProjectName: string | undefined;
|
|
@@ -1865,7 +1871,7 @@ export interface ProjectSummary {
|
|
|
1865
1871
|
ProjectArn: string | undefined;
|
|
1866
1872
|
ProjectId: string | undefined;
|
|
1867
1873
|
CreationTime: Date | undefined;
|
|
1868
|
-
ProjectStatus: ProjectStatus |
|
|
1874
|
+
ProjectStatus: ProjectStatus | undefined;
|
|
1869
1875
|
}
|
|
1870
1876
|
export interface ListProjectsOutput {
|
|
1871
1877
|
ProjectSummaryList: ProjectSummary[] | undefined;
|
|
@@ -1886,8 +1892,8 @@ export interface ListResourceCatalogsRequest {
|
|
|
1886
1892
|
NameContains?: string;
|
|
1887
1893
|
CreationTimeAfter?: Date;
|
|
1888
1894
|
CreationTimeBefore?: Date;
|
|
1889
|
-
SortOrder?: ResourceCatalogSortOrder
|
|
1890
|
-
SortBy?: ResourceCatalogSortBy
|
|
1895
|
+
SortOrder?: ResourceCatalogSortOrder;
|
|
1896
|
+
SortBy?: ResourceCatalogSortBy;
|
|
1891
1897
|
MaxResults?: number;
|
|
1892
1898
|
NextToken?: string;
|
|
1893
1899
|
}
|
|
@@ -1909,15 +1915,15 @@ export type SpaceSortKey = (typeof SpaceSortKey)[keyof typeof SpaceSortKey];
|
|
|
1909
1915
|
export interface ListSpacesRequest {
|
|
1910
1916
|
NextToken?: string;
|
|
1911
1917
|
MaxResults?: number;
|
|
1912
|
-
SortOrder?: SortOrder
|
|
1913
|
-
SortBy?: SpaceSortKey
|
|
1918
|
+
SortOrder?: SortOrder;
|
|
1919
|
+
SortBy?: SpaceSortKey;
|
|
1914
1920
|
DomainIdEquals?: string;
|
|
1915
1921
|
SpaceNameContains?: string;
|
|
1916
1922
|
}
|
|
1917
1923
|
export interface SpaceDetails {
|
|
1918
1924
|
DomainId?: string;
|
|
1919
1925
|
SpaceName?: string;
|
|
1920
|
-
Status?: SpaceStatus
|
|
1926
|
+
Status?: SpaceStatus;
|
|
1921
1927
|
CreationTime?: Date;
|
|
1922
1928
|
LastModifiedTime?: Date;
|
|
1923
1929
|
}
|
|
@@ -1947,20 +1953,20 @@ export interface ListStudioLifecycleConfigsRequest {
|
|
|
1947
1953
|
MaxResults?: number;
|
|
1948
1954
|
NextToken?: string;
|
|
1949
1955
|
NameContains?: string;
|
|
1950
|
-
AppTypeEquals?: StudioLifecycleConfigAppType
|
|
1956
|
+
AppTypeEquals?: StudioLifecycleConfigAppType;
|
|
1951
1957
|
CreationTimeBefore?: Date;
|
|
1952
1958
|
CreationTimeAfter?: Date;
|
|
1953
1959
|
ModifiedTimeBefore?: Date;
|
|
1954
1960
|
ModifiedTimeAfter?: Date;
|
|
1955
|
-
SortBy?: StudioLifecycleConfigSortKey
|
|
1956
|
-
SortOrder?: SortOrder
|
|
1961
|
+
SortBy?: StudioLifecycleConfigSortKey;
|
|
1962
|
+
SortOrder?: SortOrder;
|
|
1957
1963
|
}
|
|
1958
1964
|
export interface StudioLifecycleConfigDetails {
|
|
1959
1965
|
StudioLifecycleConfigArn?: string;
|
|
1960
1966
|
StudioLifecycleConfigName?: string;
|
|
1961
1967
|
CreationTime?: Date;
|
|
1962
1968
|
LastModifiedTime?: Date;
|
|
1963
|
-
StudioLifecycleConfigAppType?: StudioLifecycleConfigAppType
|
|
1969
|
+
StudioLifecycleConfigAppType?: StudioLifecycleConfigAppType;
|
|
1964
1970
|
}
|
|
1965
1971
|
export interface ListStudioLifecycleConfigsResponse {
|
|
1966
1972
|
NextToken?: string;
|
|
@@ -1992,10 +1998,10 @@ export interface ListTrainingJobsRequest {
|
|
|
1992
1998
|
LastModifiedTimeAfter?: Date;
|
|
1993
1999
|
LastModifiedTimeBefore?: Date;
|
|
1994
2000
|
NameContains?: string;
|
|
1995
|
-
StatusEquals?: TrainingJobStatus
|
|
1996
|
-
SortBy?: SortBy
|
|
1997
|
-
SortOrder?: SortOrder
|
|
1998
|
-
WarmPoolStatusEquals?: WarmPoolResourceStatus
|
|
2001
|
+
StatusEquals?: TrainingJobStatus;
|
|
2002
|
+
SortBy?: SortBy;
|
|
2003
|
+
SortOrder?: SortOrder;
|
|
2004
|
+
WarmPoolStatusEquals?: WarmPoolResourceStatus;
|
|
1999
2005
|
}
|
|
2000
2006
|
export interface TrainingJobSummary {
|
|
2001
2007
|
TrainingJobName: string | undefined;
|
|
@@ -2003,7 +2009,7 @@ export interface TrainingJobSummary {
|
|
|
2003
2009
|
CreationTime: Date | undefined;
|
|
2004
2010
|
TrainingEndTime?: Date;
|
|
2005
2011
|
LastModifiedTime?: Date;
|
|
2006
|
-
TrainingJobStatus: TrainingJobStatus |
|
|
2012
|
+
TrainingJobStatus: TrainingJobStatus | undefined;
|
|
2007
2013
|
WarmPoolStatus?: WarmPoolStatus;
|
|
2008
2014
|
}
|
|
2009
2015
|
export interface ListTrainingJobsResponse {
|
|
@@ -2022,9 +2028,9 @@ export interface ListTrainingJobsForHyperParameterTuningJobRequest {
|
|
|
2022
2028
|
HyperParameterTuningJobName: string | undefined;
|
|
2023
2029
|
NextToken?: string;
|
|
2024
2030
|
MaxResults?: number;
|
|
2025
|
-
StatusEquals?: TrainingJobStatus
|
|
2026
|
-
SortBy?: TrainingJobSortByOptions
|
|
2027
|
-
SortOrder?: SortOrder
|
|
2031
|
+
StatusEquals?: TrainingJobStatus;
|
|
2032
|
+
SortBy?: TrainingJobSortByOptions;
|
|
2033
|
+
SortOrder?: SortOrder;
|
|
2028
2034
|
}
|
|
2029
2035
|
export interface ListTrainingJobsForHyperParameterTuningJobResponse {
|
|
2030
2036
|
TrainingJobSummaries: HyperParameterTrainingJobSummary[] | undefined;
|
|
@@ -2036,9 +2042,9 @@ export interface ListTransformJobsRequest {
|
|
|
2036
2042
|
LastModifiedTimeAfter?: Date;
|
|
2037
2043
|
LastModifiedTimeBefore?: Date;
|
|
2038
2044
|
NameContains?: string;
|
|
2039
|
-
StatusEquals?: TransformJobStatus
|
|
2040
|
-
SortBy?: SortBy
|
|
2041
|
-
SortOrder?: SortOrder
|
|
2045
|
+
StatusEquals?: TransformJobStatus;
|
|
2046
|
+
SortBy?: SortBy;
|
|
2047
|
+
SortOrder?: SortOrder;
|
|
2042
2048
|
NextToken?: string;
|
|
2043
2049
|
MaxResults?: number;
|
|
2044
2050
|
}
|
|
@@ -2048,7 +2054,7 @@ export interface TransformJobSummary {
|
|
|
2048
2054
|
CreationTime: Date | undefined;
|
|
2049
2055
|
TransformEndTime?: Date;
|
|
2050
2056
|
LastModifiedTime?: Date;
|
|
2051
|
-
TransformJobStatus: TransformJobStatus |
|
|
2057
|
+
TransformJobStatus: TransformJobStatus | undefined;
|
|
2052
2058
|
FailureReason?: string;
|
|
2053
2059
|
}
|
|
2054
2060
|
export interface ListTransformJobsResponse {
|
|
@@ -2067,8 +2073,8 @@ export interface ListTrialComponentsRequest {
|
|
|
2067
2073
|
SourceArn?: string;
|
|
2068
2074
|
CreatedAfter?: Date;
|
|
2069
2075
|
CreatedBefore?: Date;
|
|
2070
|
-
SortBy?: SortTrialComponentsBy
|
|
2071
|
-
SortOrder?: SortOrder
|
|
2076
|
+
SortBy?: SortTrialComponentsBy;
|
|
2077
|
+
SortOrder?: SortOrder;
|
|
2072
2078
|
MaxResults?: number;
|
|
2073
2079
|
NextToken?: string;
|
|
2074
2080
|
}
|
|
@@ -2099,8 +2105,8 @@ export interface ListTrialsRequest {
|
|
|
2099
2105
|
TrialComponentName?: string;
|
|
2100
2106
|
CreatedAfter?: Date;
|
|
2101
2107
|
CreatedBefore?: Date;
|
|
2102
|
-
SortBy?: SortTrialsBy
|
|
2103
|
-
SortOrder?: SortOrder
|
|
2108
|
+
SortBy?: SortTrialsBy;
|
|
2109
|
+
SortOrder?: SortOrder;
|
|
2104
2110
|
MaxResults?: number;
|
|
2105
2111
|
NextToken?: string;
|
|
2106
2112
|
}
|
|
@@ -2125,15 +2131,15 @@ export type UserProfileSortKey =
|
|
|
2125
2131
|
export interface ListUserProfilesRequest {
|
|
2126
2132
|
NextToken?: string;
|
|
2127
2133
|
MaxResults?: number;
|
|
2128
|
-
SortOrder?: SortOrder
|
|
2129
|
-
SortBy?: UserProfileSortKey
|
|
2134
|
+
SortOrder?: SortOrder;
|
|
2135
|
+
SortBy?: UserProfileSortKey;
|
|
2130
2136
|
DomainIdEquals?: string;
|
|
2131
2137
|
UserProfileNameContains?: string;
|
|
2132
2138
|
}
|
|
2133
2139
|
export interface UserProfileDetails {
|
|
2134
2140
|
DomainId?: string;
|
|
2135
2141
|
UserProfileName?: string;
|
|
2136
|
-
Status?: UserProfileStatus
|
|
2142
|
+
Status?: UserProfileStatus;
|
|
2137
2143
|
CreationTime?: Date;
|
|
2138
2144
|
LastModifiedTime?: Date;
|
|
2139
2145
|
}
|
|
@@ -2148,8 +2154,8 @@ export declare const ListWorkforcesSortByOptions: {
|
|
|
2148
2154
|
export type ListWorkforcesSortByOptions =
|
|
2149
2155
|
(typeof ListWorkforcesSortByOptions)[keyof typeof ListWorkforcesSortByOptions];
|
|
2150
2156
|
export interface ListWorkforcesRequest {
|
|
2151
|
-
SortBy?: ListWorkforcesSortByOptions
|
|
2152
|
-
SortOrder?: SortOrder
|
|
2157
|
+
SortBy?: ListWorkforcesSortByOptions;
|
|
2158
|
+
SortOrder?: SortOrder;
|
|
2153
2159
|
NameContains?: string;
|
|
2154
2160
|
NextToken?: string;
|
|
2155
2161
|
MaxResults?: number;
|
|
@@ -2165,8 +2171,8 @@ export declare const ListWorkteamsSortByOptions: {
|
|
|
2165
2171
|
export type ListWorkteamsSortByOptions =
|
|
2166
2172
|
(typeof ListWorkteamsSortByOptions)[keyof typeof ListWorkteamsSortByOptions];
|
|
2167
2173
|
export interface ListWorkteamsRequest {
|
|
2168
|
-
SortBy?: ListWorkteamsSortByOptions
|
|
2169
|
-
SortOrder?: SortOrder
|
|
2174
|
+
SortBy?: ListWorkteamsSortByOptions;
|
|
2175
|
+
SortOrder?: SortOrder;
|
|
2170
2176
|
NameContains?: string;
|
|
2171
2177
|
NextToken?: string;
|
|
2172
2178
|
MaxResults?: number;
|
|
@@ -2193,7 +2199,7 @@ export interface ModelCard {
|
|
|
2193
2199
|
ModelCardName?: string;
|
|
2194
2200
|
ModelCardVersion?: number;
|
|
2195
2201
|
Content?: string;
|
|
2196
|
-
ModelCardStatus?: ModelCardStatus
|
|
2202
|
+
ModelCardStatus?: ModelCardStatus;
|
|
2197
2203
|
SecurityConfig?: ModelCardSecurityConfig;
|
|
2198
2204
|
CreationTime?: Date;
|
|
2199
2205
|
CreatedBy?: UserContext;
|
|
@@ -2209,18 +2215,18 @@ export interface ModelDashboardEndpoint {
|
|
|
2209
2215
|
EndpointArn: string | undefined;
|
|
2210
2216
|
CreationTime: Date | undefined;
|
|
2211
2217
|
LastModifiedTime: Date | undefined;
|
|
2212
|
-
EndpointStatus: EndpointStatus |
|
|
2218
|
+
EndpointStatus: EndpointStatus | undefined;
|
|
2213
2219
|
}
|
|
2214
2220
|
export interface TransformJob {
|
|
2215
2221
|
TransformJobName?: string;
|
|
2216
2222
|
TransformJobArn?: string;
|
|
2217
|
-
TransformJobStatus?: TransformJobStatus
|
|
2223
|
+
TransformJobStatus?: TransformJobStatus;
|
|
2218
2224
|
FailureReason?: string;
|
|
2219
2225
|
ModelName?: string;
|
|
2220
2226
|
MaxConcurrentTransforms?: number;
|
|
2221
2227
|
ModelClientConfig?: ModelClientConfig;
|
|
2222
2228
|
MaxPayloadInMB?: number;
|
|
2223
|
-
BatchStrategy?: BatchStrategy
|
|
2229
|
+
BatchStrategy?: BatchStrategy;
|
|
2224
2230
|
Environment?: Record<string, string>;
|
|
2225
2231
|
TransformInput?: TransformInput;
|
|
2226
2232
|
TransformOutput?: TransformOutput;
|
|
@@ -2235,31 +2241,4 @@ export interface TransformJob {
|
|
|
2235
2241
|
Tags?: Tag[];
|
|
2236
2242
|
DataCaptureConfig?: BatchDataCaptureConfig;
|
|
2237
2243
|
}
|
|
2238
|
-
export interface ModelDashboardModelCard {
|
|
2239
|
-
ModelCardArn?: string;
|
|
2240
|
-
ModelCardName?: string;
|
|
2241
|
-
ModelCardVersion?: number;
|
|
2242
|
-
ModelCardStatus?: ModelCardStatus | string;
|
|
2243
|
-
SecurityConfig?: ModelCardSecurityConfig;
|
|
2244
|
-
CreationTime?: Date;
|
|
2245
|
-
CreatedBy?: UserContext;
|
|
2246
|
-
LastModifiedTime?: Date;
|
|
2247
|
-
LastModifiedBy?: UserContext;
|
|
2248
|
-
Tags?: Tag[];
|
|
2249
|
-
ModelId?: string;
|
|
2250
|
-
RiskRating?: string;
|
|
2251
|
-
}
|
|
2252
|
-
export interface ModelDashboardMonitoringSchedule {
|
|
2253
|
-
MonitoringScheduleArn?: string;
|
|
2254
|
-
MonitoringScheduleName?: string;
|
|
2255
|
-
MonitoringScheduleStatus?: ScheduleStatus | string;
|
|
2256
|
-
MonitoringType?: MonitoringType | string;
|
|
2257
|
-
FailureReason?: string;
|
|
2258
|
-
CreationTime?: Date;
|
|
2259
|
-
LastModifiedTime?: Date;
|
|
2260
|
-
MonitoringScheduleConfig?: MonitoringScheduleConfig;
|
|
2261
|
-
EndpointName?: string;
|
|
2262
|
-
MonitoringAlertSummaries?: MonitoringAlertSummary[];
|
|
2263
|
-
LastMonitoringExecutionSummary?: MonitoringExecutionSummary;
|
|
2264
|
-
}
|
|
2265
2244
|
export declare const ModelCardFilterSensitiveLog: (obj: ModelCard) => any;
|