@aws-sdk/client-iot 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.
@@ -73,7 +73,7 @@ import {
73
73
  } from "./models_0";
74
74
  export interface DeleteBillingGroupRequest {
75
75
  billingGroupName: string | undefined;
76
- expectedVersion?: number;
76
+ expectedVersion?: number | undefined;
77
77
  }
78
78
  export interface DeleteBillingGroupResponse {}
79
79
  export declare class CertificateStateException extends __BaseException {
@@ -89,7 +89,7 @@ export interface DeleteCACertificateRequest {
89
89
  export interface DeleteCACertificateResponse {}
90
90
  export interface DeleteCertificateRequest {
91
91
  certificateId: string | undefined;
92
- forceDelete?: boolean;
92
+ forceDelete?: boolean | undefined;
93
93
  }
94
94
  export interface DeleteCertificateProviderRequest {
95
95
  certificateProviderName: string | undefined;
@@ -109,24 +109,24 @@ export interface DeleteDomainConfigurationRequest {
109
109
  export interface DeleteDomainConfigurationResponse {}
110
110
  export interface DeleteDynamicThingGroupRequest {
111
111
  thingGroupName: string | undefined;
112
- expectedVersion?: number;
112
+ expectedVersion?: number | undefined;
113
113
  }
114
114
  export interface DeleteDynamicThingGroupResponse {}
115
115
  export interface DeleteFleetMetricRequest {
116
116
  metricName: string | undefined;
117
- expectedVersion?: number;
117
+ expectedVersion?: number | undefined;
118
118
  }
119
119
  export interface DeleteJobRequest {
120
120
  jobId: string | undefined;
121
- force?: boolean;
122
- namespaceId?: string;
121
+ force?: boolean | undefined;
122
+ namespaceId?: string | undefined;
123
123
  }
124
124
  export interface DeleteJobExecutionRequest {
125
125
  jobId: string | undefined;
126
126
  thingName: string | undefined;
127
127
  executionNumber: number | undefined;
128
- force?: boolean;
129
- namespaceId?: string;
128
+ force?: boolean | undefined;
129
+ namespaceId?: string | undefined;
130
130
  }
131
131
  export interface DeleteJobTemplateRequest {
132
132
  jobTemplateId: string | undefined;
@@ -137,19 +137,19 @@ export interface DeleteMitigationActionRequest {
137
137
  export interface DeleteMitigationActionResponse {}
138
138
  export interface DeleteOTAUpdateRequest {
139
139
  otaUpdateId: string | undefined;
140
- deleteStream?: boolean;
141
- forceDeleteAWSJob?: boolean;
140
+ deleteStream?: boolean | undefined;
141
+ forceDeleteAWSJob?: boolean | undefined;
142
142
  }
143
143
  export interface DeleteOTAUpdateResponse {}
144
144
  export interface DeletePackageRequest {
145
145
  packageName: string | undefined;
146
- clientToken?: string;
146
+ clientToken?: string | undefined;
147
147
  }
148
148
  export interface DeletePackageResponse {}
149
149
  export interface DeletePackageVersionRequest {
150
150
  packageName: string | undefined;
151
151
  versionName: string | undefined;
152
- clientToken?: string;
152
+ clientToken?: string | undefined;
153
153
  }
154
154
  export interface DeletePackageVersionResponse {}
155
155
  export interface DeletePolicyRequest {
@@ -180,7 +180,7 @@ export interface DeleteScheduledAuditRequest {
180
180
  export interface DeleteScheduledAuditResponse {}
181
181
  export interface DeleteSecurityProfileRequest {
182
182
  securityProfileName: string | undefined;
183
- expectedVersion?: number;
183
+ expectedVersion?: number | undefined;
184
184
  }
185
185
  export interface DeleteSecurityProfileResponse {}
186
186
  export interface DeleteStreamRequest {
@@ -189,12 +189,12 @@ export interface DeleteStreamRequest {
189
189
  export interface DeleteStreamResponse {}
190
190
  export interface DeleteThingRequest {
191
191
  thingName: string | undefined;
192
- expectedVersion?: number;
192
+ expectedVersion?: number | undefined;
193
193
  }
194
194
  export interface DeleteThingResponse {}
195
195
  export interface DeleteThingGroupRequest {
196
196
  thingGroupName: string | undefined;
197
- expectedVersion?: number;
197
+ expectedVersion?: number | undefined;
198
198
  }
199
199
  export interface DeleteThingGroupResponse {}
200
200
  export interface DeleteThingTypeRequest {
@@ -222,91 +222,93 @@ export interface DeleteV2LoggingLevelRequest {
222
222
  }
223
223
  export interface DeprecateThingTypeRequest {
224
224
  thingTypeName: string | undefined;
225
- undoDeprecate?: boolean;
225
+ undoDeprecate?: boolean | undefined;
226
226
  }
227
227
  export interface DeprecateThingTypeResponse {}
228
228
  export interface DescribeAccountAuditConfigurationRequest {}
229
229
  export interface DescribeAccountAuditConfigurationResponse {
230
- roleArn?: string;
231
- auditNotificationTargetConfigurations?: Partial<
232
- Record<AuditNotificationType, AuditNotificationTarget>
233
- >;
234
- auditCheckConfigurations?: Record<string, AuditCheckConfiguration>;
230
+ roleArn?: string | undefined;
231
+ auditNotificationTargetConfigurations?:
232
+ | Partial<Record<AuditNotificationType, AuditNotificationTarget>>
233
+ | undefined;
234
+ auditCheckConfigurations?:
235
+ | Record<string, AuditCheckConfiguration>
236
+ | undefined;
235
237
  }
236
238
  export interface DescribeAuditFindingRequest {
237
239
  findingId: string | undefined;
238
240
  }
239
241
  export interface DescribeAuditFindingResponse {
240
- finding?: AuditFinding;
242
+ finding?: AuditFinding | undefined;
241
243
  }
242
244
  export interface DescribeAuditMitigationActionsTaskRequest {
243
245
  taskId: string | undefined;
244
246
  }
245
247
  export interface MitigationAction {
246
- name?: string;
247
- id?: string;
248
- roleArn?: string;
249
- actionParams?: MitigationActionParams;
248
+ name?: string | undefined;
249
+ id?: string | undefined;
250
+ roleArn?: string | undefined;
251
+ actionParams?: MitigationActionParams | undefined;
250
252
  }
251
253
  export interface DescribeAuditMitigationActionsTaskResponse {
252
- taskStatus?: AuditMitigationActionsTaskStatus;
253
- startTime?: Date;
254
- endTime?: Date;
255
- taskStatistics?: Record<string, TaskStatisticsForAuditCheck>;
256
- target?: AuditMitigationActionsTaskTarget;
257
- auditCheckToActionsMapping?: Record<string, string[]>;
258
- actionsDefinition?: MitigationAction[];
254
+ taskStatus?: AuditMitigationActionsTaskStatus | undefined;
255
+ startTime?: Date | undefined;
256
+ endTime?: Date | undefined;
257
+ taskStatistics?: Record<string, TaskStatisticsForAuditCheck> | undefined;
258
+ target?: AuditMitigationActionsTaskTarget | undefined;
259
+ auditCheckToActionsMapping?: Record<string, string[]> | undefined;
260
+ actionsDefinition?: MitigationAction[] | undefined;
259
261
  }
260
262
  export interface DescribeAuditSuppressionRequest {
261
263
  checkName: string | undefined;
262
264
  resourceIdentifier: ResourceIdentifier | undefined;
263
265
  }
264
266
  export interface DescribeAuditSuppressionResponse {
265
- checkName?: string;
266
- resourceIdentifier?: ResourceIdentifier;
267
- expirationDate?: Date;
268
- suppressIndefinitely?: boolean;
269
- description?: string;
267
+ checkName?: string | undefined;
268
+ resourceIdentifier?: ResourceIdentifier | undefined;
269
+ expirationDate?: Date | undefined;
270
+ suppressIndefinitely?: boolean | undefined;
271
+ description?: string | undefined;
270
272
  }
271
273
  export interface DescribeAuditTaskRequest {
272
274
  taskId: string | undefined;
273
275
  }
274
276
  export interface TaskStatistics {
275
- totalChecks?: number;
276
- inProgressChecks?: number;
277
- waitingForDataCollectionChecks?: number;
278
- compliantChecks?: number;
279
- nonCompliantChecks?: number;
280
- failedChecks?: number;
281
- canceledChecks?: number;
277
+ totalChecks?: number | undefined;
278
+ inProgressChecks?: number | undefined;
279
+ waitingForDataCollectionChecks?: number | undefined;
280
+ compliantChecks?: number | undefined;
281
+ nonCompliantChecks?: number | undefined;
282
+ failedChecks?: number | undefined;
283
+ canceledChecks?: number | undefined;
282
284
  }
283
285
  export interface DescribeAuditTaskResponse {
284
- taskStatus?: AuditTaskStatus;
285
- taskType?: AuditTaskType;
286
- taskStartTime?: Date;
287
- taskStatistics?: TaskStatistics;
288
- scheduledAuditName?: string;
289
- auditDetails?: Record<string, AuditCheckDetails>;
286
+ taskStatus?: AuditTaskStatus | undefined;
287
+ taskType?: AuditTaskType | undefined;
288
+ taskStartTime?: Date | undefined;
289
+ taskStatistics?: TaskStatistics | undefined;
290
+ scheduledAuditName?: string | undefined;
291
+ auditDetails?: Record<string, AuditCheckDetails> | undefined;
290
292
  }
291
293
  export interface DescribeAuthorizerRequest {
292
294
  authorizerName: string | undefined;
293
295
  }
294
296
  export interface DescribeAuthorizerResponse {
295
- authorizerDescription?: AuthorizerDescription;
297
+ authorizerDescription?: AuthorizerDescription | undefined;
296
298
  }
297
299
  export interface DescribeBillingGroupRequest {
298
300
  billingGroupName: string | undefined;
299
301
  }
300
302
  export interface BillingGroupMetadata {
301
- creationDate?: Date;
303
+ creationDate?: Date | undefined;
302
304
  }
303
305
  export interface DescribeBillingGroupResponse {
304
- billingGroupName?: string;
305
- billingGroupId?: string;
306
- billingGroupArn?: string;
307
- version?: number;
308
- billingGroupProperties?: BillingGroupProperties;
309
- billingGroupMetadata?: BillingGroupMetadata;
306
+ billingGroupName?: string | undefined;
307
+ billingGroupId?: string | undefined;
308
+ billingGroupArn?: string | undefined;
309
+ version?: number | undefined;
310
+ billingGroupProperties?: BillingGroupProperties | undefined;
311
+ billingGroupMetadata?: BillingGroupMetadata | undefined;
310
312
  }
311
313
  export interface DescribeCACertificateRequest {
312
314
  certificateId: string | undefined;
@@ -324,31 +326,31 @@ export declare const CACertificateStatus: {
324
326
  export type CACertificateStatus =
325
327
  (typeof CACertificateStatus)[keyof typeof CACertificateStatus];
326
328
  export interface CertificateValidity {
327
- notBefore?: Date;
328
- notAfter?: Date;
329
+ notBefore?: Date | undefined;
330
+ notAfter?: Date | undefined;
329
331
  }
330
332
  export interface CACertificateDescription {
331
- certificateArn?: string;
332
- certificateId?: string;
333
- status?: CACertificateStatus;
334
- certificatePem?: string;
335
- ownedBy?: string;
336
- creationDate?: Date;
337
- autoRegistrationStatus?: AutoRegistrationStatus;
338
- lastModifiedDate?: Date;
339
- customerVersion?: number;
340
- generationId?: string;
341
- validity?: CertificateValidity;
342
- certificateMode?: CertificateMode;
333
+ certificateArn?: string | undefined;
334
+ certificateId?: string | undefined;
335
+ status?: CACertificateStatus | undefined;
336
+ certificatePem?: string | undefined;
337
+ ownedBy?: string | undefined;
338
+ creationDate?: Date | undefined;
339
+ autoRegistrationStatus?: AutoRegistrationStatus | undefined;
340
+ lastModifiedDate?: Date | undefined;
341
+ customerVersion?: number | undefined;
342
+ generationId?: string | undefined;
343
+ validity?: CertificateValidity | undefined;
344
+ certificateMode?: CertificateMode | undefined;
343
345
  }
344
346
  export interface RegistrationConfig {
345
- templateBody?: string;
346
- roleArn?: string;
347
- templateName?: string;
347
+ templateBody?: string | undefined;
348
+ roleArn?: string | undefined;
349
+ templateName?: string | undefined;
348
350
  }
349
351
  export interface DescribeCACertificateResponse {
350
- certificateDescription?: CACertificateDescription;
351
- registrationConfig?: RegistrationConfig;
352
+ certificateDescription?: CACertificateDescription | undefined;
353
+ registrationConfig?: RegistrationConfig | undefined;
352
354
  }
353
355
  export interface DescribeCertificateRequest {
354
356
  certificateId: string | undefined;
@@ -364,69 +366,69 @@ export declare const CertificateStatus: {
364
366
  export type CertificateStatus =
365
367
  (typeof CertificateStatus)[keyof typeof CertificateStatus];
366
368
  export interface TransferData {
367
- transferMessage?: string;
368
- rejectReason?: string;
369
- transferDate?: Date;
370
- acceptDate?: Date;
371
- rejectDate?: Date;
369
+ transferMessage?: string | undefined;
370
+ rejectReason?: string | undefined;
371
+ transferDate?: Date | undefined;
372
+ acceptDate?: Date | undefined;
373
+ rejectDate?: Date | undefined;
372
374
  }
373
375
  export interface CertificateDescription {
374
- certificateArn?: string;
375
- certificateId?: string;
376
- caCertificateId?: string;
377
- status?: CertificateStatus;
378
- certificatePem?: string;
379
- ownedBy?: string;
380
- previousOwnedBy?: string;
381
- creationDate?: Date;
382
- lastModifiedDate?: Date;
383
- customerVersion?: number;
384
- transferData?: TransferData;
385
- generationId?: string;
386
- validity?: CertificateValidity;
387
- certificateMode?: CertificateMode;
376
+ certificateArn?: string | undefined;
377
+ certificateId?: string | undefined;
378
+ caCertificateId?: string | undefined;
379
+ status?: CertificateStatus | undefined;
380
+ certificatePem?: string | undefined;
381
+ ownedBy?: string | undefined;
382
+ previousOwnedBy?: string | undefined;
383
+ creationDate?: Date | undefined;
384
+ lastModifiedDate?: Date | undefined;
385
+ customerVersion?: number | undefined;
386
+ transferData?: TransferData | undefined;
387
+ generationId?: string | undefined;
388
+ validity?: CertificateValidity | undefined;
389
+ certificateMode?: CertificateMode | undefined;
388
390
  }
389
391
  export interface DescribeCertificateResponse {
390
- certificateDescription?: CertificateDescription;
392
+ certificateDescription?: CertificateDescription | undefined;
391
393
  }
392
394
  export interface DescribeCertificateProviderRequest {
393
395
  certificateProviderName: string | undefined;
394
396
  }
395
397
  export interface DescribeCertificateProviderResponse {
396
- certificateProviderName?: string;
397
- certificateProviderArn?: string;
398
- lambdaFunctionArn?: string;
399
- accountDefaultForOperations?: CertificateProviderOperation[];
400
- creationDate?: Date;
401
- lastModifiedDate?: Date;
398
+ certificateProviderName?: string | undefined;
399
+ certificateProviderArn?: string | undefined;
400
+ lambdaFunctionArn?: string | undefined;
401
+ accountDefaultForOperations?: CertificateProviderOperation[] | undefined;
402
+ creationDate?: Date | undefined;
403
+ lastModifiedDate?: Date | undefined;
402
404
  }
403
405
  export interface DescribeCustomMetricRequest {
404
406
  metricName: string | undefined;
405
407
  }
406
408
  export interface DescribeCustomMetricResponse {
407
- metricName?: string;
408
- metricArn?: string;
409
- metricType?: CustomMetricType;
410
- displayName?: string;
411
- creationDate?: Date;
412
- lastModifiedDate?: Date;
409
+ metricName?: string | undefined;
410
+ metricArn?: string | undefined;
411
+ metricType?: CustomMetricType | undefined;
412
+ displayName?: string | undefined;
413
+ creationDate?: Date | undefined;
414
+ lastModifiedDate?: Date | undefined;
413
415
  }
414
416
  export interface DescribeDefaultAuthorizerRequest {}
415
417
  export interface DescribeDefaultAuthorizerResponse {
416
- authorizerDescription?: AuthorizerDescription;
418
+ authorizerDescription?: AuthorizerDescription | undefined;
417
419
  }
418
420
  export interface DescribeDetectMitigationActionsTaskRequest {
419
421
  taskId: string | undefined;
420
422
  }
421
423
  export interface DetectMitigationActionsTaskTarget {
422
- violationIds?: string[];
423
- securityProfileName?: string;
424
- behaviorName?: string;
424
+ violationIds?: string[] | undefined;
425
+ securityProfileName?: string | undefined;
426
+ behaviorName?: string | undefined;
425
427
  }
426
428
  export interface DetectMitigationActionsTaskStatistics {
427
- actionsExecuted?: number;
428
- actionsSkipped?: number;
429
- actionsFailed?: number;
429
+ actionsExecuted?: number | undefined;
430
+ actionsSkipped?: number | undefined;
431
+ actionsFailed?: number | undefined;
430
432
  }
431
433
  export declare const DetectMitigationActionsTaskStatus: {
432
434
  readonly CANCELED: "CANCELED";
@@ -441,30 +443,30 @@ export interface ViolationEventOccurrenceRange {
441
443
  endTime: Date | undefined;
442
444
  }
443
445
  export interface DetectMitigationActionsTaskSummary {
444
- taskId?: string;
445
- taskStatus?: DetectMitigationActionsTaskStatus;
446
- taskStartTime?: Date;
447
- taskEndTime?: Date;
448
- target?: DetectMitigationActionsTaskTarget;
449
- violationEventOccurrenceRange?: ViolationEventOccurrenceRange;
450
- onlyActiveViolationsIncluded?: boolean;
451
- suppressedAlertsIncluded?: boolean;
452
- actionsDefinition?: MitigationAction[];
453
- taskStatistics?: DetectMitigationActionsTaskStatistics;
446
+ taskId?: string | undefined;
447
+ taskStatus?: DetectMitigationActionsTaskStatus | undefined;
448
+ taskStartTime?: Date | undefined;
449
+ taskEndTime?: Date | undefined;
450
+ target?: DetectMitigationActionsTaskTarget | undefined;
451
+ violationEventOccurrenceRange?: ViolationEventOccurrenceRange | undefined;
452
+ onlyActiveViolationsIncluded?: boolean | undefined;
453
+ suppressedAlertsIncluded?: boolean | undefined;
454
+ actionsDefinition?: MitigationAction[] | undefined;
455
+ taskStatistics?: DetectMitigationActionsTaskStatistics | undefined;
454
456
  }
455
457
  export interface DescribeDetectMitigationActionsTaskResponse {
456
- taskSummary?: DetectMitigationActionsTaskSummary;
458
+ taskSummary?: DetectMitigationActionsTaskSummary | undefined;
457
459
  }
458
460
  export interface DescribeDimensionRequest {
459
461
  name: string | undefined;
460
462
  }
461
463
  export interface DescribeDimensionResponse {
462
- name?: string;
463
- arn?: string;
464
- type?: DimensionType;
465
- stringValues?: string[];
466
- creationDate?: Date;
467
- lastModifiedDate?: Date;
464
+ name?: string | undefined;
465
+ arn?: string | undefined;
466
+ type?: DimensionType | undefined;
467
+ stringValues?: string[] | undefined;
468
+ creationDate?: Date | undefined;
469
+ lastModifiedDate?: Date | undefined;
468
470
  }
469
471
  export interface DescribeDomainConfigurationRequest {
470
472
  domainConfigurationName: string | undefined;
@@ -488,31 +490,31 @@ export declare const ServerCertificateStatus: {
488
490
  export type ServerCertificateStatus =
489
491
  (typeof ServerCertificateStatus)[keyof typeof ServerCertificateStatus];
490
492
  export interface ServerCertificateSummary {
491
- serverCertificateArn?: string;
492
- serverCertificateStatus?: ServerCertificateStatus;
493
- serverCertificateStatusDetail?: string;
493
+ serverCertificateArn?: string | undefined;
494
+ serverCertificateStatus?: ServerCertificateStatus | undefined;
495
+ serverCertificateStatusDetail?: string | undefined;
494
496
  }
495
497
  export interface DescribeDomainConfigurationResponse {
496
- domainConfigurationName?: string;
497
- domainConfigurationArn?: string;
498
- domainName?: string;
499
- serverCertificates?: ServerCertificateSummary[];
500
- authorizerConfig?: AuthorizerConfig;
501
- domainConfigurationStatus?: DomainConfigurationStatus;
502
- serviceType?: ServiceType;
503
- domainType?: DomainType;
504
- lastStatusChangeDate?: Date;
505
- tlsConfig?: TlsConfig;
506
- serverCertificateConfig?: ServerCertificateConfig;
507
- authenticationType?: AuthenticationType;
508
- applicationProtocol?: ApplicationProtocol;
509
- clientCertificateConfig?: ClientCertificateConfig;
498
+ domainConfigurationName?: string | undefined;
499
+ domainConfigurationArn?: string | undefined;
500
+ domainName?: string | undefined;
501
+ serverCertificates?: ServerCertificateSummary[] | undefined;
502
+ authorizerConfig?: AuthorizerConfig | undefined;
503
+ domainConfigurationStatus?: DomainConfigurationStatus | undefined;
504
+ serviceType?: ServiceType | undefined;
505
+ domainType?: DomainType | undefined;
506
+ lastStatusChangeDate?: Date | undefined;
507
+ tlsConfig?: TlsConfig | undefined;
508
+ serverCertificateConfig?: ServerCertificateConfig | undefined;
509
+ authenticationType?: AuthenticationType | undefined;
510
+ applicationProtocol?: ApplicationProtocol | undefined;
511
+ clientCertificateConfig?: ClientCertificateConfig | undefined;
510
512
  }
511
513
  export interface DescribeEndpointRequest {
512
- endpointType?: string;
514
+ endpointType?: string | undefined;
513
515
  }
514
516
  export interface DescribeEndpointResponse {
515
- endpointAddress?: string;
517
+ endpointAddress?: string | undefined;
516
518
  }
517
519
  export interface DescribeEventConfigurationsRequest {}
518
520
  export declare const EventType: {
@@ -530,30 +532,30 @@ export declare const EventType: {
530
532
  };
531
533
  export type EventType = (typeof EventType)[keyof typeof EventType];
532
534
  export interface Configuration {
533
- Enabled?: boolean;
535
+ Enabled?: boolean | undefined;
534
536
  }
535
537
  export interface DescribeEventConfigurationsResponse {
536
- eventConfigurations?: Partial<Record<EventType, Configuration>>;
537
- creationDate?: Date;
538
- lastModifiedDate?: Date;
538
+ eventConfigurations?: Partial<Record<EventType, Configuration>> | undefined;
539
+ creationDate?: Date | undefined;
540
+ lastModifiedDate?: Date | undefined;
539
541
  }
540
542
  export interface DescribeFleetMetricRequest {
541
543
  metricName: string | undefined;
542
544
  }
543
545
  export interface DescribeFleetMetricResponse {
544
- metricName?: string;
545
- queryString?: string;
546
- aggregationType?: AggregationType;
547
- period?: number;
548
- aggregationField?: string;
549
- description?: string;
550
- queryVersion?: string;
551
- indexName?: string;
552
- creationDate?: Date;
553
- lastModifiedDate?: Date;
554
- unit?: FleetMetricUnit;
555
- version?: number;
556
- metricArn?: string;
546
+ metricName?: string | undefined;
547
+ queryString?: string | undefined;
548
+ aggregationType?: AggregationType | undefined;
549
+ period?: number | undefined;
550
+ aggregationField?: string | undefined;
551
+ description?: string | undefined;
552
+ queryVersion?: string | undefined;
553
+ indexName?: string | undefined;
554
+ creationDate?: Date | undefined;
555
+ lastModifiedDate?: Date | undefined;
556
+ unit?: FleetMetricUnit | undefined;
557
+ version?: number | undefined;
558
+ metricArn?: string | undefined;
557
559
  }
558
560
  export interface DescribeIndexRequest {
559
561
  indexName: string | undefined;
@@ -565,27 +567,27 @@ export declare const IndexStatus: {
565
567
  };
566
568
  export type IndexStatus = (typeof IndexStatus)[keyof typeof IndexStatus];
567
569
  export interface DescribeIndexResponse {
568
- indexName?: string;
569
- indexStatus?: IndexStatus;
570
- schema?: string;
570
+ indexName?: string | undefined;
571
+ indexStatus?: IndexStatus | undefined;
572
+ schema?: string | undefined;
571
573
  }
572
574
  export interface DescribeJobRequest {
573
575
  jobId: string | undefined;
574
- beforeSubstitution?: boolean;
576
+ beforeSubstitution?: boolean | undefined;
575
577
  }
576
578
  export interface JobProcessDetails {
577
- processingTargets?: string[];
578
- numberOfCanceledThings?: number;
579
- numberOfSucceededThings?: number;
580
- numberOfFailedThings?: number;
581
- numberOfRejectedThings?: number;
582
- numberOfQueuedThings?: number;
583
- numberOfInProgressThings?: number;
584
- numberOfRemovedThings?: number;
585
- numberOfTimedOutThings?: number;
579
+ processingTargets?: string[] | undefined;
580
+ numberOfCanceledThings?: number | undefined;
581
+ numberOfSucceededThings?: number | undefined;
582
+ numberOfFailedThings?: number | undefined;
583
+ numberOfRejectedThings?: number | undefined;
584
+ numberOfQueuedThings?: number | undefined;
585
+ numberOfInProgressThings?: number | undefined;
586
+ numberOfRemovedThings?: number | undefined;
587
+ numberOfTimedOutThings?: number | undefined;
586
588
  }
587
589
  export interface ScheduledJobRollout {
588
- startTime?: string;
590
+ startTime?: string | undefined;
589
591
  }
590
592
  export declare const JobStatus: {
591
593
  readonly CANCELED: "CANCELED";
@@ -596,40 +598,40 @@ export declare const JobStatus: {
596
598
  };
597
599
  export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus];
598
600
  export interface Job {
599
- jobArn?: string;
600
- jobId?: string;
601
- targetSelection?: TargetSelection;
602
- status?: JobStatus;
603
- forceCanceled?: boolean;
604
- reasonCode?: string;
605
- comment?: string;
606
- targets?: string[];
607
- description?: string;
608
- presignedUrlConfig?: PresignedUrlConfig;
609
- jobExecutionsRolloutConfig?: JobExecutionsRolloutConfig;
610
- abortConfig?: AbortConfig;
611
- createdAt?: Date;
612
- lastUpdatedAt?: Date;
613
- completedAt?: Date;
614
- jobProcessDetails?: JobProcessDetails;
615
- timeoutConfig?: TimeoutConfig;
616
- namespaceId?: string;
617
- jobTemplateArn?: string;
618
- jobExecutionsRetryConfig?: JobExecutionsRetryConfig;
619
- documentParameters?: Record<string, string>;
620
- isConcurrent?: boolean;
621
- schedulingConfig?: SchedulingConfig;
622
- scheduledJobRollouts?: ScheduledJobRollout[];
623
- destinationPackageVersions?: string[];
601
+ jobArn?: string | undefined;
602
+ jobId?: string | undefined;
603
+ targetSelection?: TargetSelection | undefined;
604
+ status?: JobStatus | undefined;
605
+ forceCanceled?: boolean | undefined;
606
+ reasonCode?: string | undefined;
607
+ comment?: string | undefined;
608
+ targets?: string[] | undefined;
609
+ description?: string | undefined;
610
+ presignedUrlConfig?: PresignedUrlConfig | undefined;
611
+ jobExecutionsRolloutConfig?: JobExecutionsRolloutConfig | undefined;
612
+ abortConfig?: AbortConfig | undefined;
613
+ createdAt?: Date | undefined;
614
+ lastUpdatedAt?: Date | undefined;
615
+ completedAt?: Date | undefined;
616
+ jobProcessDetails?: JobProcessDetails | undefined;
617
+ timeoutConfig?: TimeoutConfig | undefined;
618
+ namespaceId?: string | undefined;
619
+ jobTemplateArn?: string | undefined;
620
+ jobExecutionsRetryConfig?: JobExecutionsRetryConfig | undefined;
621
+ documentParameters?: Record<string, string> | undefined;
622
+ isConcurrent?: boolean | undefined;
623
+ schedulingConfig?: SchedulingConfig | undefined;
624
+ scheduledJobRollouts?: ScheduledJobRollout[] | undefined;
625
+ destinationPackageVersions?: string[] | undefined;
624
626
  }
625
627
  export interface DescribeJobResponse {
626
- documentSource?: string;
627
- job?: Job;
628
+ documentSource?: string | undefined;
629
+ job?: Job | undefined;
628
630
  }
629
631
  export interface DescribeJobExecutionRequest {
630
632
  jobId: string | undefined;
631
633
  thingName: string | undefined;
632
- executionNumber?: number;
634
+ executionNumber?: number | undefined;
633
635
  }
634
636
  export declare const JobExecutionStatus: {
635
637
  readonly CANCELED: "CANCELED";
@@ -644,61 +646,61 @@ export declare const JobExecutionStatus: {
644
646
  export type JobExecutionStatus =
645
647
  (typeof JobExecutionStatus)[keyof typeof JobExecutionStatus];
646
648
  export interface JobExecutionStatusDetails {
647
- detailsMap?: Record<string, string>;
649
+ detailsMap?: Record<string, string> | undefined;
648
650
  }
649
651
  export interface JobExecution {
650
- jobId?: string;
651
- status?: JobExecutionStatus;
652
- forceCanceled?: boolean;
653
- statusDetails?: JobExecutionStatusDetails;
654
- thingArn?: string;
655
- queuedAt?: Date;
656
- startedAt?: Date;
657
- lastUpdatedAt?: Date;
658
- executionNumber?: number;
659
- versionNumber?: number;
660
- approximateSecondsBeforeTimedOut?: number;
652
+ jobId?: string | undefined;
653
+ status?: JobExecutionStatus | undefined;
654
+ forceCanceled?: boolean | undefined;
655
+ statusDetails?: JobExecutionStatusDetails | undefined;
656
+ thingArn?: string | undefined;
657
+ queuedAt?: Date | undefined;
658
+ startedAt?: Date | undefined;
659
+ lastUpdatedAt?: Date | undefined;
660
+ executionNumber?: number | undefined;
661
+ versionNumber?: number | undefined;
662
+ approximateSecondsBeforeTimedOut?: number | undefined;
661
663
  }
662
664
  export interface DescribeJobExecutionResponse {
663
- execution?: JobExecution;
665
+ execution?: JobExecution | undefined;
664
666
  }
665
667
  export interface DescribeJobTemplateRequest {
666
668
  jobTemplateId: string | undefined;
667
669
  }
668
670
  export interface DescribeJobTemplateResponse {
669
- jobTemplateArn?: string;
670
- jobTemplateId?: string;
671
- description?: string;
672
- documentSource?: string;
673
- document?: string;
674
- createdAt?: Date;
675
- presignedUrlConfig?: PresignedUrlConfig;
676
- jobExecutionsRolloutConfig?: JobExecutionsRolloutConfig;
677
- abortConfig?: AbortConfig;
678
- timeoutConfig?: TimeoutConfig;
679
- jobExecutionsRetryConfig?: JobExecutionsRetryConfig;
680
- maintenanceWindows?: MaintenanceWindow[];
681
- destinationPackageVersions?: string[];
671
+ jobTemplateArn?: string | undefined;
672
+ jobTemplateId?: string | undefined;
673
+ description?: string | undefined;
674
+ documentSource?: string | undefined;
675
+ document?: string | undefined;
676
+ createdAt?: Date | undefined;
677
+ presignedUrlConfig?: PresignedUrlConfig | undefined;
678
+ jobExecutionsRolloutConfig?: JobExecutionsRolloutConfig | undefined;
679
+ abortConfig?: AbortConfig | undefined;
680
+ timeoutConfig?: TimeoutConfig | undefined;
681
+ jobExecutionsRetryConfig?: JobExecutionsRetryConfig | undefined;
682
+ maintenanceWindows?: MaintenanceWindow[] | undefined;
683
+ destinationPackageVersions?: string[] | undefined;
682
684
  }
683
685
  export interface DescribeManagedJobTemplateRequest {
684
686
  templateName: string | undefined;
685
- templateVersion?: string;
687
+ templateVersion?: string | undefined;
686
688
  }
687
689
  export interface DocumentParameter {
688
- key?: string;
689
- description?: string;
690
- regex?: string;
691
- example?: string;
692
- optional?: boolean;
690
+ key?: string | undefined;
691
+ description?: string | undefined;
692
+ regex?: string | undefined;
693
+ example?: string | undefined;
694
+ optional?: boolean | undefined;
693
695
  }
694
696
  export interface DescribeManagedJobTemplateResponse {
695
- templateName?: string;
696
- templateArn?: string;
697
- description?: string;
698
- templateVersion?: string;
699
- environments?: string[];
700
- documentParameters?: DocumentParameter[];
701
- document?: string;
697
+ templateName?: string | undefined;
698
+ templateArn?: string | undefined;
699
+ description?: string | undefined;
700
+ templateVersion?: string | undefined;
701
+ environments?: string[] | undefined;
702
+ documentParameters?: DocumentParameter[] | undefined;
703
+ document?: string | undefined;
702
704
  }
703
705
  export interface DescribeMitigationActionRequest {
704
706
  actionName: string | undefined;
@@ -714,111 +716,111 @@ export declare const MitigationActionType: {
714
716
  export type MitigationActionType =
715
717
  (typeof MitigationActionType)[keyof typeof MitigationActionType];
716
718
  export interface DescribeMitigationActionResponse {
717
- actionName?: string;
718
- actionType?: MitigationActionType;
719
- actionArn?: string;
720
- actionId?: string;
721
- roleArn?: string;
722
- actionParams?: MitigationActionParams;
723
- creationDate?: Date;
724
- lastModifiedDate?: Date;
719
+ actionName?: string | undefined;
720
+ actionType?: MitigationActionType | undefined;
721
+ actionArn?: string | undefined;
722
+ actionId?: string | undefined;
723
+ roleArn?: string | undefined;
724
+ actionParams?: MitigationActionParams | undefined;
725
+ creationDate?: Date | undefined;
726
+ lastModifiedDate?: Date | undefined;
725
727
  }
726
728
  export interface DescribeProvisioningTemplateRequest {
727
729
  templateName: string | undefined;
728
730
  }
729
731
  export interface DescribeProvisioningTemplateResponse {
730
- templateArn?: string;
731
- templateName?: string;
732
- description?: string;
733
- creationDate?: Date;
734
- lastModifiedDate?: Date;
735
- defaultVersionId?: number;
736
- templateBody?: string;
737
- enabled?: boolean;
738
- provisioningRoleArn?: string;
739
- preProvisioningHook?: ProvisioningHook;
740
- type?: TemplateType;
732
+ templateArn?: string | undefined;
733
+ templateName?: string | undefined;
734
+ description?: string | undefined;
735
+ creationDate?: Date | undefined;
736
+ lastModifiedDate?: Date | undefined;
737
+ defaultVersionId?: number | undefined;
738
+ templateBody?: string | undefined;
739
+ enabled?: boolean | undefined;
740
+ provisioningRoleArn?: string | undefined;
741
+ preProvisioningHook?: ProvisioningHook | undefined;
742
+ type?: TemplateType | undefined;
741
743
  }
742
744
  export interface DescribeProvisioningTemplateVersionRequest {
743
745
  templateName: string | undefined;
744
746
  versionId: number | undefined;
745
747
  }
746
748
  export interface DescribeProvisioningTemplateVersionResponse {
747
- versionId?: number;
748
- creationDate?: Date;
749
- templateBody?: string;
750
- isDefaultVersion?: boolean;
749
+ versionId?: number | undefined;
750
+ creationDate?: Date | undefined;
751
+ templateBody?: string | undefined;
752
+ isDefaultVersion?: boolean | undefined;
751
753
  }
752
754
  export interface DescribeRoleAliasRequest {
753
755
  roleAlias: string | undefined;
754
756
  }
755
757
  export interface RoleAliasDescription {
756
- roleAlias?: string;
757
- roleAliasArn?: string;
758
- roleArn?: string;
759
- owner?: string;
760
- credentialDurationSeconds?: number;
761
- creationDate?: Date;
762
- lastModifiedDate?: Date;
758
+ roleAlias?: string | undefined;
759
+ roleAliasArn?: string | undefined;
760
+ roleArn?: string | undefined;
761
+ owner?: string | undefined;
762
+ credentialDurationSeconds?: number | undefined;
763
+ creationDate?: Date | undefined;
764
+ lastModifiedDate?: Date | undefined;
763
765
  }
764
766
  export interface DescribeRoleAliasResponse {
765
- roleAliasDescription?: RoleAliasDescription;
767
+ roleAliasDescription?: RoleAliasDescription | undefined;
766
768
  }
767
769
  export interface DescribeScheduledAuditRequest {
768
770
  scheduledAuditName: string | undefined;
769
771
  }
770
772
  export interface DescribeScheduledAuditResponse {
771
- frequency?: AuditFrequency;
772
- dayOfMonth?: string;
773
- dayOfWeek?: DayOfWeek;
774
- targetCheckNames?: string[];
775
- scheduledAuditName?: string;
776
- scheduledAuditArn?: string;
773
+ frequency?: AuditFrequency | undefined;
774
+ dayOfMonth?: string | undefined;
775
+ dayOfWeek?: DayOfWeek | undefined;
776
+ targetCheckNames?: string[] | undefined;
777
+ scheduledAuditName?: string | undefined;
778
+ scheduledAuditArn?: string | undefined;
777
779
  }
778
780
  export interface DescribeSecurityProfileRequest {
779
781
  securityProfileName: string | undefined;
780
782
  }
781
783
  export interface DescribeSecurityProfileResponse {
782
- securityProfileName?: string;
783
- securityProfileArn?: string;
784
- securityProfileDescription?: string;
785
- behaviors?: Behavior[];
786
- alertTargets?: Partial<Record<AlertTargetType, AlertTarget>>;
787
- additionalMetricsToRetain?: string[];
788
- additionalMetricsToRetainV2?: MetricToRetain[];
789
- version?: number;
790
- creationDate?: Date;
791
- lastModifiedDate?: Date;
792
- metricsExportConfig?: MetricsExportConfig;
784
+ securityProfileName?: string | undefined;
785
+ securityProfileArn?: string | undefined;
786
+ securityProfileDescription?: string | undefined;
787
+ behaviors?: Behavior[] | undefined;
788
+ alertTargets?: Partial<Record<AlertTargetType, AlertTarget>> | undefined;
789
+ additionalMetricsToRetain?: string[] | undefined;
790
+ additionalMetricsToRetainV2?: MetricToRetain[] | undefined;
791
+ version?: number | undefined;
792
+ creationDate?: Date | undefined;
793
+ lastModifiedDate?: Date | undefined;
794
+ metricsExportConfig?: MetricsExportConfig | undefined;
793
795
  }
794
796
  export interface DescribeStreamRequest {
795
797
  streamId: string | undefined;
796
798
  }
797
799
  export interface StreamInfo {
798
- streamId?: string;
799
- streamArn?: string;
800
- streamVersion?: number;
801
- description?: string;
802
- files?: StreamFile[];
803
- createdAt?: Date;
804
- lastUpdatedAt?: Date;
805
- roleArn?: string;
800
+ streamId?: string | undefined;
801
+ streamArn?: string | undefined;
802
+ streamVersion?: number | undefined;
803
+ description?: string | undefined;
804
+ files?: StreamFile[] | undefined;
805
+ createdAt?: Date | undefined;
806
+ lastUpdatedAt?: Date | undefined;
807
+ roleArn?: string | undefined;
806
808
  }
807
809
  export interface DescribeStreamResponse {
808
- streamInfo?: StreamInfo;
810
+ streamInfo?: StreamInfo | undefined;
809
811
  }
810
812
  export interface DescribeThingRequest {
811
813
  thingName: string | undefined;
812
814
  }
813
815
  export interface DescribeThingResponse {
814
- defaultClientId?: string;
815
- thingName?: string;
816
- thingId?: string;
817
- thingArn?: string;
818
- thingTypeName?: string;
819
- attributes?: Record<string, string>;
820
- version?: number;
821
- billingGroupName?: string;
816
+ defaultClientId?: string | undefined;
817
+ thingName?: string | undefined;
818
+ thingId?: string | undefined;
819
+ thingArn?: string | undefined;
820
+ thingTypeName?: string | undefined;
821
+ attributes?: Record<string, string> | undefined;
822
+ version?: number | undefined;
823
+ billingGroupName?: string | undefined;
822
824
  }
823
825
  export interface DescribeThingGroupRequest {
824
826
  thingGroupName: string | undefined;
@@ -831,25 +833,25 @@ export declare const DynamicGroupStatus: {
831
833
  export type DynamicGroupStatus =
832
834
  (typeof DynamicGroupStatus)[keyof typeof DynamicGroupStatus];
833
835
  export interface GroupNameAndArn {
834
- groupName?: string;
835
- groupArn?: string;
836
+ groupName?: string | undefined;
837
+ groupArn?: string | undefined;
836
838
  }
837
839
  export interface ThingGroupMetadata {
838
- parentGroupName?: string;
839
- rootToParentThingGroups?: GroupNameAndArn[];
840
- creationDate?: Date;
840
+ parentGroupName?: string | undefined;
841
+ rootToParentThingGroups?: GroupNameAndArn[] | undefined;
842
+ creationDate?: Date | undefined;
841
843
  }
842
844
  export interface DescribeThingGroupResponse {
843
- thingGroupName?: string;
844
- thingGroupId?: string;
845
- thingGroupArn?: string;
846
- version?: number;
847
- thingGroupProperties?: ThingGroupProperties;
848
- thingGroupMetadata?: ThingGroupMetadata;
849
- indexName?: string;
850
- queryString?: string;
851
- queryVersion?: string;
852
- status?: DynamicGroupStatus;
845
+ thingGroupName?: string | undefined;
846
+ thingGroupId?: string | undefined;
847
+ thingGroupArn?: string | undefined;
848
+ version?: number | undefined;
849
+ thingGroupProperties?: ThingGroupProperties | undefined;
850
+ thingGroupMetadata?: ThingGroupMetadata | undefined;
851
+ indexName?: string | undefined;
852
+ queryString?: string | undefined;
853
+ queryVersion?: string | undefined;
854
+ status?: DynamicGroupStatus | undefined;
853
855
  }
854
856
  export interface DescribeThingRegistrationTaskRequest {
855
857
  taskId: string | undefined;
@@ -863,33 +865,33 @@ export declare const Status: {
863
865
  };
864
866
  export type Status = (typeof Status)[keyof typeof Status];
865
867
  export interface DescribeThingRegistrationTaskResponse {
866
- taskId?: string;
867
- creationDate?: Date;
868
- lastModifiedDate?: Date;
869
- templateBody?: string;
870
- inputFileBucket?: string;
871
- inputFileKey?: string;
872
- roleArn?: string;
873
- status?: Status;
874
- message?: string;
875
- successCount?: number;
876
- failureCount?: number;
877
- percentageProgress?: number;
868
+ taskId?: string | undefined;
869
+ creationDate?: Date | undefined;
870
+ lastModifiedDate?: Date | undefined;
871
+ templateBody?: string | undefined;
872
+ inputFileBucket?: string | undefined;
873
+ inputFileKey?: string | undefined;
874
+ roleArn?: string | undefined;
875
+ status?: Status | undefined;
876
+ message?: string | undefined;
877
+ successCount?: number | undefined;
878
+ failureCount?: number | undefined;
879
+ percentageProgress?: number | undefined;
878
880
  }
879
881
  export interface DescribeThingTypeRequest {
880
882
  thingTypeName: string | undefined;
881
883
  }
882
884
  export interface ThingTypeMetadata {
883
- deprecated?: boolean;
884
- deprecationDate?: Date;
885
- creationDate?: Date;
885
+ deprecated?: boolean | undefined;
886
+ deprecationDate?: Date | undefined;
887
+ creationDate?: Date | undefined;
886
888
  }
887
889
  export interface DescribeThingTypeResponse {
888
- thingTypeName?: string;
889
- thingTypeId?: string;
890
- thingTypeArn?: string;
891
- thingTypeProperties?: ThingTypeProperties;
892
- thingTypeMetadata?: ThingTypeMetadata;
890
+ thingTypeName?: string | undefined;
891
+ thingTypeId?: string | undefined;
892
+ thingTypeArn?: string | undefined;
893
+ thingTypeProperties?: ThingTypeProperties | undefined;
894
+ thingTypeMetadata?: ThingTypeMetadata | undefined;
893
895
  }
894
896
  export interface DetachPolicyRequest {
895
897
  policyName: string | undefined;
@@ -915,16 +917,16 @@ export interface DisableTopicRuleRequest {
915
917
  export interface DisassociateSbomFromPackageVersionRequest {
916
918
  packageName: string | undefined;
917
919
  versionName: string | undefined;
918
- clientToken?: string;
920
+ clientToken?: string | undefined;
919
921
  }
920
922
  export interface DisassociateSbomFromPackageVersionResponse {}
921
923
  export interface EnableTopicRuleRequest {
922
924
  ruleName: string | undefined;
923
925
  }
924
926
  export interface GetBehaviorModelTrainingSummariesRequest {
925
- securityProfileName?: string;
926
- maxResults?: number;
927
- nextToken?: string;
927
+ securityProfileName?: string | undefined;
928
+ maxResults?: number | undefined;
929
+ nextToken?: string | undefined;
928
930
  }
929
931
  export declare const ModelStatus: {
930
932
  readonly ACTIVE: "ACTIVE";
@@ -933,59 +935,59 @@ export declare const ModelStatus: {
933
935
  };
934
936
  export type ModelStatus = (typeof ModelStatus)[keyof typeof ModelStatus];
935
937
  export interface BehaviorModelTrainingSummary {
936
- securityProfileName?: string;
937
- behaviorName?: string;
938
- trainingDataCollectionStartDate?: Date;
939
- modelStatus?: ModelStatus;
940
- datapointsCollectionPercentage?: number;
941
- lastModelRefreshDate?: Date;
938
+ securityProfileName?: string | undefined;
939
+ behaviorName?: string | undefined;
940
+ trainingDataCollectionStartDate?: Date | undefined;
941
+ modelStatus?: ModelStatus | undefined;
942
+ datapointsCollectionPercentage?: number | undefined;
943
+ lastModelRefreshDate?: Date | undefined;
942
944
  }
943
945
  export interface GetBehaviorModelTrainingSummariesResponse {
944
- summaries?: BehaviorModelTrainingSummary[];
945
- nextToken?: string;
946
+ summaries?: BehaviorModelTrainingSummary[] | undefined;
947
+ nextToken?: string | undefined;
946
948
  }
947
949
  export interface TermsAggregation {
948
- maxBuckets?: number;
950
+ maxBuckets?: number | undefined;
949
951
  }
950
952
  export interface BucketsAggregationType {
951
- termsAggregation?: TermsAggregation;
953
+ termsAggregation?: TermsAggregation | undefined;
952
954
  }
953
955
  export interface GetBucketsAggregationRequest {
954
- indexName?: string;
956
+ indexName?: string | undefined;
955
957
  queryString: string | undefined;
956
958
  aggregationField: string | undefined;
957
- queryVersion?: string;
959
+ queryVersion?: string | undefined;
958
960
  bucketsAggregationType: BucketsAggregationType | undefined;
959
961
  }
960
962
  export interface Bucket {
961
- keyValue?: string;
962
- count?: number;
963
+ keyValue?: string | undefined;
964
+ count?: number | undefined;
963
965
  }
964
966
  export interface GetBucketsAggregationResponse {
965
- totalCount?: number;
966
- buckets?: Bucket[];
967
+ totalCount?: number | undefined;
968
+ buckets?: Bucket[] | undefined;
967
969
  }
968
970
  export interface GetCardinalityRequest {
969
- indexName?: string;
971
+ indexName?: string | undefined;
970
972
  queryString: string | undefined;
971
- aggregationField?: string;
972
- queryVersion?: string;
973
+ aggregationField?: string | undefined;
974
+ queryVersion?: string | undefined;
973
975
  }
974
976
  export interface GetCardinalityResponse {
975
- cardinality?: number;
977
+ cardinality?: number | undefined;
976
978
  }
977
979
  export interface GetEffectivePoliciesRequest {
978
- principal?: string;
979
- cognitoIdentityPoolId?: string;
980
- thingName?: string;
980
+ principal?: string | undefined;
981
+ cognitoIdentityPoolId?: string | undefined;
982
+ thingName?: string | undefined;
981
983
  }
982
984
  export interface EffectivePolicy {
983
- policyName?: string;
984
- policyArn?: string;
985
- policyDocument?: string;
985
+ policyName?: string | undefined;
986
+ policyArn?: string | undefined;
987
+ policyDocument?: string | undefined;
986
988
  }
987
989
  export interface GetEffectivePoliciesResponse {
988
- effectivePolicies?: EffectivePolicy[];
990
+ effectivePolicies?: EffectivePolicy[] | undefined;
989
991
  }
990
992
  export interface GetIndexingConfigurationRequest {}
991
993
  export declare const FieldType: {
@@ -995,8 +997,8 @@ export declare const FieldType: {
995
997
  };
996
998
  export type FieldType = (typeof FieldType)[keyof typeof FieldType];
997
999
  export interface Field {
998
- name?: string;
999
- type?: FieldType;
1000
+ name?: string | undefined;
1001
+ type?: FieldType | undefined;
1000
1002
  }
1001
1003
  export declare const ThingGroupIndexingMode: {
1002
1004
  readonly OFF: "OFF";
@@ -1006,8 +1008,8 @@ export type ThingGroupIndexingMode =
1006
1008
  (typeof ThingGroupIndexingMode)[keyof typeof ThingGroupIndexingMode];
1007
1009
  export interface ThingGroupIndexingConfiguration {
1008
1010
  thingGroupIndexingMode: ThingGroupIndexingMode | undefined;
1009
- managedFields?: Field[];
1010
- customFields?: Field[];
1011
+ managedFields?: Field[] | undefined;
1012
+ customFields?: Field[] | undefined;
1011
1013
  }
1012
1014
  export declare const DeviceDefenderIndexingMode: {
1013
1015
  readonly OFF: "OFF";
@@ -1022,12 +1024,12 @@ export declare const TargetFieldOrder: {
1022
1024
  export type TargetFieldOrder =
1023
1025
  (typeof TargetFieldOrder)[keyof typeof TargetFieldOrder];
1024
1026
  export interface GeoLocationTarget {
1025
- name?: string;
1026
- order?: TargetFieldOrder;
1027
+ name?: string | undefined;
1028
+ order?: TargetFieldOrder | undefined;
1027
1029
  }
1028
1030
  export interface IndexingFilter {
1029
- namedShadowNames?: string[];
1030
- geoLocations?: GeoLocationTarget[];
1031
+ namedShadowNames?: string[] | undefined;
1032
+ geoLocations?: GeoLocationTarget[] | undefined;
1031
1033
  }
1032
1034
  export declare const NamedShadowIndexingMode: {
1033
1035
  readonly OFF: "OFF";
@@ -1050,186 +1052,186 @@ export type ThingIndexingMode =
1050
1052
  (typeof ThingIndexingMode)[keyof typeof ThingIndexingMode];
1051
1053
  export interface ThingIndexingConfiguration {
1052
1054
  thingIndexingMode: ThingIndexingMode | undefined;
1053
- thingConnectivityIndexingMode?: ThingConnectivityIndexingMode;
1054
- deviceDefenderIndexingMode?: DeviceDefenderIndexingMode;
1055
- namedShadowIndexingMode?: NamedShadowIndexingMode;
1056
- managedFields?: Field[];
1057
- customFields?: Field[];
1058
- filter?: IndexingFilter;
1055
+ thingConnectivityIndexingMode?: ThingConnectivityIndexingMode | undefined;
1056
+ deviceDefenderIndexingMode?: DeviceDefenderIndexingMode | undefined;
1057
+ namedShadowIndexingMode?: NamedShadowIndexingMode | undefined;
1058
+ managedFields?: Field[] | undefined;
1059
+ customFields?: Field[] | undefined;
1060
+ filter?: IndexingFilter | undefined;
1059
1061
  }
1060
1062
  export interface GetIndexingConfigurationResponse {
1061
- thingIndexingConfiguration?: ThingIndexingConfiguration;
1062
- thingGroupIndexingConfiguration?: ThingGroupIndexingConfiguration;
1063
+ thingIndexingConfiguration?: ThingIndexingConfiguration | undefined;
1064
+ thingGroupIndexingConfiguration?: ThingGroupIndexingConfiguration | undefined;
1063
1065
  }
1064
1066
  export interface GetJobDocumentRequest {
1065
1067
  jobId: string | undefined;
1066
- beforeSubstitution?: boolean;
1068
+ beforeSubstitution?: boolean | undefined;
1067
1069
  }
1068
1070
  export interface GetJobDocumentResponse {
1069
- document?: string;
1071
+ document?: string | undefined;
1070
1072
  }
1071
1073
  export interface GetLoggingOptionsRequest {}
1072
1074
  export interface GetLoggingOptionsResponse {
1073
- roleArn?: string;
1074
- logLevel?: LogLevel;
1075
+ roleArn?: string | undefined;
1076
+ logLevel?: LogLevel | undefined;
1075
1077
  }
1076
1078
  export interface GetOTAUpdateRequest {
1077
1079
  otaUpdateId: string | undefined;
1078
1080
  }
1079
1081
  export interface ErrorInfo {
1080
- code?: string;
1081
- message?: string;
1082
+ code?: string | undefined;
1083
+ message?: string | undefined;
1082
1084
  }
1083
1085
  export interface OTAUpdateInfo {
1084
- otaUpdateId?: string;
1085
- otaUpdateArn?: string;
1086
- creationDate?: Date;
1087
- lastModifiedDate?: Date;
1088
- description?: string;
1089
- targets?: string[];
1090
- protocols?: Protocol[];
1091
- awsJobExecutionsRolloutConfig?: AwsJobExecutionsRolloutConfig;
1092
- awsJobPresignedUrlConfig?: AwsJobPresignedUrlConfig;
1093
- targetSelection?: TargetSelection;
1094
- otaUpdateFiles?: OTAUpdateFile[];
1095
- otaUpdateStatus?: OTAUpdateStatus;
1096
- awsIotJobId?: string;
1097
- awsIotJobArn?: string;
1098
- errorInfo?: ErrorInfo;
1099
- additionalParameters?: Record<string, string>;
1086
+ otaUpdateId?: string | undefined;
1087
+ otaUpdateArn?: string | undefined;
1088
+ creationDate?: Date | undefined;
1089
+ lastModifiedDate?: Date | undefined;
1090
+ description?: string | undefined;
1091
+ targets?: string[] | undefined;
1092
+ protocols?: Protocol[] | undefined;
1093
+ awsJobExecutionsRolloutConfig?: AwsJobExecutionsRolloutConfig | undefined;
1094
+ awsJobPresignedUrlConfig?: AwsJobPresignedUrlConfig | undefined;
1095
+ targetSelection?: TargetSelection | undefined;
1096
+ otaUpdateFiles?: OTAUpdateFile[] | undefined;
1097
+ otaUpdateStatus?: OTAUpdateStatus | undefined;
1098
+ awsIotJobId?: string | undefined;
1099
+ awsIotJobArn?: string | undefined;
1100
+ errorInfo?: ErrorInfo | undefined;
1101
+ additionalParameters?: Record<string, string> | undefined;
1100
1102
  }
1101
1103
  export interface GetOTAUpdateResponse {
1102
- otaUpdateInfo?: OTAUpdateInfo;
1104
+ otaUpdateInfo?: OTAUpdateInfo | undefined;
1103
1105
  }
1104
1106
  export interface GetPackageRequest {
1105
1107
  packageName: string | undefined;
1106
1108
  }
1107
1109
  export interface GetPackageResponse {
1108
- packageName?: string;
1109
- packageArn?: string;
1110
- description?: string;
1111
- defaultVersionName?: string;
1112
- creationDate?: Date;
1113
- lastModifiedDate?: Date;
1110
+ packageName?: string | undefined;
1111
+ packageArn?: string | undefined;
1112
+ description?: string | undefined;
1113
+ defaultVersionName?: string | undefined;
1114
+ creationDate?: Date | undefined;
1115
+ lastModifiedDate?: Date | undefined;
1114
1116
  }
1115
1117
  export interface GetPackageConfigurationRequest {}
1116
1118
  export interface VersionUpdateByJobsConfig {
1117
- enabled?: boolean;
1118
- roleArn?: string;
1119
+ enabled?: boolean | undefined;
1120
+ roleArn?: string | undefined;
1119
1121
  }
1120
1122
  export interface GetPackageConfigurationResponse {
1121
- versionUpdateByJobsConfig?: VersionUpdateByJobsConfig;
1123
+ versionUpdateByJobsConfig?: VersionUpdateByJobsConfig | undefined;
1122
1124
  }
1123
1125
  export interface GetPackageVersionRequest {
1124
1126
  packageName: string | undefined;
1125
1127
  versionName: string | undefined;
1126
1128
  }
1127
1129
  export interface GetPackageVersionResponse {
1128
- packageVersionArn?: string;
1129
- packageName?: string;
1130
- versionName?: string;
1131
- description?: string;
1132
- attributes?: Record<string, string>;
1133
- artifact?: PackageVersionArtifact;
1134
- status?: PackageVersionStatus;
1135
- errorReason?: string;
1136
- creationDate?: Date;
1137
- lastModifiedDate?: Date;
1138
- sbom?: Sbom;
1139
- sbomValidationStatus?: SbomValidationStatus;
1140
- recipe?: string;
1130
+ packageVersionArn?: string | undefined;
1131
+ packageName?: string | undefined;
1132
+ versionName?: string | undefined;
1133
+ description?: string | undefined;
1134
+ attributes?: Record<string, string> | undefined;
1135
+ artifact?: PackageVersionArtifact | undefined;
1136
+ status?: PackageVersionStatus | undefined;
1137
+ errorReason?: string | undefined;
1138
+ creationDate?: Date | undefined;
1139
+ lastModifiedDate?: Date | undefined;
1140
+ sbom?: Sbom | undefined;
1141
+ sbomValidationStatus?: SbomValidationStatus | undefined;
1142
+ recipe?: string | undefined;
1141
1143
  }
1142
1144
  export interface GetPercentilesRequest {
1143
- indexName?: string;
1145
+ indexName?: string | undefined;
1144
1146
  queryString: string | undefined;
1145
- aggregationField?: string;
1146
- queryVersion?: string;
1147
- percents?: number[];
1147
+ aggregationField?: string | undefined;
1148
+ queryVersion?: string | undefined;
1149
+ percents?: number[] | undefined;
1148
1150
  }
1149
1151
  export interface PercentPair {
1150
- percent?: number;
1151
- value?: number;
1152
+ percent?: number | undefined;
1153
+ value?: number | undefined;
1152
1154
  }
1153
1155
  export interface GetPercentilesResponse {
1154
- percentiles?: PercentPair[];
1156
+ percentiles?: PercentPair[] | undefined;
1155
1157
  }
1156
1158
  export interface GetPolicyRequest {
1157
1159
  policyName: string | undefined;
1158
1160
  }
1159
1161
  export interface GetPolicyResponse {
1160
- policyName?: string;
1161
- policyArn?: string;
1162
- policyDocument?: string;
1163
- defaultVersionId?: string;
1164
- creationDate?: Date;
1165
- lastModifiedDate?: Date;
1166
- generationId?: string;
1162
+ policyName?: string | undefined;
1163
+ policyArn?: string | undefined;
1164
+ policyDocument?: string | undefined;
1165
+ defaultVersionId?: string | undefined;
1166
+ creationDate?: Date | undefined;
1167
+ lastModifiedDate?: Date | undefined;
1168
+ generationId?: string | undefined;
1167
1169
  }
1168
1170
  export interface GetPolicyVersionRequest {
1169
1171
  policyName: string | undefined;
1170
1172
  policyVersionId: string | undefined;
1171
1173
  }
1172
1174
  export interface GetPolicyVersionResponse {
1173
- policyArn?: string;
1174
- policyName?: string;
1175
- policyDocument?: string;
1176
- policyVersionId?: string;
1177
- isDefaultVersion?: boolean;
1178
- creationDate?: Date;
1179
- lastModifiedDate?: Date;
1180
- generationId?: string;
1175
+ policyArn?: string | undefined;
1176
+ policyName?: string | undefined;
1177
+ policyDocument?: string | undefined;
1178
+ policyVersionId?: string | undefined;
1179
+ isDefaultVersion?: boolean | undefined;
1180
+ creationDate?: Date | undefined;
1181
+ lastModifiedDate?: Date | undefined;
1182
+ generationId?: string | undefined;
1181
1183
  }
1182
1184
  export interface GetRegistrationCodeRequest {}
1183
1185
  export interface GetRegistrationCodeResponse {
1184
- registrationCode?: string;
1186
+ registrationCode?: string | undefined;
1185
1187
  }
1186
1188
  export interface GetStatisticsRequest {
1187
- indexName?: string;
1189
+ indexName?: string | undefined;
1188
1190
  queryString: string | undefined;
1189
- aggregationField?: string;
1190
- queryVersion?: string;
1191
+ aggregationField?: string | undefined;
1192
+ queryVersion?: string | undefined;
1191
1193
  }
1192
1194
  export interface Statistics {
1193
- count?: number;
1194
- average?: number;
1195
- sum?: number;
1196
- minimum?: number;
1197
- maximum?: number;
1198
- sumOfSquares?: number;
1199
- variance?: number;
1200
- stdDeviation?: number;
1195
+ count?: number | undefined;
1196
+ average?: number | undefined;
1197
+ sum?: number | undefined;
1198
+ minimum?: number | undefined;
1199
+ maximum?: number | undefined;
1200
+ sumOfSquares?: number | undefined;
1201
+ variance?: number | undefined;
1202
+ stdDeviation?: number | undefined;
1201
1203
  }
1202
1204
  export interface GetStatisticsResponse {
1203
- statistics?: Statistics;
1205
+ statistics?: Statistics | undefined;
1204
1206
  }
1205
1207
  export interface GetTopicRuleRequest {
1206
1208
  ruleName: string | undefined;
1207
1209
  }
1208
1210
  export interface TopicRule {
1209
- ruleName?: string;
1210
- sql?: string;
1211
- description?: string;
1212
- createdAt?: Date;
1213
- actions?: Action[];
1214
- ruleDisabled?: boolean;
1215
- awsIotSqlVersion?: string;
1216
- errorAction?: Action;
1211
+ ruleName?: string | undefined;
1212
+ sql?: string | undefined;
1213
+ description?: string | undefined;
1214
+ createdAt?: Date | undefined;
1215
+ actions?: Action[] | undefined;
1216
+ ruleDisabled?: boolean | undefined;
1217
+ awsIotSqlVersion?: string | undefined;
1218
+ errorAction?: Action | undefined;
1217
1219
  }
1218
1220
  export interface GetTopicRuleResponse {
1219
- ruleArn?: string;
1220
- rule?: TopicRule;
1221
+ ruleArn?: string | undefined;
1222
+ rule?: TopicRule | undefined;
1221
1223
  }
1222
1224
  export interface GetTopicRuleDestinationRequest {
1223
1225
  arn: string | undefined;
1224
1226
  }
1225
1227
  export interface GetTopicRuleDestinationResponse {
1226
- topicRuleDestination?: TopicRuleDestination;
1228
+ topicRuleDestination?: TopicRuleDestination | undefined;
1227
1229
  }
1228
1230
  export interface GetV2LoggingOptionsRequest {}
1229
1231
  export interface GetV2LoggingOptionsResponse {
1230
- roleArn?: string;
1231
- defaultLogLevel?: LogLevel;
1232
- disableAllLogs?: boolean;
1232
+ roleArn?: string | undefined;
1233
+ defaultLogLevel?: LogLevel | undefined;
1234
+ disableAllLogs?: boolean | undefined;
1233
1235
  }
1234
1236
  export declare class NotConfiguredException extends __BaseException {
1235
1237
  readonly name: "NotConfiguredException";
@@ -1246,178 +1248,178 @@ export declare const BehaviorCriteriaType: {
1246
1248
  export type BehaviorCriteriaType =
1247
1249
  (typeof BehaviorCriteriaType)[keyof typeof BehaviorCriteriaType];
1248
1250
  export interface ListActiveViolationsRequest {
1249
- thingName?: string;
1250
- securityProfileName?: string;
1251
- behaviorCriteriaType?: BehaviorCriteriaType;
1252
- listSuppressedAlerts?: boolean;
1253
- verificationState?: VerificationState;
1254
- nextToken?: string;
1255
- maxResults?: number;
1251
+ thingName?: string | undefined;
1252
+ securityProfileName?: string | undefined;
1253
+ behaviorCriteriaType?: BehaviorCriteriaType | undefined;
1254
+ listSuppressedAlerts?: boolean | undefined;
1255
+ verificationState?: VerificationState | undefined;
1256
+ nextToken?: string | undefined;
1257
+ maxResults?: number | undefined;
1256
1258
  }
1257
1259
  export interface ListActiveViolationsResponse {
1258
- activeViolations?: ActiveViolation[];
1259
- nextToken?: string;
1260
+ activeViolations?: ActiveViolation[] | undefined;
1261
+ nextToken?: string | undefined;
1260
1262
  }
1261
1263
  export interface ListAttachedPoliciesRequest {
1262
1264
  target: string | undefined;
1263
- recursive?: boolean;
1264
- marker?: string;
1265
- pageSize?: number;
1265
+ recursive?: boolean | undefined;
1266
+ marker?: string | undefined;
1267
+ pageSize?: number | undefined;
1266
1268
  }
1267
1269
  export interface ListAttachedPoliciesResponse {
1268
- policies?: Policy[];
1269
- nextMarker?: string;
1270
+ policies?: Policy[] | undefined;
1271
+ nextMarker?: string | undefined;
1270
1272
  }
1271
1273
  export interface ListAuditFindingsRequest {
1272
- taskId?: string;
1273
- checkName?: string;
1274
- resourceIdentifier?: ResourceIdentifier;
1275
- maxResults?: number;
1276
- nextToken?: string;
1277
- startTime?: Date;
1278
- endTime?: Date;
1279
- listSuppressedFindings?: boolean;
1274
+ taskId?: string | undefined;
1275
+ checkName?: string | undefined;
1276
+ resourceIdentifier?: ResourceIdentifier | undefined;
1277
+ maxResults?: number | undefined;
1278
+ nextToken?: string | undefined;
1279
+ startTime?: Date | undefined;
1280
+ endTime?: Date | undefined;
1281
+ listSuppressedFindings?: boolean | undefined;
1280
1282
  }
1281
1283
  export interface ListAuditFindingsResponse {
1282
- findings?: AuditFinding[];
1283
- nextToken?: string;
1284
+ findings?: AuditFinding[] | undefined;
1285
+ nextToken?: string | undefined;
1284
1286
  }
1285
1287
  export interface ListAuditMitigationActionsExecutionsRequest {
1286
1288
  taskId: string | undefined;
1287
- actionStatus?: AuditMitigationActionsExecutionStatus;
1289
+ actionStatus?: AuditMitigationActionsExecutionStatus | undefined;
1288
1290
  findingId: string | undefined;
1289
- maxResults?: number;
1290
- nextToken?: string;
1291
+ maxResults?: number | undefined;
1292
+ nextToken?: string | undefined;
1291
1293
  }
1292
1294
  export interface ListAuditMitigationActionsExecutionsResponse {
1293
- actionsExecutions?: AuditMitigationActionExecutionMetadata[];
1294
- nextToken?: string;
1295
+ actionsExecutions?: AuditMitigationActionExecutionMetadata[] | undefined;
1296
+ nextToken?: string | undefined;
1295
1297
  }
1296
1298
  export interface ListAuditMitigationActionsTasksRequest {
1297
- auditTaskId?: string;
1298
- findingId?: string;
1299
- taskStatus?: AuditMitigationActionsTaskStatus;
1300
- maxResults?: number;
1301
- nextToken?: string;
1299
+ auditTaskId?: string | undefined;
1300
+ findingId?: string | undefined;
1301
+ taskStatus?: AuditMitigationActionsTaskStatus | undefined;
1302
+ maxResults?: number | undefined;
1303
+ nextToken?: string | undefined;
1302
1304
  startTime: Date | undefined;
1303
1305
  endTime: Date | undefined;
1304
1306
  }
1305
1307
  export interface ListAuditMitigationActionsTasksResponse {
1306
- tasks?: AuditMitigationActionsTaskMetadata[];
1307
- nextToken?: string;
1308
+ tasks?: AuditMitigationActionsTaskMetadata[] | undefined;
1309
+ nextToken?: string | undefined;
1308
1310
  }
1309
1311
  export interface ListAuditSuppressionsRequest {
1310
- checkName?: string;
1311
- resourceIdentifier?: ResourceIdentifier;
1312
- ascendingOrder?: boolean;
1313
- nextToken?: string;
1314
- maxResults?: number;
1312
+ checkName?: string | undefined;
1313
+ resourceIdentifier?: ResourceIdentifier | undefined;
1314
+ ascendingOrder?: boolean | undefined;
1315
+ nextToken?: string | undefined;
1316
+ maxResults?: number | undefined;
1315
1317
  }
1316
1318
  export interface ListAuditSuppressionsResponse {
1317
- suppressions?: AuditSuppression[];
1318
- nextToken?: string;
1319
+ suppressions?: AuditSuppression[] | undefined;
1320
+ nextToken?: string | undefined;
1319
1321
  }
1320
1322
  export interface ListAuditTasksRequest {
1321
1323
  startTime: Date | undefined;
1322
1324
  endTime: Date | undefined;
1323
- taskType?: AuditTaskType;
1324
- taskStatus?: AuditTaskStatus;
1325
- nextToken?: string;
1326
- maxResults?: number;
1325
+ taskType?: AuditTaskType | undefined;
1326
+ taskStatus?: AuditTaskStatus | undefined;
1327
+ nextToken?: string | undefined;
1328
+ maxResults?: number | undefined;
1327
1329
  }
1328
1330
  export interface ListAuditTasksResponse {
1329
- tasks?: AuditTaskMetadata[];
1330
- nextToken?: string;
1331
+ tasks?: AuditTaskMetadata[] | undefined;
1332
+ nextToken?: string | undefined;
1331
1333
  }
1332
1334
  export interface ListAuthorizersRequest {
1333
- pageSize?: number;
1334
- marker?: string;
1335
- ascendingOrder?: boolean;
1336
- status?: AuthorizerStatus;
1335
+ pageSize?: number | undefined;
1336
+ marker?: string | undefined;
1337
+ ascendingOrder?: boolean | undefined;
1338
+ status?: AuthorizerStatus | undefined;
1337
1339
  }
1338
1340
  export interface ListAuthorizersResponse {
1339
- authorizers?: AuthorizerSummary[];
1340
- nextMarker?: string;
1341
+ authorizers?: AuthorizerSummary[] | undefined;
1342
+ nextMarker?: string | undefined;
1341
1343
  }
1342
1344
  export interface ListBillingGroupsRequest {
1343
- nextToken?: string;
1344
- maxResults?: number;
1345
- namePrefixFilter?: string;
1345
+ nextToken?: string | undefined;
1346
+ maxResults?: number | undefined;
1347
+ namePrefixFilter?: string | undefined;
1346
1348
  }
1347
1349
  export interface ListBillingGroupsResponse {
1348
- billingGroups?: GroupNameAndArn[];
1349
- nextToken?: string;
1350
+ billingGroups?: GroupNameAndArn[] | undefined;
1351
+ nextToken?: string | undefined;
1350
1352
  }
1351
1353
  export interface ListCACertificatesRequest {
1352
- pageSize?: number;
1353
- marker?: string;
1354
- ascendingOrder?: boolean;
1355
- templateName?: string;
1354
+ pageSize?: number | undefined;
1355
+ marker?: string | undefined;
1356
+ ascendingOrder?: boolean | undefined;
1357
+ templateName?: string | undefined;
1356
1358
  }
1357
1359
  export interface CACertificate {
1358
- certificateArn?: string;
1359
- certificateId?: string;
1360
- status?: CACertificateStatus;
1361
- creationDate?: Date;
1360
+ certificateArn?: string | undefined;
1361
+ certificateId?: string | undefined;
1362
+ status?: CACertificateStatus | undefined;
1363
+ creationDate?: Date | undefined;
1362
1364
  }
1363
1365
  export interface ListCACertificatesResponse {
1364
- certificates?: CACertificate[];
1365
- nextMarker?: string;
1366
+ certificates?: CACertificate[] | undefined;
1367
+ nextMarker?: string | undefined;
1366
1368
  }
1367
1369
  export interface ListCertificateProvidersRequest {
1368
- nextToken?: string;
1369
- ascendingOrder?: boolean;
1370
+ nextToken?: string | undefined;
1371
+ ascendingOrder?: boolean | undefined;
1370
1372
  }
1371
1373
  export interface CertificateProviderSummary {
1372
- certificateProviderName?: string;
1373
- certificateProviderArn?: string;
1374
+ certificateProviderName?: string | undefined;
1375
+ certificateProviderArn?: string | undefined;
1374
1376
  }
1375
1377
  export interface ListCertificateProvidersResponse {
1376
- certificateProviders?: CertificateProviderSummary[];
1377
- nextToken?: string;
1378
+ certificateProviders?: CertificateProviderSummary[] | undefined;
1379
+ nextToken?: string | undefined;
1378
1380
  }
1379
1381
  export interface ListCertificatesRequest {
1380
- pageSize?: number;
1381
- marker?: string;
1382
- ascendingOrder?: boolean;
1382
+ pageSize?: number | undefined;
1383
+ marker?: string | undefined;
1384
+ ascendingOrder?: boolean | undefined;
1383
1385
  }
1384
1386
  export interface Certificate {
1385
- certificateArn?: string;
1386
- certificateId?: string;
1387
- status?: CertificateStatus;
1388
- certificateMode?: CertificateMode;
1389
- creationDate?: Date;
1387
+ certificateArn?: string | undefined;
1388
+ certificateId?: string | undefined;
1389
+ status?: CertificateStatus | undefined;
1390
+ certificateMode?: CertificateMode | undefined;
1391
+ creationDate?: Date | undefined;
1390
1392
  }
1391
1393
  export interface ListCertificatesResponse {
1392
- certificates?: Certificate[];
1393
- nextMarker?: string;
1394
+ certificates?: Certificate[] | undefined;
1395
+ nextMarker?: string | undefined;
1394
1396
  }
1395
1397
  export interface ListCertificatesByCARequest {
1396
1398
  caCertificateId: string | undefined;
1397
- pageSize?: number;
1398
- marker?: string;
1399
- ascendingOrder?: boolean;
1399
+ pageSize?: number | undefined;
1400
+ marker?: string | undefined;
1401
+ ascendingOrder?: boolean | undefined;
1400
1402
  }
1401
1403
  export interface ListCertificatesByCAResponse {
1402
- certificates?: Certificate[];
1403
- nextMarker?: string;
1404
+ certificates?: Certificate[] | undefined;
1405
+ nextMarker?: string | undefined;
1404
1406
  }
1405
1407
  export interface ListCustomMetricsRequest {
1406
- nextToken?: string;
1407
- maxResults?: number;
1408
+ nextToken?: string | undefined;
1409
+ maxResults?: number | undefined;
1408
1410
  }
1409
1411
  export interface ListCustomMetricsResponse {
1410
- metricNames?: string[];
1411
- nextToken?: string;
1412
+ metricNames?: string[] | undefined;
1413
+ nextToken?: string | undefined;
1412
1414
  }
1413
1415
  export interface ListDetectMitigationActionsExecutionsRequest {
1414
- taskId?: string;
1415
- violationId?: string;
1416
- thingName?: string;
1417
- startTime?: Date;
1418
- endTime?: Date;
1419
- maxResults?: number;
1420
- nextToken?: string;
1416
+ taskId?: string | undefined;
1417
+ violationId?: string | undefined;
1418
+ thingName?: string | undefined;
1419
+ startTime?: Date | undefined;
1420
+ endTime?: Date | undefined;
1421
+ maxResults?: number | undefined;
1422
+ nextToken?: string | undefined;
1421
1423
  }
1422
1424
  export declare const DetectMitigationActionExecutionStatus: {
1423
1425
  readonly FAILED: "FAILED";
@@ -1428,159 +1430,159 @@ export declare const DetectMitigationActionExecutionStatus: {
1428
1430
  export type DetectMitigationActionExecutionStatus =
1429
1431
  (typeof DetectMitigationActionExecutionStatus)[keyof typeof DetectMitigationActionExecutionStatus];
1430
1432
  export interface DetectMitigationActionExecution {
1431
- taskId?: string;
1432
- violationId?: string;
1433
- actionName?: string;
1434
- thingName?: string;
1435
- executionStartDate?: Date;
1436
- executionEndDate?: Date;
1437
- status?: DetectMitigationActionExecutionStatus;
1438
- errorCode?: string;
1439
- message?: string;
1433
+ taskId?: string | undefined;
1434
+ violationId?: string | undefined;
1435
+ actionName?: string | undefined;
1436
+ thingName?: string | undefined;
1437
+ executionStartDate?: Date | undefined;
1438
+ executionEndDate?: Date | undefined;
1439
+ status?: DetectMitigationActionExecutionStatus | undefined;
1440
+ errorCode?: string | undefined;
1441
+ message?: string | undefined;
1440
1442
  }
1441
1443
  export interface ListDetectMitigationActionsExecutionsResponse {
1442
- actionsExecutions?: DetectMitigationActionExecution[];
1443
- nextToken?: string;
1444
+ actionsExecutions?: DetectMitigationActionExecution[] | undefined;
1445
+ nextToken?: string | undefined;
1444
1446
  }
1445
1447
  export interface ListDetectMitigationActionsTasksRequest {
1446
- maxResults?: number;
1447
- nextToken?: string;
1448
+ maxResults?: number | undefined;
1449
+ nextToken?: string | undefined;
1448
1450
  startTime: Date | undefined;
1449
1451
  endTime: Date | undefined;
1450
1452
  }
1451
1453
  export interface ListDetectMitigationActionsTasksResponse {
1452
- tasks?: DetectMitigationActionsTaskSummary[];
1453
- nextToken?: string;
1454
+ tasks?: DetectMitigationActionsTaskSummary[] | undefined;
1455
+ nextToken?: string | undefined;
1454
1456
  }
1455
1457
  export interface ListDimensionsRequest {
1456
- nextToken?: string;
1457
- maxResults?: number;
1458
+ nextToken?: string | undefined;
1459
+ maxResults?: number | undefined;
1458
1460
  }
1459
1461
  export interface ListDimensionsResponse {
1460
- dimensionNames?: string[];
1461
- nextToken?: string;
1462
+ dimensionNames?: string[] | undefined;
1463
+ nextToken?: string | undefined;
1462
1464
  }
1463
1465
  export interface ListDomainConfigurationsRequest {
1464
- marker?: string;
1465
- pageSize?: number;
1466
- serviceType?: ServiceType;
1466
+ marker?: string | undefined;
1467
+ pageSize?: number | undefined;
1468
+ serviceType?: ServiceType | undefined;
1467
1469
  }
1468
1470
  export interface DomainConfigurationSummary {
1469
- domainConfigurationName?: string;
1470
- domainConfigurationArn?: string;
1471
- serviceType?: ServiceType;
1471
+ domainConfigurationName?: string | undefined;
1472
+ domainConfigurationArn?: string | undefined;
1473
+ serviceType?: ServiceType | undefined;
1472
1474
  }
1473
1475
  export interface ListDomainConfigurationsResponse {
1474
- domainConfigurations?: DomainConfigurationSummary[];
1475
- nextMarker?: string;
1476
+ domainConfigurations?: DomainConfigurationSummary[] | undefined;
1477
+ nextMarker?: string | undefined;
1476
1478
  }
1477
1479
  export interface ListFleetMetricsRequest {
1478
- nextToken?: string;
1479
- maxResults?: number;
1480
+ nextToken?: string | undefined;
1481
+ maxResults?: number | undefined;
1480
1482
  }
1481
1483
  export interface FleetMetricNameAndArn {
1482
- metricName?: string;
1483
- metricArn?: string;
1484
+ metricName?: string | undefined;
1485
+ metricArn?: string | undefined;
1484
1486
  }
1485
1487
  export interface ListFleetMetricsResponse {
1486
- fleetMetrics?: FleetMetricNameAndArn[];
1487
- nextToken?: string;
1488
+ fleetMetrics?: FleetMetricNameAndArn[] | undefined;
1489
+ nextToken?: string | undefined;
1488
1490
  }
1489
1491
  export interface ListIndicesRequest {
1490
- nextToken?: string;
1491
- maxResults?: number;
1492
+ nextToken?: string | undefined;
1493
+ maxResults?: number | undefined;
1492
1494
  }
1493
1495
  export interface ListIndicesResponse {
1494
- indexNames?: string[];
1495
- nextToken?: string;
1496
+ indexNames?: string[] | undefined;
1497
+ nextToken?: string | undefined;
1496
1498
  }
1497
1499
  export interface ListJobExecutionsForJobRequest {
1498
1500
  jobId: string | undefined;
1499
- status?: JobExecutionStatus;
1500
- maxResults?: number;
1501
- nextToken?: string;
1501
+ status?: JobExecutionStatus | undefined;
1502
+ maxResults?: number | undefined;
1503
+ nextToken?: string | undefined;
1502
1504
  }
1503
1505
  export interface JobExecutionSummary {
1504
- status?: JobExecutionStatus;
1505
- queuedAt?: Date;
1506
- startedAt?: Date;
1507
- lastUpdatedAt?: Date;
1508
- executionNumber?: number;
1509
- retryAttempt?: number;
1506
+ status?: JobExecutionStatus | undefined;
1507
+ queuedAt?: Date | undefined;
1508
+ startedAt?: Date | undefined;
1509
+ lastUpdatedAt?: Date | undefined;
1510
+ executionNumber?: number | undefined;
1511
+ retryAttempt?: number | undefined;
1510
1512
  }
1511
1513
  export interface JobExecutionSummaryForJob {
1512
- thingArn?: string;
1513
- jobExecutionSummary?: JobExecutionSummary;
1514
+ thingArn?: string | undefined;
1515
+ jobExecutionSummary?: JobExecutionSummary | undefined;
1514
1516
  }
1515
1517
  export interface ListJobExecutionsForJobResponse {
1516
- executionSummaries?: JobExecutionSummaryForJob[];
1517
- nextToken?: string;
1518
+ executionSummaries?: JobExecutionSummaryForJob[] | undefined;
1519
+ nextToken?: string | undefined;
1518
1520
  }
1519
1521
  export interface ListJobExecutionsForThingRequest {
1520
1522
  thingName: string | undefined;
1521
- status?: JobExecutionStatus;
1522
- namespaceId?: string;
1523
- maxResults?: number;
1524
- nextToken?: string;
1525
- jobId?: string;
1523
+ status?: JobExecutionStatus | undefined;
1524
+ namespaceId?: string | undefined;
1525
+ maxResults?: number | undefined;
1526
+ nextToken?: string | undefined;
1527
+ jobId?: string | undefined;
1526
1528
  }
1527
1529
  export interface JobExecutionSummaryForThing {
1528
- jobId?: string;
1529
- jobExecutionSummary?: JobExecutionSummary;
1530
+ jobId?: string | undefined;
1531
+ jobExecutionSummary?: JobExecutionSummary | undefined;
1530
1532
  }
1531
1533
  export interface ListJobExecutionsForThingResponse {
1532
- executionSummaries?: JobExecutionSummaryForThing[];
1533
- nextToken?: string;
1534
+ executionSummaries?: JobExecutionSummaryForThing[] | undefined;
1535
+ nextToken?: string | undefined;
1534
1536
  }
1535
1537
  export interface ListJobsRequest {
1536
- status?: JobStatus;
1537
- targetSelection?: TargetSelection;
1538
- maxResults?: number;
1539
- nextToken?: string;
1540
- thingGroupName?: string;
1541
- thingGroupId?: string;
1542
- namespaceId?: string;
1538
+ status?: JobStatus | undefined;
1539
+ targetSelection?: TargetSelection | undefined;
1540
+ maxResults?: number | undefined;
1541
+ nextToken?: string | undefined;
1542
+ thingGroupName?: string | undefined;
1543
+ thingGroupId?: string | undefined;
1544
+ namespaceId?: string | undefined;
1543
1545
  }
1544
1546
  export interface JobSummary {
1545
- jobArn?: string;
1546
- jobId?: string;
1547
- thingGroupId?: string;
1548
- targetSelection?: TargetSelection;
1549
- status?: JobStatus;
1550
- createdAt?: Date;
1551
- lastUpdatedAt?: Date;
1552
- completedAt?: Date;
1553
- isConcurrent?: boolean;
1547
+ jobArn?: string | undefined;
1548
+ jobId?: string | undefined;
1549
+ thingGroupId?: string | undefined;
1550
+ targetSelection?: TargetSelection | undefined;
1551
+ status?: JobStatus | undefined;
1552
+ createdAt?: Date | undefined;
1553
+ lastUpdatedAt?: Date | undefined;
1554
+ completedAt?: Date | undefined;
1555
+ isConcurrent?: boolean | undefined;
1554
1556
  }
1555
1557
  export interface ListJobsResponse {
1556
- jobs?: JobSummary[];
1557
- nextToken?: string;
1558
+ jobs?: JobSummary[] | undefined;
1559
+ nextToken?: string | undefined;
1558
1560
  }
1559
1561
  export interface ListJobTemplatesRequest {
1560
- maxResults?: number;
1561
- nextToken?: string;
1562
+ maxResults?: number | undefined;
1563
+ nextToken?: string | undefined;
1562
1564
  }
1563
1565
  export interface JobTemplateSummary {
1564
- jobTemplateArn?: string;
1565
- jobTemplateId?: string;
1566
- description?: string;
1567
- createdAt?: Date;
1566
+ jobTemplateArn?: string | undefined;
1567
+ jobTemplateId?: string | undefined;
1568
+ description?: string | undefined;
1569
+ createdAt?: Date | undefined;
1568
1570
  }
1569
1571
  export interface ListJobTemplatesResponse {
1570
- jobTemplates?: JobTemplateSummary[];
1571
- nextToken?: string;
1572
+ jobTemplates?: JobTemplateSummary[] | undefined;
1573
+ nextToken?: string | undefined;
1572
1574
  }
1573
1575
  export interface ListManagedJobTemplatesRequest {
1574
- templateName?: string;
1575
- maxResults?: number;
1576
- nextToken?: string;
1576
+ templateName?: string | undefined;
1577
+ maxResults?: number | undefined;
1578
+ nextToken?: string | undefined;
1577
1579
  }
1578
1580
  export interface ManagedJobTemplateSummary {
1579
- templateArn?: string;
1580
- templateName?: string;
1581
- description?: string;
1582
- environments?: string[];
1583
- templateVersion?: string;
1581
+ templateArn?: string | undefined;
1582
+ templateName?: string | undefined;
1583
+ description?: string | undefined;
1584
+ environments?: string[] | undefined;
1585
+ templateVersion?: string | undefined;
1584
1586
  }
1585
1587
  export declare const GetPackageResponseFilterSensitiveLog: (
1586
1588
  obj: GetPackageResponse