@aws-sdk/client-iot 3.428.0 → 3.429.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6,6 +6,7 @@ import {
6
6
  ActiveViolation,
7
7
  AggregationType,
8
8
  AlertTarget,
9
+ AlertTargetType,
9
10
  AuditCheckConfiguration,
10
11
  AuditCheckDetails,
11
12
  AuditFinding,
@@ -16,6 +17,7 @@ import {
16
17
  AuditMitigationActionsTaskStatus,
17
18
  AuditMitigationActionsTaskTarget,
18
19
  AuditNotificationTarget,
20
+ AuditNotificationType,
19
21
  AuditSuppression,
20
22
  AuditTaskMetadata,
21
23
  AuditTaskStatus,
@@ -170,7 +172,7 @@ export declare const LogTargetType: {
170
172
  };
171
173
  export type LogTargetType = (typeof LogTargetType)[keyof typeof LogTargetType];
172
174
  export interface DeleteV2LoggingLevelRequest {
173
- targetType: LogTargetType | string | undefined;
175
+ targetType: LogTargetType | undefined;
174
176
  targetName: string | undefined;
175
177
  }
176
178
  export interface DeprecateThingTypeRequest {
@@ -182,7 +184,7 @@ export interface DescribeAccountAuditConfigurationRequest {}
182
184
  export interface DescribeAccountAuditConfigurationResponse {
183
185
  roleArn?: string;
184
186
  auditNotificationTargetConfigurations?: Record<
185
- string,
187
+ AuditNotificationType,
186
188
  AuditNotificationTarget
187
189
  >;
188
190
  auditCheckConfigurations?: Record<string, AuditCheckConfiguration>;
@@ -203,7 +205,7 @@ export interface MitigationAction {
203
205
  actionParams?: MitigationActionParams;
204
206
  }
205
207
  export interface DescribeAuditMitigationActionsTaskResponse {
206
- taskStatus?: AuditMitigationActionsTaskStatus | string;
208
+ taskStatus?: AuditMitigationActionsTaskStatus;
207
209
  startTime?: Date;
208
210
  endTime?: Date;
209
211
  taskStatistics?: Record<string, TaskStatisticsForAuditCheck>;
@@ -235,8 +237,8 @@ export interface TaskStatistics {
235
237
  canceledChecks?: number;
236
238
  }
237
239
  export interface DescribeAuditTaskResponse {
238
- taskStatus?: AuditTaskStatus | string;
239
- taskType?: AuditTaskType | string;
240
+ taskStatus?: AuditTaskStatus;
241
+ taskType?: AuditTaskType;
240
242
  taskStartTime?: Date;
241
243
  taskStatistics?: TaskStatistics;
242
244
  scheduledAuditName?: string;
@@ -284,16 +286,16 @@ export interface CertificateValidity {
284
286
  export interface CACertificateDescription {
285
287
  certificateArn?: string;
286
288
  certificateId?: string;
287
- status?: CACertificateStatus | string;
289
+ status?: CACertificateStatus;
288
290
  certificatePem?: string;
289
291
  ownedBy?: string;
290
292
  creationDate?: Date;
291
- autoRegistrationStatus?: AutoRegistrationStatus | string;
293
+ autoRegistrationStatus?: AutoRegistrationStatus;
292
294
  lastModifiedDate?: Date;
293
295
  customerVersion?: number;
294
296
  generationId?: string;
295
297
  validity?: CertificateValidity;
296
- certificateMode?: CertificateMode | string;
298
+ certificateMode?: CertificateMode;
297
299
  }
298
300
  export interface RegistrationConfig {
299
301
  templateBody?: string;
@@ -328,7 +330,7 @@ export interface CertificateDescription {
328
330
  certificateArn?: string;
329
331
  certificateId?: string;
330
332
  caCertificateId?: string;
331
- status?: CertificateStatus | string;
333
+ status?: CertificateStatus;
332
334
  certificatePem?: string;
333
335
  ownedBy?: string;
334
336
  previousOwnedBy?: string;
@@ -338,7 +340,7 @@ export interface CertificateDescription {
338
340
  transferData?: TransferData;
339
341
  generationId?: string;
340
342
  validity?: CertificateValidity;
341
- certificateMode?: CertificateMode | string;
343
+ certificateMode?: CertificateMode;
342
344
  }
343
345
  export interface DescribeCertificateResponse {
344
346
  certificateDescription?: CertificateDescription;
@@ -349,7 +351,7 @@ export interface DescribeCustomMetricRequest {
349
351
  export interface DescribeCustomMetricResponse {
350
352
  metricName?: string;
351
353
  metricArn?: string;
352
- metricType?: CustomMetricType | string;
354
+ metricType?: CustomMetricType;
353
355
  displayName?: string;
354
356
  creationDate?: Date;
355
357
  lastModifiedDate?: Date;
@@ -385,7 +387,7 @@ export interface ViolationEventOccurrenceRange {
385
387
  }
386
388
  export interface DetectMitigationActionsTaskSummary {
387
389
  taskId?: string;
388
- taskStatus?: DetectMitigationActionsTaskStatus | string;
390
+ taskStatus?: DetectMitigationActionsTaskStatus;
389
391
  taskStartTime?: Date;
390
392
  taskEndTime?: Date;
391
393
  target?: DetectMitigationActionsTaskTarget;
@@ -404,7 +406,7 @@ export interface DescribeDimensionRequest {
404
406
  export interface DescribeDimensionResponse {
405
407
  name?: string;
406
408
  arn?: string;
407
- type?: DimensionType | string;
409
+ type?: DimensionType;
408
410
  stringValues?: string[];
409
411
  creationDate?: Date;
410
412
  lastModifiedDate?: Date;
@@ -432,7 +434,7 @@ export type ServerCertificateStatus =
432
434
  (typeof ServerCertificateStatus)[keyof typeof ServerCertificateStatus];
433
435
  export interface ServerCertificateSummary {
434
436
  serverCertificateArn?: string;
435
- serverCertificateStatus?: ServerCertificateStatus | string;
437
+ serverCertificateStatus?: ServerCertificateStatus;
436
438
  serverCertificateStatusDetail?: string;
437
439
  }
438
440
  export interface DescribeDomainConfigurationResponse {
@@ -441,9 +443,9 @@ export interface DescribeDomainConfigurationResponse {
441
443
  domainName?: string;
442
444
  serverCertificates?: ServerCertificateSummary[];
443
445
  authorizerConfig?: AuthorizerConfig;
444
- domainConfigurationStatus?: DomainConfigurationStatus | string;
445
- serviceType?: ServiceType | string;
446
- domainType?: DomainType | string;
446
+ domainConfigurationStatus?: DomainConfigurationStatus;
447
+ serviceType?: ServiceType;
448
+ domainType?: DomainType;
447
449
  lastStatusChangeDate?: Date;
448
450
  tlsConfig?: TlsConfig;
449
451
  }
@@ -472,7 +474,7 @@ export interface Configuration {
472
474
  Enabled?: boolean;
473
475
  }
474
476
  export interface DescribeEventConfigurationsResponse {
475
- eventConfigurations?: Record<string, Configuration>;
477
+ eventConfigurations?: Record<EventType, Configuration>;
476
478
  creationDate?: Date;
477
479
  lastModifiedDate?: Date;
478
480
  }
@@ -490,7 +492,7 @@ export interface DescribeFleetMetricResponse {
490
492
  indexName?: string;
491
493
  creationDate?: Date;
492
494
  lastModifiedDate?: Date;
493
- unit?: FleetMetricUnit | string;
495
+ unit?: FleetMetricUnit;
494
496
  version?: number;
495
497
  metricArn?: string;
496
498
  }
@@ -505,7 +507,7 @@ export declare const IndexStatus: {
505
507
  export type IndexStatus = (typeof IndexStatus)[keyof typeof IndexStatus];
506
508
  export interface DescribeIndexResponse {
507
509
  indexName?: string;
508
- indexStatus?: IndexStatus | string;
510
+ indexStatus?: IndexStatus;
509
511
  schema?: string;
510
512
  }
511
513
  export interface DescribeJobRequest {
@@ -536,8 +538,8 @@ export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus];
536
538
  export interface Job {
537
539
  jobArn?: string;
538
540
  jobId?: string;
539
- targetSelection?: TargetSelection | string;
540
- status?: JobStatus | string;
541
+ targetSelection?: TargetSelection;
542
+ status?: JobStatus;
541
543
  forceCanceled?: boolean;
542
544
  reasonCode?: string;
543
545
  comment?: string;
@@ -586,7 +588,7 @@ export interface JobExecutionStatusDetails {
586
588
  }
587
589
  export interface JobExecution {
588
590
  jobId?: string;
589
- status?: JobExecutionStatus | string;
591
+ status?: JobExecutionStatus;
590
592
  forceCanceled?: boolean;
591
593
  statusDetails?: JobExecutionStatusDetails;
592
594
  thingArn?: string;
@@ -653,7 +655,7 @@ export type MitigationActionType =
653
655
  (typeof MitigationActionType)[keyof typeof MitigationActionType];
654
656
  export interface DescribeMitigationActionResponse {
655
657
  actionName?: string;
656
- actionType?: MitigationActionType | string;
658
+ actionType?: MitigationActionType;
657
659
  actionArn?: string;
658
660
  actionId?: string;
659
661
  roleArn?: string;
@@ -675,7 +677,7 @@ export interface DescribeProvisioningTemplateResponse {
675
677
  enabled?: boolean;
676
678
  provisioningRoleArn?: string;
677
679
  preProvisioningHook?: ProvisioningHook;
678
- type?: TemplateType | string;
680
+ type?: TemplateType;
679
681
  }
680
682
  export interface DescribeProvisioningTemplateVersionRequest {
681
683
  templateName: string | undefined;
@@ -706,9 +708,9 @@ export interface DescribeScheduledAuditRequest {
706
708
  scheduledAuditName: string | undefined;
707
709
  }
708
710
  export interface DescribeScheduledAuditResponse {
709
- frequency?: AuditFrequency | string;
711
+ frequency?: AuditFrequency;
710
712
  dayOfMonth?: string;
711
- dayOfWeek?: DayOfWeek | string;
713
+ dayOfWeek?: DayOfWeek;
712
714
  targetCheckNames?: string[];
713
715
  scheduledAuditName?: string;
714
716
  scheduledAuditArn?: string;
@@ -721,7 +723,7 @@ export interface DescribeSecurityProfileResponse {
721
723
  securityProfileArn?: string;
722
724
  securityProfileDescription?: string;
723
725
  behaviors?: Behavior[];
724
- alertTargets?: Record<string, AlertTarget>;
726
+ alertTargets?: Record<AlertTargetType, AlertTarget>;
725
727
  additionalMetricsToRetain?: string[];
726
728
  additionalMetricsToRetainV2?: MetricToRetain[];
727
729
  version?: number;
@@ -786,7 +788,7 @@ export interface DescribeThingGroupResponse {
786
788
  indexName?: string;
787
789
  queryString?: string;
788
790
  queryVersion?: string;
789
- status?: DynamicGroupStatus | string;
791
+ status?: DynamicGroupStatus;
790
792
  }
791
793
  export interface DescribeThingRegistrationTaskRequest {
792
794
  taskId: string | undefined;
@@ -807,7 +809,7 @@ export interface DescribeThingRegistrationTaskResponse {
807
809
  inputFileBucket?: string;
808
810
  inputFileKey?: string;
809
811
  roleArn?: string;
810
- status?: Status | string;
812
+ status?: Status;
811
813
  message?: string;
812
814
  successCount?: number;
813
815
  failureCount?: number;
@@ -867,7 +869,7 @@ export interface BehaviorModelTrainingSummary {
867
869
  securityProfileName?: string;
868
870
  behaviorName?: string;
869
871
  trainingDataCollectionStartDate?: Date;
870
- modelStatus?: ModelStatus | string;
872
+ modelStatus?: ModelStatus;
871
873
  datapointsCollectionPercentage?: number;
872
874
  lastModelRefreshDate?: Date;
873
875
  }
@@ -927,7 +929,7 @@ export declare const FieldType: {
927
929
  export type FieldType = (typeof FieldType)[keyof typeof FieldType];
928
930
  export interface Field {
929
931
  name?: string;
930
- type?: FieldType | string;
932
+ type?: FieldType;
931
933
  }
932
934
  export declare const ThingGroupIndexingMode: {
933
935
  readonly OFF: "OFF";
@@ -936,7 +938,7 @@ export declare const ThingGroupIndexingMode: {
936
938
  export type ThingGroupIndexingMode =
937
939
  (typeof ThingGroupIndexingMode)[keyof typeof ThingGroupIndexingMode];
938
940
  export interface ThingGroupIndexingConfiguration {
939
- thingGroupIndexingMode: ThingGroupIndexingMode | string | undefined;
941
+ thingGroupIndexingMode: ThingGroupIndexingMode | undefined;
940
942
  managedFields?: Field[];
941
943
  customFields?: Field[];
942
944
  }
@@ -969,10 +971,10 @@ export declare const ThingIndexingMode: {
969
971
  export type ThingIndexingMode =
970
972
  (typeof ThingIndexingMode)[keyof typeof ThingIndexingMode];
971
973
  export interface ThingIndexingConfiguration {
972
- thingIndexingMode: ThingIndexingMode | string | undefined;
973
- thingConnectivityIndexingMode?: ThingConnectivityIndexingMode | string;
974
- deviceDefenderIndexingMode?: DeviceDefenderIndexingMode | string;
975
- namedShadowIndexingMode?: NamedShadowIndexingMode | string;
974
+ thingIndexingMode: ThingIndexingMode | undefined;
975
+ thingConnectivityIndexingMode?: ThingConnectivityIndexingMode;
976
+ deviceDefenderIndexingMode?: DeviceDefenderIndexingMode;
977
+ namedShadowIndexingMode?: NamedShadowIndexingMode;
976
978
  managedFields?: Field[];
977
979
  customFields?: Field[];
978
980
  filter?: IndexingFilter;
@@ -990,7 +992,7 @@ export interface GetJobDocumentResponse {
990
992
  export interface GetLoggingOptionsRequest {}
991
993
  export interface GetLoggingOptionsResponse {
992
994
  roleArn?: string;
993
- logLevel?: LogLevel | string;
995
+ logLevel?: LogLevel;
994
996
  }
995
997
  export interface GetOTAUpdateRequest {
996
998
  otaUpdateId: string | undefined;
@@ -1006,12 +1008,12 @@ export interface OTAUpdateInfo {
1006
1008
  lastModifiedDate?: Date;
1007
1009
  description?: string;
1008
1010
  targets?: string[];
1009
- protocols?: (Protocol | string)[];
1011
+ protocols?: Protocol[];
1010
1012
  awsJobExecutionsRolloutConfig?: AwsJobExecutionsRolloutConfig;
1011
1013
  awsJobPresignedUrlConfig?: AwsJobPresignedUrlConfig;
1012
- targetSelection?: TargetSelection | string;
1014
+ targetSelection?: TargetSelection;
1013
1015
  otaUpdateFiles?: OTAUpdateFile[];
1014
- otaUpdateStatus?: OTAUpdateStatus | string;
1016
+ otaUpdateStatus?: OTAUpdateStatus;
1015
1017
  awsIotJobId?: string;
1016
1018
  awsIotJobArn?: string;
1017
1019
  errorInfo?: ErrorInfo;
@@ -1049,7 +1051,7 @@ export interface GetPackageVersionResponse {
1049
1051
  versionName?: string;
1050
1052
  description?: string;
1051
1053
  attributes?: Record<string, string>;
1052
- status?: PackageVersionStatus | string;
1054
+ status?: PackageVersionStatus;
1053
1055
  errorReason?: string;
1054
1056
  creationDate?: Date;
1055
1057
  lastModifiedDate?: Date;
@@ -1143,7 +1145,7 @@ export interface GetTopicRuleDestinationResponse {
1143
1145
  export interface GetV2LoggingOptionsRequest {}
1144
1146
  export interface GetV2LoggingOptionsResponse {
1145
1147
  roleArn?: string;
1146
- defaultLogLevel?: LogLevel | string;
1148
+ defaultLogLevel?: LogLevel;
1147
1149
  disableAllLogs?: boolean;
1148
1150
  }
1149
1151
  export declare class NotConfiguredException extends __BaseException {
@@ -1163,9 +1165,9 @@ export type BehaviorCriteriaType =
1163
1165
  export interface ListActiveViolationsRequest {
1164
1166
  thingName?: string;
1165
1167
  securityProfileName?: string;
1166
- behaviorCriteriaType?: BehaviorCriteriaType | string;
1168
+ behaviorCriteriaType?: BehaviorCriteriaType;
1167
1169
  listSuppressedAlerts?: boolean;
1168
- verificationState?: VerificationState | string;
1170
+ verificationState?: VerificationState;
1169
1171
  nextToken?: string;
1170
1172
  maxResults?: number;
1171
1173
  }
@@ -1199,7 +1201,7 @@ export interface ListAuditFindingsResponse {
1199
1201
  }
1200
1202
  export interface ListAuditMitigationActionsExecutionsRequest {
1201
1203
  taskId: string | undefined;
1202
- actionStatus?: AuditMitigationActionsExecutionStatus | string;
1204
+ actionStatus?: AuditMitigationActionsExecutionStatus;
1203
1205
  findingId: string | undefined;
1204
1206
  maxResults?: number;
1205
1207
  nextToken?: string;
@@ -1211,7 +1213,7 @@ export interface ListAuditMitigationActionsExecutionsResponse {
1211
1213
  export interface ListAuditMitigationActionsTasksRequest {
1212
1214
  auditTaskId?: string;
1213
1215
  findingId?: string;
1214
- taskStatus?: AuditMitigationActionsTaskStatus | string;
1216
+ taskStatus?: AuditMitigationActionsTaskStatus;
1215
1217
  maxResults?: number;
1216
1218
  nextToken?: string;
1217
1219
  startTime: Date | undefined;
@@ -1235,8 +1237,8 @@ export interface ListAuditSuppressionsResponse {
1235
1237
  export interface ListAuditTasksRequest {
1236
1238
  startTime: Date | undefined;
1237
1239
  endTime: Date | undefined;
1238
- taskType?: AuditTaskType | string;
1239
- taskStatus?: AuditTaskStatus | string;
1240
+ taskType?: AuditTaskType;
1241
+ taskStatus?: AuditTaskStatus;
1240
1242
  nextToken?: string;
1241
1243
  maxResults?: number;
1242
1244
  }
@@ -1248,7 +1250,7 @@ export interface ListAuthorizersRequest {
1248
1250
  pageSize?: number;
1249
1251
  marker?: string;
1250
1252
  ascendingOrder?: boolean;
1251
- status?: AuthorizerStatus | string;
1253
+ status?: AuthorizerStatus;
1252
1254
  }
1253
1255
  export interface ListAuthorizersResponse {
1254
1256
  authorizers?: AuthorizerSummary[];
@@ -1272,7 +1274,7 @@ export interface ListCACertificatesRequest {
1272
1274
  export interface CACertificate {
1273
1275
  certificateArn?: string;
1274
1276
  certificateId?: string;
1275
- status?: CACertificateStatus | string;
1277
+ status?: CACertificateStatus;
1276
1278
  creationDate?: Date;
1277
1279
  }
1278
1280
  export interface ListCACertificatesResponse {
@@ -1287,8 +1289,8 @@ export interface ListCertificatesRequest {
1287
1289
  export interface Certificate {
1288
1290
  certificateArn?: string;
1289
1291
  certificateId?: string;
1290
- status?: CertificateStatus | string;
1291
- certificateMode?: CertificateMode | string;
1292
+ status?: CertificateStatus;
1293
+ certificateMode?: CertificateMode;
1292
1294
  creationDate?: Date;
1293
1295
  }
1294
1296
  export interface ListCertificatesResponse {
@@ -1337,7 +1339,7 @@ export interface DetectMitigationActionExecution {
1337
1339
  thingName?: string;
1338
1340
  executionStartDate?: Date;
1339
1341
  executionEndDate?: Date;
1340
- status?: DetectMitigationActionExecutionStatus | string;
1342
+ status?: DetectMitigationActionExecutionStatus;
1341
1343
  errorCode?: string;
1342
1344
  message?: string;
1343
1345
  }
@@ -1366,12 +1368,12 @@ export interface ListDimensionsResponse {
1366
1368
  export interface ListDomainConfigurationsRequest {
1367
1369
  marker?: string;
1368
1370
  pageSize?: number;
1369
- serviceType?: ServiceType | string;
1371
+ serviceType?: ServiceType;
1370
1372
  }
1371
1373
  export interface DomainConfigurationSummary {
1372
1374
  domainConfigurationName?: string;
1373
1375
  domainConfigurationArn?: string;
1374
- serviceType?: ServiceType | string;
1376
+ serviceType?: ServiceType;
1375
1377
  }
1376
1378
  export interface ListDomainConfigurationsResponse {
1377
1379
  domainConfigurations?: DomainConfigurationSummary[];
@@ -1399,12 +1401,12 @@ export interface ListIndicesResponse {
1399
1401
  }
1400
1402
  export interface ListJobExecutionsForJobRequest {
1401
1403
  jobId: string | undefined;
1402
- status?: JobExecutionStatus | string;
1404
+ status?: JobExecutionStatus;
1403
1405
  maxResults?: number;
1404
1406
  nextToken?: string;
1405
1407
  }
1406
1408
  export interface JobExecutionSummary {
1407
- status?: JobExecutionStatus | string;
1409
+ status?: JobExecutionStatus;
1408
1410
  queuedAt?: Date;
1409
1411
  startedAt?: Date;
1410
1412
  lastUpdatedAt?: Date;
@@ -1421,7 +1423,7 @@ export interface ListJobExecutionsForJobResponse {
1421
1423
  }
1422
1424
  export interface ListJobExecutionsForThingRequest {
1423
1425
  thingName: string | undefined;
1424
- status?: JobExecutionStatus | string;
1426
+ status?: JobExecutionStatus;
1425
1427
  namespaceId?: string;
1426
1428
  maxResults?: number;
1427
1429
  nextToken?: string;
@@ -1436,8 +1438,8 @@ export interface ListJobExecutionsForThingResponse {
1436
1438
  nextToken?: string;
1437
1439
  }
1438
1440
  export interface ListJobsRequest {
1439
- status?: JobStatus | string;
1440
- targetSelection?: TargetSelection | string;
1441
+ status?: JobStatus;
1442
+ targetSelection?: TargetSelection;
1441
1443
  maxResults?: number;
1442
1444
  nextToken?: string;
1443
1445
  thingGroupName?: string;
@@ -1448,8 +1450,8 @@ export interface JobSummary {
1448
1450
  jobArn?: string;
1449
1451
  jobId?: string;
1450
1452
  thingGroupId?: string;
1451
- targetSelection?: TargetSelection | string;
1452
- status?: JobStatus | string;
1453
+ targetSelection?: TargetSelection;
1454
+ status?: JobStatus;
1453
1455
  createdAt?: Date;
1454
1456
  lastUpdatedAt?: Date;
1455
1457
  completedAt?: Date;
@@ -1493,7 +1495,7 @@ export interface ListMetricValuesRequest {
1493
1495
  thingName: string | undefined;
1494
1496
  metricName: string | undefined;
1495
1497
  dimensionName?: string;
1496
- dimensionValueOperator?: DimensionValueOperator | string;
1498
+ dimensionValueOperator?: DimensionValueOperator;
1497
1499
  startTime: Date | undefined;
1498
1500
  endTime: Date | undefined;
1499
1501
  maxResults?: number;
@@ -1508,7 +1510,7 @@ export interface ListMetricValuesResponse {
1508
1510
  nextToken?: string;
1509
1511
  }
1510
1512
  export interface ListMitigationActionsRequest {
1511
- actionType?: MitigationActionType | string;
1513
+ actionType?: MitigationActionType;
1512
1514
  maxResults?: number;
1513
1515
  nextToken?: string;
1514
1516
  }
@@ -1524,7 +1526,7 @@ export interface ListMitigationActionsResponse {
1524
1526
  export interface ListOTAUpdatesRequest {
1525
1527
  maxResults?: number;
1526
1528
  nextToken?: string;
1527
- otaUpdateStatus?: OTAUpdateStatus | string;
1529
+ otaUpdateStatus?: OTAUpdateStatus;
1528
1530
  }
1529
1531
  export interface OTAUpdateSummary {
1530
1532
  otaUpdateId?: string;
@@ -1568,14 +1570,14 @@ export interface ListPackagesResponse {
1568
1570
  }
1569
1571
  export interface ListPackageVersionsRequest {
1570
1572
  packageName: string | undefined;
1571
- status?: PackageVersionStatus | string;
1573
+ status?: PackageVersionStatus;
1572
1574
  maxResults?: number;
1573
1575
  nextToken?: string;
1574
1576
  }
1575
1577
  export interface PackageVersionSummary {
1576
1578
  packageName?: string;
1577
1579
  versionName?: string;
1578
- status?: PackageVersionStatus | string;
1580
+ status?: PackageVersionStatus;
1579
1581
  creationDate?: Date;
1580
1582
  lastModifiedDate?: Date;
1581
1583
  }