@aws-sdk/client-sagemaker 3.428.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-types/models/models_0.d.ts +109 -109
- package/dist-types/models/models_1.d.ts +68 -68
- package/dist-types/models/models_2.d.ts +97 -97
- package/dist-types/models/models_3.d.ts +205 -205
- package/dist-types/models/models_4.d.ts +33 -33
- package/dist-types/ts3.4/models/models_0.d.ts +112 -118
- package/dist-types/ts3.4/models/models_1.d.ts +67 -71
- package/dist-types/ts3.4/models/models_2.d.ts +97 -100
- package/dist-types/ts3.4/models/models_3.d.ts +205 -208
- package/dist-types/ts3.4/models/models_4.d.ts +33 -33
- package/package.json +5 -5
|
@@ -147,7 +147,7 @@ export interface EndpointSummary {
|
|
|
147
147
|
EndpointArn: string | undefined;
|
|
148
148
|
CreationTime: Date | undefined;
|
|
149
149
|
LastModifiedTime: Date | undefined;
|
|
150
|
-
EndpointStatus: EndpointStatus |
|
|
150
|
+
EndpointStatus: EndpointStatus | undefined;
|
|
151
151
|
}
|
|
152
152
|
export interface Experiment {
|
|
153
153
|
ExperimentName?: string;
|
|
@@ -183,7 +183,7 @@ export interface FeatureGroup {
|
|
|
183
183
|
OnlineStoreConfig?: OnlineStoreConfig;
|
|
184
184
|
OfflineStoreConfig?: OfflineStoreConfig;
|
|
185
185
|
RoleArn?: string;
|
|
186
|
-
FeatureGroupStatus?: FeatureGroupStatus
|
|
186
|
+
FeatureGroupStatus?: FeatureGroupStatus;
|
|
187
187
|
OfflineStoreStatus?: OfflineStoreStatus;
|
|
188
188
|
LastUpdateStatus?: LastUpdateStatus;
|
|
189
189
|
FailureReason?: string;
|
|
@@ -208,14 +208,14 @@ export interface FeatureGroupSummary {
|
|
|
208
208
|
FeatureGroupName: string | undefined;
|
|
209
209
|
FeatureGroupArn: string | undefined;
|
|
210
210
|
CreationTime: Date | undefined;
|
|
211
|
-
FeatureGroupStatus?: FeatureGroupStatus
|
|
211
|
+
FeatureGroupStatus?: FeatureGroupStatus;
|
|
212
212
|
OfflineStoreStatus?: OfflineStoreStatus;
|
|
213
213
|
}
|
|
214
214
|
export interface FeatureMetadata {
|
|
215
215
|
FeatureGroupArn?: string;
|
|
216
216
|
FeatureGroupName?: string;
|
|
217
217
|
FeatureName?: string;
|
|
218
|
-
FeatureType?: FeatureType
|
|
218
|
+
FeatureType?: FeatureType;
|
|
219
219
|
CreationTime?: Date;
|
|
220
220
|
LastModifiedTime?: Date;
|
|
221
221
|
Description?: string;
|
|
@@ -236,13 +236,13 @@ export declare const Operator: {
|
|
|
236
236
|
export type Operator = (typeof Operator)[keyof typeof Operator];
|
|
237
237
|
export interface Filter {
|
|
238
238
|
Name: string | undefined;
|
|
239
|
-
Operator?: Operator
|
|
239
|
+
Operator?: Operator;
|
|
240
240
|
Value?: string;
|
|
241
241
|
}
|
|
242
242
|
export interface FlowDefinitionSummary {
|
|
243
243
|
FlowDefinitionName: string | undefined;
|
|
244
244
|
FlowDefinitionArn: string | undefined;
|
|
245
|
-
FlowDefinitionStatus: FlowDefinitionStatus |
|
|
245
|
+
FlowDefinitionStatus: FlowDefinitionStatus | undefined;
|
|
246
246
|
CreationTime: Date | undefined;
|
|
247
247
|
FailureReason?: string;
|
|
248
248
|
}
|
|
@@ -280,7 +280,7 @@ export declare const SagemakerServicecatalogStatus: {
|
|
|
280
280
|
export type SagemakerServicecatalogStatus =
|
|
281
281
|
(typeof SagemakerServicecatalogStatus)[keyof typeof SagemakerServicecatalogStatus];
|
|
282
282
|
export interface GetSagemakerServicecatalogPortfolioStatusOutput {
|
|
283
|
-
Status?: SagemakerServicecatalogStatus
|
|
283
|
+
Status?: SagemakerServicecatalogStatus;
|
|
284
284
|
}
|
|
285
285
|
export interface ScalingPolicyObjective {
|
|
286
286
|
MinInvocationsPerMinute?: number;
|
|
@@ -331,7 +331,7 @@ export interface SuggestionQuery {
|
|
|
331
331
|
PropertyNameQuery?: PropertyNameQuery;
|
|
332
332
|
}
|
|
333
333
|
export interface GetSearchSuggestionsRequest {
|
|
334
|
-
Resource: ResourceType |
|
|
334
|
+
Resource: ResourceType | undefined;
|
|
335
335
|
SuggestionQuery?: SuggestionQuery;
|
|
336
336
|
}
|
|
337
337
|
export interface PropertyNameSuggestion {
|
|
@@ -347,12 +347,12 @@ export interface HubContentInfo {
|
|
|
347
347
|
HubContentName: string | undefined;
|
|
348
348
|
HubContentArn: string | undefined;
|
|
349
349
|
HubContentVersion: string | undefined;
|
|
350
|
-
HubContentType: HubContentType |
|
|
350
|
+
HubContentType: HubContentType | undefined;
|
|
351
351
|
DocumentSchemaVersion: string | undefined;
|
|
352
352
|
HubContentDisplayName?: string;
|
|
353
353
|
HubContentDescription?: string;
|
|
354
354
|
HubContentSearchKeywords?: string[];
|
|
355
|
-
HubContentStatus: HubContentStatus |
|
|
355
|
+
HubContentStatus: HubContentStatus | undefined;
|
|
356
356
|
CreationTime: Date | undefined;
|
|
357
357
|
}
|
|
358
358
|
export declare const HubContentSortBy: {
|
|
@@ -368,7 +368,7 @@ export interface HubInfo {
|
|
|
368
368
|
HubDisplayName?: string;
|
|
369
369
|
HubDescription?: string;
|
|
370
370
|
HubSearchKeywords?: string[];
|
|
371
|
-
HubStatus: HubStatus |
|
|
371
|
+
HubStatus: HubStatus | undefined;
|
|
372
372
|
CreationTime: Date | undefined;
|
|
373
373
|
LastModifiedTime: Date | undefined;
|
|
374
374
|
}
|
|
@@ -390,7 +390,7 @@ export interface HyperParameterTuningJobSearchEntity {
|
|
|
390
390
|
HyperParameterTuningJobConfig?: HyperParameterTuningJobConfig;
|
|
391
391
|
TrainingJobDefinition?: HyperParameterTrainingJobDefinition;
|
|
392
392
|
TrainingJobDefinitions?: HyperParameterTrainingJobDefinition[];
|
|
393
|
-
HyperParameterTuningJobStatus?: HyperParameterTuningJobStatus
|
|
393
|
+
HyperParameterTuningJobStatus?: HyperParameterTuningJobStatus;
|
|
394
394
|
CreationTime?: Date;
|
|
395
395
|
HyperParameterTuningEndTime?: Date;
|
|
396
396
|
LastModifiedTime?: Date;
|
|
@@ -414,11 +414,8 @@ export type HyperParameterTuningJobSortByOptions =
|
|
|
414
414
|
export interface HyperParameterTuningJobSummary {
|
|
415
415
|
HyperParameterTuningJobName: string | undefined;
|
|
416
416
|
HyperParameterTuningJobArn: string | undefined;
|
|
417
|
-
HyperParameterTuningJobStatus:
|
|
418
|
-
|
|
419
|
-
| string
|
|
420
|
-
| undefined;
|
|
421
|
-
Strategy: HyperParameterTuningJobStrategyType | string | undefined;
|
|
417
|
+
HyperParameterTuningJobStatus: HyperParameterTuningJobStatus | undefined;
|
|
418
|
+
Strategy: HyperParameterTuningJobStrategyType | undefined;
|
|
422
419
|
CreationTime: Date | undefined;
|
|
423
420
|
HyperParameterTuningEndTime?: Date;
|
|
424
421
|
LastModifiedTime?: Date;
|
|
@@ -433,7 +430,7 @@ export interface Image {
|
|
|
433
430
|
FailureReason?: string;
|
|
434
431
|
ImageArn: string | undefined;
|
|
435
432
|
ImageName: string | undefined;
|
|
436
|
-
ImageStatus: ImageStatus |
|
|
433
|
+
ImageStatus: ImageStatus | undefined;
|
|
437
434
|
LastModifiedTime: Date | undefined;
|
|
438
435
|
}
|
|
439
436
|
export declare const ImageSortBy: {
|
|
@@ -453,7 +450,7 @@ export interface ImageVersion {
|
|
|
453
450
|
FailureReason?: string;
|
|
454
451
|
ImageArn: string | undefined;
|
|
455
452
|
ImageVersionArn: string | undefined;
|
|
456
|
-
ImageVersionStatus: ImageVersionStatus |
|
|
453
|
+
ImageVersionStatus: ImageVersionStatus | undefined;
|
|
457
454
|
LastModifiedTime: Date | undefined;
|
|
458
455
|
Version: number | undefined;
|
|
459
456
|
}
|
|
@@ -473,7 +470,7 @@ export type ImageVersionSortOrder =
|
|
|
473
470
|
export interface ImportHubContentRequest {
|
|
474
471
|
HubContentName: string | undefined;
|
|
475
472
|
HubContentVersion?: string;
|
|
476
|
-
HubContentType: HubContentType |
|
|
473
|
+
HubContentType: HubContentType | undefined;
|
|
477
474
|
DocumentSchemaVersion: string | undefined;
|
|
478
475
|
HubName: string | undefined;
|
|
479
476
|
HubContentDisplayName?: string;
|
|
@@ -489,9 +486,9 @@ export interface ImportHubContentResponse {
|
|
|
489
486
|
}
|
|
490
487
|
export interface InferenceExperimentSummary {
|
|
491
488
|
Name: string | undefined;
|
|
492
|
-
Type: InferenceExperimentType |
|
|
489
|
+
Type: InferenceExperimentType | undefined;
|
|
493
490
|
Schedule?: InferenceExperimentSchedule;
|
|
494
|
-
Status: InferenceExperimentStatus |
|
|
491
|
+
Status: InferenceExperimentStatus | undefined;
|
|
495
492
|
StatusReason?: string;
|
|
496
493
|
Description?: string;
|
|
497
494
|
CreationTime: Date | undefined;
|
|
@@ -508,9 +505,9 @@ export type InferenceExperimentStopDesiredState =
|
|
|
508
505
|
export interface InferenceRecommendationsJob {
|
|
509
506
|
JobName: string | undefined;
|
|
510
507
|
JobDescription: string | undefined;
|
|
511
|
-
JobType: RecommendationJobType |
|
|
508
|
+
JobType: RecommendationJobType | undefined;
|
|
512
509
|
JobArn: string | undefined;
|
|
513
|
-
Status: RecommendationJobStatus |
|
|
510
|
+
Status: RecommendationJobStatus | undefined;
|
|
514
511
|
CreationTime: Date | undefined;
|
|
515
512
|
CompletionTime?: Date;
|
|
516
513
|
RoleArn: string | undefined;
|
|
@@ -535,9 +532,9 @@ export declare const RecommendationStepType: {
|
|
|
535
532
|
export type RecommendationStepType =
|
|
536
533
|
(typeof RecommendationStepType)[keyof typeof RecommendationStepType];
|
|
537
534
|
export interface InferenceRecommendationsJobStep {
|
|
538
|
-
StepType: RecommendationStepType |
|
|
535
|
+
StepType: RecommendationStepType | undefined;
|
|
539
536
|
JobName: string | undefined;
|
|
540
|
-
Status: RecommendationJobStatus |
|
|
537
|
+
Status: RecommendationJobStatus | undefined;
|
|
541
538
|
InferenceBenchmark?: RecommendationJobInferenceBenchmark;
|
|
542
539
|
}
|
|
543
540
|
export interface LabelCountersForWorkteam {
|
|
@@ -558,7 +555,7 @@ export interface LabelingJobSummary {
|
|
|
558
555
|
LabelingJobArn: string | undefined;
|
|
559
556
|
CreationTime: Date | undefined;
|
|
560
557
|
LastModifiedTime: Date | undefined;
|
|
561
|
-
LabelingJobStatus: LabelingJobStatus |
|
|
558
|
+
LabelingJobStatus: LabelingJobStatus | undefined;
|
|
562
559
|
LabelCounters: LabelCounters | undefined;
|
|
563
560
|
WorkteamArn: string | undefined;
|
|
564
561
|
PreHumanTaskLambdaArn: string | undefined;
|
|
@@ -600,8 +597,8 @@ export interface ListActionsRequest {
|
|
|
600
597
|
ActionType?: string;
|
|
601
598
|
CreatedAfter?: Date;
|
|
602
599
|
CreatedBefore?: Date;
|
|
603
|
-
SortBy?: SortActionsBy
|
|
604
|
-
SortOrder?: SortOrder
|
|
600
|
+
SortBy?: SortActionsBy;
|
|
601
|
+
SortOrder?: SortOrder;
|
|
605
602
|
NextToken?: string;
|
|
606
603
|
MaxResults?: number;
|
|
607
604
|
}
|
|
@@ -615,8 +612,8 @@ export interface ListAlgorithmsInput {
|
|
|
615
612
|
MaxResults?: number;
|
|
616
613
|
NameContains?: string;
|
|
617
614
|
NextToken?: string;
|
|
618
|
-
SortBy?: AlgorithmSortBy
|
|
619
|
-
SortOrder?: SortOrder
|
|
615
|
+
SortBy?: AlgorithmSortBy;
|
|
616
|
+
SortOrder?: SortOrder;
|
|
620
617
|
}
|
|
621
618
|
export interface ListAlgorithmsOutput {
|
|
622
619
|
AlgorithmSummaryList: AlgorithmSummary[] | undefined;
|
|
@@ -641,8 +638,8 @@ export interface ListAppImageConfigsRequest {
|
|
|
641
638
|
CreationTimeAfter?: Date;
|
|
642
639
|
ModifiedTimeBefore?: Date;
|
|
643
640
|
ModifiedTimeAfter?: Date;
|
|
644
|
-
SortBy?: AppImageConfigSortKey
|
|
645
|
-
SortOrder?: SortOrder
|
|
641
|
+
SortBy?: AppImageConfigSortKey;
|
|
642
|
+
SortOrder?: SortOrder;
|
|
646
643
|
}
|
|
647
644
|
export interface ListAppImageConfigsResponse {
|
|
648
645
|
NextToken?: string;
|
|
@@ -651,8 +648,8 @@ export interface ListAppImageConfigsResponse {
|
|
|
651
648
|
export interface ListAppsRequest {
|
|
652
649
|
NextToken?: string;
|
|
653
650
|
MaxResults?: number;
|
|
654
|
-
SortOrder?: SortOrder
|
|
655
|
-
SortBy?: AppSortKey
|
|
651
|
+
SortOrder?: SortOrder;
|
|
652
|
+
SortBy?: AppSortKey;
|
|
656
653
|
DomainIdEquals?: string;
|
|
657
654
|
UserProfileNameEquals?: string;
|
|
658
655
|
SpaceNameEquals?: string;
|
|
@@ -671,8 +668,8 @@ export interface ListArtifactsRequest {
|
|
|
671
668
|
ArtifactType?: string;
|
|
672
669
|
CreatedAfter?: Date;
|
|
673
670
|
CreatedBefore?: Date;
|
|
674
|
-
SortBy?: SortArtifactsBy
|
|
675
|
-
SortOrder?: SortOrder
|
|
671
|
+
SortBy?: SortArtifactsBy;
|
|
672
|
+
SortOrder?: SortOrder;
|
|
676
673
|
NextToken?: string;
|
|
677
674
|
MaxResults?: number;
|
|
678
675
|
}
|
|
@@ -694,11 +691,11 @@ export interface ListAssociationsRequest {
|
|
|
694
691
|
DestinationArn?: string;
|
|
695
692
|
SourceType?: string;
|
|
696
693
|
DestinationType?: string;
|
|
697
|
-
AssociationType?: AssociationEdgeType
|
|
694
|
+
AssociationType?: AssociationEdgeType;
|
|
698
695
|
CreatedAfter?: Date;
|
|
699
696
|
CreatedBefore?: Date;
|
|
700
|
-
SortBy?: SortAssociationsBy
|
|
701
|
-
SortOrder?: SortOrder
|
|
697
|
+
SortBy?: SortAssociationsBy;
|
|
698
|
+
SortOrder?: SortOrder;
|
|
702
699
|
NextToken?: string;
|
|
703
700
|
MaxResults?: number;
|
|
704
701
|
}
|
|
@@ -712,9 +709,9 @@ export interface ListAutoMLJobsRequest {
|
|
|
712
709
|
LastModifiedTimeAfter?: Date;
|
|
713
710
|
LastModifiedTimeBefore?: Date;
|
|
714
711
|
NameContains?: string;
|
|
715
|
-
StatusEquals?: AutoMLJobStatus
|
|
716
|
-
SortOrder?: AutoMLSortOrder
|
|
717
|
-
SortBy?: AutoMLSortBy
|
|
712
|
+
StatusEquals?: AutoMLJobStatus;
|
|
713
|
+
SortOrder?: AutoMLSortOrder;
|
|
714
|
+
SortBy?: AutoMLSortBy;
|
|
718
715
|
MaxResults?: number;
|
|
719
716
|
NextToken?: string;
|
|
720
717
|
}
|
|
@@ -724,10 +721,10 @@ export interface ListAutoMLJobsResponse {
|
|
|
724
721
|
}
|
|
725
722
|
export interface ListCandidatesForAutoMLJobRequest {
|
|
726
723
|
AutoMLJobName: string | undefined;
|
|
727
|
-
StatusEquals?: CandidateStatus
|
|
724
|
+
StatusEquals?: CandidateStatus;
|
|
728
725
|
CandidateNameEquals?: string;
|
|
729
|
-
SortOrder?: AutoMLSortOrder
|
|
730
|
-
SortBy?: CandidateSortBy
|
|
726
|
+
SortOrder?: AutoMLSortOrder;
|
|
727
|
+
SortBy?: CandidateSortBy;
|
|
731
728
|
MaxResults?: number;
|
|
732
729
|
NextToken?: string;
|
|
733
730
|
}
|
|
@@ -743,8 +740,8 @@ export interface ListCodeRepositoriesInput {
|
|
|
743
740
|
MaxResults?: number;
|
|
744
741
|
NameContains?: string;
|
|
745
742
|
NextToken?: string;
|
|
746
|
-
SortBy?: CodeRepositorySortBy
|
|
747
|
-
SortOrder?: CodeRepositorySortOrder
|
|
743
|
+
SortBy?: CodeRepositorySortBy;
|
|
744
|
+
SortOrder?: CodeRepositorySortOrder;
|
|
748
745
|
}
|
|
749
746
|
export interface ListCodeRepositoriesOutput {
|
|
750
747
|
CodeRepositorySummaryList: CodeRepositorySummary[] | undefined;
|
|
@@ -765,9 +762,9 @@ export interface ListCompilationJobsRequest {
|
|
|
765
762
|
LastModifiedTimeAfter?: Date;
|
|
766
763
|
LastModifiedTimeBefore?: Date;
|
|
767
764
|
NameContains?: string;
|
|
768
|
-
StatusEquals?: CompilationJobStatus
|
|
769
|
-
SortBy?: ListCompilationJobsSortBy
|
|
770
|
-
SortOrder?: SortOrder
|
|
765
|
+
StatusEquals?: CompilationJobStatus;
|
|
766
|
+
SortBy?: ListCompilationJobsSortBy;
|
|
767
|
+
SortOrder?: SortOrder;
|
|
771
768
|
}
|
|
772
769
|
export interface ListCompilationJobsResponse {
|
|
773
770
|
CompilationJobSummaries: CompilationJobSummary[] | undefined;
|
|
@@ -784,8 +781,8 @@ export interface ListContextsRequest {
|
|
|
784
781
|
ContextType?: string;
|
|
785
782
|
CreatedAfter?: Date;
|
|
786
783
|
CreatedBefore?: Date;
|
|
787
|
-
SortBy?: SortContextsBy
|
|
788
|
-
SortOrder?: SortOrder
|
|
784
|
+
SortBy?: SortContextsBy;
|
|
785
|
+
SortOrder?: SortOrder;
|
|
789
786
|
NextToken?: string;
|
|
790
787
|
MaxResults?: number;
|
|
791
788
|
}
|
|
@@ -801,8 +798,8 @@ export type MonitoringJobDefinitionSortKey =
|
|
|
801
798
|
(typeof MonitoringJobDefinitionSortKey)[keyof typeof MonitoringJobDefinitionSortKey];
|
|
802
799
|
export interface ListDataQualityJobDefinitionsRequest {
|
|
803
800
|
EndpointName?: string;
|
|
804
|
-
SortBy?: MonitoringJobDefinitionSortKey
|
|
805
|
-
SortOrder?: SortOrder
|
|
801
|
+
SortBy?: MonitoringJobDefinitionSortKey;
|
|
802
|
+
SortOrder?: SortOrder;
|
|
806
803
|
NextToken?: string;
|
|
807
804
|
MaxResults?: number;
|
|
808
805
|
NameContains?: string;
|
|
@@ -834,8 +831,8 @@ export interface ListDeviceFleetsRequest {
|
|
|
834
831
|
LastModifiedTimeAfter?: Date;
|
|
835
832
|
LastModifiedTimeBefore?: Date;
|
|
836
833
|
NameContains?: string;
|
|
837
|
-
SortBy?: ListDeviceFleetsSortBy
|
|
838
|
-
SortOrder?: SortOrder
|
|
834
|
+
SortBy?: ListDeviceFleetsSortBy;
|
|
835
|
+
SortOrder?: SortOrder;
|
|
839
836
|
}
|
|
840
837
|
export interface ListDeviceFleetsResponse {
|
|
841
838
|
DeviceFleetSummaries: DeviceFleetSummary[] | undefined;
|
|
@@ -877,8 +874,8 @@ export interface ListEdgeDeploymentPlansRequest {
|
|
|
877
874
|
LastModifiedTimeBefore?: Date;
|
|
878
875
|
NameContains?: string;
|
|
879
876
|
DeviceFleetNameContains?: string;
|
|
880
|
-
SortBy?: ListEdgeDeploymentPlansSortBy
|
|
881
|
-
SortOrder?: SortOrder
|
|
877
|
+
SortBy?: ListEdgeDeploymentPlansSortBy;
|
|
878
|
+
SortOrder?: SortOrder;
|
|
882
879
|
}
|
|
883
880
|
export interface ListEdgeDeploymentPlansResponse {
|
|
884
881
|
EdgeDeploymentPlanSummaries: EdgeDeploymentPlanSummary[] | undefined;
|
|
@@ -902,9 +899,9 @@ export interface ListEdgePackagingJobsRequest {
|
|
|
902
899
|
LastModifiedTimeBefore?: Date;
|
|
903
900
|
NameContains?: string;
|
|
904
901
|
ModelNameContains?: string;
|
|
905
|
-
StatusEquals?: EdgePackagingJobStatus
|
|
906
|
-
SortBy?: ListEdgePackagingJobsSortBy
|
|
907
|
-
SortOrder?: SortOrder
|
|
902
|
+
StatusEquals?: EdgePackagingJobStatus;
|
|
903
|
+
SortBy?: ListEdgePackagingJobsSortBy;
|
|
904
|
+
SortOrder?: SortOrder;
|
|
908
905
|
}
|
|
909
906
|
export interface ListEdgePackagingJobsResponse {
|
|
910
907
|
EdgePackagingJobSummaries: EdgePackagingJobSummary[] | undefined;
|
|
@@ -916,8 +913,8 @@ export declare const OrderKey: {
|
|
|
916
913
|
};
|
|
917
914
|
export type OrderKey = (typeof OrderKey)[keyof typeof OrderKey];
|
|
918
915
|
export interface ListEndpointConfigsInput {
|
|
919
|
-
SortBy?: EndpointConfigSortKey
|
|
920
|
-
SortOrder?: OrderKey
|
|
916
|
+
SortBy?: EndpointConfigSortKey;
|
|
917
|
+
SortOrder?: OrderKey;
|
|
921
918
|
NextToken?: string;
|
|
922
919
|
MaxResults?: number;
|
|
923
920
|
NameContains?: string;
|
|
@@ -929,8 +926,8 @@ export interface ListEndpointConfigsOutput {
|
|
|
929
926
|
NextToken?: string;
|
|
930
927
|
}
|
|
931
928
|
export interface ListEndpointsInput {
|
|
932
|
-
SortBy?: EndpointSortKey
|
|
933
|
-
SortOrder?: OrderKey
|
|
929
|
+
SortBy?: EndpointSortKey;
|
|
930
|
+
SortOrder?: OrderKey;
|
|
934
931
|
NextToken?: string;
|
|
935
932
|
MaxResults?: number;
|
|
936
933
|
NameContains?: string;
|
|
@@ -938,7 +935,7 @@ export interface ListEndpointsInput {
|
|
|
938
935
|
CreationTimeAfter?: Date;
|
|
939
936
|
LastModifiedTimeBefore?: Date;
|
|
940
937
|
LastModifiedTimeAfter?: Date;
|
|
941
|
-
StatusEquals?: EndpointStatus
|
|
938
|
+
StatusEquals?: EndpointStatus;
|
|
942
939
|
}
|
|
943
940
|
export interface ListEndpointsOutput {
|
|
944
941
|
Endpoints: EndpointSummary[] | undefined;
|
|
@@ -953,8 +950,8 @@ export type SortExperimentsBy =
|
|
|
953
950
|
export interface ListExperimentsRequest {
|
|
954
951
|
CreatedAfter?: Date;
|
|
955
952
|
CreatedBefore?: Date;
|
|
956
|
-
SortBy?: SortExperimentsBy
|
|
957
|
-
SortOrder?: SortOrder
|
|
953
|
+
SortBy?: SortExperimentsBy;
|
|
954
|
+
SortOrder?: SortOrder;
|
|
958
955
|
NextToken?: string;
|
|
959
956
|
MaxResults?: number;
|
|
960
957
|
}
|
|
@@ -964,12 +961,12 @@ export interface ListExperimentsResponse {
|
|
|
964
961
|
}
|
|
965
962
|
export interface ListFeatureGroupsRequest {
|
|
966
963
|
NameContains?: string;
|
|
967
|
-
FeatureGroupStatusEquals?: FeatureGroupStatus
|
|
968
|
-
OfflineStoreStatusEquals?: OfflineStoreStatusValue
|
|
964
|
+
FeatureGroupStatusEquals?: FeatureGroupStatus;
|
|
965
|
+
OfflineStoreStatusEquals?: OfflineStoreStatusValue;
|
|
969
966
|
CreationTimeAfter?: Date;
|
|
970
967
|
CreationTimeBefore?: Date;
|
|
971
|
-
SortOrder?: FeatureGroupSortOrder
|
|
972
|
-
SortBy?: FeatureGroupSortBy
|
|
968
|
+
SortOrder?: FeatureGroupSortOrder;
|
|
969
|
+
SortBy?: FeatureGroupSortBy;
|
|
973
970
|
MaxResults?: number;
|
|
974
971
|
NextToken?: string;
|
|
975
972
|
}
|
|
@@ -980,7 +977,7 @@ export interface ListFeatureGroupsResponse {
|
|
|
980
977
|
export interface ListFlowDefinitionsRequest {
|
|
981
978
|
CreationTimeAfter?: Date;
|
|
982
979
|
CreationTimeBefore?: Date;
|
|
983
|
-
SortOrder?: SortOrder
|
|
980
|
+
SortOrder?: SortOrder;
|
|
984
981
|
NextToken?: string;
|
|
985
982
|
MaxResults?: number;
|
|
986
983
|
}
|
|
@@ -990,13 +987,13 @@ export interface ListFlowDefinitionsResponse {
|
|
|
990
987
|
}
|
|
991
988
|
export interface ListHubContentsRequest {
|
|
992
989
|
HubName: string | undefined;
|
|
993
|
-
HubContentType: HubContentType |
|
|
990
|
+
HubContentType: HubContentType | undefined;
|
|
994
991
|
NameContains?: string;
|
|
995
992
|
MaxSchemaVersion?: string;
|
|
996
993
|
CreationTimeBefore?: Date;
|
|
997
994
|
CreationTimeAfter?: Date;
|
|
998
|
-
SortBy?: HubContentSortBy
|
|
999
|
-
SortOrder?: SortOrder
|
|
995
|
+
SortBy?: HubContentSortBy;
|
|
996
|
+
SortOrder?: SortOrder;
|
|
1000
997
|
MaxResults?: number;
|
|
1001
998
|
NextToken?: string;
|
|
1002
999
|
}
|
|
@@ -1006,14 +1003,14 @@ export interface ListHubContentsResponse {
|
|
|
1006
1003
|
}
|
|
1007
1004
|
export interface ListHubContentVersionsRequest {
|
|
1008
1005
|
HubName: string | undefined;
|
|
1009
|
-
HubContentType: HubContentType |
|
|
1006
|
+
HubContentType: HubContentType | undefined;
|
|
1010
1007
|
HubContentName: string | undefined;
|
|
1011
1008
|
MinVersion?: string;
|
|
1012
1009
|
MaxSchemaVersion?: string;
|
|
1013
1010
|
CreationTimeBefore?: Date;
|
|
1014
1011
|
CreationTimeAfter?: Date;
|
|
1015
|
-
SortBy?: HubContentSortBy
|
|
1016
|
-
SortOrder?: SortOrder
|
|
1012
|
+
SortBy?: HubContentSortBy;
|
|
1013
|
+
SortOrder?: SortOrder;
|
|
1017
1014
|
MaxResults?: number;
|
|
1018
1015
|
NextToken?: string;
|
|
1019
1016
|
}
|
|
@@ -1027,8 +1024,8 @@ export interface ListHubsRequest {
|
|
|
1027
1024
|
CreationTimeAfter?: Date;
|
|
1028
1025
|
LastModifiedTimeBefore?: Date;
|
|
1029
1026
|
LastModifiedTimeAfter?: Date;
|
|
1030
|
-
SortBy?: HubSortBy
|
|
1031
|
-
SortOrder?: SortOrder
|
|
1027
|
+
SortBy?: HubSortBy;
|
|
1028
|
+
SortOrder?: SortOrder;
|
|
1032
1029
|
MaxResults?: number;
|
|
1033
1030
|
NextToken?: string;
|
|
1034
1031
|
}
|
|
@@ -1039,7 +1036,7 @@ export interface ListHubsResponse {
|
|
|
1039
1036
|
export interface ListHumanTaskUisRequest {
|
|
1040
1037
|
CreationTimeAfter?: Date;
|
|
1041
1038
|
CreationTimeBefore?: Date;
|
|
1042
|
-
SortOrder?: SortOrder
|
|
1039
|
+
SortOrder?: SortOrder;
|
|
1043
1040
|
NextToken?: string;
|
|
1044
1041
|
MaxResults?: number;
|
|
1045
1042
|
}
|
|
@@ -1050,14 +1047,14 @@ export interface ListHumanTaskUisResponse {
|
|
|
1050
1047
|
export interface ListHyperParameterTuningJobsRequest {
|
|
1051
1048
|
NextToken?: string;
|
|
1052
1049
|
MaxResults?: number;
|
|
1053
|
-
SortBy?: HyperParameterTuningJobSortByOptions
|
|
1054
|
-
SortOrder?: SortOrder
|
|
1050
|
+
SortBy?: HyperParameterTuningJobSortByOptions;
|
|
1051
|
+
SortOrder?: SortOrder;
|
|
1055
1052
|
NameContains?: string;
|
|
1056
1053
|
CreationTimeAfter?: Date;
|
|
1057
1054
|
CreationTimeBefore?: Date;
|
|
1058
1055
|
LastModifiedTimeAfter?: Date;
|
|
1059
1056
|
LastModifiedTimeBefore?: Date;
|
|
1060
|
-
StatusEquals?: HyperParameterTuningJobStatus
|
|
1057
|
+
StatusEquals?: HyperParameterTuningJobStatus;
|
|
1061
1058
|
}
|
|
1062
1059
|
export interface ListHyperParameterTuningJobsResponse {
|
|
1063
1060
|
HyperParameterTuningJobSummaries:
|
|
@@ -1073,8 +1070,8 @@ export interface ListImagesRequest {
|
|
|
1073
1070
|
MaxResults?: number;
|
|
1074
1071
|
NameContains?: string;
|
|
1075
1072
|
NextToken?: string;
|
|
1076
|
-
SortBy?: ImageSortBy
|
|
1077
|
-
SortOrder?: ImageSortOrder
|
|
1073
|
+
SortBy?: ImageSortBy;
|
|
1074
|
+
SortOrder?: ImageSortOrder;
|
|
1078
1075
|
}
|
|
1079
1076
|
export interface ListImagesResponse {
|
|
1080
1077
|
Images?: Image[];
|
|
@@ -1088,8 +1085,8 @@ export interface ListImageVersionsRequest {
|
|
|
1088
1085
|
LastModifiedTimeBefore?: Date;
|
|
1089
1086
|
MaxResults?: number;
|
|
1090
1087
|
NextToken?: string;
|
|
1091
|
-
SortBy?: ImageVersionSortBy
|
|
1092
|
-
SortOrder?: ImageVersionSortOrder
|
|
1088
|
+
SortBy?: ImageVersionSortBy;
|
|
1089
|
+
SortOrder?: ImageVersionSortOrder;
|
|
1093
1090
|
}
|
|
1094
1091
|
export interface ListImageVersionsResponse {
|
|
1095
1092
|
ImageVersions?: ImageVersion[];
|
|
@@ -1104,14 +1101,14 @@ export type SortInferenceExperimentsBy =
|
|
|
1104
1101
|
(typeof SortInferenceExperimentsBy)[keyof typeof SortInferenceExperimentsBy];
|
|
1105
1102
|
export interface ListInferenceExperimentsRequest {
|
|
1106
1103
|
NameContains?: string;
|
|
1107
|
-
Type?: InferenceExperimentType
|
|
1108
|
-
StatusEquals?: InferenceExperimentStatus
|
|
1104
|
+
Type?: InferenceExperimentType;
|
|
1105
|
+
StatusEquals?: InferenceExperimentStatus;
|
|
1109
1106
|
CreationTimeAfter?: Date;
|
|
1110
1107
|
CreationTimeBefore?: Date;
|
|
1111
1108
|
LastModifiedTimeAfter?: Date;
|
|
1112
1109
|
LastModifiedTimeBefore?: Date;
|
|
1113
|
-
SortBy?: SortInferenceExperimentsBy
|
|
1114
|
-
SortOrder?: SortOrder
|
|
1110
|
+
SortBy?: SortInferenceExperimentsBy;
|
|
1111
|
+
SortOrder?: SortOrder;
|
|
1115
1112
|
NextToken?: string;
|
|
1116
1113
|
MaxResults?: number;
|
|
1117
1114
|
}
|
|
@@ -1132,9 +1129,9 @@ export interface ListInferenceRecommendationsJobsRequest {
|
|
|
1132
1129
|
LastModifiedTimeAfter?: Date;
|
|
1133
1130
|
LastModifiedTimeBefore?: Date;
|
|
1134
1131
|
NameContains?: string;
|
|
1135
|
-
StatusEquals?: RecommendationJobStatus
|
|
1136
|
-
SortBy?: ListInferenceRecommendationsJobsSortBy
|
|
1137
|
-
SortOrder?: SortOrder
|
|
1132
|
+
StatusEquals?: RecommendationJobStatus;
|
|
1133
|
+
SortBy?: ListInferenceRecommendationsJobsSortBy;
|
|
1134
|
+
SortOrder?: SortOrder;
|
|
1138
1135
|
NextToken?: string;
|
|
1139
1136
|
MaxResults?: number;
|
|
1140
1137
|
ModelNameEquals?: string;
|
|
@@ -1146,8 +1143,8 @@ export interface ListInferenceRecommendationsJobsResponse {
|
|
|
1146
1143
|
}
|
|
1147
1144
|
export interface ListInferenceRecommendationsJobStepsRequest {
|
|
1148
1145
|
JobName: string | undefined;
|
|
1149
|
-
Status?: RecommendationJobStatus
|
|
1150
|
-
StepType?: RecommendationStepType
|
|
1146
|
+
Status?: RecommendationJobStatus;
|
|
1147
|
+
StepType?: RecommendationStepType;
|
|
1151
1148
|
MaxResults?: number;
|
|
1152
1149
|
NextToken?: string;
|
|
1153
1150
|
}
|
|
@@ -1169,9 +1166,9 @@ export interface ListLabelingJobsRequest {
|
|
|
1169
1166
|
MaxResults?: number;
|
|
1170
1167
|
NextToken?: string;
|
|
1171
1168
|
NameContains?: string;
|
|
1172
|
-
SortBy?: SortBy
|
|
1173
|
-
SortOrder?: SortOrder
|
|
1174
|
-
StatusEquals?: LabelingJobStatus
|
|
1169
|
+
SortBy?: SortBy;
|
|
1170
|
+
SortOrder?: SortOrder;
|
|
1171
|
+
StatusEquals?: LabelingJobStatus;
|
|
1175
1172
|
}
|
|
1176
1173
|
export interface ListLabelingJobsResponse {
|
|
1177
1174
|
LabelingJobSummaryList?: LabelingJobSummary[];
|
|
@@ -1189,8 +1186,8 @@ export interface ListLabelingJobsForWorkteamRequest {
|
|
|
1189
1186
|
CreationTimeAfter?: Date;
|
|
1190
1187
|
CreationTimeBefore?: Date;
|
|
1191
1188
|
JobReferenceCodeContains?: string;
|
|
1192
|
-
SortBy?: ListLabelingJobsForWorkteamSortByOptions
|
|
1193
|
-
SortOrder?: SortOrder
|
|
1189
|
+
SortBy?: ListLabelingJobsForWorkteamSortByOptions;
|
|
1190
|
+
SortOrder?: SortOrder;
|
|
1194
1191
|
}
|
|
1195
1192
|
export interface ListLabelingJobsForWorkteamResponse {
|
|
1196
1193
|
LabelingJobSummaryList: LabelingJobForWorkteamSummary[] | undefined;
|
|
@@ -1205,8 +1202,8 @@ export type SortLineageGroupsBy =
|
|
|
1205
1202
|
export interface ListLineageGroupsRequest {
|
|
1206
1203
|
CreatedAfter?: Date;
|
|
1207
1204
|
CreatedBefore?: Date;
|
|
1208
|
-
SortBy?: SortLineageGroupsBy
|
|
1209
|
-
SortOrder?: SortOrder
|
|
1205
|
+
SortBy?: SortLineageGroupsBy;
|
|
1206
|
+
SortOrder?: SortOrder;
|
|
1210
1207
|
NextToken?: string;
|
|
1211
1208
|
MaxResults?: number;
|
|
1212
1209
|
}
|
|
@@ -1216,8 +1213,8 @@ export interface ListLineageGroupsResponse {
|
|
|
1216
1213
|
}
|
|
1217
1214
|
export interface ListModelBiasJobDefinitionsRequest {
|
|
1218
1215
|
EndpointName?: string;
|
|
1219
|
-
SortBy?: MonitoringJobDefinitionSortKey
|
|
1220
|
-
SortOrder?: SortOrder
|
|
1216
|
+
SortBy?: MonitoringJobDefinitionSortKey;
|
|
1217
|
+
SortOrder?: SortOrder;
|
|
1221
1218
|
NextToken?: string;
|
|
1222
1219
|
MaxResults?: number;
|
|
1223
1220
|
NameContains?: string;
|
|
@@ -1247,16 +1244,16 @@ export interface ListModelCardExportJobsRequest {
|
|
|
1247
1244
|
CreationTimeAfter?: Date;
|
|
1248
1245
|
CreationTimeBefore?: Date;
|
|
1249
1246
|
ModelCardExportJobNameContains?: string;
|
|
1250
|
-
StatusEquals?: ModelCardExportJobStatus
|
|
1251
|
-
SortBy?: ModelCardExportJobSortBy
|
|
1252
|
-
SortOrder?: ModelCardExportJobSortOrder
|
|
1247
|
+
StatusEquals?: ModelCardExportJobStatus;
|
|
1248
|
+
SortBy?: ModelCardExportJobSortBy;
|
|
1249
|
+
SortOrder?: ModelCardExportJobSortOrder;
|
|
1253
1250
|
NextToken?: string;
|
|
1254
1251
|
MaxResults?: number;
|
|
1255
1252
|
}
|
|
1256
1253
|
export interface ModelCardExportJobSummary {
|
|
1257
1254
|
ModelCardExportJobName: string | undefined;
|
|
1258
1255
|
ModelCardExportJobArn: string | undefined;
|
|
1259
|
-
Status: ModelCardExportJobStatus |
|
|
1256
|
+
Status: ModelCardExportJobStatus | undefined;
|
|
1260
1257
|
ModelCardName: string | undefined;
|
|
1261
1258
|
ModelCardVersion: number | undefined;
|
|
1262
1259
|
CreatedAt: Date | undefined;
|
|
@@ -1283,15 +1280,15 @@ export interface ListModelCardsRequest {
|
|
|
1283
1280
|
CreationTimeBefore?: Date;
|
|
1284
1281
|
MaxResults?: number;
|
|
1285
1282
|
NameContains?: string;
|
|
1286
|
-
ModelCardStatus?: ModelCardStatus
|
|
1283
|
+
ModelCardStatus?: ModelCardStatus;
|
|
1287
1284
|
NextToken?: string;
|
|
1288
|
-
SortBy?: ModelCardSortBy
|
|
1289
|
-
SortOrder?: ModelCardSortOrder
|
|
1285
|
+
SortBy?: ModelCardSortBy;
|
|
1286
|
+
SortOrder?: ModelCardSortOrder;
|
|
1290
1287
|
}
|
|
1291
1288
|
export interface ModelCardSummary {
|
|
1292
1289
|
ModelCardName: string | undefined;
|
|
1293
1290
|
ModelCardArn: string | undefined;
|
|
1294
|
-
ModelCardStatus: ModelCardStatus |
|
|
1291
|
+
ModelCardStatus: ModelCardStatus | undefined;
|
|
1295
1292
|
CreationTime: Date | undefined;
|
|
1296
1293
|
LastModifiedTime?: Date;
|
|
1297
1294
|
}
|
|
@@ -1309,15 +1306,15 @@ export interface ListModelCardVersionsRequest {
|
|
|
1309
1306
|
CreationTimeBefore?: Date;
|
|
1310
1307
|
MaxResults?: number;
|
|
1311
1308
|
ModelCardName: string | undefined;
|
|
1312
|
-
ModelCardStatus?: ModelCardStatus
|
|
1309
|
+
ModelCardStatus?: ModelCardStatus;
|
|
1313
1310
|
NextToken?: string;
|
|
1314
|
-
SortBy?: ModelCardVersionSortBy
|
|
1315
|
-
SortOrder?: ModelCardSortOrder
|
|
1311
|
+
SortBy?: ModelCardVersionSortBy;
|
|
1312
|
+
SortOrder?: ModelCardSortOrder;
|
|
1316
1313
|
}
|
|
1317
1314
|
export interface ModelCardVersionSummary {
|
|
1318
1315
|
ModelCardName: string | undefined;
|
|
1319
1316
|
ModelCardArn: string | undefined;
|
|
1320
|
-
ModelCardStatus: ModelCardStatus |
|
|
1317
|
+
ModelCardStatus: ModelCardStatus | undefined;
|
|
1321
1318
|
ModelCardVersion: number | undefined;
|
|
1322
1319
|
CreationTime: Date | undefined;
|
|
1323
1320
|
LastModifiedTime?: Date;
|
|
@@ -1328,8 +1325,8 @@ export interface ListModelCardVersionsResponse {
|
|
|
1328
1325
|
}
|
|
1329
1326
|
export interface ListModelExplainabilityJobDefinitionsRequest {
|
|
1330
1327
|
EndpointName?: string;
|
|
1331
|
-
SortBy?: MonitoringJobDefinitionSortKey
|
|
1332
|
-
SortOrder?: SortOrder
|
|
1328
|
+
SortBy?: MonitoringJobDefinitionSortKey;
|
|
1329
|
+
SortOrder?: SortOrder;
|
|
1333
1330
|
NextToken?: string;
|
|
1334
1331
|
MaxResults?: number;
|
|
1335
1332
|
NameContains?: string;
|
|
@@ -1349,7 +1346,7 @@ export declare const ModelMetadataFilterType: {
|
|
|
1349
1346
|
export type ModelMetadataFilterType =
|
|
1350
1347
|
(typeof ModelMetadataFilterType)[keyof typeof ModelMetadataFilterType];
|
|
1351
1348
|
export interface ModelMetadataFilter {
|
|
1352
|
-
Name: ModelMetadataFilterType |
|
|
1349
|
+
Name: ModelMetadataFilterType | undefined;
|
|
1353
1350
|
Value: string | undefined;
|
|
1354
1351
|
}
|
|
1355
1352
|
export interface ModelMetadataSearchExpression {
|
|
@@ -1383,15 +1380,15 @@ export interface ListModelPackageGroupsInput {
|
|
|
1383
1380
|
MaxResults?: number;
|
|
1384
1381
|
NameContains?: string;
|
|
1385
1382
|
NextToken?: string;
|
|
1386
|
-
SortBy?: ModelPackageGroupSortBy
|
|
1387
|
-
SortOrder?: SortOrder
|
|
1383
|
+
SortBy?: ModelPackageGroupSortBy;
|
|
1384
|
+
SortOrder?: SortOrder;
|
|
1388
1385
|
}
|
|
1389
1386
|
export interface ModelPackageGroupSummary {
|
|
1390
1387
|
ModelPackageGroupName: string | undefined;
|
|
1391
1388
|
ModelPackageGroupArn: string | undefined;
|
|
1392
1389
|
ModelPackageGroupDescription?: string;
|
|
1393
1390
|
CreationTime: Date | undefined;
|
|
1394
|
-
ModelPackageGroupStatus: ModelPackageGroupStatus |
|
|
1391
|
+
ModelPackageGroupStatus: ModelPackageGroupStatus | undefined;
|
|
1395
1392
|
}
|
|
1396
1393
|
export interface ListModelPackageGroupsOutput {
|
|
1397
1394
|
ModelPackageGroupSummaryList: ModelPackageGroupSummary[] | undefined;
|
|
@@ -1415,12 +1412,12 @@ export interface ListModelPackagesInput {
|
|
|
1415
1412
|
CreationTimeBefore?: Date;
|
|
1416
1413
|
MaxResults?: number;
|
|
1417
1414
|
NameContains?: string;
|
|
1418
|
-
ModelApprovalStatus?: ModelApprovalStatus
|
|
1415
|
+
ModelApprovalStatus?: ModelApprovalStatus;
|
|
1419
1416
|
ModelPackageGroupName?: string;
|
|
1420
|
-
ModelPackageType?: ModelPackageType
|
|
1417
|
+
ModelPackageType?: ModelPackageType;
|
|
1421
1418
|
NextToken?: string;
|
|
1422
|
-
SortBy?: ModelPackageSortBy
|
|
1423
|
-
SortOrder?: SortOrder
|
|
1419
|
+
SortBy?: ModelPackageSortBy;
|
|
1420
|
+
SortOrder?: SortOrder;
|
|
1424
1421
|
}
|
|
1425
1422
|
export interface ModelPackageSummary {
|
|
1426
1423
|
ModelPackageName: string | undefined;
|
|
@@ -1429,8 +1426,8 @@ export interface ModelPackageSummary {
|
|
|
1429
1426
|
ModelPackageArn: string | undefined;
|
|
1430
1427
|
ModelPackageDescription?: string;
|
|
1431
1428
|
CreationTime: Date | undefined;
|
|
1432
|
-
ModelPackageStatus: ModelPackageStatus |
|
|
1433
|
-
ModelApprovalStatus?: ModelApprovalStatus
|
|
1429
|
+
ModelPackageStatus: ModelPackageStatus | undefined;
|
|
1430
|
+
ModelApprovalStatus?: ModelApprovalStatus;
|
|
1434
1431
|
}
|
|
1435
1432
|
export interface ListModelPackagesOutput {
|
|
1436
1433
|
ModelPackageSummaryList: ModelPackageSummary[] | undefined;
|
|
@@ -1438,8 +1435,8 @@ export interface ListModelPackagesOutput {
|
|
|
1438
1435
|
}
|
|
1439
1436
|
export interface ListModelQualityJobDefinitionsRequest {
|
|
1440
1437
|
EndpointName?: string;
|
|
1441
|
-
SortBy?: MonitoringJobDefinitionSortKey
|
|
1442
|
-
SortOrder?: SortOrder
|
|
1438
|
+
SortBy?: MonitoringJobDefinitionSortKey;
|
|
1439
|
+
SortOrder?: SortOrder;
|
|
1443
1440
|
NextToken?: string;
|
|
1444
1441
|
MaxResults?: number;
|
|
1445
1442
|
NameContains?: string;
|
|
@@ -1456,8 +1453,8 @@ export declare const ModelSortKey: {
|
|
|
1456
1453
|
};
|
|
1457
1454
|
export type ModelSortKey = (typeof ModelSortKey)[keyof typeof ModelSortKey];
|
|
1458
1455
|
export interface ListModelsInput {
|
|
1459
|
-
SortBy?: ModelSortKey
|
|
1460
|
-
SortOrder?: OrderKey
|
|
1456
|
+
SortBy?: ModelSortKey;
|
|
1457
|
+
SortOrder?: OrderKey;
|
|
1461
1458
|
NextToken?: string;
|
|
1462
1459
|
MaxResults?: number;
|
|
1463
1460
|
NameContains?: string;
|
|
@@ -1488,19 +1485,19 @@ export type MonitoringAlertStatus =
|
|
|
1488
1485
|
export interface ListMonitoringAlertHistoryRequest {
|
|
1489
1486
|
MonitoringScheduleName?: string;
|
|
1490
1487
|
MonitoringAlertName?: string;
|
|
1491
|
-
SortBy?: MonitoringAlertHistorySortKey
|
|
1492
|
-
SortOrder?: SortOrder
|
|
1488
|
+
SortBy?: MonitoringAlertHistorySortKey;
|
|
1489
|
+
SortOrder?: SortOrder;
|
|
1493
1490
|
NextToken?: string;
|
|
1494
1491
|
MaxResults?: number;
|
|
1495
1492
|
CreationTimeBefore?: Date;
|
|
1496
1493
|
CreationTimeAfter?: Date;
|
|
1497
|
-
StatusEquals?: MonitoringAlertStatus
|
|
1494
|
+
StatusEquals?: MonitoringAlertStatus;
|
|
1498
1495
|
}
|
|
1499
1496
|
export interface MonitoringAlertHistorySummary {
|
|
1500
1497
|
MonitoringScheduleName: string | undefined;
|
|
1501
1498
|
MonitoringAlertName: string | undefined;
|
|
1502
1499
|
CreationTime: Date | undefined;
|
|
1503
|
-
AlertStatus: MonitoringAlertStatus |
|
|
1500
|
+
AlertStatus: MonitoringAlertStatus | undefined;
|
|
1504
1501
|
}
|
|
1505
1502
|
export interface ListMonitoringAlertHistoryResponse {
|
|
1506
1503
|
MonitoringAlertHistory?: MonitoringAlertHistorySummary[];
|
|
@@ -1521,7 +1518,7 @@ export interface MonitoringAlertSummary {
|
|
|
1521
1518
|
MonitoringAlertName: string | undefined;
|
|
1522
1519
|
CreationTime: Date | undefined;
|
|
1523
1520
|
LastModifiedTime: Date | undefined;
|
|
1524
|
-
AlertStatus: MonitoringAlertStatus |
|
|
1521
|
+
AlertStatus: MonitoringAlertStatus | undefined;
|
|
1525
1522
|
DatapointsToAlert: number | undefined;
|
|
1526
1523
|
EvaluationPeriod: number | undefined;
|
|
1527
1524
|
Actions: MonitoringAlertActions | undefined;
|
|
@@ -1540,8 +1537,8 @@ export type MonitoringExecutionSortKey =
|
|
|
1540
1537
|
export interface ListMonitoringExecutionsRequest {
|
|
1541
1538
|
MonitoringScheduleName?: string;
|
|
1542
1539
|
EndpointName?: string;
|
|
1543
|
-
SortBy?: MonitoringExecutionSortKey
|
|
1544
|
-
SortOrder?: SortOrder
|
|
1540
|
+
SortBy?: MonitoringExecutionSortKey;
|
|
1541
|
+
SortOrder?: SortOrder;
|
|
1545
1542
|
NextToken?: string;
|
|
1546
1543
|
MaxResults?: number;
|
|
1547
1544
|
ScheduledTimeBefore?: Date;
|
|
@@ -1550,9 +1547,9 @@ export interface ListMonitoringExecutionsRequest {
|
|
|
1550
1547
|
CreationTimeAfter?: Date;
|
|
1551
1548
|
LastModifiedTimeBefore?: Date;
|
|
1552
1549
|
LastModifiedTimeAfter?: Date;
|
|
1553
|
-
StatusEquals?: ExecutionStatus
|
|
1550
|
+
StatusEquals?: ExecutionStatus;
|
|
1554
1551
|
MonitoringJobDefinitionName?: string;
|
|
1555
|
-
MonitoringTypeEquals?: MonitoringType
|
|
1552
|
+
MonitoringTypeEquals?: MonitoringType;
|
|
1556
1553
|
}
|
|
1557
1554
|
export interface ListMonitoringExecutionsResponse {
|
|
1558
1555
|
MonitoringExecutionSummaries: MonitoringExecutionSummary[] | undefined;
|
|
@@ -1567,8 +1564,8 @@ export type MonitoringScheduleSortKey =
|
|
|
1567
1564
|
(typeof MonitoringScheduleSortKey)[keyof typeof MonitoringScheduleSortKey];
|
|
1568
1565
|
export interface ListMonitoringSchedulesRequest {
|
|
1569
1566
|
EndpointName?: string;
|
|
1570
|
-
SortBy?: MonitoringScheduleSortKey
|
|
1571
|
-
SortOrder?: SortOrder
|
|
1567
|
+
SortBy?: MonitoringScheduleSortKey;
|
|
1568
|
+
SortOrder?: SortOrder;
|
|
1572
1569
|
NextToken?: string;
|
|
1573
1570
|
MaxResults?: number;
|
|
1574
1571
|
NameContains?: string;
|
|
@@ -1576,19 +1573,19 @@ export interface ListMonitoringSchedulesRequest {
|
|
|
1576
1573
|
CreationTimeAfter?: Date;
|
|
1577
1574
|
LastModifiedTimeBefore?: Date;
|
|
1578
1575
|
LastModifiedTimeAfter?: Date;
|
|
1579
|
-
StatusEquals?: ScheduleStatus
|
|
1576
|
+
StatusEquals?: ScheduleStatus;
|
|
1580
1577
|
MonitoringJobDefinitionName?: string;
|
|
1581
|
-
MonitoringTypeEquals?: MonitoringType
|
|
1578
|
+
MonitoringTypeEquals?: MonitoringType;
|
|
1582
1579
|
}
|
|
1583
1580
|
export interface MonitoringScheduleSummary {
|
|
1584
1581
|
MonitoringScheduleName: string | undefined;
|
|
1585
1582
|
MonitoringScheduleArn: string | undefined;
|
|
1586
1583
|
CreationTime: Date | undefined;
|
|
1587
1584
|
LastModifiedTime: Date | undefined;
|
|
1588
|
-
MonitoringScheduleStatus: ScheduleStatus |
|
|
1585
|
+
MonitoringScheduleStatus: ScheduleStatus | undefined;
|
|
1589
1586
|
EndpointName?: string;
|
|
1590
1587
|
MonitoringJobDefinitionName?: string;
|
|
1591
|
-
MonitoringType?: MonitoringType
|
|
1588
|
+
MonitoringType?: MonitoringType;
|
|
1592
1589
|
}
|
|
1593
1590
|
export interface ListMonitoringSchedulesResponse {
|
|
1594
1591
|
MonitoringScheduleSummaries: MonitoringScheduleSummary[] | undefined;
|
|
@@ -1610,8 +1607,8 @@ export type NotebookInstanceLifecycleConfigSortOrder =
|
|
|
1610
1607
|
export interface ListNotebookInstanceLifecycleConfigsInput {
|
|
1611
1608
|
NextToken?: string;
|
|
1612
1609
|
MaxResults?: number;
|
|
1613
|
-
SortBy?: NotebookInstanceLifecycleConfigSortKey
|
|
1614
|
-
SortOrder?: NotebookInstanceLifecycleConfigSortOrder
|
|
1610
|
+
SortBy?: NotebookInstanceLifecycleConfigSortKey;
|
|
1611
|
+
SortOrder?: NotebookInstanceLifecycleConfigSortOrder;
|
|
1615
1612
|
NameContains?: string;
|
|
1616
1613
|
CreationTimeBefore?: Date;
|
|
1617
1614
|
CreationTimeAfter?: Date;
|
|
@@ -1644,14 +1641,14 @@ export type NotebookInstanceSortOrder =
|
|
|
1644
1641
|
export interface ListNotebookInstancesInput {
|
|
1645
1642
|
NextToken?: string;
|
|
1646
1643
|
MaxResults?: number;
|
|
1647
|
-
SortBy?: NotebookInstanceSortKey
|
|
1648
|
-
SortOrder?: NotebookInstanceSortOrder
|
|
1644
|
+
SortBy?: NotebookInstanceSortKey;
|
|
1645
|
+
SortOrder?: NotebookInstanceSortOrder;
|
|
1649
1646
|
NameContains?: string;
|
|
1650
1647
|
CreationTimeBefore?: Date;
|
|
1651
1648
|
CreationTimeAfter?: Date;
|
|
1652
1649
|
LastModifiedTimeBefore?: Date;
|
|
1653
1650
|
LastModifiedTimeAfter?: Date;
|
|
1654
|
-
StatusEquals?: NotebookInstanceStatus
|
|
1651
|
+
StatusEquals?: NotebookInstanceStatus;
|
|
1655
1652
|
NotebookInstanceLifecycleConfigNameContains?: string;
|
|
1656
1653
|
DefaultCodeRepositoryContains?: string;
|
|
1657
1654
|
AdditionalCodeRepositoryEquals?: string;
|
|
@@ -1659,9 +1656,9 @@ export interface ListNotebookInstancesInput {
|
|
|
1659
1656
|
export interface NotebookInstanceSummary {
|
|
1660
1657
|
NotebookInstanceName: string | undefined;
|
|
1661
1658
|
NotebookInstanceArn: string | undefined;
|
|
1662
|
-
NotebookInstanceStatus?: NotebookInstanceStatus
|
|
1659
|
+
NotebookInstanceStatus?: NotebookInstanceStatus;
|
|
1663
1660
|
Url?: string;
|
|
1664
|
-
InstanceType?: _InstanceType
|
|
1661
|
+
InstanceType?: _InstanceType;
|
|
1665
1662
|
CreationTime?: Date;
|
|
1666
1663
|
LastModifiedTime?: Date;
|
|
1667
1664
|
NotebookInstanceLifecycleConfigName?: string;
|
|
@@ -1682,15 +1679,15 @@ export interface ListPipelineExecutionsRequest {
|
|
|
1682
1679
|
PipelineName: string | undefined;
|
|
1683
1680
|
CreatedAfter?: Date;
|
|
1684
1681
|
CreatedBefore?: Date;
|
|
1685
|
-
SortBy?: SortPipelineExecutionsBy
|
|
1686
|
-
SortOrder?: SortOrder
|
|
1682
|
+
SortBy?: SortPipelineExecutionsBy;
|
|
1683
|
+
SortOrder?: SortOrder;
|
|
1687
1684
|
NextToken?: string;
|
|
1688
1685
|
MaxResults?: number;
|
|
1689
1686
|
}
|
|
1690
1687
|
export interface PipelineExecutionSummary {
|
|
1691
1688
|
PipelineExecutionArn?: string;
|
|
1692
1689
|
StartTime?: Date;
|
|
1693
|
-
PipelineExecutionStatus?: PipelineExecutionStatus
|
|
1690
|
+
PipelineExecutionStatus?: PipelineExecutionStatus;
|
|
1694
1691
|
PipelineExecutionDescription?: string;
|
|
1695
1692
|
PipelineExecutionDisplayName?: string;
|
|
1696
1693
|
PipelineExecutionFailureReason?: string;
|
|
@@ -1703,7 +1700,7 @@ export interface ListPipelineExecutionStepsRequest {
|
|
|
1703
1700
|
PipelineExecutionArn?: string;
|
|
1704
1701
|
NextToken?: string;
|
|
1705
1702
|
MaxResults?: number;
|
|
1706
|
-
SortOrder?: SortOrder
|
|
1703
|
+
SortOrder?: SortOrder;
|
|
1707
1704
|
}
|
|
1708
1705
|
export interface ModelStepMetadata {
|
|
1709
1706
|
Arn?: string;
|
|
@@ -1769,7 +1766,7 @@ export interface PipelineExecutionStep {
|
|
|
1769
1766
|
StepDescription?: string;
|
|
1770
1767
|
StartTime?: Date;
|
|
1771
1768
|
EndTime?: Date;
|
|
1772
|
-
StepStatus?: StepStatus
|
|
1769
|
+
StepStatus?: StepStatus;
|
|
1773
1770
|
CacheHitResult?: CacheHitResult;
|
|
1774
1771
|
AttemptCount?: number;
|
|
1775
1772
|
FailureReason?: string;
|
|
@@ -1803,8 +1800,8 @@ export interface ListPipelinesRequest {
|
|
|
1803
1800
|
PipelineNamePrefix?: string;
|
|
1804
1801
|
CreatedAfter?: Date;
|
|
1805
1802
|
CreatedBefore?: Date;
|
|
1806
|
-
SortBy?: SortPipelinesBy
|
|
1807
|
-
SortOrder?: SortOrder
|
|
1803
|
+
SortBy?: SortPipelinesBy;
|
|
1804
|
+
SortOrder?: SortOrder;
|
|
1808
1805
|
NextToken?: string;
|
|
1809
1806
|
MaxResults?: number;
|
|
1810
1807
|
}
|
|
@@ -1828,9 +1825,9 @@ export interface ListProcessingJobsRequest {
|
|
|
1828
1825
|
LastModifiedTimeAfter?: Date;
|
|
1829
1826
|
LastModifiedTimeBefore?: Date;
|
|
1830
1827
|
NameContains?: string;
|
|
1831
|
-
StatusEquals?: ProcessingJobStatus
|
|
1832
|
-
SortBy?: SortBy
|
|
1833
|
-
SortOrder?: SortOrder
|
|
1828
|
+
StatusEquals?: ProcessingJobStatus;
|
|
1829
|
+
SortBy?: SortBy;
|
|
1830
|
+
SortOrder?: SortOrder;
|
|
1834
1831
|
NextToken?: string;
|
|
1835
1832
|
MaxResults?: number;
|
|
1836
1833
|
}
|
|
@@ -1840,7 +1837,7 @@ export interface ProcessingJobSummary {
|
|
|
1840
1837
|
CreationTime: Date | undefined;
|
|
1841
1838
|
ProcessingEndTime?: Date;
|
|
1842
1839
|
LastModifiedTime?: Date;
|
|
1843
|
-
ProcessingJobStatus: ProcessingJobStatus |
|
|
1840
|
+
ProcessingJobStatus: ProcessingJobStatus | undefined;
|
|
1844
1841
|
FailureReason?: string;
|
|
1845
1842
|
ExitMessage?: string;
|
|
1846
1843
|
}
|
|
@@ -1865,8 +1862,8 @@ export interface ListProjectsInput {
|
|
|
1865
1862
|
MaxResults?: number;
|
|
1866
1863
|
NameContains?: string;
|
|
1867
1864
|
NextToken?: string;
|
|
1868
|
-
SortBy?: ProjectSortBy
|
|
1869
|
-
SortOrder?: ProjectSortOrder
|
|
1865
|
+
SortBy?: ProjectSortBy;
|
|
1866
|
+
SortOrder?: ProjectSortOrder;
|
|
1870
1867
|
}
|
|
1871
1868
|
export interface ProjectSummary {
|
|
1872
1869
|
ProjectName: string | undefined;
|
|
@@ -1874,7 +1871,7 @@ export interface ProjectSummary {
|
|
|
1874
1871
|
ProjectArn: string | undefined;
|
|
1875
1872
|
ProjectId: string | undefined;
|
|
1876
1873
|
CreationTime: Date | undefined;
|
|
1877
|
-
ProjectStatus: ProjectStatus |
|
|
1874
|
+
ProjectStatus: ProjectStatus | undefined;
|
|
1878
1875
|
}
|
|
1879
1876
|
export interface ListProjectsOutput {
|
|
1880
1877
|
ProjectSummaryList: ProjectSummary[] | undefined;
|
|
@@ -1895,8 +1892,8 @@ export interface ListResourceCatalogsRequest {
|
|
|
1895
1892
|
NameContains?: string;
|
|
1896
1893
|
CreationTimeAfter?: Date;
|
|
1897
1894
|
CreationTimeBefore?: Date;
|
|
1898
|
-
SortOrder?: ResourceCatalogSortOrder
|
|
1899
|
-
SortBy?: ResourceCatalogSortBy
|
|
1895
|
+
SortOrder?: ResourceCatalogSortOrder;
|
|
1896
|
+
SortBy?: ResourceCatalogSortBy;
|
|
1900
1897
|
MaxResults?: number;
|
|
1901
1898
|
NextToken?: string;
|
|
1902
1899
|
}
|
|
@@ -1918,15 +1915,15 @@ export type SpaceSortKey = (typeof SpaceSortKey)[keyof typeof SpaceSortKey];
|
|
|
1918
1915
|
export interface ListSpacesRequest {
|
|
1919
1916
|
NextToken?: string;
|
|
1920
1917
|
MaxResults?: number;
|
|
1921
|
-
SortOrder?: SortOrder
|
|
1922
|
-
SortBy?: SpaceSortKey
|
|
1918
|
+
SortOrder?: SortOrder;
|
|
1919
|
+
SortBy?: SpaceSortKey;
|
|
1923
1920
|
DomainIdEquals?: string;
|
|
1924
1921
|
SpaceNameContains?: string;
|
|
1925
1922
|
}
|
|
1926
1923
|
export interface SpaceDetails {
|
|
1927
1924
|
DomainId?: string;
|
|
1928
1925
|
SpaceName?: string;
|
|
1929
|
-
Status?: SpaceStatus
|
|
1926
|
+
Status?: SpaceStatus;
|
|
1930
1927
|
CreationTime?: Date;
|
|
1931
1928
|
LastModifiedTime?: Date;
|
|
1932
1929
|
}
|
|
@@ -1956,20 +1953,20 @@ export interface ListStudioLifecycleConfigsRequest {
|
|
|
1956
1953
|
MaxResults?: number;
|
|
1957
1954
|
NextToken?: string;
|
|
1958
1955
|
NameContains?: string;
|
|
1959
|
-
AppTypeEquals?: StudioLifecycleConfigAppType
|
|
1956
|
+
AppTypeEquals?: StudioLifecycleConfigAppType;
|
|
1960
1957
|
CreationTimeBefore?: Date;
|
|
1961
1958
|
CreationTimeAfter?: Date;
|
|
1962
1959
|
ModifiedTimeBefore?: Date;
|
|
1963
1960
|
ModifiedTimeAfter?: Date;
|
|
1964
|
-
SortBy?: StudioLifecycleConfigSortKey
|
|
1965
|
-
SortOrder?: SortOrder
|
|
1961
|
+
SortBy?: StudioLifecycleConfigSortKey;
|
|
1962
|
+
SortOrder?: SortOrder;
|
|
1966
1963
|
}
|
|
1967
1964
|
export interface StudioLifecycleConfigDetails {
|
|
1968
1965
|
StudioLifecycleConfigArn?: string;
|
|
1969
1966
|
StudioLifecycleConfigName?: string;
|
|
1970
1967
|
CreationTime?: Date;
|
|
1971
1968
|
LastModifiedTime?: Date;
|
|
1972
|
-
StudioLifecycleConfigAppType?: StudioLifecycleConfigAppType
|
|
1969
|
+
StudioLifecycleConfigAppType?: StudioLifecycleConfigAppType;
|
|
1973
1970
|
}
|
|
1974
1971
|
export interface ListStudioLifecycleConfigsResponse {
|
|
1975
1972
|
NextToken?: string;
|
|
@@ -2001,10 +1998,10 @@ export interface ListTrainingJobsRequest {
|
|
|
2001
1998
|
LastModifiedTimeAfter?: Date;
|
|
2002
1999
|
LastModifiedTimeBefore?: Date;
|
|
2003
2000
|
NameContains?: string;
|
|
2004
|
-
StatusEquals?: TrainingJobStatus
|
|
2005
|
-
SortBy?: SortBy
|
|
2006
|
-
SortOrder?: SortOrder
|
|
2007
|
-
WarmPoolStatusEquals?: WarmPoolResourceStatus
|
|
2001
|
+
StatusEquals?: TrainingJobStatus;
|
|
2002
|
+
SortBy?: SortBy;
|
|
2003
|
+
SortOrder?: SortOrder;
|
|
2004
|
+
WarmPoolStatusEquals?: WarmPoolResourceStatus;
|
|
2008
2005
|
}
|
|
2009
2006
|
export interface TrainingJobSummary {
|
|
2010
2007
|
TrainingJobName: string | undefined;
|
|
@@ -2012,7 +2009,7 @@ export interface TrainingJobSummary {
|
|
|
2012
2009
|
CreationTime: Date | undefined;
|
|
2013
2010
|
TrainingEndTime?: Date;
|
|
2014
2011
|
LastModifiedTime?: Date;
|
|
2015
|
-
TrainingJobStatus: TrainingJobStatus |
|
|
2012
|
+
TrainingJobStatus: TrainingJobStatus | undefined;
|
|
2016
2013
|
WarmPoolStatus?: WarmPoolStatus;
|
|
2017
2014
|
}
|
|
2018
2015
|
export interface ListTrainingJobsResponse {
|
|
@@ -2031,9 +2028,9 @@ export interface ListTrainingJobsForHyperParameterTuningJobRequest {
|
|
|
2031
2028
|
HyperParameterTuningJobName: string | undefined;
|
|
2032
2029
|
NextToken?: string;
|
|
2033
2030
|
MaxResults?: number;
|
|
2034
|
-
StatusEquals?: TrainingJobStatus
|
|
2035
|
-
SortBy?: TrainingJobSortByOptions
|
|
2036
|
-
SortOrder?: SortOrder
|
|
2031
|
+
StatusEquals?: TrainingJobStatus;
|
|
2032
|
+
SortBy?: TrainingJobSortByOptions;
|
|
2033
|
+
SortOrder?: SortOrder;
|
|
2037
2034
|
}
|
|
2038
2035
|
export interface ListTrainingJobsForHyperParameterTuningJobResponse {
|
|
2039
2036
|
TrainingJobSummaries: HyperParameterTrainingJobSummary[] | undefined;
|
|
@@ -2045,9 +2042,9 @@ export interface ListTransformJobsRequest {
|
|
|
2045
2042
|
LastModifiedTimeAfter?: Date;
|
|
2046
2043
|
LastModifiedTimeBefore?: Date;
|
|
2047
2044
|
NameContains?: string;
|
|
2048
|
-
StatusEquals?: TransformJobStatus
|
|
2049
|
-
SortBy?: SortBy
|
|
2050
|
-
SortOrder?: SortOrder
|
|
2045
|
+
StatusEquals?: TransformJobStatus;
|
|
2046
|
+
SortBy?: SortBy;
|
|
2047
|
+
SortOrder?: SortOrder;
|
|
2051
2048
|
NextToken?: string;
|
|
2052
2049
|
MaxResults?: number;
|
|
2053
2050
|
}
|
|
@@ -2057,7 +2054,7 @@ export interface TransformJobSummary {
|
|
|
2057
2054
|
CreationTime: Date | undefined;
|
|
2058
2055
|
TransformEndTime?: Date;
|
|
2059
2056
|
LastModifiedTime?: Date;
|
|
2060
|
-
TransformJobStatus: TransformJobStatus |
|
|
2057
|
+
TransformJobStatus: TransformJobStatus | undefined;
|
|
2061
2058
|
FailureReason?: string;
|
|
2062
2059
|
}
|
|
2063
2060
|
export interface ListTransformJobsResponse {
|
|
@@ -2076,8 +2073,8 @@ export interface ListTrialComponentsRequest {
|
|
|
2076
2073
|
SourceArn?: string;
|
|
2077
2074
|
CreatedAfter?: Date;
|
|
2078
2075
|
CreatedBefore?: Date;
|
|
2079
|
-
SortBy?: SortTrialComponentsBy
|
|
2080
|
-
SortOrder?: SortOrder
|
|
2076
|
+
SortBy?: SortTrialComponentsBy;
|
|
2077
|
+
SortOrder?: SortOrder;
|
|
2081
2078
|
MaxResults?: number;
|
|
2082
2079
|
NextToken?: string;
|
|
2083
2080
|
}
|
|
@@ -2108,8 +2105,8 @@ export interface ListTrialsRequest {
|
|
|
2108
2105
|
TrialComponentName?: string;
|
|
2109
2106
|
CreatedAfter?: Date;
|
|
2110
2107
|
CreatedBefore?: Date;
|
|
2111
|
-
SortBy?: SortTrialsBy
|
|
2112
|
-
SortOrder?: SortOrder
|
|
2108
|
+
SortBy?: SortTrialsBy;
|
|
2109
|
+
SortOrder?: SortOrder;
|
|
2113
2110
|
MaxResults?: number;
|
|
2114
2111
|
NextToken?: string;
|
|
2115
2112
|
}
|
|
@@ -2134,15 +2131,15 @@ export type UserProfileSortKey =
|
|
|
2134
2131
|
export interface ListUserProfilesRequest {
|
|
2135
2132
|
NextToken?: string;
|
|
2136
2133
|
MaxResults?: number;
|
|
2137
|
-
SortOrder?: SortOrder
|
|
2138
|
-
SortBy?: UserProfileSortKey
|
|
2134
|
+
SortOrder?: SortOrder;
|
|
2135
|
+
SortBy?: UserProfileSortKey;
|
|
2139
2136
|
DomainIdEquals?: string;
|
|
2140
2137
|
UserProfileNameContains?: string;
|
|
2141
2138
|
}
|
|
2142
2139
|
export interface UserProfileDetails {
|
|
2143
2140
|
DomainId?: string;
|
|
2144
2141
|
UserProfileName?: string;
|
|
2145
|
-
Status?: UserProfileStatus
|
|
2142
|
+
Status?: UserProfileStatus;
|
|
2146
2143
|
CreationTime?: Date;
|
|
2147
2144
|
LastModifiedTime?: Date;
|
|
2148
2145
|
}
|
|
@@ -2157,8 +2154,8 @@ export declare const ListWorkforcesSortByOptions: {
|
|
|
2157
2154
|
export type ListWorkforcesSortByOptions =
|
|
2158
2155
|
(typeof ListWorkforcesSortByOptions)[keyof typeof ListWorkforcesSortByOptions];
|
|
2159
2156
|
export interface ListWorkforcesRequest {
|
|
2160
|
-
SortBy?: ListWorkforcesSortByOptions
|
|
2161
|
-
SortOrder?: SortOrder
|
|
2157
|
+
SortBy?: ListWorkforcesSortByOptions;
|
|
2158
|
+
SortOrder?: SortOrder;
|
|
2162
2159
|
NameContains?: string;
|
|
2163
2160
|
NextToken?: string;
|
|
2164
2161
|
MaxResults?: number;
|
|
@@ -2174,8 +2171,8 @@ export declare const ListWorkteamsSortByOptions: {
|
|
|
2174
2171
|
export type ListWorkteamsSortByOptions =
|
|
2175
2172
|
(typeof ListWorkteamsSortByOptions)[keyof typeof ListWorkteamsSortByOptions];
|
|
2176
2173
|
export interface ListWorkteamsRequest {
|
|
2177
|
-
SortBy?: ListWorkteamsSortByOptions
|
|
2178
|
-
SortOrder?: SortOrder
|
|
2174
|
+
SortBy?: ListWorkteamsSortByOptions;
|
|
2175
|
+
SortOrder?: SortOrder;
|
|
2179
2176
|
NameContains?: string;
|
|
2180
2177
|
NextToken?: string;
|
|
2181
2178
|
MaxResults?: number;
|
|
@@ -2202,7 +2199,7 @@ export interface ModelCard {
|
|
|
2202
2199
|
ModelCardName?: string;
|
|
2203
2200
|
ModelCardVersion?: number;
|
|
2204
2201
|
Content?: string;
|
|
2205
|
-
ModelCardStatus?: ModelCardStatus
|
|
2202
|
+
ModelCardStatus?: ModelCardStatus;
|
|
2206
2203
|
SecurityConfig?: ModelCardSecurityConfig;
|
|
2207
2204
|
CreationTime?: Date;
|
|
2208
2205
|
CreatedBy?: UserContext;
|
|
@@ -2218,18 +2215,18 @@ export interface ModelDashboardEndpoint {
|
|
|
2218
2215
|
EndpointArn: string | undefined;
|
|
2219
2216
|
CreationTime: Date | undefined;
|
|
2220
2217
|
LastModifiedTime: Date | undefined;
|
|
2221
|
-
EndpointStatus: EndpointStatus |
|
|
2218
|
+
EndpointStatus: EndpointStatus | undefined;
|
|
2222
2219
|
}
|
|
2223
2220
|
export interface TransformJob {
|
|
2224
2221
|
TransformJobName?: string;
|
|
2225
2222
|
TransformJobArn?: string;
|
|
2226
|
-
TransformJobStatus?: TransformJobStatus
|
|
2223
|
+
TransformJobStatus?: TransformJobStatus;
|
|
2227
2224
|
FailureReason?: string;
|
|
2228
2225
|
ModelName?: string;
|
|
2229
2226
|
MaxConcurrentTransforms?: number;
|
|
2230
2227
|
ModelClientConfig?: ModelClientConfig;
|
|
2231
2228
|
MaxPayloadInMB?: number;
|
|
2232
|
-
BatchStrategy?: BatchStrategy
|
|
2229
|
+
BatchStrategy?: BatchStrategy;
|
|
2233
2230
|
Environment?: Record<string, string>;
|
|
2234
2231
|
TransformInput?: TransformInput;
|
|
2235
2232
|
TransformOutput?: TransformOutput;
|