@aws-sdk/client-sagemaker 3.687.0 → 3.692.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/index.js +12 -1
- package/dist-es/models/models_0.js +4 -0
- package/dist-es/models/models_1.js +7 -0
- package/dist-types/commands/BatchDescribeModelPackageCommand.d.ts +1 -1
- package/dist-types/commands/CreateAlgorithmCommand.d.ts +2 -2
- package/dist-types/commands/CreateInferenceExperimentCommand.d.ts +1 -1
- package/dist-types/commands/CreateModelPackageCommand.d.ts +3 -3
- package/dist-types/commands/CreateNotebookInstanceCommand.d.ts +1 -1
- package/dist-types/commands/CreateTransformJobCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAlgorithmCommand.d.ts +2 -2
- package/dist-types/commands/DescribeInferenceExperimentCommand.d.ts +1 -1
- package/dist-types/commands/DescribeModelPackageCommand.d.ts +3 -3
- package/dist-types/commands/DescribeNotebookInstanceCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTransformJobCommand.d.ts +1 -1
- package/dist-types/commands/ListNotebookInstancesCommand.d.ts +1 -1
- package/dist-types/commands/SearchCommand.d.ts +4 -4
- package/dist-types/commands/StopInferenceExperimentCommand.d.ts +1 -1
- package/dist-types/commands/UpdateInferenceExperimentCommand.d.ts +1 -1
- package/dist-types/commands/UpdateModelPackageCommand.d.ts +2 -2
- package/dist-types/commands/UpdateNotebookInstanceCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +432 -428
- package/dist-types/models/models_1.d.ts +586 -579
- package/dist-types/models/models_2.d.ts +583 -583
- package/dist-types/models/models_3.d.ts +944 -944
- package/dist-types/models/models_4.d.ts +950 -950
- package/dist-types/models/models_5.d.ts +20 -20
- package/dist-types/ts3.4/models/models_0.d.ts +452 -433
- package/dist-types/ts3.4/models/models_1.d.ts +596 -579
- package/dist-types/ts3.4/models/models_2.d.ts +591 -583
- package/dist-types/ts3.4/models/models_3.d.ts +956 -944
- package/dist-types/ts3.4/models/models_4.d.ts +964 -950
- package/dist-types/ts3.4/models/models_5.d.ts +20 -20
- package/package.json +36 -36
|
@@ -188,33 +188,33 @@ import {
|
|
|
188
188
|
} from "./models_2";
|
|
189
189
|
export interface DescribeInferenceRecommendationsJobResponse {
|
|
190
190
|
JobName: string | undefined;
|
|
191
|
-
JobDescription?: string;
|
|
191
|
+
JobDescription?: string | undefined;
|
|
192
192
|
JobType: RecommendationJobType | undefined;
|
|
193
193
|
JobArn: string | undefined;
|
|
194
194
|
RoleArn: string | undefined;
|
|
195
195
|
Status: RecommendationJobStatus | undefined;
|
|
196
196
|
CreationTime: Date | undefined;
|
|
197
|
-
CompletionTime?: Date;
|
|
197
|
+
CompletionTime?: Date | undefined;
|
|
198
198
|
LastModifiedTime: Date | undefined;
|
|
199
|
-
FailureReason?: string;
|
|
199
|
+
FailureReason?: string | undefined;
|
|
200
200
|
InputConfig: RecommendationJobInputConfig | undefined;
|
|
201
|
-
StoppingConditions?: RecommendationJobStoppingConditions;
|
|
202
|
-
InferenceRecommendations?: InferenceRecommendation[];
|
|
203
|
-
EndpointPerformances?: EndpointPerformance[];
|
|
201
|
+
StoppingConditions?: RecommendationJobStoppingConditions | undefined;
|
|
202
|
+
InferenceRecommendations?: InferenceRecommendation[] | undefined;
|
|
203
|
+
EndpointPerformances?: EndpointPerformance[] | undefined;
|
|
204
204
|
}
|
|
205
205
|
export interface DescribeLabelingJobRequest {
|
|
206
206
|
LabelingJobName: string | undefined;
|
|
207
207
|
}
|
|
208
208
|
export interface LabelCounters {
|
|
209
|
-
TotalLabeled?: number;
|
|
210
|
-
HumanLabeled?: number;
|
|
211
|
-
MachineLabeled?: number;
|
|
212
|
-
FailedNonRetryableError?: number;
|
|
213
|
-
Unlabeled?: number;
|
|
209
|
+
TotalLabeled?: number | undefined;
|
|
210
|
+
HumanLabeled?: number | undefined;
|
|
211
|
+
MachineLabeled?: number | undefined;
|
|
212
|
+
FailedNonRetryableError?: number | undefined;
|
|
213
|
+
Unlabeled?: number | undefined;
|
|
214
214
|
}
|
|
215
215
|
export interface LabelingJobOutput {
|
|
216
216
|
OutputDatasetS3Uri: string | undefined;
|
|
217
|
-
FinalActiveLearningModelArn?: string;
|
|
217
|
+
FinalActiveLearningModelArn?: string | undefined;
|
|
218
218
|
}
|
|
219
219
|
export declare const LabelingJobStatus: {
|
|
220
220
|
readonly COMPLETED: "Completed";
|
|
@@ -229,35 +229,35 @@ export type LabelingJobStatus =
|
|
|
229
229
|
export interface DescribeLabelingJobResponse {
|
|
230
230
|
LabelingJobStatus: LabelingJobStatus | undefined;
|
|
231
231
|
LabelCounters: LabelCounters | undefined;
|
|
232
|
-
FailureReason?: string;
|
|
232
|
+
FailureReason?: string | undefined;
|
|
233
233
|
CreationTime: Date | undefined;
|
|
234
234
|
LastModifiedTime: Date | undefined;
|
|
235
235
|
JobReferenceCode: string | undefined;
|
|
236
236
|
LabelingJobName: string | undefined;
|
|
237
237
|
LabelingJobArn: string | undefined;
|
|
238
|
-
LabelAttributeName?: string;
|
|
238
|
+
LabelAttributeName?: string | undefined;
|
|
239
239
|
InputConfig: LabelingJobInputConfig | undefined;
|
|
240
240
|
OutputConfig: LabelingJobOutputConfig | undefined;
|
|
241
241
|
RoleArn: string | undefined;
|
|
242
|
-
LabelCategoryConfigS3Uri?: string;
|
|
243
|
-
StoppingConditions?: LabelingJobStoppingConditions;
|
|
244
|
-
LabelingJobAlgorithmsConfig?: LabelingJobAlgorithmsConfig;
|
|
242
|
+
LabelCategoryConfigS3Uri?: string | undefined;
|
|
243
|
+
StoppingConditions?: LabelingJobStoppingConditions | undefined;
|
|
244
|
+
LabelingJobAlgorithmsConfig?: LabelingJobAlgorithmsConfig | undefined;
|
|
245
245
|
HumanTaskConfig: HumanTaskConfig | undefined;
|
|
246
|
-
Tags?: Tag[];
|
|
247
|
-
LabelingJobOutput?: LabelingJobOutput;
|
|
246
|
+
Tags?: Tag[] | undefined;
|
|
247
|
+
LabelingJobOutput?: LabelingJobOutput | undefined;
|
|
248
248
|
}
|
|
249
249
|
export interface DescribeLineageGroupRequest {
|
|
250
250
|
LineageGroupName: string | undefined;
|
|
251
251
|
}
|
|
252
252
|
export interface DescribeLineageGroupResponse {
|
|
253
|
-
LineageGroupName?: string;
|
|
254
|
-
LineageGroupArn?: string;
|
|
255
|
-
DisplayName?: string;
|
|
256
|
-
Description?: string;
|
|
257
|
-
CreationTime?: Date;
|
|
258
|
-
CreatedBy?: UserContext;
|
|
259
|
-
LastModifiedTime?: Date;
|
|
260
|
-
LastModifiedBy?: UserContext;
|
|
253
|
+
LineageGroupName?: string | undefined;
|
|
254
|
+
LineageGroupArn?: string | undefined;
|
|
255
|
+
DisplayName?: string | undefined;
|
|
256
|
+
Description?: string | undefined;
|
|
257
|
+
CreationTime?: Date | undefined;
|
|
258
|
+
CreatedBy?: UserContext | undefined;
|
|
259
|
+
LastModifiedTime?: Date | undefined;
|
|
260
|
+
LastModifiedBy?: UserContext | undefined;
|
|
261
261
|
}
|
|
262
262
|
export interface DescribeMlflowTrackingServerRequest {
|
|
263
263
|
TrackingServerName: string | undefined;
|
|
@@ -290,36 +290,36 @@ export declare const TrackingServerStatus: {
|
|
|
290
290
|
export type TrackingServerStatus =
|
|
291
291
|
(typeof TrackingServerStatus)[keyof typeof TrackingServerStatus];
|
|
292
292
|
export interface DescribeMlflowTrackingServerResponse {
|
|
293
|
-
TrackingServerArn?: string;
|
|
294
|
-
TrackingServerName?: string;
|
|
295
|
-
ArtifactStoreUri?: string;
|
|
296
|
-
TrackingServerSize?: TrackingServerSize;
|
|
297
|
-
MlflowVersion?: string;
|
|
298
|
-
RoleArn?: string;
|
|
299
|
-
TrackingServerStatus?: TrackingServerStatus;
|
|
300
|
-
IsActive?: IsTrackingServerActive;
|
|
301
|
-
TrackingServerUrl?: string;
|
|
302
|
-
WeeklyMaintenanceWindowStart?: string;
|
|
303
|
-
AutomaticModelRegistration?: boolean;
|
|
304
|
-
CreationTime?: Date;
|
|
305
|
-
CreatedBy?: UserContext;
|
|
306
|
-
LastModifiedTime?: Date;
|
|
307
|
-
LastModifiedBy?: UserContext;
|
|
293
|
+
TrackingServerArn?: string | undefined;
|
|
294
|
+
TrackingServerName?: string | undefined;
|
|
295
|
+
ArtifactStoreUri?: string | undefined;
|
|
296
|
+
TrackingServerSize?: TrackingServerSize | undefined;
|
|
297
|
+
MlflowVersion?: string | undefined;
|
|
298
|
+
RoleArn?: string | undefined;
|
|
299
|
+
TrackingServerStatus?: TrackingServerStatus | undefined;
|
|
300
|
+
IsActive?: IsTrackingServerActive | undefined;
|
|
301
|
+
TrackingServerUrl?: string | undefined;
|
|
302
|
+
WeeklyMaintenanceWindowStart?: string | undefined;
|
|
303
|
+
AutomaticModelRegistration?: boolean | undefined;
|
|
304
|
+
CreationTime?: Date | undefined;
|
|
305
|
+
CreatedBy?: UserContext | undefined;
|
|
306
|
+
LastModifiedTime?: Date | undefined;
|
|
307
|
+
LastModifiedBy?: UserContext | undefined;
|
|
308
308
|
}
|
|
309
309
|
export interface DescribeModelInput {
|
|
310
310
|
ModelName: string | undefined;
|
|
311
311
|
}
|
|
312
312
|
export interface DescribeModelOutput {
|
|
313
313
|
ModelName: string | undefined;
|
|
314
|
-
PrimaryContainer?: ContainerDefinition;
|
|
315
|
-
Containers?: ContainerDefinition[];
|
|
316
|
-
InferenceExecutionConfig?: InferenceExecutionConfig;
|
|
317
|
-
ExecutionRoleArn?: string;
|
|
318
|
-
VpcConfig?: VpcConfig;
|
|
314
|
+
PrimaryContainer?: ContainerDefinition | undefined;
|
|
315
|
+
Containers?: ContainerDefinition[] | undefined;
|
|
316
|
+
InferenceExecutionConfig?: InferenceExecutionConfig | undefined;
|
|
317
|
+
ExecutionRoleArn?: string | undefined;
|
|
318
|
+
VpcConfig?: VpcConfig | undefined;
|
|
319
319
|
CreationTime: Date | undefined;
|
|
320
320
|
ModelArn: string | undefined;
|
|
321
|
-
EnableNetworkIsolation?: boolean;
|
|
322
|
-
DeploymentRecommendation?: DeploymentRecommendation;
|
|
321
|
+
EnableNetworkIsolation?: boolean | undefined;
|
|
322
|
+
DeploymentRecommendation?: DeploymentRecommendation | undefined;
|
|
323
323
|
}
|
|
324
324
|
export interface DescribeModelBiasJobDefinitionRequest {
|
|
325
325
|
JobDefinitionName: string | undefined;
|
|
@@ -328,18 +328,18 @@ export interface DescribeModelBiasJobDefinitionResponse {
|
|
|
328
328
|
JobDefinitionArn: string | undefined;
|
|
329
329
|
JobDefinitionName: string | undefined;
|
|
330
330
|
CreationTime: Date | undefined;
|
|
331
|
-
ModelBiasBaselineConfig?: ModelBiasBaselineConfig;
|
|
331
|
+
ModelBiasBaselineConfig?: ModelBiasBaselineConfig | undefined;
|
|
332
332
|
ModelBiasAppSpecification: ModelBiasAppSpecification | undefined;
|
|
333
333
|
ModelBiasJobInput: ModelBiasJobInput | undefined;
|
|
334
334
|
ModelBiasJobOutputConfig: MonitoringOutputConfig | undefined;
|
|
335
335
|
JobResources: MonitoringResources | undefined;
|
|
336
|
-
NetworkConfig?: MonitoringNetworkConfig;
|
|
336
|
+
NetworkConfig?: MonitoringNetworkConfig | undefined;
|
|
337
337
|
RoleArn: string | undefined;
|
|
338
|
-
StoppingCondition?: MonitoringStoppingCondition;
|
|
338
|
+
StoppingCondition?: MonitoringStoppingCondition | undefined;
|
|
339
339
|
}
|
|
340
340
|
export interface DescribeModelCardRequest {
|
|
341
341
|
ModelCardName: string | undefined;
|
|
342
|
-
ModelCardVersion?: number;
|
|
342
|
+
ModelCardVersion?: number | undefined;
|
|
343
343
|
}
|
|
344
344
|
export declare const ModelCardProcessingStatus: {
|
|
345
345
|
readonly CONTENT_DELETED: "ContentDeleted";
|
|
@@ -357,12 +357,12 @@ export interface DescribeModelCardResponse {
|
|
|
357
357
|
ModelCardVersion: number | undefined;
|
|
358
358
|
Content: string | undefined;
|
|
359
359
|
ModelCardStatus: ModelCardStatus | undefined;
|
|
360
|
-
SecurityConfig?: ModelCardSecurityConfig;
|
|
360
|
+
SecurityConfig?: ModelCardSecurityConfig | undefined;
|
|
361
361
|
CreationTime: Date | undefined;
|
|
362
362
|
CreatedBy: UserContext | undefined;
|
|
363
|
-
LastModifiedTime?: Date;
|
|
364
|
-
LastModifiedBy?: UserContext;
|
|
365
|
-
ModelCardProcessingStatus?: ModelCardProcessingStatus;
|
|
363
|
+
LastModifiedTime?: Date | undefined;
|
|
364
|
+
LastModifiedBy?: UserContext | undefined;
|
|
365
|
+
ModelCardProcessingStatus?: ModelCardProcessingStatus | undefined;
|
|
366
366
|
}
|
|
367
367
|
export interface DescribeModelCardExportJobRequest {
|
|
368
368
|
ModelCardExportJobArn: string | undefined;
|
|
@@ -386,8 +386,8 @@ export interface DescribeModelCardExportJobResponse {
|
|
|
386
386
|
OutputConfig: ModelCardExportOutputConfig | undefined;
|
|
387
387
|
CreatedAt: Date | undefined;
|
|
388
388
|
LastModifiedAt: Date | undefined;
|
|
389
|
-
FailureReason?: string;
|
|
390
|
-
ExportArtifacts?: ModelCardExportArtifacts;
|
|
389
|
+
FailureReason?: string | undefined;
|
|
390
|
+
ExportArtifacts?: ModelCardExportArtifacts | undefined;
|
|
391
391
|
}
|
|
392
392
|
export interface DescribeModelExplainabilityJobDefinitionRequest {
|
|
393
393
|
JobDefinitionName: string | undefined;
|
|
@@ -396,16 +396,18 @@ export interface DescribeModelExplainabilityJobDefinitionResponse {
|
|
|
396
396
|
JobDefinitionArn: string | undefined;
|
|
397
397
|
JobDefinitionName: string | undefined;
|
|
398
398
|
CreationTime: Date | undefined;
|
|
399
|
-
ModelExplainabilityBaselineConfig?:
|
|
399
|
+
ModelExplainabilityBaselineConfig?:
|
|
400
|
+
| ModelExplainabilityBaselineConfig
|
|
401
|
+
| undefined;
|
|
400
402
|
ModelExplainabilityAppSpecification:
|
|
401
403
|
| ModelExplainabilityAppSpecification
|
|
402
404
|
| undefined;
|
|
403
405
|
ModelExplainabilityJobInput: ModelExplainabilityJobInput | undefined;
|
|
404
406
|
ModelExplainabilityJobOutputConfig: MonitoringOutputConfig | undefined;
|
|
405
407
|
JobResources: MonitoringResources | undefined;
|
|
406
|
-
NetworkConfig?: MonitoringNetworkConfig;
|
|
408
|
+
NetworkConfig?: MonitoringNetworkConfig | undefined;
|
|
407
409
|
RoleArn: string | undefined;
|
|
408
|
-
StoppingCondition?: MonitoringStoppingCondition;
|
|
410
|
+
StoppingCondition?: MonitoringStoppingCondition | undefined;
|
|
409
411
|
}
|
|
410
412
|
export interface DescribeModelPackageInput {
|
|
411
413
|
ModelPackageName: string | undefined;
|
|
@@ -421,43 +423,45 @@ export type DetailedModelPackageStatus =
|
|
|
421
423
|
export interface ModelPackageStatusItem {
|
|
422
424
|
Name: string | undefined;
|
|
423
425
|
Status: DetailedModelPackageStatus | undefined;
|
|
424
|
-
FailureReason?: string;
|
|
426
|
+
FailureReason?: string | undefined;
|
|
425
427
|
}
|
|
426
428
|
export interface ModelPackageStatusDetails {
|
|
427
429
|
ValidationStatuses: ModelPackageStatusItem[] | undefined;
|
|
428
|
-
ImageScanStatuses?: ModelPackageStatusItem[];
|
|
430
|
+
ImageScanStatuses?: ModelPackageStatusItem[] | undefined;
|
|
429
431
|
}
|
|
430
432
|
export interface DescribeModelPackageOutput {
|
|
431
433
|
ModelPackageName: string | undefined;
|
|
432
|
-
ModelPackageGroupName?: string;
|
|
433
|
-
ModelPackageVersion?: number;
|
|
434
|
+
ModelPackageGroupName?: string | undefined;
|
|
435
|
+
ModelPackageVersion?: number | undefined;
|
|
434
436
|
ModelPackageArn: string | undefined;
|
|
435
|
-
ModelPackageDescription?: string;
|
|
437
|
+
ModelPackageDescription?: string | undefined;
|
|
436
438
|
CreationTime: Date | undefined;
|
|
437
|
-
InferenceSpecification?: InferenceSpecification;
|
|
438
|
-
SourceAlgorithmSpecification?: SourceAlgorithmSpecification;
|
|
439
|
-
ValidationSpecification?: ModelPackageValidationSpecification;
|
|
439
|
+
InferenceSpecification?: InferenceSpecification | undefined;
|
|
440
|
+
SourceAlgorithmSpecification?: SourceAlgorithmSpecification | undefined;
|
|
441
|
+
ValidationSpecification?: ModelPackageValidationSpecification | undefined;
|
|
440
442
|
ModelPackageStatus: ModelPackageStatus | undefined;
|
|
441
443
|
ModelPackageStatusDetails: ModelPackageStatusDetails | undefined;
|
|
442
|
-
CertifyForMarketplace?: boolean;
|
|
443
|
-
ModelApprovalStatus?: ModelApprovalStatus;
|
|
444
|
-
CreatedBy?: UserContext;
|
|
445
|
-
MetadataProperties?: MetadataProperties;
|
|
446
|
-
ModelMetrics?: ModelMetrics;
|
|
447
|
-
LastModifiedTime?: Date;
|
|
448
|
-
LastModifiedBy?: UserContext;
|
|
449
|
-
ApprovalDescription?: string;
|
|
450
|
-
Domain?: string;
|
|
451
|
-
Task?: string;
|
|
452
|
-
SamplePayloadUrl?: string;
|
|
453
|
-
CustomerMetadataProperties?: Record<string, string
|
|
454
|
-
DriftCheckBaselines?: DriftCheckBaselines;
|
|
455
|
-
AdditionalInferenceSpecifications?:
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
444
|
+
CertifyForMarketplace?: boolean | undefined;
|
|
445
|
+
ModelApprovalStatus?: ModelApprovalStatus | undefined;
|
|
446
|
+
CreatedBy?: UserContext | undefined;
|
|
447
|
+
MetadataProperties?: MetadataProperties | undefined;
|
|
448
|
+
ModelMetrics?: ModelMetrics | undefined;
|
|
449
|
+
LastModifiedTime?: Date | undefined;
|
|
450
|
+
LastModifiedBy?: UserContext | undefined;
|
|
451
|
+
ApprovalDescription?: string | undefined;
|
|
452
|
+
Domain?: string | undefined;
|
|
453
|
+
Task?: string | undefined;
|
|
454
|
+
SamplePayloadUrl?: string | undefined;
|
|
455
|
+
CustomerMetadataProperties?: Record<string, string> | undefined;
|
|
456
|
+
DriftCheckBaselines?: DriftCheckBaselines | undefined;
|
|
457
|
+
AdditionalInferenceSpecifications?:
|
|
458
|
+
| AdditionalInferenceSpecificationDefinition[]
|
|
459
|
+
| undefined;
|
|
460
|
+
SkipModelValidation?: SkipModelValidation | undefined;
|
|
461
|
+
SourceUri?: string | undefined;
|
|
462
|
+
SecurityConfig?: ModelPackageSecurityConfig | undefined;
|
|
463
|
+
ModelCard?: ModelPackageModelCard | undefined;
|
|
464
|
+
ModelLifeCycle?: ModelLifeCycle | undefined;
|
|
461
465
|
}
|
|
462
466
|
export interface DescribeModelPackageGroupInput {
|
|
463
467
|
ModelPackageGroupName: string | undefined;
|
|
@@ -475,7 +479,7 @@ export type ModelPackageGroupStatus =
|
|
|
475
479
|
export interface DescribeModelPackageGroupOutput {
|
|
476
480
|
ModelPackageGroupName: string | undefined;
|
|
477
481
|
ModelPackageGroupArn: string | undefined;
|
|
478
|
-
ModelPackageGroupDescription?: string;
|
|
482
|
+
ModelPackageGroupDescription?: string | undefined;
|
|
479
483
|
CreationTime: Date | undefined;
|
|
480
484
|
CreatedBy: UserContext | undefined;
|
|
481
485
|
ModelPackageGroupStatus: ModelPackageGroupStatus | undefined;
|
|
@@ -487,14 +491,14 @@ export interface DescribeModelQualityJobDefinitionResponse {
|
|
|
487
491
|
JobDefinitionArn: string | undefined;
|
|
488
492
|
JobDefinitionName: string | undefined;
|
|
489
493
|
CreationTime: Date | undefined;
|
|
490
|
-
ModelQualityBaselineConfig?: ModelQualityBaselineConfig;
|
|
494
|
+
ModelQualityBaselineConfig?: ModelQualityBaselineConfig | undefined;
|
|
491
495
|
ModelQualityAppSpecification: ModelQualityAppSpecification | undefined;
|
|
492
496
|
ModelQualityJobInput: ModelQualityJobInput | undefined;
|
|
493
497
|
ModelQualityJobOutputConfig: MonitoringOutputConfig | undefined;
|
|
494
498
|
JobResources: MonitoringResources | undefined;
|
|
495
|
-
NetworkConfig?: MonitoringNetworkConfig;
|
|
499
|
+
NetworkConfig?: MonitoringNetworkConfig | undefined;
|
|
496
500
|
RoleArn: string | undefined;
|
|
497
|
-
StoppingCondition?: MonitoringStoppingCondition;
|
|
501
|
+
StoppingCondition?: MonitoringStoppingCondition | undefined;
|
|
498
502
|
}
|
|
499
503
|
export interface DescribeMonitoringScheduleRequest {
|
|
500
504
|
MonitoringScheduleName: string | undefined;
|
|
@@ -516,11 +520,11 @@ export interface MonitoringExecutionSummary {
|
|
|
516
520
|
CreationTime: Date | undefined;
|
|
517
521
|
LastModifiedTime: Date | undefined;
|
|
518
522
|
MonitoringExecutionStatus: ExecutionStatus | undefined;
|
|
519
|
-
ProcessingJobArn?: string;
|
|
520
|
-
EndpointName?: string;
|
|
521
|
-
FailureReason?: string;
|
|
522
|
-
MonitoringJobDefinitionName?: string;
|
|
523
|
-
MonitoringType?: MonitoringType;
|
|
523
|
+
ProcessingJobArn?: string | undefined;
|
|
524
|
+
EndpointName?: string | undefined;
|
|
525
|
+
FailureReason?: string | undefined;
|
|
526
|
+
MonitoringJobDefinitionName?: string | undefined;
|
|
527
|
+
MonitoringType?: MonitoringType | undefined;
|
|
524
528
|
}
|
|
525
529
|
export declare const ScheduleStatus: {
|
|
526
530
|
readonly FAILED: "Failed";
|
|
@@ -534,13 +538,13 @@ export interface DescribeMonitoringScheduleResponse {
|
|
|
534
538
|
MonitoringScheduleArn: string | undefined;
|
|
535
539
|
MonitoringScheduleName: string | undefined;
|
|
536
540
|
MonitoringScheduleStatus: ScheduleStatus | undefined;
|
|
537
|
-
MonitoringType?: MonitoringType;
|
|
538
|
-
FailureReason?: string;
|
|
541
|
+
MonitoringType?: MonitoringType | undefined;
|
|
542
|
+
FailureReason?: string | undefined;
|
|
539
543
|
CreationTime: Date | undefined;
|
|
540
544
|
LastModifiedTime: Date | undefined;
|
|
541
545
|
MonitoringScheduleConfig: MonitoringScheduleConfig | undefined;
|
|
542
|
-
EndpointName?: string;
|
|
543
|
-
LastMonitoringExecutionSummary?: MonitoringExecutionSummary;
|
|
546
|
+
EndpointName?: string | undefined;
|
|
547
|
+
LastMonitoringExecutionSummary?: MonitoringExecutionSummary | undefined;
|
|
544
548
|
}
|
|
545
549
|
export interface DescribeNotebookInstanceInput {
|
|
546
550
|
NotebookInstanceName: string | undefined;
|
|
@@ -557,39 +561,41 @@ export declare const NotebookInstanceStatus: {
|
|
|
557
561
|
export type NotebookInstanceStatus =
|
|
558
562
|
(typeof NotebookInstanceStatus)[keyof typeof NotebookInstanceStatus];
|
|
559
563
|
export interface DescribeNotebookInstanceOutput {
|
|
560
|
-
NotebookInstanceArn?: string;
|
|
561
|
-
NotebookInstanceName?: string;
|
|
562
|
-
NotebookInstanceStatus?: NotebookInstanceStatus;
|
|
563
|
-
FailureReason?: string;
|
|
564
|
-
Url?: string;
|
|
565
|
-
InstanceType?: _InstanceType;
|
|
566
|
-
SubnetId?: string;
|
|
567
|
-
SecurityGroups?: string[];
|
|
568
|
-
RoleArn?: string;
|
|
569
|
-
KmsKeyId?: string;
|
|
570
|
-
NetworkInterfaceId?: string;
|
|
571
|
-
LastModifiedTime?: Date;
|
|
572
|
-
CreationTime?: Date;
|
|
573
|
-
NotebookInstanceLifecycleConfigName?: string;
|
|
574
|
-
DirectInternetAccess?: DirectInternetAccess;
|
|
575
|
-
VolumeSizeInGB?: number;
|
|
576
|
-
AcceleratorTypes?: NotebookInstanceAcceleratorType[];
|
|
577
|
-
DefaultCodeRepository?: string;
|
|
578
|
-
AdditionalCodeRepositories?: string[];
|
|
579
|
-
RootAccess?: RootAccess;
|
|
580
|
-
PlatformIdentifier?: string;
|
|
581
|
-
InstanceMetadataServiceConfiguration?:
|
|
564
|
+
NotebookInstanceArn?: string | undefined;
|
|
565
|
+
NotebookInstanceName?: string | undefined;
|
|
566
|
+
NotebookInstanceStatus?: NotebookInstanceStatus | undefined;
|
|
567
|
+
FailureReason?: string | undefined;
|
|
568
|
+
Url?: string | undefined;
|
|
569
|
+
InstanceType?: _InstanceType | undefined;
|
|
570
|
+
SubnetId?: string | undefined;
|
|
571
|
+
SecurityGroups?: string[] | undefined;
|
|
572
|
+
RoleArn?: string | undefined;
|
|
573
|
+
KmsKeyId?: string | undefined;
|
|
574
|
+
NetworkInterfaceId?: string | undefined;
|
|
575
|
+
LastModifiedTime?: Date | undefined;
|
|
576
|
+
CreationTime?: Date | undefined;
|
|
577
|
+
NotebookInstanceLifecycleConfigName?: string | undefined;
|
|
578
|
+
DirectInternetAccess?: DirectInternetAccess | undefined;
|
|
579
|
+
VolumeSizeInGB?: number | undefined;
|
|
580
|
+
AcceleratorTypes?: NotebookInstanceAcceleratorType[] | undefined;
|
|
581
|
+
DefaultCodeRepository?: string | undefined;
|
|
582
|
+
AdditionalCodeRepositories?: string[] | undefined;
|
|
583
|
+
RootAccess?: RootAccess | undefined;
|
|
584
|
+
PlatformIdentifier?: string | undefined;
|
|
585
|
+
InstanceMetadataServiceConfiguration?:
|
|
586
|
+
| InstanceMetadataServiceConfiguration
|
|
587
|
+
| undefined;
|
|
582
588
|
}
|
|
583
589
|
export interface DescribeNotebookInstanceLifecycleConfigInput {
|
|
584
590
|
NotebookInstanceLifecycleConfigName: string | undefined;
|
|
585
591
|
}
|
|
586
592
|
export interface DescribeNotebookInstanceLifecycleConfigOutput {
|
|
587
|
-
NotebookInstanceLifecycleConfigArn?: string;
|
|
588
|
-
NotebookInstanceLifecycleConfigName?: string;
|
|
589
|
-
OnCreate?: NotebookInstanceLifecycleHook[];
|
|
590
|
-
OnStart?: NotebookInstanceLifecycleHook[];
|
|
591
|
-
LastModifiedTime?: Date;
|
|
592
|
-
CreationTime?: Date;
|
|
593
|
+
NotebookInstanceLifecycleConfigArn?: string | undefined;
|
|
594
|
+
NotebookInstanceLifecycleConfigName?: string | undefined;
|
|
595
|
+
OnCreate?: NotebookInstanceLifecycleHook[] | undefined;
|
|
596
|
+
OnStart?: NotebookInstanceLifecycleHook[] | undefined;
|
|
597
|
+
LastModifiedTime?: Date | undefined;
|
|
598
|
+
CreationTime?: Date | undefined;
|
|
593
599
|
}
|
|
594
600
|
export interface DescribeOptimizationJobRequest {
|
|
595
601
|
OptimizationJobName: string | undefined;
|
|
@@ -605,26 +611,26 @@ export declare const OptimizationJobStatus: {
|
|
|
605
611
|
export type OptimizationJobStatus =
|
|
606
612
|
(typeof OptimizationJobStatus)[keyof typeof OptimizationJobStatus];
|
|
607
613
|
export interface OptimizationOutput {
|
|
608
|
-
RecommendedInferenceImage?: string;
|
|
614
|
+
RecommendedInferenceImage?: string | undefined;
|
|
609
615
|
}
|
|
610
616
|
export interface DescribeOptimizationJobResponse {
|
|
611
617
|
OptimizationJobArn: string | undefined;
|
|
612
618
|
OptimizationJobStatus: OptimizationJobStatus | undefined;
|
|
613
|
-
OptimizationStartTime?: Date;
|
|
614
|
-
OptimizationEndTime?: Date;
|
|
619
|
+
OptimizationStartTime?: Date | undefined;
|
|
620
|
+
OptimizationEndTime?: Date | undefined;
|
|
615
621
|
CreationTime: Date | undefined;
|
|
616
622
|
LastModifiedTime: Date | undefined;
|
|
617
|
-
FailureReason?: string;
|
|
623
|
+
FailureReason?: string | undefined;
|
|
618
624
|
OptimizationJobName: string | undefined;
|
|
619
625
|
ModelSource: OptimizationJobModelSource | undefined;
|
|
620
|
-
OptimizationEnvironment?: Record<string, string
|
|
626
|
+
OptimizationEnvironment?: Record<string, string> | undefined;
|
|
621
627
|
DeploymentInstanceType: OptimizationJobDeploymentInstanceType | undefined;
|
|
622
628
|
OptimizationConfigs: OptimizationConfig[] | undefined;
|
|
623
629
|
OutputConfig: OptimizationJobOutputConfig | undefined;
|
|
624
|
-
OptimizationOutput?: OptimizationOutput;
|
|
630
|
+
OptimizationOutput?: OptimizationOutput | undefined;
|
|
625
631
|
RoleArn: string | undefined;
|
|
626
632
|
StoppingCondition: StoppingCondition | undefined;
|
|
627
|
-
VpcConfig?: OptimizationVpcConfig;
|
|
633
|
+
VpcConfig?: OptimizationVpcConfig | undefined;
|
|
628
634
|
}
|
|
629
635
|
export interface DescribePipelineRequest {
|
|
630
636
|
PipelineName: string | undefined;
|
|
@@ -636,26 +642,26 @@ export declare const PipelineStatus: {
|
|
|
636
642
|
export type PipelineStatus =
|
|
637
643
|
(typeof PipelineStatus)[keyof typeof PipelineStatus];
|
|
638
644
|
export interface DescribePipelineResponse {
|
|
639
|
-
PipelineArn?: string;
|
|
640
|
-
PipelineName?: string;
|
|
641
|
-
PipelineDisplayName?: string;
|
|
642
|
-
PipelineDefinition?: string;
|
|
643
|
-
PipelineDescription?: string;
|
|
644
|
-
RoleArn?: string;
|
|
645
|
-
PipelineStatus?: PipelineStatus;
|
|
646
|
-
CreationTime?: Date;
|
|
647
|
-
LastModifiedTime?: Date;
|
|
648
|
-
LastRunTime?: Date;
|
|
649
|
-
CreatedBy?: UserContext;
|
|
650
|
-
LastModifiedBy?: UserContext;
|
|
651
|
-
ParallelismConfiguration?: ParallelismConfiguration;
|
|
645
|
+
PipelineArn?: string | undefined;
|
|
646
|
+
PipelineName?: string | undefined;
|
|
647
|
+
PipelineDisplayName?: string | undefined;
|
|
648
|
+
PipelineDefinition?: string | undefined;
|
|
649
|
+
PipelineDescription?: string | undefined;
|
|
650
|
+
RoleArn?: string | undefined;
|
|
651
|
+
PipelineStatus?: PipelineStatus | undefined;
|
|
652
|
+
CreationTime?: Date | undefined;
|
|
653
|
+
LastModifiedTime?: Date | undefined;
|
|
654
|
+
LastRunTime?: Date | undefined;
|
|
655
|
+
CreatedBy?: UserContext | undefined;
|
|
656
|
+
LastModifiedBy?: UserContext | undefined;
|
|
657
|
+
ParallelismConfiguration?: ParallelismConfiguration | undefined;
|
|
652
658
|
}
|
|
653
659
|
export interface DescribePipelineDefinitionForExecutionRequest {
|
|
654
660
|
PipelineExecutionArn: string | undefined;
|
|
655
661
|
}
|
|
656
662
|
export interface DescribePipelineDefinitionForExecutionResponse {
|
|
657
|
-
PipelineDefinition?: string;
|
|
658
|
-
CreationTime?: Date;
|
|
663
|
+
PipelineDefinition?: string | undefined;
|
|
664
|
+
CreationTime?: Date | undefined;
|
|
659
665
|
}
|
|
660
666
|
export interface DescribePipelineExecutionRequest {
|
|
661
667
|
PipelineExecutionArn: string | undefined;
|
|
@@ -670,30 +676,30 @@ export declare const PipelineExecutionStatus: {
|
|
|
670
676
|
export type PipelineExecutionStatus =
|
|
671
677
|
(typeof PipelineExecutionStatus)[keyof typeof PipelineExecutionStatus];
|
|
672
678
|
export interface PipelineExperimentConfig {
|
|
673
|
-
ExperimentName?: string;
|
|
674
|
-
TrialName?: string;
|
|
679
|
+
ExperimentName?: string | undefined;
|
|
680
|
+
TrialName?: string | undefined;
|
|
675
681
|
}
|
|
676
682
|
export interface SelectedStep {
|
|
677
683
|
StepName: string | undefined;
|
|
678
684
|
}
|
|
679
685
|
export interface SelectiveExecutionConfig {
|
|
680
|
-
SourcePipelineExecutionArn?: string;
|
|
686
|
+
SourcePipelineExecutionArn?: string | undefined;
|
|
681
687
|
SelectedSteps: SelectedStep[] | undefined;
|
|
682
688
|
}
|
|
683
689
|
export interface DescribePipelineExecutionResponse {
|
|
684
|
-
PipelineArn?: string;
|
|
685
|
-
PipelineExecutionArn?: string;
|
|
686
|
-
PipelineExecutionDisplayName?: string;
|
|
687
|
-
PipelineExecutionStatus?: PipelineExecutionStatus;
|
|
688
|
-
PipelineExecutionDescription?: string;
|
|
689
|
-
PipelineExperimentConfig?: PipelineExperimentConfig;
|
|
690
|
-
FailureReason?: string;
|
|
691
|
-
CreationTime?: Date;
|
|
692
|
-
LastModifiedTime?: Date;
|
|
693
|
-
CreatedBy?: UserContext;
|
|
694
|
-
LastModifiedBy?: UserContext;
|
|
695
|
-
ParallelismConfiguration?: ParallelismConfiguration;
|
|
696
|
-
SelectiveExecutionConfig?: SelectiveExecutionConfig;
|
|
690
|
+
PipelineArn?: string | undefined;
|
|
691
|
+
PipelineExecutionArn?: string | undefined;
|
|
692
|
+
PipelineExecutionDisplayName?: string | undefined;
|
|
693
|
+
PipelineExecutionStatus?: PipelineExecutionStatus | undefined;
|
|
694
|
+
PipelineExecutionDescription?: string | undefined;
|
|
695
|
+
PipelineExperimentConfig?: PipelineExperimentConfig | undefined;
|
|
696
|
+
FailureReason?: string | undefined;
|
|
697
|
+
CreationTime?: Date | undefined;
|
|
698
|
+
LastModifiedTime?: Date | undefined;
|
|
699
|
+
CreatedBy?: UserContext | undefined;
|
|
700
|
+
LastModifiedBy?: UserContext | undefined;
|
|
701
|
+
ParallelismConfiguration?: ParallelismConfiguration | undefined;
|
|
702
|
+
SelectiveExecutionConfig?: SelectiveExecutionConfig | undefined;
|
|
697
703
|
}
|
|
698
704
|
export interface DescribeProcessingJobRequest {
|
|
699
705
|
ProcessingJobName: string | undefined;
|
|
@@ -708,27 +714,27 @@ export declare const ProcessingJobStatus: {
|
|
|
708
714
|
export type ProcessingJobStatus =
|
|
709
715
|
(typeof ProcessingJobStatus)[keyof typeof ProcessingJobStatus];
|
|
710
716
|
export interface DescribeProcessingJobResponse {
|
|
711
|
-
ProcessingInputs?: ProcessingInput[];
|
|
712
|
-
ProcessingOutputConfig?: ProcessingOutputConfig;
|
|
717
|
+
ProcessingInputs?: ProcessingInput[] | undefined;
|
|
718
|
+
ProcessingOutputConfig?: ProcessingOutputConfig | undefined;
|
|
713
719
|
ProcessingJobName: string | undefined;
|
|
714
720
|
ProcessingResources: ProcessingResources | undefined;
|
|
715
|
-
StoppingCondition?: ProcessingStoppingCondition;
|
|
721
|
+
StoppingCondition?: ProcessingStoppingCondition | undefined;
|
|
716
722
|
AppSpecification: AppSpecification | undefined;
|
|
717
|
-
Environment?: Record<string, string
|
|
718
|
-
NetworkConfig?: NetworkConfig;
|
|
719
|
-
RoleArn?: string;
|
|
720
|
-
ExperimentConfig?: ExperimentConfig;
|
|
723
|
+
Environment?: Record<string, string> | undefined;
|
|
724
|
+
NetworkConfig?: NetworkConfig | undefined;
|
|
725
|
+
RoleArn?: string | undefined;
|
|
726
|
+
ExperimentConfig?: ExperimentConfig | undefined;
|
|
721
727
|
ProcessingJobArn: string | undefined;
|
|
722
728
|
ProcessingJobStatus: ProcessingJobStatus | undefined;
|
|
723
|
-
ExitMessage?: string;
|
|
724
|
-
FailureReason?: string;
|
|
725
|
-
ProcessingEndTime?: Date;
|
|
726
|
-
ProcessingStartTime?: Date;
|
|
727
|
-
LastModifiedTime?: Date;
|
|
729
|
+
ExitMessage?: string | undefined;
|
|
730
|
+
FailureReason?: string | undefined;
|
|
731
|
+
ProcessingEndTime?: Date | undefined;
|
|
732
|
+
ProcessingStartTime?: Date | undefined;
|
|
733
|
+
LastModifiedTime?: Date | undefined;
|
|
728
734
|
CreationTime: Date | undefined;
|
|
729
|
-
MonitoringScheduleArn?: string;
|
|
730
|
-
AutoMLJobArn?: string;
|
|
731
|
-
TrainingJobArn?: string;
|
|
735
|
+
MonitoringScheduleArn?: string | undefined;
|
|
736
|
+
AutoMLJobArn?: string | undefined;
|
|
737
|
+
TrainingJobArn?: string | undefined;
|
|
732
738
|
}
|
|
733
739
|
export interface DescribeProjectInput {
|
|
734
740
|
ProjectName: string | undefined;
|
|
@@ -747,23 +753,25 @@ export declare const ProjectStatus: {
|
|
|
747
753
|
};
|
|
748
754
|
export type ProjectStatus = (typeof ProjectStatus)[keyof typeof ProjectStatus];
|
|
749
755
|
export interface ServiceCatalogProvisionedProductDetails {
|
|
750
|
-
ProvisionedProductId?: string;
|
|
751
|
-
ProvisionedProductStatusMessage?: string;
|
|
756
|
+
ProvisionedProductId?: string | undefined;
|
|
757
|
+
ProvisionedProductStatusMessage?: string | undefined;
|
|
752
758
|
}
|
|
753
759
|
export interface DescribeProjectOutput {
|
|
754
760
|
ProjectArn: string | undefined;
|
|
755
761
|
ProjectName: string | undefined;
|
|
756
762
|
ProjectId: string | undefined;
|
|
757
|
-
ProjectDescription?: string;
|
|
763
|
+
ProjectDescription?: string | undefined;
|
|
758
764
|
ServiceCatalogProvisioningDetails:
|
|
759
765
|
| ServiceCatalogProvisioningDetails
|
|
760
766
|
| undefined;
|
|
761
|
-
ServiceCatalogProvisionedProductDetails?:
|
|
767
|
+
ServiceCatalogProvisionedProductDetails?:
|
|
768
|
+
| ServiceCatalogProvisionedProductDetails
|
|
769
|
+
| undefined;
|
|
762
770
|
ProjectStatus: ProjectStatus | undefined;
|
|
763
|
-
CreatedBy?: UserContext;
|
|
771
|
+
CreatedBy?: UserContext | undefined;
|
|
764
772
|
CreationTime: Date | undefined;
|
|
765
|
-
LastModifiedTime?: Date;
|
|
766
|
-
LastModifiedBy?: UserContext;
|
|
773
|
+
LastModifiedTime?: Date | undefined;
|
|
774
|
+
LastModifiedBy?: UserContext | undefined;
|
|
767
775
|
}
|
|
768
776
|
export interface DescribeSpaceRequest {
|
|
769
777
|
DomainId: string | undefined;
|
|
@@ -780,40 +788,40 @@ export declare const SpaceStatus: {
|
|
|
780
788
|
};
|
|
781
789
|
export type SpaceStatus = (typeof SpaceStatus)[keyof typeof SpaceStatus];
|
|
782
790
|
export interface DescribeSpaceResponse {
|
|
783
|
-
DomainId?: string;
|
|
784
|
-
SpaceArn?: string;
|
|
785
|
-
SpaceName?: string;
|
|
786
|
-
HomeEfsFileSystemUid?: string;
|
|
787
|
-
Status?: SpaceStatus;
|
|
788
|
-
LastModifiedTime?: Date;
|
|
789
|
-
CreationTime?: Date;
|
|
790
|
-
FailureReason?: string;
|
|
791
|
-
SpaceSettings?: SpaceSettings;
|
|
792
|
-
OwnershipSettings?: OwnershipSettings;
|
|
793
|
-
SpaceSharingSettings?: SpaceSharingSettings;
|
|
794
|
-
SpaceDisplayName?: string;
|
|
795
|
-
Url?: string;
|
|
791
|
+
DomainId?: string | undefined;
|
|
792
|
+
SpaceArn?: string | undefined;
|
|
793
|
+
SpaceName?: string | undefined;
|
|
794
|
+
HomeEfsFileSystemUid?: string | undefined;
|
|
795
|
+
Status?: SpaceStatus | undefined;
|
|
796
|
+
LastModifiedTime?: Date | undefined;
|
|
797
|
+
CreationTime?: Date | undefined;
|
|
798
|
+
FailureReason?: string | undefined;
|
|
799
|
+
SpaceSettings?: SpaceSettings | undefined;
|
|
800
|
+
OwnershipSettings?: OwnershipSettings | undefined;
|
|
801
|
+
SpaceSharingSettings?: SpaceSharingSettings | undefined;
|
|
802
|
+
SpaceDisplayName?: string | undefined;
|
|
803
|
+
Url?: string | undefined;
|
|
796
804
|
}
|
|
797
805
|
export interface DescribeStudioLifecycleConfigRequest {
|
|
798
806
|
StudioLifecycleConfigName: string | undefined;
|
|
799
807
|
}
|
|
800
808
|
export interface DescribeStudioLifecycleConfigResponse {
|
|
801
|
-
StudioLifecycleConfigArn?: string;
|
|
802
|
-
StudioLifecycleConfigName?: string;
|
|
803
|
-
CreationTime?: Date;
|
|
804
|
-
LastModifiedTime?: Date;
|
|
805
|
-
StudioLifecycleConfigContent?: string;
|
|
806
|
-
StudioLifecycleConfigAppType?: StudioLifecycleConfigAppType;
|
|
809
|
+
StudioLifecycleConfigArn?: string | undefined;
|
|
810
|
+
StudioLifecycleConfigName?: string | undefined;
|
|
811
|
+
CreationTime?: Date | undefined;
|
|
812
|
+
LastModifiedTime?: Date | undefined;
|
|
813
|
+
StudioLifecycleConfigContent?: string | undefined;
|
|
814
|
+
StudioLifecycleConfigAppType?: StudioLifecycleConfigAppType | undefined;
|
|
807
815
|
}
|
|
808
816
|
export interface DescribeSubscribedWorkteamRequest {
|
|
809
817
|
WorkteamArn: string | undefined;
|
|
810
818
|
}
|
|
811
819
|
export interface SubscribedWorkteam {
|
|
812
820
|
WorkteamArn: string | undefined;
|
|
813
|
-
MarketplaceTitle?: string;
|
|
814
|
-
SellerName?: string;
|
|
815
|
-
MarketplaceDescription?: string;
|
|
816
|
-
ListingId?: string;
|
|
821
|
+
MarketplaceTitle?: string | undefined;
|
|
822
|
+
SellerName?: string | undefined;
|
|
823
|
+
MarketplaceDescription?: string | undefined;
|
|
824
|
+
ListingId?: string | undefined;
|
|
817
825
|
}
|
|
818
826
|
export interface DescribeSubscribedWorkteamResponse {
|
|
819
827
|
SubscribedWorkteam: SubscribedWorkteam | undefined;
|
|
@@ -822,16 +830,16 @@ export interface DescribeTrainingJobRequest {
|
|
|
822
830
|
TrainingJobName: string | undefined;
|
|
823
831
|
}
|
|
824
832
|
export interface MetricData {
|
|
825
|
-
MetricName?: string;
|
|
826
|
-
Value?: number;
|
|
827
|
-
Timestamp?: Date;
|
|
833
|
+
MetricName?: string | undefined;
|
|
834
|
+
Value?: number | undefined;
|
|
835
|
+
Timestamp?: Date | undefined;
|
|
828
836
|
}
|
|
829
837
|
export interface ProfilerRuleEvaluationStatus {
|
|
830
|
-
RuleConfigurationName?: string;
|
|
831
|
-
RuleEvaluationJobArn?: string;
|
|
832
|
-
RuleEvaluationStatus?: RuleEvaluationStatus;
|
|
833
|
-
StatusDetails?: string;
|
|
834
|
-
LastModifiedTime?: Date;
|
|
838
|
+
RuleConfigurationName?: string | undefined;
|
|
839
|
+
RuleEvaluationJobArn?: string | undefined;
|
|
840
|
+
RuleEvaluationStatus?: RuleEvaluationStatus | undefined;
|
|
841
|
+
StatusDetails?: string | undefined;
|
|
842
|
+
LastModifiedTime?: Date | undefined;
|
|
835
843
|
}
|
|
836
844
|
export declare const ProfilingStatus: {
|
|
837
845
|
readonly DISABLED: "Disabled";
|
|
@@ -863,8 +871,8 @@ export type SecondaryStatus =
|
|
|
863
871
|
export interface SecondaryStatusTransition {
|
|
864
872
|
Status: SecondaryStatus | undefined;
|
|
865
873
|
StartTime: Date | undefined;
|
|
866
|
-
EndTime?: Date;
|
|
867
|
-
StatusMessage?: string;
|
|
874
|
+
EndTime?: Date | undefined;
|
|
875
|
+
StatusMessage?: string | undefined;
|
|
868
876
|
}
|
|
869
877
|
export declare const WarmPoolResourceStatus: {
|
|
870
878
|
readonly AVAILABLE: "Available";
|
|
@@ -876,53 +884,53 @@ export type WarmPoolResourceStatus =
|
|
|
876
884
|
(typeof WarmPoolResourceStatus)[keyof typeof WarmPoolResourceStatus];
|
|
877
885
|
export interface WarmPoolStatus {
|
|
878
886
|
Status: WarmPoolResourceStatus | undefined;
|
|
879
|
-
ResourceRetainedBillableTimeInSeconds?: number;
|
|
880
|
-
ReusedByJob?: string;
|
|
887
|
+
ResourceRetainedBillableTimeInSeconds?: number | undefined;
|
|
888
|
+
ReusedByJob?: string | undefined;
|
|
881
889
|
}
|
|
882
890
|
export interface DescribeTrainingJobResponse {
|
|
883
891
|
TrainingJobName: string | undefined;
|
|
884
892
|
TrainingJobArn: string | undefined;
|
|
885
|
-
TuningJobArn?: string;
|
|
886
|
-
LabelingJobArn?: string;
|
|
887
|
-
AutoMLJobArn?: string;
|
|
893
|
+
TuningJobArn?: string | undefined;
|
|
894
|
+
LabelingJobArn?: string | undefined;
|
|
895
|
+
AutoMLJobArn?: string | undefined;
|
|
888
896
|
ModelArtifacts: ModelArtifacts | undefined;
|
|
889
897
|
TrainingJobStatus: TrainingJobStatus | undefined;
|
|
890
898
|
SecondaryStatus: SecondaryStatus | undefined;
|
|
891
|
-
FailureReason?: string;
|
|
892
|
-
HyperParameters?: Record<string, string
|
|
899
|
+
FailureReason?: string | undefined;
|
|
900
|
+
HyperParameters?: Record<string, string> | undefined;
|
|
893
901
|
AlgorithmSpecification: AlgorithmSpecification | undefined;
|
|
894
|
-
RoleArn?: string;
|
|
895
|
-
InputDataConfig?: Channel[];
|
|
896
|
-
OutputDataConfig?: OutputDataConfig;
|
|
902
|
+
RoleArn?: string | undefined;
|
|
903
|
+
InputDataConfig?: Channel[] | undefined;
|
|
904
|
+
OutputDataConfig?: OutputDataConfig | undefined;
|
|
897
905
|
ResourceConfig: ResourceConfig | undefined;
|
|
898
|
-
WarmPoolStatus?: WarmPoolStatus;
|
|
899
|
-
VpcConfig?: VpcConfig;
|
|
906
|
+
WarmPoolStatus?: WarmPoolStatus | undefined;
|
|
907
|
+
VpcConfig?: VpcConfig | undefined;
|
|
900
908
|
StoppingCondition: StoppingCondition | undefined;
|
|
901
909
|
CreationTime: Date | undefined;
|
|
902
|
-
TrainingStartTime?: Date;
|
|
903
|
-
TrainingEndTime?: Date;
|
|
904
|
-
LastModifiedTime?: Date;
|
|
905
|
-
SecondaryStatusTransitions?: SecondaryStatusTransition[];
|
|
906
|
-
FinalMetricDataList?: MetricData[];
|
|
907
|
-
EnableNetworkIsolation?: boolean;
|
|
908
|
-
EnableInterContainerTrafficEncryption?: boolean;
|
|
909
|
-
EnableManagedSpotTraining?: boolean;
|
|
910
|
-
CheckpointConfig?: CheckpointConfig;
|
|
911
|
-
TrainingTimeInSeconds?: number;
|
|
912
|
-
BillableTimeInSeconds?: number;
|
|
913
|
-
DebugHookConfig?: DebugHookConfig;
|
|
914
|
-
ExperimentConfig?: ExperimentConfig;
|
|
915
|
-
DebugRuleConfigurations?: DebugRuleConfiguration[];
|
|
916
|
-
TensorBoardOutputConfig?: TensorBoardOutputConfig;
|
|
917
|
-
DebugRuleEvaluationStatuses?: DebugRuleEvaluationStatus[];
|
|
918
|
-
ProfilerConfig?: ProfilerConfig;
|
|
919
|
-
ProfilerRuleConfigurations?: ProfilerRuleConfiguration[];
|
|
920
|
-
ProfilerRuleEvaluationStatuses?: ProfilerRuleEvaluationStatus[];
|
|
921
|
-
ProfilingStatus?: ProfilingStatus;
|
|
922
|
-
Environment?: Record<string, string
|
|
923
|
-
RetryStrategy?: RetryStrategy;
|
|
924
|
-
RemoteDebugConfig?: RemoteDebugConfig;
|
|
925
|
-
InfraCheckConfig?: InfraCheckConfig;
|
|
910
|
+
TrainingStartTime?: Date | undefined;
|
|
911
|
+
TrainingEndTime?: Date | undefined;
|
|
912
|
+
LastModifiedTime?: Date | undefined;
|
|
913
|
+
SecondaryStatusTransitions?: SecondaryStatusTransition[] | undefined;
|
|
914
|
+
FinalMetricDataList?: MetricData[] | undefined;
|
|
915
|
+
EnableNetworkIsolation?: boolean | undefined;
|
|
916
|
+
EnableInterContainerTrafficEncryption?: boolean | undefined;
|
|
917
|
+
EnableManagedSpotTraining?: boolean | undefined;
|
|
918
|
+
CheckpointConfig?: CheckpointConfig | undefined;
|
|
919
|
+
TrainingTimeInSeconds?: number | undefined;
|
|
920
|
+
BillableTimeInSeconds?: number | undefined;
|
|
921
|
+
DebugHookConfig?: DebugHookConfig | undefined;
|
|
922
|
+
ExperimentConfig?: ExperimentConfig | undefined;
|
|
923
|
+
DebugRuleConfigurations?: DebugRuleConfiguration[] | undefined;
|
|
924
|
+
TensorBoardOutputConfig?: TensorBoardOutputConfig | undefined;
|
|
925
|
+
DebugRuleEvaluationStatuses?: DebugRuleEvaluationStatus[] | undefined;
|
|
926
|
+
ProfilerConfig?: ProfilerConfig | undefined;
|
|
927
|
+
ProfilerRuleConfigurations?: ProfilerRuleConfiguration[] | undefined;
|
|
928
|
+
ProfilerRuleEvaluationStatuses?: ProfilerRuleEvaluationStatus[] | undefined;
|
|
929
|
+
ProfilingStatus?: ProfilingStatus | undefined;
|
|
930
|
+
Environment?: Record<string, string> | undefined;
|
|
931
|
+
RetryStrategy?: RetryStrategy | undefined;
|
|
932
|
+
RemoteDebugConfig?: RemoteDebugConfig | undefined;
|
|
933
|
+
InfraCheckConfig?: InfraCheckConfig | undefined;
|
|
926
934
|
}
|
|
927
935
|
export interface DescribeTransformJobRequest {
|
|
928
936
|
TransformJobName: string | undefined;
|
|
@@ -940,81 +948,81 @@ export interface DescribeTransformJobResponse {
|
|
|
940
948
|
TransformJobName: string | undefined;
|
|
941
949
|
TransformJobArn: string | undefined;
|
|
942
950
|
TransformJobStatus: TransformJobStatus | undefined;
|
|
943
|
-
FailureReason?: string;
|
|
951
|
+
FailureReason?: string | undefined;
|
|
944
952
|
ModelName: string | undefined;
|
|
945
|
-
MaxConcurrentTransforms?: number;
|
|
946
|
-
ModelClientConfig?: ModelClientConfig;
|
|
947
|
-
MaxPayloadInMB?: number;
|
|
948
|
-
BatchStrategy?: BatchStrategy;
|
|
949
|
-
Environment?: Record<string, string
|
|
953
|
+
MaxConcurrentTransforms?: number | undefined;
|
|
954
|
+
ModelClientConfig?: ModelClientConfig | undefined;
|
|
955
|
+
MaxPayloadInMB?: number | undefined;
|
|
956
|
+
BatchStrategy?: BatchStrategy | undefined;
|
|
957
|
+
Environment?: Record<string, string> | undefined;
|
|
950
958
|
TransformInput: TransformInput | undefined;
|
|
951
|
-
TransformOutput?: TransformOutput;
|
|
952
|
-
DataCaptureConfig?: BatchDataCaptureConfig;
|
|
959
|
+
TransformOutput?: TransformOutput | undefined;
|
|
960
|
+
DataCaptureConfig?: BatchDataCaptureConfig | undefined;
|
|
953
961
|
TransformResources: TransformResources | undefined;
|
|
954
962
|
CreationTime: Date | undefined;
|
|
955
|
-
TransformStartTime?: Date;
|
|
956
|
-
TransformEndTime?: Date;
|
|
957
|
-
LabelingJobArn?: string;
|
|
958
|
-
AutoMLJobArn?: string;
|
|
959
|
-
DataProcessing?: DataProcessing;
|
|
960
|
-
ExperimentConfig?: ExperimentConfig;
|
|
963
|
+
TransformStartTime?: Date | undefined;
|
|
964
|
+
TransformEndTime?: Date | undefined;
|
|
965
|
+
LabelingJobArn?: string | undefined;
|
|
966
|
+
AutoMLJobArn?: string | undefined;
|
|
967
|
+
DataProcessing?: DataProcessing | undefined;
|
|
968
|
+
ExperimentConfig?: ExperimentConfig | undefined;
|
|
961
969
|
}
|
|
962
970
|
export interface DescribeTrialRequest {
|
|
963
971
|
TrialName: string | undefined;
|
|
964
972
|
}
|
|
965
973
|
export interface TrialSource {
|
|
966
974
|
SourceArn: string | undefined;
|
|
967
|
-
SourceType?: string;
|
|
975
|
+
SourceType?: string | undefined;
|
|
968
976
|
}
|
|
969
977
|
export interface DescribeTrialResponse {
|
|
970
|
-
TrialName?: string;
|
|
971
|
-
TrialArn?: string;
|
|
972
|
-
DisplayName?: string;
|
|
973
|
-
ExperimentName?: string;
|
|
974
|
-
Source?: TrialSource;
|
|
975
|
-
CreationTime?: Date;
|
|
976
|
-
CreatedBy?: UserContext;
|
|
977
|
-
LastModifiedTime?: Date;
|
|
978
|
-
LastModifiedBy?: UserContext;
|
|
979
|
-
MetadataProperties?: MetadataProperties;
|
|
978
|
+
TrialName?: string | undefined;
|
|
979
|
+
TrialArn?: string | undefined;
|
|
980
|
+
DisplayName?: string | undefined;
|
|
981
|
+
ExperimentName?: string | undefined;
|
|
982
|
+
Source?: TrialSource | undefined;
|
|
983
|
+
CreationTime?: Date | undefined;
|
|
984
|
+
CreatedBy?: UserContext | undefined;
|
|
985
|
+
LastModifiedTime?: Date | undefined;
|
|
986
|
+
LastModifiedBy?: UserContext | undefined;
|
|
987
|
+
MetadataProperties?: MetadataProperties | undefined;
|
|
980
988
|
}
|
|
981
989
|
export interface DescribeTrialComponentRequest {
|
|
982
990
|
TrialComponentName: string | undefined;
|
|
983
991
|
}
|
|
984
992
|
export interface TrialComponentMetricSummary {
|
|
985
|
-
MetricName?: string;
|
|
986
|
-
SourceArn?: string;
|
|
987
|
-
TimeStamp?: Date;
|
|
988
|
-
Max?: number;
|
|
989
|
-
Min?: number;
|
|
990
|
-
Last?: number;
|
|
991
|
-
Count?: number;
|
|
992
|
-
Avg?: number;
|
|
993
|
-
StdDev?: number;
|
|
993
|
+
MetricName?: string | undefined;
|
|
994
|
+
SourceArn?: string | undefined;
|
|
995
|
+
TimeStamp?: Date | undefined;
|
|
996
|
+
Max?: number | undefined;
|
|
997
|
+
Min?: number | undefined;
|
|
998
|
+
Last?: number | undefined;
|
|
999
|
+
Count?: number | undefined;
|
|
1000
|
+
Avg?: number | undefined;
|
|
1001
|
+
StdDev?: number | undefined;
|
|
994
1002
|
}
|
|
995
1003
|
export interface TrialComponentSource {
|
|
996
1004
|
SourceArn: string | undefined;
|
|
997
|
-
SourceType?: string;
|
|
1005
|
+
SourceType?: string | undefined;
|
|
998
1006
|
}
|
|
999
1007
|
export interface DescribeTrialComponentResponse {
|
|
1000
|
-
TrialComponentName?: string;
|
|
1001
|
-
TrialComponentArn?: string;
|
|
1002
|
-
DisplayName?: string;
|
|
1003
|
-
Source?: TrialComponentSource;
|
|
1004
|
-
Status?: TrialComponentStatus;
|
|
1005
|
-
StartTime?: Date;
|
|
1006
|
-
EndTime?: Date;
|
|
1007
|
-
CreationTime?: Date;
|
|
1008
|
-
CreatedBy?: UserContext;
|
|
1009
|
-
LastModifiedTime?: Date;
|
|
1010
|
-
LastModifiedBy?: UserContext;
|
|
1011
|
-
Parameters?: Record<string, TrialComponentParameterValue
|
|
1012
|
-
InputArtifacts?: Record<string, TrialComponentArtifact
|
|
1013
|
-
OutputArtifacts?: Record<string, TrialComponentArtifact
|
|
1014
|
-
MetadataProperties?: MetadataProperties;
|
|
1015
|
-
Metrics?: TrialComponentMetricSummary[];
|
|
1016
|
-
LineageGroupArn?: string;
|
|
1017
|
-
Sources?: TrialComponentSource[];
|
|
1008
|
+
TrialComponentName?: string | undefined;
|
|
1009
|
+
TrialComponentArn?: string | undefined;
|
|
1010
|
+
DisplayName?: string | undefined;
|
|
1011
|
+
Source?: TrialComponentSource | undefined;
|
|
1012
|
+
Status?: TrialComponentStatus | undefined;
|
|
1013
|
+
StartTime?: Date | undefined;
|
|
1014
|
+
EndTime?: Date | undefined;
|
|
1015
|
+
CreationTime?: Date | undefined;
|
|
1016
|
+
CreatedBy?: UserContext | undefined;
|
|
1017
|
+
LastModifiedTime?: Date | undefined;
|
|
1018
|
+
LastModifiedBy?: UserContext | undefined;
|
|
1019
|
+
Parameters?: Record<string, TrialComponentParameterValue> | undefined;
|
|
1020
|
+
InputArtifacts?: Record<string, TrialComponentArtifact> | undefined;
|
|
1021
|
+
OutputArtifacts?: Record<string, TrialComponentArtifact> | undefined;
|
|
1022
|
+
MetadataProperties?: MetadataProperties | undefined;
|
|
1023
|
+
Metrics?: TrialComponentMetricSummary[] | undefined;
|
|
1024
|
+
LineageGroupArn?: string | undefined;
|
|
1025
|
+
Sources?: TrialComponentSource[] | undefined;
|
|
1018
1026
|
}
|
|
1019
1027
|
export interface DescribeUserProfileRequest {
|
|
1020
1028
|
DomainId: string | undefined;
|
|
@@ -1032,31 +1040,31 @@ export declare const UserProfileStatus: {
|
|
|
1032
1040
|
export type UserProfileStatus =
|
|
1033
1041
|
(typeof UserProfileStatus)[keyof typeof UserProfileStatus];
|
|
1034
1042
|
export interface DescribeUserProfileResponse {
|
|
1035
|
-
DomainId?: string;
|
|
1036
|
-
UserProfileArn?: string;
|
|
1037
|
-
UserProfileName?: string;
|
|
1038
|
-
HomeEfsFileSystemUid?: string;
|
|
1039
|
-
Status?: UserProfileStatus;
|
|
1040
|
-
LastModifiedTime?: Date;
|
|
1041
|
-
CreationTime?: Date;
|
|
1042
|
-
FailureReason?: string;
|
|
1043
|
-
SingleSignOnUserIdentifier?: string;
|
|
1044
|
-
SingleSignOnUserValue?: string;
|
|
1045
|
-
UserSettings?: UserSettings;
|
|
1043
|
+
DomainId?: string | undefined;
|
|
1044
|
+
UserProfileArn?: string | undefined;
|
|
1045
|
+
UserProfileName?: string | undefined;
|
|
1046
|
+
HomeEfsFileSystemUid?: string | undefined;
|
|
1047
|
+
Status?: UserProfileStatus | undefined;
|
|
1048
|
+
LastModifiedTime?: Date | undefined;
|
|
1049
|
+
CreationTime?: Date | undefined;
|
|
1050
|
+
FailureReason?: string | undefined;
|
|
1051
|
+
SingleSignOnUserIdentifier?: string | undefined;
|
|
1052
|
+
SingleSignOnUserValue?: string | undefined;
|
|
1053
|
+
UserSettings?: UserSettings | undefined;
|
|
1046
1054
|
}
|
|
1047
1055
|
export interface DescribeWorkforceRequest {
|
|
1048
1056
|
WorkforceName: string | undefined;
|
|
1049
1057
|
}
|
|
1050
1058
|
export interface OidcConfigForResponse {
|
|
1051
|
-
ClientId?: string;
|
|
1052
|
-
Issuer?: string;
|
|
1053
|
-
AuthorizationEndpoint?: string;
|
|
1054
|
-
TokenEndpoint?: string;
|
|
1055
|
-
UserInfoEndpoint?: string;
|
|
1056
|
-
LogoutEndpoint?: string;
|
|
1057
|
-
JwksUri?: string;
|
|
1058
|
-
Scope?: string;
|
|
1059
|
-
AuthenticationRequestExtraParams?: Record<string, string
|
|
1059
|
+
ClientId?: string | undefined;
|
|
1060
|
+
Issuer?: string | undefined;
|
|
1061
|
+
AuthorizationEndpoint?: string | undefined;
|
|
1062
|
+
TokenEndpoint?: string | undefined;
|
|
1063
|
+
UserInfoEndpoint?: string | undefined;
|
|
1064
|
+
LogoutEndpoint?: string | undefined;
|
|
1065
|
+
JwksUri?: string | undefined;
|
|
1066
|
+
Scope?: string | undefined;
|
|
1067
|
+
AuthenticationRequestExtraParams?: Record<string, string> | undefined;
|
|
1060
1068
|
}
|
|
1061
1069
|
export declare const WorkforceStatus: {
|
|
1062
1070
|
readonly ACTIVE: "Active";
|
|
@@ -1071,20 +1079,20 @@ export interface WorkforceVpcConfigResponse {
|
|
|
1071
1079
|
VpcId: string | undefined;
|
|
1072
1080
|
SecurityGroupIds: string[] | undefined;
|
|
1073
1081
|
Subnets: string[] | undefined;
|
|
1074
|
-
VpcEndpointId?: string;
|
|
1082
|
+
VpcEndpointId?: string | undefined;
|
|
1075
1083
|
}
|
|
1076
1084
|
export interface Workforce {
|
|
1077
1085
|
WorkforceName: string | undefined;
|
|
1078
1086
|
WorkforceArn: string | undefined;
|
|
1079
|
-
LastUpdatedDate?: Date;
|
|
1080
|
-
SourceIpConfig?: SourceIpConfig;
|
|
1081
|
-
SubDomain?: string;
|
|
1082
|
-
CognitoConfig?: CognitoConfig;
|
|
1083
|
-
OidcConfig?: OidcConfigForResponse;
|
|
1084
|
-
CreateDate?: Date;
|
|
1085
|
-
WorkforceVpcConfig?: WorkforceVpcConfigResponse;
|
|
1086
|
-
Status?: WorkforceStatus;
|
|
1087
|
-
FailureReason?: string;
|
|
1087
|
+
LastUpdatedDate?: Date | undefined;
|
|
1088
|
+
SourceIpConfig?: SourceIpConfig | undefined;
|
|
1089
|
+
SubDomain?: string | undefined;
|
|
1090
|
+
CognitoConfig?: CognitoConfig | undefined;
|
|
1091
|
+
OidcConfig?: OidcConfigForResponse | undefined;
|
|
1092
|
+
CreateDate?: Date | undefined;
|
|
1093
|
+
WorkforceVpcConfig?: WorkforceVpcConfigResponse | undefined;
|
|
1094
|
+
Status?: WorkforceStatus | undefined;
|
|
1095
|
+
FailureReason?: string | undefined;
|
|
1088
1096
|
}
|
|
1089
1097
|
export interface DescribeWorkforceResponse {
|
|
1090
1098
|
Workforce: Workforce | undefined;
|
|
@@ -1096,32 +1104,32 @@ export interface Workteam {
|
|
|
1096
1104
|
WorkteamName: string | undefined;
|
|
1097
1105
|
MemberDefinitions: MemberDefinition[] | undefined;
|
|
1098
1106
|
WorkteamArn: string | undefined;
|
|
1099
|
-
WorkforceArn?: string;
|
|
1100
|
-
ProductListingIds?: string[];
|
|
1107
|
+
WorkforceArn?: string | undefined;
|
|
1108
|
+
ProductListingIds?: string[] | undefined;
|
|
1101
1109
|
Description: string | undefined;
|
|
1102
|
-
SubDomain?: string;
|
|
1103
|
-
CreateDate?: Date;
|
|
1104
|
-
LastUpdatedDate?: Date;
|
|
1105
|
-
NotificationConfiguration?: NotificationConfiguration;
|
|
1106
|
-
WorkerAccessConfiguration?: WorkerAccessConfiguration;
|
|
1110
|
+
SubDomain?: string | undefined;
|
|
1111
|
+
CreateDate?: Date | undefined;
|
|
1112
|
+
LastUpdatedDate?: Date | undefined;
|
|
1113
|
+
NotificationConfiguration?: NotificationConfiguration | undefined;
|
|
1114
|
+
WorkerAccessConfiguration?: WorkerAccessConfiguration | undefined;
|
|
1107
1115
|
}
|
|
1108
1116
|
export interface DescribeWorkteamResponse {
|
|
1109
1117
|
Workteam: Workteam | undefined;
|
|
1110
1118
|
}
|
|
1111
1119
|
export interface ProductionVariantServerlessUpdateConfig {
|
|
1112
|
-
MaxConcurrency?: number;
|
|
1113
|
-
ProvisionedConcurrency?: number;
|
|
1120
|
+
MaxConcurrency?: number | undefined;
|
|
1121
|
+
ProvisionedConcurrency?: number | undefined;
|
|
1114
1122
|
}
|
|
1115
1123
|
export interface DesiredWeightAndCapacity {
|
|
1116
1124
|
VariantName: string | undefined;
|
|
1117
|
-
DesiredWeight?: number;
|
|
1118
|
-
DesiredInstanceCount?: number;
|
|
1119
|
-
ServerlessUpdateConfig?: ProductionVariantServerlessUpdateConfig;
|
|
1125
|
+
DesiredWeight?: number | undefined;
|
|
1126
|
+
DesiredInstanceCount?: number | undefined;
|
|
1127
|
+
ServerlessUpdateConfig?: ProductionVariantServerlessUpdateConfig | undefined;
|
|
1120
1128
|
}
|
|
1121
1129
|
export interface Device {
|
|
1122
1130
|
DeviceName: string | undefined;
|
|
1123
|
-
Description?: string;
|
|
1124
|
-
IotThingName?: string;
|
|
1131
|
+
Description?: string | undefined;
|
|
1132
|
+
IotThingName?: string | undefined;
|
|
1125
1133
|
}
|
|
1126
1134
|
export declare const DeviceDeploymentStatus: {
|
|
1127
1135
|
readonly Deployed: "DEPLOYED";
|
|
@@ -1137,20 +1145,20 @@ export interface DeviceDeploymentSummary {
|
|
|
1137
1145
|
EdgeDeploymentPlanArn: string | undefined;
|
|
1138
1146
|
EdgeDeploymentPlanName: string | undefined;
|
|
1139
1147
|
StageName: string | undefined;
|
|
1140
|
-
DeployedStageName?: string;
|
|
1141
|
-
DeviceFleetName?: string;
|
|
1148
|
+
DeployedStageName?: string | undefined;
|
|
1149
|
+
DeviceFleetName?: string | undefined;
|
|
1142
1150
|
DeviceName: string | undefined;
|
|
1143
1151
|
DeviceArn: string | undefined;
|
|
1144
|
-
DeviceDeploymentStatus?: DeviceDeploymentStatus;
|
|
1145
|
-
DeviceDeploymentStatusMessage?: string;
|
|
1146
|
-
Description?: string;
|
|
1147
|
-
DeploymentStartTime?: Date;
|
|
1152
|
+
DeviceDeploymentStatus?: DeviceDeploymentStatus | undefined;
|
|
1153
|
+
DeviceDeploymentStatusMessage?: string | undefined;
|
|
1154
|
+
Description?: string | undefined;
|
|
1155
|
+
DeploymentStartTime?: Date | undefined;
|
|
1148
1156
|
}
|
|
1149
1157
|
export interface DeviceFleetSummary {
|
|
1150
1158
|
DeviceFleetArn: string | undefined;
|
|
1151
1159
|
DeviceFleetName: string | undefined;
|
|
1152
|
-
CreationTime?: Date;
|
|
1153
|
-
LastModifiedTime?: Date;
|
|
1160
|
+
CreationTime?: Date | undefined;
|
|
1161
|
+
LastModifiedTime?: Date | undefined;
|
|
1154
1162
|
}
|
|
1155
1163
|
export interface DeviceStats {
|
|
1156
1164
|
ConnectedDeviceCount: number | undefined;
|
|
@@ -1163,13 +1171,13 @@ export interface EdgeModelSummary {
|
|
|
1163
1171
|
export interface DeviceSummary {
|
|
1164
1172
|
DeviceName: string | undefined;
|
|
1165
1173
|
DeviceArn: string | undefined;
|
|
1166
|
-
Description?: string;
|
|
1167
|
-
DeviceFleetName?: string;
|
|
1168
|
-
IotThingName?: string;
|
|
1169
|
-
RegistrationTime?: Date;
|
|
1170
|
-
LatestHeartbeat?: Date;
|
|
1171
|
-
Models?: EdgeModelSummary[];
|
|
1172
|
-
AgentVersion?: string;
|
|
1174
|
+
Description?: string | undefined;
|
|
1175
|
+
DeviceFleetName?: string | undefined;
|
|
1176
|
+
IotThingName?: string | undefined;
|
|
1177
|
+
RegistrationTime?: Date | undefined;
|
|
1178
|
+
LatestHeartbeat?: Date | undefined;
|
|
1179
|
+
Models?: EdgeModelSummary[] | undefined;
|
|
1180
|
+
AgentVersion?: string | undefined;
|
|
1173
1181
|
}
|
|
1174
1182
|
export declare const Direction: {
|
|
1175
1183
|
readonly ASCENDANTS: "Ascendants";
|
|
@@ -1184,33 +1192,35 @@ export interface DisassociateTrialComponentRequest {
|
|
|
1184
1192
|
TrialName: string | undefined;
|
|
1185
1193
|
}
|
|
1186
1194
|
export interface DisassociateTrialComponentResponse {
|
|
1187
|
-
TrialComponentArn?: string;
|
|
1188
|
-
TrialArn?: string;
|
|
1195
|
+
TrialComponentArn?: string | undefined;
|
|
1196
|
+
TrialArn?: string | undefined;
|
|
1189
1197
|
}
|
|
1190
1198
|
export interface DomainDetails {
|
|
1191
|
-
DomainArn?: string;
|
|
1192
|
-
DomainId?: string;
|
|
1193
|
-
DomainName?: string;
|
|
1194
|
-
Status?: DomainStatus;
|
|
1195
|
-
CreationTime?: Date;
|
|
1196
|
-
LastModifiedTime?: Date;
|
|
1197
|
-
Url?: string;
|
|
1199
|
+
DomainArn?: string | undefined;
|
|
1200
|
+
DomainId?: string | undefined;
|
|
1201
|
+
DomainName?: string | undefined;
|
|
1202
|
+
Status?: DomainStatus | undefined;
|
|
1203
|
+
CreationTime?: Date | undefined;
|
|
1204
|
+
LastModifiedTime?: Date | undefined;
|
|
1205
|
+
Url?: string | undefined;
|
|
1198
1206
|
}
|
|
1199
1207
|
export interface RStudioServerProDomainSettingsForUpdate {
|
|
1200
1208
|
DomainExecutionRoleArn: string | undefined;
|
|
1201
|
-
DefaultResourceSpec?: ResourceSpec;
|
|
1202
|
-
RStudioConnectUrl?: string;
|
|
1203
|
-
RStudioPackageManagerUrl?: string;
|
|
1209
|
+
DefaultResourceSpec?: ResourceSpec | undefined;
|
|
1210
|
+
RStudioConnectUrl?: string | undefined;
|
|
1211
|
+
RStudioPackageManagerUrl?: string | undefined;
|
|
1204
1212
|
}
|
|
1205
1213
|
export interface DomainSettingsForUpdate {
|
|
1206
|
-
RStudioServerProDomainSettingsForUpdate?:
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1214
|
+
RStudioServerProDomainSettingsForUpdate?:
|
|
1215
|
+
| RStudioServerProDomainSettingsForUpdate
|
|
1216
|
+
| undefined;
|
|
1217
|
+
ExecutionRoleIdentityConfig?: ExecutionRoleIdentityConfig | undefined;
|
|
1218
|
+
SecurityGroupIds?: string[] | undefined;
|
|
1219
|
+
DockerSettings?: DockerSettings | undefined;
|
|
1220
|
+
AmazonQSettings?: AmazonQSettings | undefined;
|
|
1211
1221
|
}
|
|
1212
1222
|
export interface PredefinedMetricSpecification {
|
|
1213
|
-
PredefinedMetricType?: string;
|
|
1223
|
+
PredefinedMetricType?: string | undefined;
|
|
1214
1224
|
}
|
|
1215
1225
|
export type MetricSpecification =
|
|
1216
1226
|
| MetricSpecification.CustomizedMember
|
|
@@ -1240,8 +1250,8 @@ export declare namespace MetricSpecification {
|
|
|
1240
1250
|
const visit: <T>(value: MetricSpecification, visitor: Visitor<T>) => T;
|
|
1241
1251
|
}
|
|
1242
1252
|
export interface TargetTrackingScalingPolicyConfiguration {
|
|
1243
|
-
MetricSpecification?: MetricSpecification;
|
|
1244
|
-
TargetValue?: number;
|
|
1253
|
+
MetricSpecification?: MetricSpecification | undefined;
|
|
1254
|
+
TargetValue?: number | undefined;
|
|
1245
1255
|
}
|
|
1246
1256
|
export type ScalingPolicy =
|
|
1247
1257
|
| ScalingPolicy.TargetTrackingMember
|
|
@@ -1262,16 +1272,16 @@ export declare namespace ScalingPolicy {
|
|
|
1262
1272
|
const visit: <T>(value: ScalingPolicy, visitor: Visitor<T>) => T;
|
|
1263
1273
|
}
|
|
1264
1274
|
export interface DynamicScalingConfiguration {
|
|
1265
|
-
MinCapacity?: number;
|
|
1266
|
-
MaxCapacity?: number;
|
|
1267
|
-
ScaleInCooldown?: number;
|
|
1268
|
-
ScaleOutCooldown?: number;
|
|
1269
|
-
ScalingPolicies?: ScalingPolicy[];
|
|
1275
|
+
MinCapacity?: number | undefined;
|
|
1276
|
+
MaxCapacity?: number | undefined;
|
|
1277
|
+
ScaleInCooldown?: number | undefined;
|
|
1278
|
+
ScaleOutCooldown?: number | undefined;
|
|
1279
|
+
ScalingPolicies?: ScalingPolicy[] | undefined;
|
|
1270
1280
|
}
|
|
1271
1281
|
export interface Edge {
|
|
1272
|
-
SourceArn?: string;
|
|
1273
|
-
DestinationArn?: string;
|
|
1274
|
-
AssociationType?: AssociationEdgeType;
|
|
1282
|
+
SourceArn?: string | undefined;
|
|
1283
|
+
DestinationArn?: string | undefined;
|
|
1284
|
+
AssociationType?: AssociationEdgeType | undefined;
|
|
1275
1285
|
}
|
|
1276
1286
|
export interface EdgeDeploymentPlanSummary {
|
|
1277
1287
|
EdgeDeploymentPlanArn: string | undefined;
|
|
@@ -1280,8 +1290,8 @@ export interface EdgeDeploymentPlanSummary {
|
|
|
1280
1290
|
EdgeDeploymentSuccess: number | undefined;
|
|
1281
1291
|
EdgeDeploymentPending: number | undefined;
|
|
1282
1292
|
EdgeDeploymentFailed: number | undefined;
|
|
1283
|
-
CreationTime?: Date;
|
|
1284
|
-
LastModifiedTime?: Date;
|
|
1293
|
+
CreationTime?: Date | undefined;
|
|
1294
|
+
LastModifiedTime?: Date | undefined;
|
|
1285
1295
|
}
|
|
1286
1296
|
export interface EdgeModelStat {
|
|
1287
1297
|
ModelName: string | undefined;
|
|
@@ -1295,46 +1305,46 @@ export interface EdgePackagingJobSummary {
|
|
|
1295
1305
|
EdgePackagingJobArn: string | undefined;
|
|
1296
1306
|
EdgePackagingJobName: string | undefined;
|
|
1297
1307
|
EdgePackagingJobStatus: EdgePackagingJobStatus | undefined;
|
|
1298
|
-
CompilationJobName?: string;
|
|
1299
|
-
ModelName?: string;
|
|
1300
|
-
ModelVersion?: string;
|
|
1301
|
-
CreationTime?: Date;
|
|
1302
|
-
LastModifiedTime?: Date;
|
|
1308
|
+
CompilationJobName?: string | undefined;
|
|
1309
|
+
ModelName?: string | undefined;
|
|
1310
|
+
ModelVersion?: string | undefined;
|
|
1311
|
+
CreationTime?: Date | undefined;
|
|
1312
|
+
LastModifiedTime?: Date | undefined;
|
|
1303
1313
|
}
|
|
1304
1314
|
export interface EMRStepMetadata {
|
|
1305
|
-
ClusterId?: string;
|
|
1306
|
-
StepId?: string;
|
|
1307
|
-
StepName?: string;
|
|
1308
|
-
LogFilePath?: string;
|
|
1315
|
+
ClusterId?: string | undefined;
|
|
1316
|
+
StepId?: string | undefined;
|
|
1317
|
+
StepName?: string | undefined;
|
|
1318
|
+
LogFilePath?: string | undefined;
|
|
1309
1319
|
}
|
|
1310
1320
|
export interface EnableSagemakerServicecatalogPortfolioInput {}
|
|
1311
1321
|
export interface EnableSagemakerServicecatalogPortfolioOutput {}
|
|
1312
1322
|
export interface MonitoringSchedule {
|
|
1313
|
-
MonitoringScheduleArn?: string;
|
|
1314
|
-
MonitoringScheduleName?: string;
|
|
1315
|
-
MonitoringScheduleStatus?: ScheduleStatus;
|
|
1316
|
-
MonitoringType?: MonitoringType;
|
|
1317
|
-
FailureReason?: string;
|
|
1318
|
-
CreationTime?: Date;
|
|
1319
|
-
LastModifiedTime?: Date;
|
|
1320
|
-
MonitoringScheduleConfig?: MonitoringScheduleConfig;
|
|
1321
|
-
EndpointName?: string;
|
|
1322
|
-
LastMonitoringExecutionSummary?: MonitoringExecutionSummary;
|
|
1323
|
-
Tags?: Tag[];
|
|
1323
|
+
MonitoringScheduleArn?: string | undefined;
|
|
1324
|
+
MonitoringScheduleName?: string | undefined;
|
|
1325
|
+
MonitoringScheduleStatus?: ScheduleStatus | undefined;
|
|
1326
|
+
MonitoringType?: MonitoringType | undefined;
|
|
1327
|
+
FailureReason?: string | undefined;
|
|
1328
|
+
CreationTime?: Date | undefined;
|
|
1329
|
+
LastModifiedTime?: Date | undefined;
|
|
1330
|
+
MonitoringScheduleConfig?: MonitoringScheduleConfig | undefined;
|
|
1331
|
+
EndpointName?: string | undefined;
|
|
1332
|
+
LastMonitoringExecutionSummary?: MonitoringExecutionSummary | undefined;
|
|
1333
|
+
Tags?: Tag[] | undefined;
|
|
1324
1334
|
}
|
|
1325
1335
|
export interface Endpoint {
|
|
1326
1336
|
EndpointName: string | undefined;
|
|
1327
1337
|
EndpointArn: string | undefined;
|
|
1328
1338
|
EndpointConfigName: string | undefined;
|
|
1329
|
-
ProductionVariants?: ProductionVariantSummary[];
|
|
1330
|
-
DataCaptureConfig?: DataCaptureConfigSummary;
|
|
1339
|
+
ProductionVariants?: ProductionVariantSummary[] | undefined;
|
|
1340
|
+
DataCaptureConfig?: DataCaptureConfigSummary | undefined;
|
|
1331
1341
|
EndpointStatus: EndpointStatus | undefined;
|
|
1332
|
-
FailureReason?: string;
|
|
1342
|
+
FailureReason?: string | undefined;
|
|
1333
1343
|
CreationTime: Date | undefined;
|
|
1334
1344
|
LastModifiedTime: Date | undefined;
|
|
1335
|
-
MonitoringSchedules?: MonitoringSchedule[];
|
|
1336
|
-
Tags?: Tag[];
|
|
1337
|
-
ShadowProductionVariants?: ProductionVariantSummary[];
|
|
1345
|
+
MonitoringSchedules?: MonitoringSchedule[] | undefined;
|
|
1346
|
+
Tags?: Tag[] | undefined;
|
|
1347
|
+
ShadowProductionVariants?: ProductionVariantSummary[] | undefined;
|
|
1338
1348
|
}
|
|
1339
1349
|
export declare const EndpointConfigSortKey: {
|
|
1340
1350
|
readonly CreationTime: "CreationTime";
|
|
@@ -1343,7 +1353,7 @@ export declare const EndpointConfigSortKey: {
|
|
|
1343
1353
|
export type EndpointConfigSortKey =
|
|
1344
1354
|
(typeof EndpointConfigSortKey)[keyof typeof EndpointConfigSortKey];
|
|
1345
1355
|
export interface EndpointConfigStepMetadata {
|
|
1346
|
-
Arn?: string;
|
|
1356
|
+
Arn?: string | undefined;
|
|
1347
1357
|
}
|
|
1348
1358
|
export interface EndpointConfigSummary {
|
|
1349
1359
|
EndpointConfigName: string | undefined;
|
|
@@ -1358,7 +1368,7 @@ export declare const EndpointSortKey: {
|
|
|
1358
1368
|
export type EndpointSortKey =
|
|
1359
1369
|
(typeof EndpointSortKey)[keyof typeof EndpointSortKey];
|
|
1360
1370
|
export interface EndpointStepMetadata {
|
|
1361
|
-
Arn?: string;
|
|
1371
|
+
Arn?: string | undefined;
|
|
1362
1372
|
}
|
|
1363
1373
|
export interface EndpointSummary {
|
|
1364
1374
|
EndpointName: string | undefined;
|
|
@@ -1368,45 +1378,45 @@ export interface EndpointSummary {
|
|
|
1368
1378
|
EndpointStatus: EndpointStatus | undefined;
|
|
1369
1379
|
}
|
|
1370
1380
|
export interface Experiment {
|
|
1371
|
-
ExperimentName?: string;
|
|
1372
|
-
ExperimentArn?: string;
|
|
1373
|
-
DisplayName?: string;
|
|
1374
|
-
Source?: ExperimentSource;
|
|
1375
|
-
Description?: string;
|
|
1376
|
-
CreationTime?: Date;
|
|
1377
|
-
CreatedBy?: UserContext;
|
|
1378
|
-
LastModifiedTime?: Date;
|
|
1379
|
-
LastModifiedBy?: UserContext;
|
|
1380
|
-
Tags?: Tag[];
|
|
1381
|
+
ExperimentName?: string | undefined;
|
|
1382
|
+
ExperimentArn?: string | undefined;
|
|
1383
|
+
DisplayName?: string | undefined;
|
|
1384
|
+
Source?: ExperimentSource | undefined;
|
|
1385
|
+
Description?: string | undefined;
|
|
1386
|
+
CreationTime?: Date | undefined;
|
|
1387
|
+
CreatedBy?: UserContext | undefined;
|
|
1388
|
+
LastModifiedTime?: Date | undefined;
|
|
1389
|
+
LastModifiedBy?: UserContext | undefined;
|
|
1390
|
+
Tags?: Tag[] | undefined;
|
|
1381
1391
|
}
|
|
1382
1392
|
export interface ExperimentSummary {
|
|
1383
|
-
ExperimentArn?: string;
|
|
1384
|
-
ExperimentName?: string;
|
|
1385
|
-
DisplayName?: string;
|
|
1386
|
-
ExperimentSource?: ExperimentSource;
|
|
1387
|
-
CreationTime?: Date;
|
|
1388
|
-
LastModifiedTime?: Date;
|
|
1393
|
+
ExperimentArn?: string | undefined;
|
|
1394
|
+
ExperimentName?: string | undefined;
|
|
1395
|
+
DisplayName?: string | undefined;
|
|
1396
|
+
ExperimentSource?: ExperimentSource | undefined;
|
|
1397
|
+
CreationTime?: Date | undefined;
|
|
1398
|
+
LastModifiedTime?: Date | undefined;
|
|
1389
1399
|
}
|
|
1390
1400
|
export interface FailStepMetadata {
|
|
1391
|
-
ErrorMessage?: string;
|
|
1401
|
+
ErrorMessage?: string | undefined;
|
|
1392
1402
|
}
|
|
1393
1403
|
export interface FeatureGroup {
|
|
1394
|
-
FeatureGroupArn?: string;
|
|
1395
|
-
FeatureGroupName?: string;
|
|
1396
|
-
RecordIdentifierFeatureName?: string;
|
|
1397
|
-
EventTimeFeatureName?: string;
|
|
1398
|
-
FeatureDefinitions?: FeatureDefinition[];
|
|
1399
|
-
CreationTime?: Date;
|
|
1400
|
-
LastModifiedTime?: Date;
|
|
1401
|
-
OnlineStoreConfig?: OnlineStoreConfig;
|
|
1402
|
-
OfflineStoreConfig?: OfflineStoreConfig;
|
|
1403
|
-
RoleArn?: string;
|
|
1404
|
-
FeatureGroupStatus?: FeatureGroupStatus;
|
|
1405
|
-
OfflineStoreStatus?: OfflineStoreStatus;
|
|
1406
|
-
LastUpdateStatus?: LastUpdateStatus;
|
|
1407
|
-
FailureReason?: string;
|
|
1408
|
-
Description?: string;
|
|
1409
|
-
Tags?: Tag[];
|
|
1404
|
+
FeatureGroupArn?: string | undefined;
|
|
1405
|
+
FeatureGroupName?: string | undefined;
|
|
1406
|
+
RecordIdentifierFeatureName?: string | undefined;
|
|
1407
|
+
EventTimeFeatureName?: string | undefined;
|
|
1408
|
+
FeatureDefinitions?: FeatureDefinition[] | undefined;
|
|
1409
|
+
CreationTime?: Date | undefined;
|
|
1410
|
+
LastModifiedTime?: Date | undefined;
|
|
1411
|
+
OnlineStoreConfig?: OnlineStoreConfig | undefined;
|
|
1412
|
+
OfflineStoreConfig?: OfflineStoreConfig | undefined;
|
|
1413
|
+
RoleArn?: string | undefined;
|
|
1414
|
+
FeatureGroupStatus?: FeatureGroupStatus | undefined;
|
|
1415
|
+
OfflineStoreStatus?: OfflineStoreStatus | undefined;
|
|
1416
|
+
LastUpdateStatus?: LastUpdateStatus | undefined;
|
|
1417
|
+
FailureReason?: string | undefined;
|
|
1418
|
+
Description?: string | undefined;
|
|
1419
|
+
Tags?: Tag[] | undefined;
|
|
1410
1420
|
}
|
|
1411
1421
|
export declare const FeatureGroupSortBy: {
|
|
1412
1422
|
readonly CREATION_TIME: "CreationTime";
|
|
@@ -1426,18 +1436,18 @@ export interface FeatureGroupSummary {
|
|
|
1426
1436
|
FeatureGroupName: string | undefined;
|
|
1427
1437
|
FeatureGroupArn: string | undefined;
|
|
1428
1438
|
CreationTime: Date | undefined;
|
|
1429
|
-
FeatureGroupStatus?: FeatureGroupStatus;
|
|
1430
|
-
OfflineStoreStatus?: OfflineStoreStatus;
|
|
1439
|
+
FeatureGroupStatus?: FeatureGroupStatus | undefined;
|
|
1440
|
+
OfflineStoreStatus?: OfflineStoreStatus | undefined;
|
|
1431
1441
|
}
|
|
1432
1442
|
export interface FeatureMetadata {
|
|
1433
|
-
FeatureGroupArn?: string;
|
|
1434
|
-
FeatureGroupName?: string;
|
|
1435
|
-
FeatureName?: string;
|
|
1436
|
-
FeatureType?: FeatureType;
|
|
1437
|
-
CreationTime?: Date;
|
|
1438
|
-
LastModifiedTime?: Date;
|
|
1439
|
-
Description?: string;
|
|
1440
|
-
Parameters?: FeatureParameter[];
|
|
1443
|
+
FeatureGroupArn?: string | undefined;
|
|
1444
|
+
FeatureGroupName?: string | undefined;
|
|
1445
|
+
FeatureName?: string | undefined;
|
|
1446
|
+
FeatureType?: FeatureType | undefined;
|
|
1447
|
+
CreationTime?: Date | undefined;
|
|
1448
|
+
LastModifiedTime?: Date | undefined;
|
|
1449
|
+
Description?: string | undefined;
|
|
1450
|
+
Parameters?: FeatureParameter[] | undefined;
|
|
1441
1451
|
}
|
|
1442
1452
|
export declare const Operator: {
|
|
1443
1453
|
readonly CONTAINS: "Contains";
|
|
@@ -1454,15 +1464,15 @@ export declare const Operator: {
|
|
|
1454
1464
|
export type Operator = (typeof Operator)[keyof typeof Operator];
|
|
1455
1465
|
export interface Filter {
|
|
1456
1466
|
Name: string | undefined;
|
|
1457
|
-
Operator?: Operator;
|
|
1458
|
-
Value?: string;
|
|
1467
|
+
Operator?: Operator | undefined;
|
|
1468
|
+
Value?: string | undefined;
|
|
1459
1469
|
}
|
|
1460
1470
|
export interface FlowDefinitionSummary {
|
|
1461
1471
|
FlowDefinitionName: string | undefined;
|
|
1462
1472
|
FlowDefinitionArn: string | undefined;
|
|
1463
1473
|
FlowDefinitionStatus: FlowDefinitionStatus | undefined;
|
|
1464
1474
|
CreationTime: Date | undefined;
|
|
1465
|
-
FailureReason?: string;
|
|
1475
|
+
FailureReason?: string | undefined;
|
|
1466
1476
|
}
|
|
1467
1477
|
export interface GetDeviceFleetReportRequest {
|
|
1468
1478
|
DeviceFleetName: string | undefined;
|
|
@@ -1470,19 +1480,19 @@ export interface GetDeviceFleetReportRequest {
|
|
|
1470
1480
|
export interface GetDeviceFleetReportResponse {
|
|
1471
1481
|
DeviceFleetArn: string | undefined;
|
|
1472
1482
|
DeviceFleetName: string | undefined;
|
|
1473
|
-
OutputConfig?: EdgeOutputConfig;
|
|
1474
|
-
Description?: string;
|
|
1475
|
-
ReportGenerated?: Date;
|
|
1476
|
-
DeviceStats?: DeviceStats;
|
|
1477
|
-
AgentVersions?: AgentVersion[];
|
|
1478
|
-
ModelStats?: EdgeModelStat[];
|
|
1483
|
+
OutputConfig?: EdgeOutputConfig | undefined;
|
|
1484
|
+
Description?: string | undefined;
|
|
1485
|
+
ReportGenerated?: Date | undefined;
|
|
1486
|
+
DeviceStats?: DeviceStats | undefined;
|
|
1487
|
+
AgentVersions?: AgentVersion[] | undefined;
|
|
1488
|
+
ModelStats?: EdgeModelStat[] | undefined;
|
|
1479
1489
|
}
|
|
1480
1490
|
export interface GetLineageGroupPolicyRequest {
|
|
1481
1491
|
LineageGroupName: string | undefined;
|
|
1482
1492
|
}
|
|
1483
1493
|
export interface GetLineageGroupPolicyResponse {
|
|
1484
|
-
LineageGroupArn?: string;
|
|
1485
|
-
ResourcePolicy?: string;
|
|
1494
|
+
LineageGroupArn?: string | undefined;
|
|
1495
|
+
ResourcePolicy?: string | undefined;
|
|
1486
1496
|
}
|
|
1487
1497
|
export interface GetModelPackageGroupPolicyInput {
|
|
1488
1498
|
ModelPackageGroupName: string | undefined;
|
|
@@ -1498,31 +1508,31 @@ export declare const SagemakerServicecatalogStatus: {
|
|
|
1498
1508
|
export type SagemakerServicecatalogStatus =
|
|
1499
1509
|
(typeof SagemakerServicecatalogStatus)[keyof typeof SagemakerServicecatalogStatus];
|
|
1500
1510
|
export interface GetSagemakerServicecatalogPortfolioStatusOutput {
|
|
1501
|
-
Status?: SagemakerServicecatalogStatus;
|
|
1511
|
+
Status?: SagemakerServicecatalogStatus | undefined;
|
|
1502
1512
|
}
|
|
1503
1513
|
export interface ScalingPolicyObjective {
|
|
1504
|
-
MinInvocationsPerMinute?: number;
|
|
1505
|
-
MaxInvocationsPerMinute?: number;
|
|
1514
|
+
MinInvocationsPerMinute?: number | undefined;
|
|
1515
|
+
MaxInvocationsPerMinute?: number | undefined;
|
|
1506
1516
|
}
|
|
1507
1517
|
export interface GetScalingConfigurationRecommendationRequest {
|
|
1508
1518
|
InferenceRecommendationsJobName: string | undefined;
|
|
1509
|
-
RecommendationId?: string;
|
|
1510
|
-
EndpointName?: string;
|
|
1511
|
-
TargetCpuUtilizationPerCore?: number;
|
|
1512
|
-
ScalingPolicyObjective?: ScalingPolicyObjective;
|
|
1519
|
+
RecommendationId?: string | undefined;
|
|
1520
|
+
EndpointName?: string | undefined;
|
|
1521
|
+
TargetCpuUtilizationPerCore?: number | undefined;
|
|
1522
|
+
ScalingPolicyObjective?: ScalingPolicyObjective | undefined;
|
|
1513
1523
|
}
|
|
1514
1524
|
export interface ScalingPolicyMetric {
|
|
1515
|
-
InvocationsPerInstance?: number;
|
|
1516
|
-
ModelLatency?: number;
|
|
1525
|
+
InvocationsPerInstance?: number | undefined;
|
|
1526
|
+
ModelLatency?: number | undefined;
|
|
1517
1527
|
}
|
|
1518
1528
|
export interface GetScalingConfigurationRecommendationResponse {
|
|
1519
|
-
InferenceRecommendationsJobName?: string;
|
|
1520
|
-
RecommendationId?: string;
|
|
1521
|
-
EndpointName?: string;
|
|
1522
|
-
TargetCpuUtilizationPerCore?: number;
|
|
1523
|
-
ScalingPolicyObjective?: ScalingPolicyObjective;
|
|
1524
|
-
Metric?: ScalingPolicyMetric;
|
|
1525
|
-
DynamicScalingConfiguration?: DynamicScalingConfiguration;
|
|
1529
|
+
InferenceRecommendationsJobName?: string | undefined;
|
|
1530
|
+
RecommendationId?: string | undefined;
|
|
1531
|
+
EndpointName?: string | undefined;
|
|
1532
|
+
TargetCpuUtilizationPerCore?: number | undefined;
|
|
1533
|
+
ScalingPolicyObjective?: ScalingPolicyObjective | undefined;
|
|
1534
|
+
Metric?: ScalingPolicyMetric | undefined;
|
|
1535
|
+
DynamicScalingConfiguration?: DynamicScalingConfiguration | undefined;
|
|
1526
1536
|
}
|
|
1527
1537
|
export declare const ResourceType: {
|
|
1528
1538
|
readonly ENDPOINT: "Endpoint";
|
|
@@ -1548,35 +1558,35 @@ export interface PropertyNameQuery {
|
|
|
1548
1558
|
PropertyNameHint: string | undefined;
|
|
1549
1559
|
}
|
|
1550
1560
|
export interface SuggestionQuery {
|
|
1551
|
-
PropertyNameQuery?: PropertyNameQuery;
|
|
1561
|
+
PropertyNameQuery?: PropertyNameQuery | undefined;
|
|
1552
1562
|
}
|
|
1553
1563
|
export interface GetSearchSuggestionsRequest {
|
|
1554
1564
|
Resource: ResourceType | undefined;
|
|
1555
|
-
SuggestionQuery?: SuggestionQuery;
|
|
1565
|
+
SuggestionQuery?: SuggestionQuery | undefined;
|
|
1556
1566
|
}
|
|
1557
1567
|
export interface PropertyNameSuggestion {
|
|
1558
|
-
PropertyName?: string;
|
|
1568
|
+
PropertyName?: string | undefined;
|
|
1559
1569
|
}
|
|
1560
1570
|
export interface GetSearchSuggestionsResponse {
|
|
1561
|
-
PropertyNameSuggestions?: PropertyNameSuggestion[];
|
|
1571
|
+
PropertyNameSuggestions?: PropertyNameSuggestion[] | undefined;
|
|
1562
1572
|
}
|
|
1563
1573
|
export interface GitConfigForUpdate {
|
|
1564
|
-
SecretArn?: string;
|
|
1574
|
+
SecretArn?: string | undefined;
|
|
1565
1575
|
}
|
|
1566
1576
|
export interface HubContentInfo {
|
|
1567
1577
|
HubContentName: string | undefined;
|
|
1568
1578
|
HubContentArn: string | undefined;
|
|
1569
|
-
SageMakerPublicHubContentArn?: string;
|
|
1579
|
+
SageMakerPublicHubContentArn?: string | undefined;
|
|
1570
1580
|
HubContentVersion: string | undefined;
|
|
1571
1581
|
HubContentType: HubContentType | undefined;
|
|
1572
1582
|
DocumentSchemaVersion: string | undefined;
|
|
1573
|
-
HubContentDisplayName?: string;
|
|
1574
|
-
HubContentDescription?: string;
|
|
1575
|
-
SupportStatus?: HubContentSupportStatus;
|
|
1576
|
-
HubContentSearchKeywords?: string[];
|
|
1583
|
+
HubContentDisplayName?: string | undefined;
|
|
1584
|
+
HubContentDescription?: string | undefined;
|
|
1585
|
+
SupportStatus?: HubContentSupportStatus | undefined;
|
|
1586
|
+
HubContentSearchKeywords?: string[] | undefined;
|
|
1577
1587
|
HubContentStatus: HubContentStatus | undefined;
|
|
1578
1588
|
CreationTime: Date | undefined;
|
|
1579
|
-
OriginalCreationTime?: Date;
|
|
1589
|
+
OriginalCreationTime?: Date | undefined;
|
|
1580
1590
|
}
|
|
1581
1591
|
export declare const HubContentSortBy: {
|
|
1582
1592
|
readonly CREATION_TIME: "CreationTime";
|
|
@@ -1588,9 +1598,9 @@ export type HubContentSortBy =
|
|
|
1588
1598
|
export interface HubInfo {
|
|
1589
1599
|
HubName: string | undefined;
|
|
1590
1600
|
HubArn: string | undefined;
|
|
1591
|
-
HubDisplayName?: string;
|
|
1592
|
-
HubDescription?: string;
|
|
1593
|
-
HubSearchKeywords?: string[];
|
|
1601
|
+
HubDisplayName?: string | undefined;
|
|
1602
|
+
HubDescription?: string | undefined;
|
|
1603
|
+
HubSearchKeywords?: string[] | undefined;
|
|
1594
1604
|
HubStatus: HubStatus | undefined;
|
|
1595
1605
|
CreationTime: Date | undefined;
|
|
1596
1606
|
LastModifiedTime: Date | undefined;
|
|
@@ -1608,24 +1618,26 @@ export interface HumanTaskUiSummary {
|
|
|
1608
1618
|
CreationTime: Date | undefined;
|
|
1609
1619
|
}
|
|
1610
1620
|
export interface HyperParameterTuningJobSearchEntity {
|
|
1611
|
-
HyperParameterTuningJobName?: string;
|
|
1612
|
-
HyperParameterTuningJobArn?: string;
|
|
1613
|
-
HyperParameterTuningJobConfig?: HyperParameterTuningJobConfig;
|
|
1614
|
-
TrainingJobDefinition?: HyperParameterTrainingJobDefinition;
|
|
1615
|
-
TrainingJobDefinitions?: HyperParameterTrainingJobDefinition[];
|
|
1616
|
-
HyperParameterTuningJobStatus?: HyperParameterTuningJobStatus;
|
|
1617
|
-
CreationTime?: Date;
|
|
1618
|
-
HyperParameterTuningEndTime?: Date;
|
|
1619
|
-
LastModifiedTime?: Date;
|
|
1620
|
-
TrainingJobStatusCounters?: TrainingJobStatusCounters;
|
|
1621
|
-
ObjectiveStatusCounters?: ObjectiveStatusCounters;
|
|
1622
|
-
BestTrainingJob?: HyperParameterTrainingJobSummary;
|
|
1623
|
-
OverallBestTrainingJob?: HyperParameterTrainingJobSummary;
|
|
1624
|
-
WarmStartConfig?: HyperParameterTuningJobWarmStartConfig;
|
|
1625
|
-
FailureReason?: string;
|
|
1626
|
-
TuningJobCompletionDetails?:
|
|
1627
|
-
|
|
1628
|
-
|
|
1621
|
+
HyperParameterTuningJobName?: string | undefined;
|
|
1622
|
+
HyperParameterTuningJobArn?: string | undefined;
|
|
1623
|
+
HyperParameterTuningJobConfig?: HyperParameterTuningJobConfig | undefined;
|
|
1624
|
+
TrainingJobDefinition?: HyperParameterTrainingJobDefinition | undefined;
|
|
1625
|
+
TrainingJobDefinitions?: HyperParameterTrainingJobDefinition[] | undefined;
|
|
1626
|
+
HyperParameterTuningJobStatus?: HyperParameterTuningJobStatus | undefined;
|
|
1627
|
+
CreationTime?: Date | undefined;
|
|
1628
|
+
HyperParameterTuningEndTime?: Date | undefined;
|
|
1629
|
+
LastModifiedTime?: Date | undefined;
|
|
1630
|
+
TrainingJobStatusCounters?: TrainingJobStatusCounters | undefined;
|
|
1631
|
+
ObjectiveStatusCounters?: ObjectiveStatusCounters | undefined;
|
|
1632
|
+
BestTrainingJob?: HyperParameterTrainingJobSummary | undefined;
|
|
1633
|
+
OverallBestTrainingJob?: HyperParameterTrainingJobSummary | undefined;
|
|
1634
|
+
WarmStartConfig?: HyperParameterTuningJobWarmStartConfig | undefined;
|
|
1635
|
+
FailureReason?: string | undefined;
|
|
1636
|
+
TuningJobCompletionDetails?:
|
|
1637
|
+
| HyperParameterTuningJobCompletionDetails
|
|
1638
|
+
| undefined;
|
|
1639
|
+
ConsumedResources?: HyperParameterTuningJobConsumedResources | undefined;
|
|
1640
|
+
Tags?: Tag[] | undefined;
|
|
1629
1641
|
}
|
|
1630
1642
|
export declare const HyperParameterTuningJobSortByOptions: {
|
|
1631
1643
|
readonly CreationTime: "CreationTime";
|
|
@@ -1640,17 +1652,17 @@ export interface HyperParameterTuningJobSummary {
|
|
|
1640
1652
|
HyperParameterTuningJobStatus: HyperParameterTuningJobStatus | undefined;
|
|
1641
1653
|
Strategy: HyperParameterTuningJobStrategyType | undefined;
|
|
1642
1654
|
CreationTime: Date | undefined;
|
|
1643
|
-
HyperParameterTuningEndTime?: Date;
|
|
1644
|
-
LastModifiedTime?: Date;
|
|
1655
|
+
HyperParameterTuningEndTime?: Date | undefined;
|
|
1656
|
+
LastModifiedTime?: Date | undefined;
|
|
1645
1657
|
TrainingJobStatusCounters: TrainingJobStatusCounters | undefined;
|
|
1646
1658
|
ObjectiveStatusCounters: ObjectiveStatusCounters | undefined;
|
|
1647
|
-
ResourceLimits?: ResourceLimits;
|
|
1659
|
+
ResourceLimits?: ResourceLimits | undefined;
|
|
1648
1660
|
}
|
|
1649
1661
|
export interface Image {
|
|
1650
1662
|
CreationTime: Date | undefined;
|
|
1651
|
-
Description?: string;
|
|
1652
|
-
DisplayName?: string;
|
|
1653
|
-
FailureReason?: string;
|
|
1663
|
+
Description?: string | undefined;
|
|
1664
|
+
DisplayName?: string | undefined;
|
|
1665
|
+
FailureReason?: string | undefined;
|
|
1654
1666
|
ImageArn: string | undefined;
|
|
1655
1667
|
ImageName: string | undefined;
|
|
1656
1668
|
ImageStatus: ImageStatus | undefined;
|
|
@@ -1670,7 +1682,7 @@ export type ImageSortOrder =
|
|
|
1670
1682
|
(typeof ImageSortOrder)[keyof typeof ImageSortOrder];
|
|
1671
1683
|
export interface ImageVersion {
|
|
1672
1684
|
CreationTime: Date | undefined;
|
|
1673
|
-
FailureReason?: string;
|
|
1685
|
+
FailureReason?: string | undefined;
|
|
1674
1686
|
ImageArn: string | undefined;
|
|
1675
1687
|
ImageVersionArn: string | undefined;
|
|
1676
1688
|
ImageVersionStatus: ImageVersionStatus | undefined;
|
|
@@ -1692,16 +1704,16 @@ export type ImageVersionSortOrder =
|
|
|
1692
1704
|
(typeof ImageVersionSortOrder)[keyof typeof ImageVersionSortOrder];
|
|
1693
1705
|
export interface ImportHubContentRequest {
|
|
1694
1706
|
HubContentName: string | undefined;
|
|
1695
|
-
HubContentVersion?: string;
|
|
1707
|
+
HubContentVersion?: string | undefined;
|
|
1696
1708
|
HubContentType: HubContentType | undefined;
|
|
1697
1709
|
DocumentSchemaVersion: string | undefined;
|
|
1698
1710
|
HubName: string | undefined;
|
|
1699
|
-
HubContentDisplayName?: string;
|
|
1700
|
-
HubContentDescription?: string;
|
|
1701
|
-
HubContentMarkdown?: string;
|
|
1711
|
+
HubContentDisplayName?: string | undefined;
|
|
1712
|
+
HubContentDescription?: string | undefined;
|
|
1713
|
+
HubContentMarkdown?: string | undefined;
|
|
1702
1714
|
HubContentDocument: string | undefined;
|
|
1703
|
-
HubContentSearchKeywords?: string[];
|
|
1704
|
-
Tags?: Tag[];
|
|
1715
|
+
HubContentSearchKeywords?: string[] | undefined;
|
|
1716
|
+
Tags?: Tag[] | undefined;
|
|
1705
1717
|
}
|
|
1706
1718
|
export interface ImportHubContentResponse {
|
|
1707
1719
|
HubArn: string | undefined;
|
|
@@ -1721,20 +1733,20 @@ export interface InferenceComponentSummary {
|
|
|
1721
1733
|
EndpointArn: string | undefined;
|
|
1722
1734
|
EndpointName: string | undefined;
|
|
1723
1735
|
VariantName: string | undefined;
|
|
1724
|
-
InferenceComponentStatus?: InferenceComponentStatus;
|
|
1736
|
+
InferenceComponentStatus?: InferenceComponentStatus | undefined;
|
|
1725
1737
|
LastModifiedTime: Date | undefined;
|
|
1726
1738
|
}
|
|
1727
1739
|
export interface InferenceExperimentSummary {
|
|
1728
1740
|
Name: string | undefined;
|
|
1729
1741
|
Type: InferenceExperimentType | undefined;
|
|
1730
|
-
Schedule?: InferenceExperimentSchedule;
|
|
1742
|
+
Schedule?: InferenceExperimentSchedule | undefined;
|
|
1731
1743
|
Status: InferenceExperimentStatus | undefined;
|
|
1732
|
-
StatusReason?: string;
|
|
1733
|
-
Description?: string;
|
|
1744
|
+
StatusReason?: string | undefined;
|
|
1745
|
+
Description?: string | undefined;
|
|
1734
1746
|
CreationTime: Date | undefined;
|
|
1735
|
-
CompletionTime?: Date;
|
|
1747
|
+
CompletionTime?: Date | undefined;
|
|
1736
1748
|
LastModifiedTime: Date | undefined;
|
|
1737
|
-
RoleArn?: string;
|
|
1749
|
+
RoleArn?: string | undefined;
|
|
1738
1750
|
}
|
|
1739
1751
|
export declare const InferenceExperimentStopDesiredState: {
|
|
1740
1752
|
readonly CANCELLED: "Cancelled";
|
|
@@ -1749,22 +1761,22 @@ export interface InferenceRecommendationsJob {
|
|
|
1749
1761
|
JobArn: string | undefined;
|
|
1750
1762
|
Status: RecommendationJobStatus | undefined;
|
|
1751
1763
|
CreationTime: Date | undefined;
|
|
1752
|
-
CompletionTime?: Date;
|
|
1764
|
+
CompletionTime?: Date | undefined;
|
|
1753
1765
|
RoleArn: string | undefined;
|
|
1754
1766
|
LastModifiedTime: Date | undefined;
|
|
1755
|
-
FailureReason?: string;
|
|
1756
|
-
ModelName?: string;
|
|
1757
|
-
SamplePayloadUrl?: string;
|
|
1758
|
-
ModelPackageVersionArn?: string;
|
|
1767
|
+
FailureReason?: string | undefined;
|
|
1768
|
+
ModelName?: string | undefined;
|
|
1769
|
+
SamplePayloadUrl?: string | undefined;
|
|
1770
|
+
ModelPackageVersionArn?: string | undefined;
|
|
1759
1771
|
}
|
|
1760
1772
|
export interface RecommendationJobInferenceBenchmark {
|
|
1761
|
-
Metrics?: RecommendationMetrics;
|
|
1762
|
-
EndpointMetrics?: InferenceMetrics;
|
|
1763
|
-
EndpointConfiguration?: EndpointOutputConfiguration;
|
|
1773
|
+
Metrics?: RecommendationMetrics | undefined;
|
|
1774
|
+
EndpointMetrics?: InferenceMetrics | undefined;
|
|
1775
|
+
EndpointConfiguration?: EndpointOutputConfiguration | undefined;
|
|
1764
1776
|
ModelConfiguration: ModelConfiguration | undefined;
|
|
1765
|
-
FailureReason?: string;
|
|
1766
|
-
InvocationEndTime?: Date;
|
|
1767
|
-
InvocationStartTime?: Date;
|
|
1777
|
+
FailureReason?: string | undefined;
|
|
1778
|
+
InvocationEndTime?: Date | undefined;
|
|
1779
|
+
InvocationStartTime?: Date | undefined;
|
|
1768
1780
|
}
|
|
1769
1781
|
export declare const RecommendationStepType: {
|
|
1770
1782
|
readonly BENCHMARK: "BENCHMARK";
|
|
@@ -1775,20 +1787,20 @@ export interface InferenceRecommendationsJobStep {
|
|
|
1775
1787
|
StepType: RecommendationStepType | undefined;
|
|
1776
1788
|
JobName: string | undefined;
|
|
1777
1789
|
Status: RecommendationJobStatus | undefined;
|
|
1778
|
-
InferenceBenchmark?: RecommendationJobInferenceBenchmark;
|
|
1790
|
+
InferenceBenchmark?: RecommendationJobInferenceBenchmark | undefined;
|
|
1779
1791
|
}
|
|
1780
1792
|
export interface LabelCountersForWorkteam {
|
|
1781
|
-
HumanLabeled?: number;
|
|
1782
|
-
PendingHuman?: number;
|
|
1783
|
-
Total?: number;
|
|
1793
|
+
HumanLabeled?: number | undefined;
|
|
1794
|
+
PendingHuman?: number | undefined;
|
|
1795
|
+
Total?: number | undefined;
|
|
1784
1796
|
}
|
|
1785
1797
|
export interface LabelingJobForWorkteamSummary {
|
|
1786
|
-
LabelingJobName?: string;
|
|
1798
|
+
LabelingJobName?: string | undefined;
|
|
1787
1799
|
JobReferenceCode: string | undefined;
|
|
1788
1800
|
WorkRequesterAccountId: string | undefined;
|
|
1789
1801
|
CreationTime: Date | undefined;
|
|
1790
|
-
LabelCounters?: LabelCountersForWorkteam;
|
|
1791
|
-
NumberOfHumanWorkersPerDataObject?: number;
|
|
1802
|
+
LabelCounters?: LabelCountersForWorkteam | undefined;
|
|
1803
|
+
NumberOfHumanWorkersPerDataObject?: number | undefined;
|
|
1792
1804
|
}
|
|
1793
1805
|
export interface LabelingJobSummary {
|
|
1794
1806
|
LabelingJobName: string | undefined;
|
|
@@ -1798,22 +1810,22 @@ export interface LabelingJobSummary {
|
|
|
1798
1810
|
LabelingJobStatus: LabelingJobStatus | undefined;
|
|
1799
1811
|
LabelCounters: LabelCounters | undefined;
|
|
1800
1812
|
WorkteamArn: string | undefined;
|
|
1801
|
-
PreHumanTaskLambdaArn?: string;
|
|
1802
|
-
AnnotationConsolidationLambdaArn?: string;
|
|
1803
|
-
FailureReason?: string;
|
|
1804
|
-
LabelingJobOutput?: LabelingJobOutput;
|
|
1805
|
-
InputConfig?: LabelingJobInputConfig;
|
|
1813
|
+
PreHumanTaskLambdaArn?: string | undefined;
|
|
1814
|
+
AnnotationConsolidationLambdaArn?: string | undefined;
|
|
1815
|
+
FailureReason?: string | undefined;
|
|
1816
|
+
LabelingJobOutput?: LabelingJobOutput | undefined;
|
|
1817
|
+
InputConfig?: LabelingJobInputConfig | undefined;
|
|
1806
1818
|
}
|
|
1807
1819
|
export interface LambdaStepMetadata {
|
|
1808
|
-
Arn?: string;
|
|
1809
|
-
OutputParameters?: OutputParameter[];
|
|
1820
|
+
Arn?: string | undefined;
|
|
1821
|
+
OutputParameters?: OutputParameter[] | undefined;
|
|
1810
1822
|
}
|
|
1811
1823
|
export interface LineageGroupSummary {
|
|
1812
|
-
LineageGroupArn?: string;
|
|
1813
|
-
LineageGroupName?: string;
|
|
1814
|
-
DisplayName?: string;
|
|
1815
|
-
CreationTime?: Date;
|
|
1816
|
-
LastModifiedTime?: Date;
|
|
1824
|
+
LineageGroupArn?: string | undefined;
|
|
1825
|
+
LineageGroupName?: string | undefined;
|
|
1826
|
+
DisplayName?: string | undefined;
|
|
1827
|
+
CreationTime?: Date | undefined;
|
|
1828
|
+
LastModifiedTime?: Date | undefined;
|
|
1817
1829
|
}
|
|
1818
1830
|
export declare const LineageType: {
|
|
1819
1831
|
readonly ACTION: "Action";
|
|
@@ -1833,70 +1845,70 @@ export declare const SortOrder: {
|
|
|
1833
1845
|
};
|
|
1834
1846
|
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
1835
1847
|
export interface ListActionsRequest {
|
|
1836
|
-
SourceUri?: string;
|
|
1837
|
-
ActionType?: string;
|
|
1838
|
-
CreatedAfter?: Date;
|
|
1839
|
-
CreatedBefore?: Date;
|
|
1840
|
-
SortBy?: SortActionsBy;
|
|
1841
|
-
SortOrder?: SortOrder;
|
|
1842
|
-
NextToken?: string;
|
|
1843
|
-
MaxResults?: number;
|
|
1848
|
+
SourceUri?: string | undefined;
|
|
1849
|
+
ActionType?: string | undefined;
|
|
1850
|
+
CreatedAfter?: Date | undefined;
|
|
1851
|
+
CreatedBefore?: Date | undefined;
|
|
1852
|
+
SortBy?: SortActionsBy | undefined;
|
|
1853
|
+
SortOrder?: SortOrder | undefined;
|
|
1854
|
+
NextToken?: string | undefined;
|
|
1855
|
+
MaxResults?: number | undefined;
|
|
1844
1856
|
}
|
|
1845
1857
|
export interface ListActionsResponse {
|
|
1846
|
-
ActionSummaries?: ActionSummary[];
|
|
1847
|
-
NextToken?: string;
|
|
1858
|
+
ActionSummaries?: ActionSummary[] | undefined;
|
|
1859
|
+
NextToken?: string | undefined;
|
|
1848
1860
|
}
|
|
1849
1861
|
export interface ListAlgorithmsInput {
|
|
1850
|
-
CreationTimeAfter?: Date;
|
|
1851
|
-
CreationTimeBefore?: Date;
|
|
1852
|
-
MaxResults?: number;
|
|
1853
|
-
NameContains?: string;
|
|
1854
|
-
NextToken?: string;
|
|
1855
|
-
SortBy?: AlgorithmSortBy;
|
|
1856
|
-
SortOrder?: SortOrder;
|
|
1862
|
+
CreationTimeAfter?: Date | undefined;
|
|
1863
|
+
CreationTimeBefore?: Date | undefined;
|
|
1864
|
+
MaxResults?: number | undefined;
|
|
1865
|
+
NameContains?: string | undefined;
|
|
1866
|
+
NextToken?: string | undefined;
|
|
1867
|
+
SortBy?: AlgorithmSortBy | undefined;
|
|
1868
|
+
SortOrder?: SortOrder | undefined;
|
|
1857
1869
|
}
|
|
1858
1870
|
export interface ListAlgorithmsOutput {
|
|
1859
1871
|
AlgorithmSummaryList: AlgorithmSummary[] | undefined;
|
|
1860
|
-
NextToken?: string;
|
|
1872
|
+
NextToken?: string | undefined;
|
|
1861
1873
|
}
|
|
1862
1874
|
export interface ListAliasesRequest {
|
|
1863
1875
|
ImageName: string | undefined;
|
|
1864
|
-
Alias?: string;
|
|
1865
|
-
Version?: number;
|
|
1866
|
-
MaxResults?: number;
|
|
1867
|
-
NextToken?: string;
|
|
1876
|
+
Alias?: string | undefined;
|
|
1877
|
+
Version?: number | undefined;
|
|
1878
|
+
MaxResults?: number | undefined;
|
|
1879
|
+
NextToken?: string | undefined;
|
|
1868
1880
|
}
|
|
1869
1881
|
export interface ListAliasesResponse {
|
|
1870
|
-
SageMakerImageVersionAliases?: string[];
|
|
1871
|
-
NextToken?: string;
|
|
1882
|
+
SageMakerImageVersionAliases?: string[] | undefined;
|
|
1883
|
+
NextToken?: string | undefined;
|
|
1872
1884
|
}
|
|
1873
1885
|
export interface ListAppImageConfigsRequest {
|
|
1874
|
-
MaxResults?: number;
|
|
1875
|
-
NextToken?: string;
|
|
1876
|
-
NameContains?: string;
|
|
1877
|
-
CreationTimeBefore?: Date;
|
|
1878
|
-
CreationTimeAfter?: Date;
|
|
1879
|
-
ModifiedTimeBefore?: Date;
|
|
1880
|
-
ModifiedTimeAfter?: Date;
|
|
1881
|
-
SortBy?: AppImageConfigSortKey;
|
|
1882
|
-
SortOrder?: SortOrder;
|
|
1886
|
+
MaxResults?: number | undefined;
|
|
1887
|
+
NextToken?: string | undefined;
|
|
1888
|
+
NameContains?: string | undefined;
|
|
1889
|
+
CreationTimeBefore?: Date | undefined;
|
|
1890
|
+
CreationTimeAfter?: Date | undefined;
|
|
1891
|
+
ModifiedTimeBefore?: Date | undefined;
|
|
1892
|
+
ModifiedTimeAfter?: Date | undefined;
|
|
1893
|
+
SortBy?: AppImageConfigSortKey | undefined;
|
|
1894
|
+
SortOrder?: SortOrder | undefined;
|
|
1883
1895
|
}
|
|
1884
1896
|
export interface ListAppImageConfigsResponse {
|
|
1885
|
-
NextToken?: string;
|
|
1886
|
-
AppImageConfigs?: AppImageConfigDetails[];
|
|
1897
|
+
NextToken?: string | undefined;
|
|
1898
|
+
AppImageConfigs?: AppImageConfigDetails[] | undefined;
|
|
1887
1899
|
}
|
|
1888
1900
|
export interface ListAppsRequest {
|
|
1889
|
-
NextToken?: string;
|
|
1890
|
-
MaxResults?: number;
|
|
1891
|
-
SortOrder?: SortOrder;
|
|
1892
|
-
SortBy?: AppSortKey;
|
|
1893
|
-
DomainIdEquals?: string;
|
|
1894
|
-
UserProfileNameEquals?: string;
|
|
1895
|
-
SpaceNameEquals?: string;
|
|
1901
|
+
NextToken?: string | undefined;
|
|
1902
|
+
MaxResults?: number | undefined;
|
|
1903
|
+
SortOrder?: SortOrder | undefined;
|
|
1904
|
+
SortBy?: AppSortKey | undefined;
|
|
1905
|
+
DomainIdEquals?: string | undefined;
|
|
1906
|
+
UserProfileNameEquals?: string | undefined;
|
|
1907
|
+
SpaceNameEquals?: string | undefined;
|
|
1896
1908
|
}
|
|
1897
1909
|
export interface ListAppsResponse {
|
|
1898
|
-
Apps?: AppDetails[];
|
|
1899
|
-
NextToken?: string;
|
|
1910
|
+
Apps?: AppDetails[] | undefined;
|
|
1911
|
+
NextToken?: string | undefined;
|
|
1900
1912
|
}
|
|
1901
1913
|
export declare const SortArtifactsBy: {
|
|
1902
1914
|
readonly CREATION_TIME: "CreationTime";
|
|
@@ -1904,18 +1916,18 @@ export declare const SortArtifactsBy: {
|
|
|
1904
1916
|
export type SortArtifactsBy =
|
|
1905
1917
|
(typeof SortArtifactsBy)[keyof typeof SortArtifactsBy];
|
|
1906
1918
|
export interface ListArtifactsRequest {
|
|
1907
|
-
SourceUri?: string;
|
|
1908
|
-
ArtifactType?: string;
|
|
1909
|
-
CreatedAfter?: Date;
|
|
1910
|
-
CreatedBefore?: Date;
|
|
1911
|
-
SortBy?: SortArtifactsBy;
|
|
1912
|
-
SortOrder?: SortOrder;
|
|
1913
|
-
NextToken?: string;
|
|
1914
|
-
MaxResults?: number;
|
|
1919
|
+
SourceUri?: string | undefined;
|
|
1920
|
+
ArtifactType?: string | undefined;
|
|
1921
|
+
CreatedAfter?: Date | undefined;
|
|
1922
|
+
CreatedBefore?: Date | undefined;
|
|
1923
|
+
SortBy?: SortArtifactsBy | undefined;
|
|
1924
|
+
SortOrder?: SortOrder | undefined;
|
|
1925
|
+
NextToken?: string | undefined;
|
|
1926
|
+
MaxResults?: number | undefined;
|
|
1915
1927
|
}
|
|
1916
1928
|
export interface ListArtifactsResponse {
|
|
1917
|
-
ArtifactSummaries?: ArtifactSummary[];
|
|
1918
|
-
NextToken?: string;
|
|
1929
|
+
ArtifactSummaries?: ArtifactSummary[] | undefined;
|
|
1930
|
+
NextToken?: string | undefined;
|
|
1919
1931
|
}
|
|
1920
1932
|
export declare const SortAssociationsBy: {
|
|
1921
1933
|
readonly CREATION_TIME: "CreationTime";
|
|
@@ -1927,92 +1939,92 @@ export declare const SortAssociationsBy: {
|
|
|
1927
1939
|
export type SortAssociationsBy =
|
|
1928
1940
|
(typeof SortAssociationsBy)[keyof typeof SortAssociationsBy];
|
|
1929
1941
|
export interface ListAssociationsRequest {
|
|
1930
|
-
SourceArn?: string;
|
|
1931
|
-
DestinationArn?: string;
|
|
1932
|
-
SourceType?: string;
|
|
1933
|
-
DestinationType?: string;
|
|
1934
|
-
AssociationType?: AssociationEdgeType;
|
|
1935
|
-
CreatedAfter?: Date;
|
|
1936
|
-
CreatedBefore?: Date;
|
|
1937
|
-
SortBy?: SortAssociationsBy;
|
|
1938
|
-
SortOrder?: SortOrder;
|
|
1939
|
-
NextToken?: string;
|
|
1940
|
-
MaxResults?: number;
|
|
1942
|
+
SourceArn?: string | undefined;
|
|
1943
|
+
DestinationArn?: string | undefined;
|
|
1944
|
+
SourceType?: string | undefined;
|
|
1945
|
+
DestinationType?: string | undefined;
|
|
1946
|
+
AssociationType?: AssociationEdgeType | undefined;
|
|
1947
|
+
CreatedAfter?: Date | undefined;
|
|
1948
|
+
CreatedBefore?: Date | undefined;
|
|
1949
|
+
SortBy?: SortAssociationsBy | undefined;
|
|
1950
|
+
SortOrder?: SortOrder | undefined;
|
|
1951
|
+
NextToken?: string | undefined;
|
|
1952
|
+
MaxResults?: number | undefined;
|
|
1941
1953
|
}
|
|
1942
1954
|
export interface ListAssociationsResponse {
|
|
1943
|
-
AssociationSummaries?: AssociationSummary[];
|
|
1944
|
-
NextToken?: string;
|
|
1955
|
+
AssociationSummaries?: AssociationSummary[] | undefined;
|
|
1956
|
+
NextToken?: string | undefined;
|
|
1945
1957
|
}
|
|
1946
1958
|
export interface ListAutoMLJobsRequest {
|
|
1947
|
-
CreationTimeAfter?: Date;
|
|
1948
|
-
CreationTimeBefore?: Date;
|
|
1949
|
-
LastModifiedTimeAfter?: Date;
|
|
1950
|
-
LastModifiedTimeBefore?: Date;
|
|
1951
|
-
NameContains?: string;
|
|
1952
|
-
StatusEquals?: AutoMLJobStatus;
|
|
1953
|
-
SortOrder?: AutoMLSortOrder;
|
|
1954
|
-
SortBy?: AutoMLSortBy;
|
|
1955
|
-
MaxResults?: number;
|
|
1956
|
-
NextToken?: string;
|
|
1959
|
+
CreationTimeAfter?: Date | undefined;
|
|
1960
|
+
CreationTimeBefore?: Date | undefined;
|
|
1961
|
+
LastModifiedTimeAfter?: Date | undefined;
|
|
1962
|
+
LastModifiedTimeBefore?: Date | undefined;
|
|
1963
|
+
NameContains?: string | undefined;
|
|
1964
|
+
StatusEquals?: AutoMLJobStatus | undefined;
|
|
1965
|
+
SortOrder?: AutoMLSortOrder | undefined;
|
|
1966
|
+
SortBy?: AutoMLSortBy | undefined;
|
|
1967
|
+
MaxResults?: number | undefined;
|
|
1968
|
+
NextToken?: string | undefined;
|
|
1957
1969
|
}
|
|
1958
1970
|
export interface ListAutoMLJobsResponse {
|
|
1959
1971
|
AutoMLJobSummaries: AutoMLJobSummary[] | undefined;
|
|
1960
|
-
NextToken?: string;
|
|
1972
|
+
NextToken?: string | undefined;
|
|
1961
1973
|
}
|
|
1962
1974
|
export interface ListCandidatesForAutoMLJobRequest {
|
|
1963
1975
|
AutoMLJobName: string | undefined;
|
|
1964
|
-
StatusEquals?: CandidateStatus;
|
|
1965
|
-
CandidateNameEquals?: string;
|
|
1966
|
-
SortOrder?: AutoMLSortOrder;
|
|
1967
|
-
SortBy?: CandidateSortBy;
|
|
1968
|
-
MaxResults?: number;
|
|
1969
|
-
NextToken?: string;
|
|
1976
|
+
StatusEquals?: CandidateStatus | undefined;
|
|
1977
|
+
CandidateNameEquals?: string | undefined;
|
|
1978
|
+
SortOrder?: AutoMLSortOrder | undefined;
|
|
1979
|
+
SortBy?: CandidateSortBy | undefined;
|
|
1980
|
+
MaxResults?: number | undefined;
|
|
1981
|
+
NextToken?: string | undefined;
|
|
1970
1982
|
}
|
|
1971
1983
|
export interface ListCandidatesForAutoMLJobResponse {
|
|
1972
1984
|
Candidates: AutoMLCandidate[] | undefined;
|
|
1973
|
-
NextToken?: string;
|
|
1985
|
+
NextToken?: string | undefined;
|
|
1974
1986
|
}
|
|
1975
1987
|
export interface ListClusterNodesRequest {
|
|
1976
1988
|
ClusterName: string | undefined;
|
|
1977
|
-
CreationTimeAfter?: Date;
|
|
1978
|
-
CreationTimeBefore?: Date;
|
|
1979
|
-
InstanceGroupNameContains?: string;
|
|
1980
|
-
MaxResults?: number;
|
|
1981
|
-
NextToken?: string;
|
|
1982
|
-
SortBy?: ClusterSortBy;
|
|
1983
|
-
SortOrder?: SortOrder;
|
|
1989
|
+
CreationTimeAfter?: Date | undefined;
|
|
1990
|
+
CreationTimeBefore?: Date | undefined;
|
|
1991
|
+
InstanceGroupNameContains?: string | undefined;
|
|
1992
|
+
MaxResults?: number | undefined;
|
|
1993
|
+
NextToken?: string | undefined;
|
|
1994
|
+
SortBy?: ClusterSortBy | undefined;
|
|
1995
|
+
SortOrder?: SortOrder | undefined;
|
|
1984
1996
|
}
|
|
1985
1997
|
export interface ListClusterNodesResponse {
|
|
1986
1998
|
NextToken: string | undefined;
|
|
1987
1999
|
ClusterNodeSummaries: ClusterNodeSummary[] | undefined;
|
|
1988
2000
|
}
|
|
1989
2001
|
export interface ListClustersRequest {
|
|
1990
|
-
CreationTimeAfter?: Date;
|
|
1991
|
-
CreationTimeBefore?: Date;
|
|
1992
|
-
MaxResults?: number;
|
|
1993
|
-
NameContains?: string;
|
|
1994
|
-
NextToken?: string;
|
|
1995
|
-
SortBy?: ClusterSortBy;
|
|
1996
|
-
SortOrder?: SortOrder;
|
|
2002
|
+
CreationTimeAfter?: Date | undefined;
|
|
2003
|
+
CreationTimeBefore?: Date | undefined;
|
|
2004
|
+
MaxResults?: number | undefined;
|
|
2005
|
+
NameContains?: string | undefined;
|
|
2006
|
+
NextToken?: string | undefined;
|
|
2007
|
+
SortBy?: ClusterSortBy | undefined;
|
|
2008
|
+
SortOrder?: SortOrder | undefined;
|
|
1997
2009
|
}
|
|
1998
2010
|
export interface ListClustersResponse {
|
|
1999
2011
|
NextToken: string | undefined;
|
|
2000
2012
|
ClusterSummaries: ClusterSummary[] | undefined;
|
|
2001
2013
|
}
|
|
2002
2014
|
export interface ListCodeRepositoriesInput {
|
|
2003
|
-
CreationTimeAfter?: Date;
|
|
2004
|
-
CreationTimeBefore?: Date;
|
|
2005
|
-
LastModifiedTimeAfter?: Date;
|
|
2006
|
-
LastModifiedTimeBefore?: Date;
|
|
2007
|
-
MaxResults?: number;
|
|
2008
|
-
NameContains?: string;
|
|
2009
|
-
NextToken?: string;
|
|
2010
|
-
SortBy?: CodeRepositorySortBy;
|
|
2011
|
-
SortOrder?: CodeRepositorySortOrder;
|
|
2015
|
+
CreationTimeAfter?: Date | undefined;
|
|
2016
|
+
CreationTimeBefore?: Date | undefined;
|
|
2017
|
+
LastModifiedTimeAfter?: Date | undefined;
|
|
2018
|
+
LastModifiedTimeBefore?: Date | undefined;
|
|
2019
|
+
MaxResults?: number | undefined;
|
|
2020
|
+
NameContains?: string | undefined;
|
|
2021
|
+
NextToken?: string | undefined;
|
|
2022
|
+
SortBy?: CodeRepositorySortBy | undefined;
|
|
2023
|
+
SortOrder?: CodeRepositorySortOrder | undefined;
|
|
2012
2024
|
}
|
|
2013
2025
|
export interface ListCodeRepositoriesOutput {
|
|
2014
2026
|
CodeRepositorySummaryList: CodeRepositorySummary[] | undefined;
|
|
2015
|
-
NextToken?: string;
|
|
2027
|
+
NextToken?: string | undefined;
|
|
2016
2028
|
}
|
|
2017
2029
|
export declare const ListCompilationJobsSortBy: {
|
|
2018
2030
|
readonly CREATION_TIME: "CreationTime";
|
|
@@ -2022,20 +2034,20 @@ export declare const ListCompilationJobsSortBy: {
|
|
|
2022
2034
|
export type ListCompilationJobsSortBy =
|
|
2023
2035
|
(typeof ListCompilationJobsSortBy)[keyof typeof ListCompilationJobsSortBy];
|
|
2024
2036
|
export interface ListCompilationJobsRequest {
|
|
2025
|
-
NextToken?: string;
|
|
2026
|
-
MaxResults?: number;
|
|
2027
|
-
CreationTimeAfter?: Date;
|
|
2028
|
-
CreationTimeBefore?: Date;
|
|
2029
|
-
LastModifiedTimeAfter?: Date;
|
|
2030
|
-
LastModifiedTimeBefore?: Date;
|
|
2031
|
-
NameContains?: string;
|
|
2032
|
-
StatusEquals?: CompilationJobStatus;
|
|
2033
|
-
SortBy?: ListCompilationJobsSortBy;
|
|
2034
|
-
SortOrder?: SortOrder;
|
|
2037
|
+
NextToken?: string | undefined;
|
|
2038
|
+
MaxResults?: number | undefined;
|
|
2039
|
+
CreationTimeAfter?: Date | undefined;
|
|
2040
|
+
CreationTimeBefore?: Date | undefined;
|
|
2041
|
+
LastModifiedTimeAfter?: Date | undefined;
|
|
2042
|
+
LastModifiedTimeBefore?: Date | undefined;
|
|
2043
|
+
NameContains?: string | undefined;
|
|
2044
|
+
StatusEquals?: CompilationJobStatus | undefined;
|
|
2045
|
+
SortBy?: ListCompilationJobsSortBy | undefined;
|
|
2046
|
+
SortOrder?: SortOrder | undefined;
|
|
2035
2047
|
}
|
|
2036
2048
|
export interface ListCompilationJobsResponse {
|
|
2037
2049
|
CompilationJobSummaries: CompilationJobSummary[] | undefined;
|
|
2038
|
-
NextToken?: string;
|
|
2050
|
+
NextToken?: string | undefined;
|
|
2039
2051
|
}
|
|
2040
2052
|
export declare const SortContextsBy: {
|
|
2041
2053
|
readonly CREATION_TIME: "CreationTime";
|
|
@@ -2044,18 +2056,18 @@ export declare const SortContextsBy: {
|
|
|
2044
2056
|
export type SortContextsBy =
|
|
2045
2057
|
(typeof SortContextsBy)[keyof typeof SortContextsBy];
|
|
2046
2058
|
export interface ListContextsRequest {
|
|
2047
|
-
SourceUri?: string;
|
|
2048
|
-
ContextType?: string;
|
|
2049
|
-
CreatedAfter?: Date;
|
|
2050
|
-
CreatedBefore?: Date;
|
|
2051
|
-
SortBy?: SortContextsBy;
|
|
2052
|
-
SortOrder?: SortOrder;
|
|
2053
|
-
NextToken?: string;
|
|
2054
|
-
MaxResults?: number;
|
|
2059
|
+
SourceUri?: string | undefined;
|
|
2060
|
+
ContextType?: string | undefined;
|
|
2061
|
+
CreatedAfter?: Date | undefined;
|
|
2062
|
+
CreatedBefore?: Date | undefined;
|
|
2063
|
+
SortBy?: SortContextsBy | undefined;
|
|
2064
|
+
SortOrder?: SortOrder | undefined;
|
|
2065
|
+
NextToken?: string | undefined;
|
|
2066
|
+
MaxResults?: number | undefined;
|
|
2055
2067
|
}
|
|
2056
2068
|
export interface ListContextsResponse {
|
|
2057
|
-
ContextSummaries?: ContextSummary[];
|
|
2058
|
-
NextToken?: string;
|
|
2069
|
+
ContextSummaries?: ContextSummary[] | undefined;
|
|
2070
|
+
NextToken?: string | undefined;
|
|
2059
2071
|
}
|
|
2060
2072
|
export declare const MonitoringJobDefinitionSortKey: {
|
|
2061
2073
|
readonly CREATION_TIME: "CreationTime";
|
|
@@ -2064,14 +2076,14 @@ export declare const MonitoringJobDefinitionSortKey: {
|
|
|
2064
2076
|
export type MonitoringJobDefinitionSortKey =
|
|
2065
2077
|
(typeof MonitoringJobDefinitionSortKey)[keyof typeof MonitoringJobDefinitionSortKey];
|
|
2066
2078
|
export interface ListDataQualityJobDefinitionsRequest {
|
|
2067
|
-
EndpointName?: string;
|
|
2068
|
-
SortBy?: MonitoringJobDefinitionSortKey;
|
|
2069
|
-
SortOrder?: SortOrder;
|
|
2070
|
-
NextToken?: string;
|
|
2071
|
-
MaxResults?: number;
|
|
2072
|
-
NameContains?: string;
|
|
2073
|
-
CreationTimeBefore?: Date;
|
|
2074
|
-
CreationTimeAfter?: Date;
|
|
2079
|
+
EndpointName?: string | undefined;
|
|
2080
|
+
SortBy?: MonitoringJobDefinitionSortKey | undefined;
|
|
2081
|
+
SortOrder?: SortOrder | undefined;
|
|
2082
|
+
NextToken?: string | undefined;
|
|
2083
|
+
MaxResults?: number | undefined;
|
|
2084
|
+
NameContains?: string | undefined;
|
|
2085
|
+
CreationTimeBefore?: Date | undefined;
|
|
2086
|
+
CreationTimeAfter?: Date | undefined;
|
|
2075
2087
|
}
|
|
2076
2088
|
export interface MonitoringJobDefinitionSummary {
|
|
2077
2089
|
MonitoringJobDefinitionName: string | undefined;
|
|
@@ -2081,7 +2093,7 @@ export interface MonitoringJobDefinitionSummary {
|
|
|
2081
2093
|
}
|
|
2082
2094
|
export interface ListDataQualityJobDefinitionsResponse {
|
|
2083
2095
|
JobDefinitionSummaries: MonitoringJobDefinitionSummary[] | undefined;
|
|
2084
|
-
NextToken?: string;
|
|
2096
|
+
NextToken?: string | undefined;
|
|
2085
2097
|
}
|
|
2086
2098
|
export declare const ListDeviceFleetsSortBy: {
|
|
2087
2099
|
readonly CreationTime: "CREATION_TIME";
|
|
@@ -2091,38 +2103,38 @@ export declare const ListDeviceFleetsSortBy: {
|
|
|
2091
2103
|
export type ListDeviceFleetsSortBy =
|
|
2092
2104
|
(typeof ListDeviceFleetsSortBy)[keyof typeof ListDeviceFleetsSortBy];
|
|
2093
2105
|
export interface ListDeviceFleetsRequest {
|
|
2094
|
-
NextToken?: string;
|
|
2095
|
-
MaxResults?: number;
|
|
2096
|
-
CreationTimeAfter?: Date;
|
|
2097
|
-
CreationTimeBefore?: Date;
|
|
2098
|
-
LastModifiedTimeAfter?: Date;
|
|
2099
|
-
LastModifiedTimeBefore?: Date;
|
|
2100
|
-
NameContains?: string;
|
|
2101
|
-
SortBy?: ListDeviceFleetsSortBy;
|
|
2102
|
-
SortOrder?: SortOrder;
|
|
2106
|
+
NextToken?: string | undefined;
|
|
2107
|
+
MaxResults?: number | undefined;
|
|
2108
|
+
CreationTimeAfter?: Date | undefined;
|
|
2109
|
+
CreationTimeBefore?: Date | undefined;
|
|
2110
|
+
LastModifiedTimeAfter?: Date | undefined;
|
|
2111
|
+
LastModifiedTimeBefore?: Date | undefined;
|
|
2112
|
+
NameContains?: string | undefined;
|
|
2113
|
+
SortBy?: ListDeviceFleetsSortBy | undefined;
|
|
2114
|
+
SortOrder?: SortOrder | undefined;
|
|
2103
2115
|
}
|
|
2104
2116
|
export interface ListDeviceFleetsResponse {
|
|
2105
2117
|
DeviceFleetSummaries: DeviceFleetSummary[] | undefined;
|
|
2106
|
-
NextToken?: string;
|
|
2118
|
+
NextToken?: string | undefined;
|
|
2107
2119
|
}
|
|
2108
2120
|
export interface ListDevicesRequest {
|
|
2109
|
-
NextToken?: string;
|
|
2110
|
-
MaxResults?: number;
|
|
2111
|
-
LatestHeartbeatAfter?: Date;
|
|
2112
|
-
ModelName?: string;
|
|
2113
|
-
DeviceFleetName?: string;
|
|
2121
|
+
NextToken?: string | undefined;
|
|
2122
|
+
MaxResults?: number | undefined;
|
|
2123
|
+
LatestHeartbeatAfter?: Date | undefined;
|
|
2124
|
+
ModelName?: string | undefined;
|
|
2125
|
+
DeviceFleetName?: string | undefined;
|
|
2114
2126
|
}
|
|
2115
2127
|
export interface ListDevicesResponse {
|
|
2116
2128
|
DeviceSummaries: DeviceSummary[] | undefined;
|
|
2117
|
-
NextToken?: string;
|
|
2129
|
+
NextToken?: string | undefined;
|
|
2118
2130
|
}
|
|
2119
2131
|
export interface ListDomainsRequest {
|
|
2120
|
-
NextToken?: string;
|
|
2121
|
-
MaxResults?: number;
|
|
2132
|
+
NextToken?: string | undefined;
|
|
2133
|
+
MaxResults?: number | undefined;
|
|
2122
2134
|
}
|
|
2123
2135
|
export interface ListDomainsResponse {
|
|
2124
|
-
Domains?: DomainDetails[];
|
|
2125
|
-
NextToken?: string;
|
|
2136
|
+
Domains?: DomainDetails[] | undefined;
|
|
2137
|
+
NextToken?: string | undefined;
|
|
2126
2138
|
}
|
|
2127
2139
|
export declare const ListEdgeDeploymentPlansSortBy: {
|
|
2128
2140
|
readonly CreationTime: "CREATION_TIME";
|
|
@@ -2133,20 +2145,20 @@ export declare const ListEdgeDeploymentPlansSortBy: {
|
|
|
2133
2145
|
export type ListEdgeDeploymentPlansSortBy =
|
|
2134
2146
|
(typeof ListEdgeDeploymentPlansSortBy)[keyof typeof ListEdgeDeploymentPlansSortBy];
|
|
2135
2147
|
export interface ListEdgeDeploymentPlansRequest {
|
|
2136
|
-
NextToken?: string;
|
|
2137
|
-
MaxResults?: number;
|
|
2138
|
-
CreationTimeAfter?: Date;
|
|
2139
|
-
CreationTimeBefore?: Date;
|
|
2140
|
-
LastModifiedTimeAfter?: Date;
|
|
2141
|
-
LastModifiedTimeBefore?: Date;
|
|
2142
|
-
NameContains?: string;
|
|
2143
|
-
DeviceFleetNameContains?: string;
|
|
2144
|
-
SortBy?: ListEdgeDeploymentPlansSortBy;
|
|
2145
|
-
SortOrder?: SortOrder;
|
|
2148
|
+
NextToken?: string | undefined;
|
|
2149
|
+
MaxResults?: number | undefined;
|
|
2150
|
+
CreationTimeAfter?: Date | undefined;
|
|
2151
|
+
CreationTimeBefore?: Date | undefined;
|
|
2152
|
+
LastModifiedTimeAfter?: Date | undefined;
|
|
2153
|
+
LastModifiedTimeBefore?: Date | undefined;
|
|
2154
|
+
NameContains?: string | undefined;
|
|
2155
|
+
DeviceFleetNameContains?: string | undefined;
|
|
2156
|
+
SortBy?: ListEdgeDeploymentPlansSortBy | undefined;
|
|
2157
|
+
SortOrder?: SortOrder | undefined;
|
|
2146
2158
|
}
|
|
2147
2159
|
export interface ListEdgeDeploymentPlansResponse {
|
|
2148
2160
|
EdgeDeploymentPlanSummaries: EdgeDeploymentPlanSummary[] | undefined;
|
|
2149
|
-
NextToken?: string;
|
|
2161
|
+
NextToken?: string | undefined;
|
|
2150
2162
|
}
|
|
2151
2163
|
export declare const ListEdgePackagingJobsSortBy: {
|
|
2152
2164
|
readonly CreationTime: "CREATION_TIME";
|
|
@@ -2158,21 +2170,21 @@ export declare const ListEdgePackagingJobsSortBy: {
|
|
|
2158
2170
|
export type ListEdgePackagingJobsSortBy =
|
|
2159
2171
|
(typeof ListEdgePackagingJobsSortBy)[keyof typeof ListEdgePackagingJobsSortBy];
|
|
2160
2172
|
export interface ListEdgePackagingJobsRequest {
|
|
2161
|
-
NextToken?: string;
|
|
2162
|
-
MaxResults?: number;
|
|
2163
|
-
CreationTimeAfter?: Date;
|
|
2164
|
-
CreationTimeBefore?: Date;
|
|
2165
|
-
LastModifiedTimeAfter?: Date;
|
|
2166
|
-
LastModifiedTimeBefore?: Date;
|
|
2167
|
-
NameContains?: string;
|
|
2168
|
-
ModelNameContains?: string;
|
|
2169
|
-
StatusEquals?: EdgePackagingJobStatus;
|
|
2170
|
-
SortBy?: ListEdgePackagingJobsSortBy;
|
|
2171
|
-
SortOrder?: SortOrder;
|
|
2173
|
+
NextToken?: string | undefined;
|
|
2174
|
+
MaxResults?: number | undefined;
|
|
2175
|
+
CreationTimeAfter?: Date | undefined;
|
|
2176
|
+
CreationTimeBefore?: Date | undefined;
|
|
2177
|
+
LastModifiedTimeAfter?: Date | undefined;
|
|
2178
|
+
LastModifiedTimeBefore?: Date | undefined;
|
|
2179
|
+
NameContains?: string | undefined;
|
|
2180
|
+
ModelNameContains?: string | undefined;
|
|
2181
|
+
StatusEquals?: EdgePackagingJobStatus | undefined;
|
|
2182
|
+
SortBy?: ListEdgePackagingJobsSortBy | undefined;
|
|
2183
|
+
SortOrder?: SortOrder | undefined;
|
|
2172
2184
|
}
|
|
2173
2185
|
export interface ListEdgePackagingJobsResponse {
|
|
2174
2186
|
EdgePackagingJobSummaries: EdgePackagingJobSummary[] | undefined;
|
|
2175
|
-
NextToken?: string;
|
|
2187
|
+
NextToken?: string | undefined;
|
|
2176
2188
|
}
|
|
2177
2189
|
export declare const OrderKey: {
|
|
2178
2190
|
readonly Ascending: "Ascending";
|
|
@@ -2180,33 +2192,33 @@ export declare const OrderKey: {
|
|
|
2180
2192
|
};
|
|
2181
2193
|
export type OrderKey = (typeof OrderKey)[keyof typeof OrderKey];
|
|
2182
2194
|
export interface ListEndpointConfigsInput {
|
|
2183
|
-
SortBy?: EndpointConfigSortKey;
|
|
2184
|
-
SortOrder?: OrderKey;
|
|
2185
|
-
NextToken?: string;
|
|
2186
|
-
MaxResults?: number;
|
|
2187
|
-
NameContains?: string;
|
|
2188
|
-
CreationTimeBefore?: Date;
|
|
2189
|
-
CreationTimeAfter?: Date;
|
|
2195
|
+
SortBy?: EndpointConfigSortKey | undefined;
|
|
2196
|
+
SortOrder?: OrderKey | undefined;
|
|
2197
|
+
NextToken?: string | undefined;
|
|
2198
|
+
MaxResults?: number | undefined;
|
|
2199
|
+
NameContains?: string | undefined;
|
|
2200
|
+
CreationTimeBefore?: Date | undefined;
|
|
2201
|
+
CreationTimeAfter?: Date | undefined;
|
|
2190
2202
|
}
|
|
2191
2203
|
export interface ListEndpointConfigsOutput {
|
|
2192
2204
|
EndpointConfigs: EndpointConfigSummary[] | undefined;
|
|
2193
|
-
NextToken?: string;
|
|
2205
|
+
NextToken?: string | undefined;
|
|
2194
2206
|
}
|
|
2195
2207
|
export interface ListEndpointsInput {
|
|
2196
|
-
SortBy?: EndpointSortKey;
|
|
2197
|
-
SortOrder?: OrderKey;
|
|
2198
|
-
NextToken?: string;
|
|
2199
|
-
MaxResults?: number;
|
|
2200
|
-
NameContains?: string;
|
|
2201
|
-
CreationTimeBefore?: Date;
|
|
2202
|
-
CreationTimeAfter?: Date;
|
|
2203
|
-
LastModifiedTimeBefore?: Date;
|
|
2204
|
-
LastModifiedTimeAfter?: Date;
|
|
2205
|
-
StatusEquals?: EndpointStatus;
|
|
2208
|
+
SortBy?: EndpointSortKey | undefined;
|
|
2209
|
+
SortOrder?: OrderKey | undefined;
|
|
2210
|
+
NextToken?: string | undefined;
|
|
2211
|
+
MaxResults?: number | undefined;
|
|
2212
|
+
NameContains?: string | undefined;
|
|
2213
|
+
CreationTimeBefore?: Date | undefined;
|
|
2214
|
+
CreationTimeAfter?: Date | undefined;
|
|
2215
|
+
LastModifiedTimeBefore?: Date | undefined;
|
|
2216
|
+
LastModifiedTimeAfter?: Date | undefined;
|
|
2217
|
+
StatusEquals?: EndpointStatus | undefined;
|
|
2206
2218
|
}
|
|
2207
2219
|
export interface ListEndpointsOutput {
|
|
2208
2220
|
Endpoints: EndpointSummary[] | undefined;
|
|
2209
|
-
NextToken?: string;
|
|
2221
|
+
NextToken?: string | undefined;
|
|
2210
2222
|
}
|
|
2211
2223
|
export declare const SortExperimentsBy: {
|
|
2212
2224
|
readonly CREATION_TIME: "CreationTime";
|
|
@@ -2215,167 +2227,167 @@ export declare const SortExperimentsBy: {
|
|
|
2215
2227
|
export type SortExperimentsBy =
|
|
2216
2228
|
(typeof SortExperimentsBy)[keyof typeof SortExperimentsBy];
|
|
2217
2229
|
export interface ListExperimentsRequest {
|
|
2218
|
-
CreatedAfter?: Date;
|
|
2219
|
-
CreatedBefore?: Date;
|
|
2220
|
-
SortBy?: SortExperimentsBy;
|
|
2221
|
-
SortOrder?: SortOrder;
|
|
2222
|
-
NextToken?: string;
|
|
2223
|
-
MaxResults?: number;
|
|
2230
|
+
CreatedAfter?: Date | undefined;
|
|
2231
|
+
CreatedBefore?: Date | undefined;
|
|
2232
|
+
SortBy?: SortExperimentsBy | undefined;
|
|
2233
|
+
SortOrder?: SortOrder | undefined;
|
|
2234
|
+
NextToken?: string | undefined;
|
|
2235
|
+
MaxResults?: number | undefined;
|
|
2224
2236
|
}
|
|
2225
2237
|
export interface ListExperimentsResponse {
|
|
2226
|
-
ExperimentSummaries?: ExperimentSummary[];
|
|
2227
|
-
NextToken?: string;
|
|
2238
|
+
ExperimentSummaries?: ExperimentSummary[] | undefined;
|
|
2239
|
+
NextToken?: string | undefined;
|
|
2228
2240
|
}
|
|
2229
2241
|
export interface ListFeatureGroupsRequest {
|
|
2230
|
-
NameContains?: string;
|
|
2231
|
-
FeatureGroupStatusEquals?: FeatureGroupStatus;
|
|
2232
|
-
OfflineStoreStatusEquals?: OfflineStoreStatusValue;
|
|
2233
|
-
CreationTimeAfter?: Date;
|
|
2234
|
-
CreationTimeBefore?: Date;
|
|
2235
|
-
SortOrder?: FeatureGroupSortOrder;
|
|
2236
|
-
SortBy?: FeatureGroupSortBy;
|
|
2237
|
-
MaxResults?: number;
|
|
2238
|
-
NextToken?: string;
|
|
2242
|
+
NameContains?: string | undefined;
|
|
2243
|
+
FeatureGroupStatusEquals?: FeatureGroupStatus | undefined;
|
|
2244
|
+
OfflineStoreStatusEquals?: OfflineStoreStatusValue | undefined;
|
|
2245
|
+
CreationTimeAfter?: Date | undefined;
|
|
2246
|
+
CreationTimeBefore?: Date | undefined;
|
|
2247
|
+
SortOrder?: FeatureGroupSortOrder | undefined;
|
|
2248
|
+
SortBy?: FeatureGroupSortBy | undefined;
|
|
2249
|
+
MaxResults?: number | undefined;
|
|
2250
|
+
NextToken?: string | undefined;
|
|
2239
2251
|
}
|
|
2240
2252
|
export interface ListFeatureGroupsResponse {
|
|
2241
2253
|
FeatureGroupSummaries: FeatureGroupSummary[] | undefined;
|
|
2242
|
-
NextToken?: string;
|
|
2254
|
+
NextToken?: string | undefined;
|
|
2243
2255
|
}
|
|
2244
2256
|
export interface ListFlowDefinitionsRequest {
|
|
2245
|
-
CreationTimeAfter?: Date;
|
|
2246
|
-
CreationTimeBefore?: Date;
|
|
2247
|
-
SortOrder?: SortOrder;
|
|
2248
|
-
NextToken?: string;
|
|
2249
|
-
MaxResults?: number;
|
|
2257
|
+
CreationTimeAfter?: Date | undefined;
|
|
2258
|
+
CreationTimeBefore?: Date | undefined;
|
|
2259
|
+
SortOrder?: SortOrder | undefined;
|
|
2260
|
+
NextToken?: string | undefined;
|
|
2261
|
+
MaxResults?: number | undefined;
|
|
2250
2262
|
}
|
|
2251
2263
|
export interface ListFlowDefinitionsResponse {
|
|
2252
2264
|
FlowDefinitionSummaries: FlowDefinitionSummary[] | undefined;
|
|
2253
|
-
NextToken?: string;
|
|
2265
|
+
NextToken?: string | undefined;
|
|
2254
2266
|
}
|
|
2255
2267
|
export interface ListHubContentsRequest {
|
|
2256
2268
|
HubName: string | undefined;
|
|
2257
2269
|
HubContentType: HubContentType | undefined;
|
|
2258
|
-
NameContains?: string;
|
|
2259
|
-
MaxSchemaVersion?: string;
|
|
2260
|
-
CreationTimeBefore?: Date;
|
|
2261
|
-
CreationTimeAfter?: Date;
|
|
2262
|
-
SortBy?: HubContentSortBy;
|
|
2263
|
-
SortOrder?: SortOrder;
|
|
2264
|
-
MaxResults?: number;
|
|
2265
|
-
NextToken?: string;
|
|
2270
|
+
NameContains?: string | undefined;
|
|
2271
|
+
MaxSchemaVersion?: string | undefined;
|
|
2272
|
+
CreationTimeBefore?: Date | undefined;
|
|
2273
|
+
CreationTimeAfter?: Date | undefined;
|
|
2274
|
+
SortBy?: HubContentSortBy | undefined;
|
|
2275
|
+
SortOrder?: SortOrder | undefined;
|
|
2276
|
+
MaxResults?: number | undefined;
|
|
2277
|
+
NextToken?: string | undefined;
|
|
2266
2278
|
}
|
|
2267
2279
|
export interface ListHubContentsResponse {
|
|
2268
2280
|
HubContentSummaries: HubContentInfo[] | undefined;
|
|
2269
|
-
NextToken?: string;
|
|
2281
|
+
NextToken?: string | undefined;
|
|
2270
2282
|
}
|
|
2271
2283
|
export interface ListHubContentVersionsRequest {
|
|
2272
2284
|
HubName: string | undefined;
|
|
2273
2285
|
HubContentType: HubContentType | undefined;
|
|
2274
2286
|
HubContentName: string | undefined;
|
|
2275
|
-
MinVersion?: string;
|
|
2276
|
-
MaxSchemaVersion?: string;
|
|
2277
|
-
CreationTimeBefore?: Date;
|
|
2278
|
-
CreationTimeAfter?: Date;
|
|
2279
|
-
SortBy?: HubContentSortBy;
|
|
2280
|
-
SortOrder?: SortOrder;
|
|
2281
|
-
MaxResults?: number;
|
|
2282
|
-
NextToken?: string;
|
|
2287
|
+
MinVersion?: string | undefined;
|
|
2288
|
+
MaxSchemaVersion?: string | undefined;
|
|
2289
|
+
CreationTimeBefore?: Date | undefined;
|
|
2290
|
+
CreationTimeAfter?: Date | undefined;
|
|
2291
|
+
SortBy?: HubContentSortBy | undefined;
|
|
2292
|
+
SortOrder?: SortOrder | undefined;
|
|
2293
|
+
MaxResults?: number | undefined;
|
|
2294
|
+
NextToken?: string | undefined;
|
|
2283
2295
|
}
|
|
2284
2296
|
export interface ListHubContentVersionsResponse {
|
|
2285
2297
|
HubContentSummaries: HubContentInfo[] | undefined;
|
|
2286
|
-
NextToken?: string;
|
|
2298
|
+
NextToken?: string | undefined;
|
|
2287
2299
|
}
|
|
2288
2300
|
export interface ListHubsRequest {
|
|
2289
|
-
NameContains?: string;
|
|
2290
|
-
CreationTimeBefore?: Date;
|
|
2291
|
-
CreationTimeAfter?: Date;
|
|
2292
|
-
LastModifiedTimeBefore?: Date;
|
|
2293
|
-
LastModifiedTimeAfter?: Date;
|
|
2294
|
-
SortBy?: HubSortBy;
|
|
2295
|
-
SortOrder?: SortOrder;
|
|
2296
|
-
MaxResults?: number;
|
|
2297
|
-
NextToken?: string;
|
|
2301
|
+
NameContains?: string | undefined;
|
|
2302
|
+
CreationTimeBefore?: Date | undefined;
|
|
2303
|
+
CreationTimeAfter?: Date | undefined;
|
|
2304
|
+
LastModifiedTimeBefore?: Date | undefined;
|
|
2305
|
+
LastModifiedTimeAfter?: Date | undefined;
|
|
2306
|
+
SortBy?: HubSortBy | undefined;
|
|
2307
|
+
SortOrder?: SortOrder | undefined;
|
|
2308
|
+
MaxResults?: number | undefined;
|
|
2309
|
+
NextToken?: string | undefined;
|
|
2298
2310
|
}
|
|
2299
2311
|
export interface ListHubsResponse {
|
|
2300
2312
|
HubSummaries: HubInfo[] | undefined;
|
|
2301
|
-
NextToken?: string;
|
|
2313
|
+
NextToken?: string | undefined;
|
|
2302
2314
|
}
|
|
2303
2315
|
export interface ListHumanTaskUisRequest {
|
|
2304
|
-
CreationTimeAfter?: Date;
|
|
2305
|
-
CreationTimeBefore?: Date;
|
|
2306
|
-
SortOrder?: SortOrder;
|
|
2307
|
-
NextToken?: string;
|
|
2308
|
-
MaxResults?: number;
|
|
2316
|
+
CreationTimeAfter?: Date | undefined;
|
|
2317
|
+
CreationTimeBefore?: Date | undefined;
|
|
2318
|
+
SortOrder?: SortOrder | undefined;
|
|
2319
|
+
NextToken?: string | undefined;
|
|
2320
|
+
MaxResults?: number | undefined;
|
|
2309
2321
|
}
|
|
2310
2322
|
export interface ListHumanTaskUisResponse {
|
|
2311
2323
|
HumanTaskUiSummaries: HumanTaskUiSummary[] | undefined;
|
|
2312
|
-
NextToken?: string;
|
|
2324
|
+
NextToken?: string | undefined;
|
|
2313
2325
|
}
|
|
2314
2326
|
export interface ListHyperParameterTuningJobsRequest {
|
|
2315
|
-
NextToken?: string;
|
|
2316
|
-
MaxResults?: number;
|
|
2317
|
-
SortBy?: HyperParameterTuningJobSortByOptions;
|
|
2318
|
-
SortOrder?: SortOrder;
|
|
2319
|
-
NameContains?: string;
|
|
2320
|
-
CreationTimeAfter?: Date;
|
|
2321
|
-
CreationTimeBefore?: Date;
|
|
2322
|
-
LastModifiedTimeAfter?: Date;
|
|
2323
|
-
LastModifiedTimeBefore?: Date;
|
|
2324
|
-
StatusEquals?: HyperParameterTuningJobStatus;
|
|
2327
|
+
NextToken?: string | undefined;
|
|
2328
|
+
MaxResults?: number | undefined;
|
|
2329
|
+
SortBy?: HyperParameterTuningJobSortByOptions | undefined;
|
|
2330
|
+
SortOrder?: SortOrder | undefined;
|
|
2331
|
+
NameContains?: string | undefined;
|
|
2332
|
+
CreationTimeAfter?: Date | undefined;
|
|
2333
|
+
CreationTimeBefore?: Date | undefined;
|
|
2334
|
+
LastModifiedTimeAfter?: Date | undefined;
|
|
2335
|
+
LastModifiedTimeBefore?: Date | undefined;
|
|
2336
|
+
StatusEquals?: HyperParameterTuningJobStatus | undefined;
|
|
2325
2337
|
}
|
|
2326
2338
|
export interface ListHyperParameterTuningJobsResponse {
|
|
2327
2339
|
HyperParameterTuningJobSummaries:
|
|
2328
2340
|
| HyperParameterTuningJobSummary[]
|
|
2329
2341
|
| undefined;
|
|
2330
|
-
NextToken?: string;
|
|
2342
|
+
NextToken?: string | undefined;
|
|
2331
2343
|
}
|
|
2332
2344
|
export interface ListImagesRequest {
|
|
2333
|
-
CreationTimeAfter?: Date;
|
|
2334
|
-
CreationTimeBefore?: Date;
|
|
2335
|
-
LastModifiedTimeAfter?: Date;
|
|
2336
|
-
LastModifiedTimeBefore?: Date;
|
|
2337
|
-
MaxResults?: number;
|
|
2338
|
-
NameContains?: string;
|
|
2339
|
-
NextToken?: string;
|
|
2340
|
-
SortBy?: ImageSortBy;
|
|
2341
|
-
SortOrder?: ImageSortOrder;
|
|
2345
|
+
CreationTimeAfter?: Date | undefined;
|
|
2346
|
+
CreationTimeBefore?: Date | undefined;
|
|
2347
|
+
LastModifiedTimeAfter?: Date | undefined;
|
|
2348
|
+
LastModifiedTimeBefore?: Date | undefined;
|
|
2349
|
+
MaxResults?: number | undefined;
|
|
2350
|
+
NameContains?: string | undefined;
|
|
2351
|
+
NextToken?: string | undefined;
|
|
2352
|
+
SortBy?: ImageSortBy | undefined;
|
|
2353
|
+
SortOrder?: ImageSortOrder | undefined;
|
|
2342
2354
|
}
|
|
2343
2355
|
export interface ListImagesResponse {
|
|
2344
|
-
Images?: Image[];
|
|
2345
|
-
NextToken?: string;
|
|
2356
|
+
Images?: Image[] | undefined;
|
|
2357
|
+
NextToken?: string | undefined;
|
|
2346
2358
|
}
|
|
2347
2359
|
export interface ListImageVersionsRequest {
|
|
2348
|
-
CreationTimeAfter?: Date;
|
|
2349
|
-
CreationTimeBefore?: Date;
|
|
2360
|
+
CreationTimeAfter?: Date | undefined;
|
|
2361
|
+
CreationTimeBefore?: Date | undefined;
|
|
2350
2362
|
ImageName: string | undefined;
|
|
2351
|
-
LastModifiedTimeAfter?: Date;
|
|
2352
|
-
LastModifiedTimeBefore?: Date;
|
|
2353
|
-
MaxResults?: number;
|
|
2354
|
-
NextToken?: string;
|
|
2355
|
-
SortBy?: ImageVersionSortBy;
|
|
2356
|
-
SortOrder?: ImageVersionSortOrder;
|
|
2363
|
+
LastModifiedTimeAfter?: Date | undefined;
|
|
2364
|
+
LastModifiedTimeBefore?: Date | undefined;
|
|
2365
|
+
MaxResults?: number | undefined;
|
|
2366
|
+
NextToken?: string | undefined;
|
|
2367
|
+
SortBy?: ImageVersionSortBy | undefined;
|
|
2368
|
+
SortOrder?: ImageVersionSortOrder | undefined;
|
|
2357
2369
|
}
|
|
2358
2370
|
export interface ListImageVersionsResponse {
|
|
2359
|
-
ImageVersions?: ImageVersion[];
|
|
2360
|
-
NextToken?: string;
|
|
2371
|
+
ImageVersions?: ImageVersion[] | undefined;
|
|
2372
|
+
NextToken?: string | undefined;
|
|
2361
2373
|
}
|
|
2362
2374
|
export interface ListInferenceComponentsInput {
|
|
2363
|
-
SortBy?: InferenceComponentSortKey;
|
|
2364
|
-
SortOrder?: OrderKey;
|
|
2365
|
-
NextToken?: string;
|
|
2366
|
-
MaxResults?: number;
|
|
2367
|
-
NameContains?: string;
|
|
2368
|
-
CreationTimeBefore?: Date;
|
|
2369
|
-
CreationTimeAfter?: Date;
|
|
2370
|
-
LastModifiedTimeBefore?: Date;
|
|
2371
|
-
LastModifiedTimeAfter?: Date;
|
|
2372
|
-
StatusEquals?: InferenceComponentStatus;
|
|
2373
|
-
EndpointNameEquals?: string;
|
|
2374
|
-
VariantNameEquals?: string;
|
|
2375
|
+
SortBy?: InferenceComponentSortKey | undefined;
|
|
2376
|
+
SortOrder?: OrderKey | undefined;
|
|
2377
|
+
NextToken?: string | undefined;
|
|
2378
|
+
MaxResults?: number | undefined;
|
|
2379
|
+
NameContains?: string | undefined;
|
|
2380
|
+
CreationTimeBefore?: Date | undefined;
|
|
2381
|
+
CreationTimeAfter?: Date | undefined;
|
|
2382
|
+
LastModifiedTimeBefore?: Date | undefined;
|
|
2383
|
+
LastModifiedTimeAfter?: Date | undefined;
|
|
2384
|
+
StatusEquals?: InferenceComponentStatus | undefined;
|
|
2385
|
+
EndpointNameEquals?: string | undefined;
|
|
2386
|
+
VariantNameEquals?: string | undefined;
|
|
2375
2387
|
}
|
|
2376
2388
|
export interface ListInferenceComponentsOutput {
|
|
2377
2389
|
InferenceComponents: InferenceComponentSummary[] | undefined;
|
|
2378
|
-
NextToken?: string;
|
|
2390
|
+
NextToken?: string | undefined;
|
|
2379
2391
|
}
|
|
2380
2392
|
export declare const SortInferenceExperimentsBy: {
|
|
2381
2393
|
readonly CREATION_TIME: "CreationTime";
|
|
@@ -2385,21 +2397,21 @@ export declare const SortInferenceExperimentsBy: {
|
|
|
2385
2397
|
export type SortInferenceExperimentsBy =
|
|
2386
2398
|
(typeof SortInferenceExperimentsBy)[keyof typeof SortInferenceExperimentsBy];
|
|
2387
2399
|
export interface ListInferenceExperimentsRequest {
|
|
2388
|
-
NameContains?: string;
|
|
2389
|
-
Type?: InferenceExperimentType;
|
|
2390
|
-
StatusEquals?: InferenceExperimentStatus;
|
|
2391
|
-
CreationTimeAfter?: Date;
|
|
2392
|
-
CreationTimeBefore?: Date;
|
|
2393
|
-
LastModifiedTimeAfter?: Date;
|
|
2394
|
-
LastModifiedTimeBefore?: Date;
|
|
2395
|
-
SortBy?: SortInferenceExperimentsBy;
|
|
2396
|
-
SortOrder?: SortOrder;
|
|
2397
|
-
NextToken?: string;
|
|
2398
|
-
MaxResults?: number;
|
|
2400
|
+
NameContains?: string | undefined;
|
|
2401
|
+
Type?: InferenceExperimentType | undefined;
|
|
2402
|
+
StatusEquals?: InferenceExperimentStatus | undefined;
|
|
2403
|
+
CreationTimeAfter?: Date | undefined;
|
|
2404
|
+
CreationTimeBefore?: Date | undefined;
|
|
2405
|
+
LastModifiedTimeAfter?: Date | undefined;
|
|
2406
|
+
LastModifiedTimeBefore?: Date | undefined;
|
|
2407
|
+
SortBy?: SortInferenceExperimentsBy | undefined;
|
|
2408
|
+
SortOrder?: SortOrder | undefined;
|
|
2409
|
+
NextToken?: string | undefined;
|
|
2410
|
+
MaxResults?: number | undefined;
|
|
2399
2411
|
}
|
|
2400
2412
|
export interface ListInferenceExperimentsResponse {
|
|
2401
|
-
InferenceExperiments?: InferenceExperimentSummary[];
|
|
2402
|
-
NextToken?: string;
|
|
2413
|
+
InferenceExperiments?: InferenceExperimentSummary[] | undefined;
|
|
2414
|
+
NextToken?: string | undefined;
|
|
2403
2415
|
}
|
|
2404
2416
|
export declare const ListInferenceRecommendationsJobsSortBy: {
|
|
2405
2417
|
readonly CREATION_TIME: "CreationTime";
|
|
@@ -2409,33 +2421,33 @@ export declare const ListInferenceRecommendationsJobsSortBy: {
|
|
|
2409
2421
|
export type ListInferenceRecommendationsJobsSortBy =
|
|
2410
2422
|
(typeof ListInferenceRecommendationsJobsSortBy)[keyof typeof ListInferenceRecommendationsJobsSortBy];
|
|
2411
2423
|
export interface ListInferenceRecommendationsJobsRequest {
|
|
2412
|
-
CreationTimeAfter?: Date;
|
|
2413
|
-
CreationTimeBefore?: Date;
|
|
2414
|
-
LastModifiedTimeAfter?: Date;
|
|
2415
|
-
LastModifiedTimeBefore?: Date;
|
|
2416
|
-
NameContains?: string;
|
|
2417
|
-
StatusEquals?: RecommendationJobStatus;
|
|
2418
|
-
SortBy?: ListInferenceRecommendationsJobsSortBy;
|
|
2419
|
-
SortOrder?: SortOrder;
|
|
2420
|
-
NextToken?: string;
|
|
2421
|
-
MaxResults?: number;
|
|
2422
|
-
ModelNameEquals?: string;
|
|
2423
|
-
ModelPackageVersionArnEquals?: string;
|
|
2424
|
+
CreationTimeAfter?: Date | undefined;
|
|
2425
|
+
CreationTimeBefore?: Date | undefined;
|
|
2426
|
+
LastModifiedTimeAfter?: Date | undefined;
|
|
2427
|
+
LastModifiedTimeBefore?: Date | undefined;
|
|
2428
|
+
NameContains?: string | undefined;
|
|
2429
|
+
StatusEquals?: RecommendationJobStatus | undefined;
|
|
2430
|
+
SortBy?: ListInferenceRecommendationsJobsSortBy | undefined;
|
|
2431
|
+
SortOrder?: SortOrder | undefined;
|
|
2432
|
+
NextToken?: string | undefined;
|
|
2433
|
+
MaxResults?: number | undefined;
|
|
2434
|
+
ModelNameEquals?: string | undefined;
|
|
2435
|
+
ModelPackageVersionArnEquals?: string | undefined;
|
|
2424
2436
|
}
|
|
2425
2437
|
export interface ListInferenceRecommendationsJobsResponse {
|
|
2426
2438
|
InferenceRecommendationsJobs: InferenceRecommendationsJob[] | undefined;
|
|
2427
|
-
NextToken?: string;
|
|
2439
|
+
NextToken?: string | undefined;
|
|
2428
2440
|
}
|
|
2429
2441
|
export interface ListInferenceRecommendationsJobStepsRequest {
|
|
2430
2442
|
JobName: string | undefined;
|
|
2431
|
-
Status?: RecommendationJobStatus;
|
|
2432
|
-
StepType?: RecommendationStepType;
|
|
2433
|
-
MaxResults?: number;
|
|
2434
|
-
NextToken?: string;
|
|
2443
|
+
Status?: RecommendationJobStatus | undefined;
|
|
2444
|
+
StepType?: RecommendationStepType | undefined;
|
|
2445
|
+
MaxResults?: number | undefined;
|
|
2446
|
+
NextToken?: string | undefined;
|
|
2435
2447
|
}
|
|
2436
2448
|
export interface ListInferenceRecommendationsJobStepsResponse {
|
|
2437
|
-
Steps?: InferenceRecommendationsJobStep[];
|
|
2438
|
-
NextToken?: string;
|
|
2449
|
+
Steps?: InferenceRecommendationsJobStep[] | undefined;
|
|
2450
|
+
NextToken?: string | undefined;
|
|
2439
2451
|
}
|
|
2440
2452
|
export declare const SortBy: {
|
|
2441
2453
|
readonly CREATION_TIME: "CreationTime";
|
|
@@ -2444,20 +2456,20 @@ export declare const SortBy: {
|
|
|
2444
2456
|
};
|
|
2445
2457
|
export type SortBy = (typeof SortBy)[keyof typeof SortBy];
|
|
2446
2458
|
export interface ListLabelingJobsRequest {
|
|
2447
|
-
CreationTimeAfter?: Date;
|
|
2448
|
-
CreationTimeBefore?: Date;
|
|
2449
|
-
LastModifiedTimeAfter?: Date;
|
|
2450
|
-
LastModifiedTimeBefore?: Date;
|
|
2451
|
-
MaxResults?: number;
|
|
2452
|
-
NextToken?: string;
|
|
2453
|
-
NameContains?: string;
|
|
2454
|
-
SortBy?: SortBy;
|
|
2455
|
-
SortOrder?: SortOrder;
|
|
2456
|
-
StatusEquals?: LabelingJobStatus;
|
|
2459
|
+
CreationTimeAfter?: Date | undefined;
|
|
2460
|
+
CreationTimeBefore?: Date | undefined;
|
|
2461
|
+
LastModifiedTimeAfter?: Date | undefined;
|
|
2462
|
+
LastModifiedTimeBefore?: Date | undefined;
|
|
2463
|
+
MaxResults?: number | undefined;
|
|
2464
|
+
NextToken?: string | undefined;
|
|
2465
|
+
NameContains?: string | undefined;
|
|
2466
|
+
SortBy?: SortBy | undefined;
|
|
2467
|
+
SortOrder?: SortOrder | undefined;
|
|
2468
|
+
StatusEquals?: LabelingJobStatus | undefined;
|
|
2457
2469
|
}
|
|
2458
2470
|
export interface ListLabelingJobsResponse {
|
|
2459
|
-
LabelingJobSummaryList?: LabelingJobSummary[];
|
|
2460
|
-
NextToken?: string;
|
|
2471
|
+
LabelingJobSummaryList?: LabelingJobSummary[] | undefined;
|
|
2472
|
+
NextToken?: string | undefined;
|
|
2461
2473
|
}
|
|
2462
2474
|
export declare const ListLabelingJobsForWorkteamSortByOptions: {
|
|
2463
2475
|
readonly CREATION_TIME: "CreationTime";
|
|
@@ -2466,17 +2478,17 @@ export type ListLabelingJobsForWorkteamSortByOptions =
|
|
|
2466
2478
|
(typeof ListLabelingJobsForWorkteamSortByOptions)[keyof typeof ListLabelingJobsForWorkteamSortByOptions];
|
|
2467
2479
|
export interface ListLabelingJobsForWorkteamRequest {
|
|
2468
2480
|
WorkteamArn: string | undefined;
|
|
2469
|
-
MaxResults?: number;
|
|
2470
|
-
NextToken?: string;
|
|
2471
|
-
CreationTimeAfter?: Date;
|
|
2472
|
-
CreationTimeBefore?: Date;
|
|
2473
|
-
JobReferenceCodeContains?: string;
|
|
2474
|
-
SortBy?: ListLabelingJobsForWorkteamSortByOptions;
|
|
2475
|
-
SortOrder?: SortOrder;
|
|
2481
|
+
MaxResults?: number | undefined;
|
|
2482
|
+
NextToken?: string | undefined;
|
|
2483
|
+
CreationTimeAfter?: Date | undefined;
|
|
2484
|
+
CreationTimeBefore?: Date | undefined;
|
|
2485
|
+
JobReferenceCodeContains?: string | undefined;
|
|
2486
|
+
SortBy?: ListLabelingJobsForWorkteamSortByOptions | undefined;
|
|
2487
|
+
SortOrder?: SortOrder | undefined;
|
|
2476
2488
|
}
|
|
2477
2489
|
export interface ListLabelingJobsForWorkteamResponse {
|
|
2478
2490
|
LabelingJobSummaryList: LabelingJobForWorkteamSummary[] | undefined;
|
|
2479
|
-
NextToken?: string;
|
|
2491
|
+
NextToken?: string | undefined;
|
|
2480
2492
|
}
|
|
2481
2493
|
export declare const SortLineageGroupsBy: {
|
|
2482
2494
|
readonly CREATION_TIME: "CreationTime";
|
|
@@ -2485,16 +2497,16 @@ export declare const SortLineageGroupsBy: {
|
|
|
2485
2497
|
export type SortLineageGroupsBy =
|
|
2486
2498
|
(typeof SortLineageGroupsBy)[keyof typeof SortLineageGroupsBy];
|
|
2487
2499
|
export interface ListLineageGroupsRequest {
|
|
2488
|
-
CreatedAfter?: Date;
|
|
2489
|
-
CreatedBefore?: Date;
|
|
2490
|
-
SortBy?: SortLineageGroupsBy;
|
|
2491
|
-
SortOrder?: SortOrder;
|
|
2492
|
-
NextToken?: string;
|
|
2493
|
-
MaxResults?: number;
|
|
2500
|
+
CreatedAfter?: Date | undefined;
|
|
2501
|
+
CreatedBefore?: Date | undefined;
|
|
2502
|
+
SortBy?: SortLineageGroupsBy | undefined;
|
|
2503
|
+
SortOrder?: SortOrder | undefined;
|
|
2504
|
+
NextToken?: string | undefined;
|
|
2505
|
+
MaxResults?: number | undefined;
|
|
2494
2506
|
}
|
|
2495
2507
|
export interface ListLineageGroupsResponse {
|
|
2496
|
-
LineageGroupSummaries?: LineageGroupSummary[];
|
|
2497
|
-
NextToken?: string;
|
|
2508
|
+
LineageGroupSummaries?: LineageGroupSummary[] | undefined;
|
|
2509
|
+
NextToken?: string | undefined;
|
|
2498
2510
|
}
|
|
2499
2511
|
export declare const DescribeModelCardResponseFilterSensitiveLog: (
|
|
2500
2512
|
obj: DescribeModelCardResponse
|