@aws-sdk/client-iot 3.687.0 → 3.691.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.
@@ -10,12 +10,12 @@ export interface ListManagedJobTemplatesResponse {
10
10
  * <p>A list of managed job templates that are returned.</p>
11
11
  * @public
12
12
  */
13
- managedJobTemplates?: ManagedJobTemplateSummary[];
13
+ managedJobTemplates?: ManagedJobTemplateSummary[] | undefined;
14
14
  /**
15
15
  * <p>The token to retrieve the next set of results.</p>
16
16
  * @public
17
17
  */
18
- nextToken?: string;
18
+ nextToken?: string | undefined;
19
19
  }
20
20
  /**
21
21
  * @public
@@ -35,12 +35,12 @@ export interface ListMetricValuesRequest {
35
35
  * <p>The dimension name.</p>
36
36
  * @public
37
37
  */
38
- dimensionName?: string;
38
+ dimensionName?: string | undefined;
39
39
  /**
40
40
  * <p>The dimension value operator.</p>
41
41
  * @public
42
42
  */
43
- dimensionValueOperator?: DimensionValueOperator;
43
+ dimensionValueOperator?: DimensionValueOperator | undefined;
44
44
  /**
45
45
  * <p>The start of the time period for which metric values are returned.</p>
46
46
  * @public
@@ -55,12 +55,12 @@ export interface ListMetricValuesRequest {
55
55
  * <p>The maximum number of results to return at one time.</p>
56
56
  * @public
57
57
  */
58
- maxResults?: number;
58
+ maxResults?: number | undefined;
59
59
  /**
60
60
  * <p>The token for the next set of results.</p>
61
61
  * @public
62
62
  */
63
- nextToken?: string;
63
+ nextToken?: string | undefined;
64
64
  }
65
65
  /**
66
66
  * <p>A metric.</p>
@@ -71,12 +71,12 @@ export interface MetricDatum {
71
71
  * <p>The time the metric value was reported.</p>
72
72
  * @public
73
73
  */
74
- timestamp?: Date;
74
+ timestamp?: Date | undefined;
75
75
  /**
76
76
  * <p>The value reported for the metric.</p>
77
77
  * @public
78
78
  */
79
- value?: MetricValue;
79
+ value?: MetricValue | undefined;
80
80
  }
81
81
  /**
82
82
  * @public
@@ -86,13 +86,13 @@ export interface ListMetricValuesResponse {
86
86
  * <p>The data the thing reports for the metric during the specified time period.</p>
87
87
  * @public
88
88
  */
89
- metricDatumList?: MetricDatum[];
89
+ metricDatumList?: MetricDatum[] | undefined;
90
90
  /**
91
91
  * <p>A token that can be used to retrieve the next set of results, or <code>null</code>
92
92
  * if there are no additional results.</p>
93
93
  * @public
94
94
  */
95
- nextToken?: string;
95
+ nextToken?: string | undefined;
96
96
  }
97
97
  /**
98
98
  * @public
@@ -102,17 +102,17 @@ export interface ListMitigationActionsRequest {
102
102
  * <p>Specify a value to limit the result to mitigation actions with a specific action type.</p>
103
103
  * @public
104
104
  */
105
- actionType?: MitigationActionType;
105
+ actionType?: MitigationActionType | undefined;
106
106
  /**
107
107
  * <p>The maximum number of results to return at one time. The default is 25.</p>
108
108
  * @public
109
109
  */
110
- maxResults?: number;
110
+ maxResults?: number | undefined;
111
111
  /**
112
112
  * <p>The token for the next set of results.</p>
113
113
  * @public
114
114
  */
115
- nextToken?: string;
115
+ nextToken?: string | undefined;
116
116
  }
117
117
  /**
118
118
  * <p>Information that identifies a mitigation action. This information is returned by ListMitigationActions.</p>
@@ -123,17 +123,17 @@ export interface MitigationActionIdentifier {
123
123
  * <p>The friendly name of the mitigation action.</p>
124
124
  * @public
125
125
  */
126
- actionName?: string;
126
+ actionName?: string | undefined;
127
127
  /**
128
128
  * <p>The IAM role ARN used to apply this mitigation action.</p>
129
129
  * @public
130
130
  */
131
- actionArn?: string;
131
+ actionArn?: string | undefined;
132
132
  /**
133
133
  * <p>The date when this mitigation action was created.</p>
134
134
  * @public
135
135
  */
136
- creationDate?: Date;
136
+ creationDate?: Date | undefined;
137
137
  }
138
138
  /**
139
139
  * @public
@@ -143,12 +143,12 @@ export interface ListMitigationActionsResponse {
143
143
  * <p>A set of actions that matched the specified filter criteria.</p>
144
144
  * @public
145
145
  */
146
- actionIdentifiers?: MitigationActionIdentifier[];
146
+ actionIdentifiers?: MitigationActionIdentifier[] | undefined;
147
147
  /**
148
148
  * <p>The token for the next set of results.</p>
149
149
  * @public
150
150
  */
151
- nextToken?: string;
151
+ nextToken?: string | undefined;
152
152
  }
153
153
  /**
154
154
  * @public
@@ -158,17 +158,17 @@ export interface ListOTAUpdatesRequest {
158
158
  * <p>The maximum number of results to return at one time.</p>
159
159
  * @public
160
160
  */
161
- maxResults?: number;
161
+ maxResults?: number | undefined;
162
162
  /**
163
163
  * <p>A token used to retrieve the next set of results.</p>
164
164
  * @public
165
165
  */
166
- nextToken?: string;
166
+ nextToken?: string | undefined;
167
167
  /**
168
168
  * <p>The OTA update job status.</p>
169
169
  * @public
170
170
  */
171
- otaUpdateStatus?: OTAUpdateStatus;
171
+ otaUpdateStatus?: OTAUpdateStatus | undefined;
172
172
  }
173
173
  /**
174
174
  * <p>An OTA update summary.</p>
@@ -179,17 +179,17 @@ export interface OTAUpdateSummary {
179
179
  * <p>The OTA update ID.</p>
180
180
  * @public
181
181
  */
182
- otaUpdateId?: string;
182
+ otaUpdateId?: string | undefined;
183
183
  /**
184
184
  * <p>The OTA update ARN.</p>
185
185
  * @public
186
186
  */
187
- otaUpdateArn?: string;
187
+ otaUpdateArn?: string | undefined;
188
188
  /**
189
189
  * <p>The date when the OTA update was created.</p>
190
190
  * @public
191
191
  */
192
- creationDate?: Date;
192
+ creationDate?: Date | undefined;
193
193
  }
194
194
  /**
195
195
  * @public
@@ -199,12 +199,12 @@ export interface ListOTAUpdatesResponse {
199
199
  * <p>A list of OTA update jobs.</p>
200
200
  * @public
201
201
  */
202
- otaUpdates?: OTAUpdateSummary[];
202
+ otaUpdates?: OTAUpdateSummary[] | undefined;
203
203
  /**
204
204
  * <p>A token to use to get the next set of results.</p>
205
205
  * @public
206
206
  */
207
- nextToken?: string;
207
+ nextToken?: string | undefined;
208
208
  }
209
209
  /**
210
210
  * <p>The input to the ListOutgoingCertificates operation.</p>
@@ -215,18 +215,18 @@ export interface ListOutgoingCertificatesRequest {
215
215
  * <p>The result page size.</p>
216
216
  * @public
217
217
  */
218
- pageSize?: number;
218
+ pageSize?: number | undefined;
219
219
  /**
220
220
  * <p>The marker for the next set of results.</p>
221
221
  * @public
222
222
  */
223
- marker?: string;
223
+ marker?: string | undefined;
224
224
  /**
225
225
  * <p>Specifies the order for results. If True, the results are returned in ascending
226
226
  * order, based on the creation date.</p>
227
227
  * @public
228
228
  */
229
- ascendingOrder?: boolean;
229
+ ascendingOrder?: boolean | undefined;
230
230
  }
231
231
  /**
232
232
  * <p>A certificate that has been transferred but not yet accepted.</p>
@@ -237,32 +237,32 @@ export interface OutgoingCertificate {
237
237
  * <p>The certificate ARN.</p>
238
238
  * @public
239
239
  */
240
- certificateArn?: string;
240
+ certificateArn?: string | undefined;
241
241
  /**
242
242
  * <p>The certificate ID.</p>
243
243
  * @public
244
244
  */
245
- certificateId?: string;
245
+ certificateId?: string | undefined;
246
246
  /**
247
247
  * <p>The Amazon Web Services account to which the transfer was made.</p>
248
248
  * @public
249
249
  */
250
- transferredTo?: string;
250
+ transferredTo?: string | undefined;
251
251
  /**
252
252
  * <p>The date the transfer was initiated.</p>
253
253
  * @public
254
254
  */
255
- transferDate?: Date;
255
+ transferDate?: Date | undefined;
256
256
  /**
257
257
  * <p>The transfer message.</p>
258
258
  * @public
259
259
  */
260
- transferMessage?: string;
260
+ transferMessage?: string | undefined;
261
261
  /**
262
262
  * <p>The certificate creation date.</p>
263
263
  * @public
264
264
  */
265
- creationDate?: Date;
265
+ creationDate?: Date | undefined;
266
266
  }
267
267
  /**
268
268
  * <p>The output from the ListOutgoingCertificates operation.</p>
@@ -273,12 +273,12 @@ export interface ListOutgoingCertificatesResponse {
273
273
  * <p>The certificates that are being transferred but not yet accepted.</p>
274
274
  * @public
275
275
  */
276
- outgoingCertificates?: OutgoingCertificate[];
276
+ outgoingCertificates?: OutgoingCertificate[] | undefined;
277
277
  /**
278
278
  * <p>The marker for the next set of results.</p>
279
279
  * @public
280
280
  */
281
- nextMarker?: string;
281
+ nextMarker?: string | undefined;
282
282
  }
283
283
  /**
284
284
  * @public
@@ -288,12 +288,12 @@ export interface ListPackagesRequest {
288
288
  * <p>The maximum number of results returned at one time.</p>
289
289
  * @public
290
290
  */
291
- maxResults?: number;
291
+ maxResults?: number | undefined;
292
292
  /**
293
293
  * <p>The token for the next set of results.</p>
294
294
  * @public
295
295
  */
296
- nextToken?: string;
296
+ nextToken?: string | undefined;
297
297
  }
298
298
  /**
299
299
  * <p>A summary of information about a software package.</p>
@@ -304,22 +304,22 @@ export interface PackageSummary {
304
304
  * <p>The name for the target software package.</p>
305
305
  * @public
306
306
  */
307
- packageName?: string;
307
+ packageName?: string | undefined;
308
308
  /**
309
309
  * <p>The name of the default package version.</p>
310
310
  * @public
311
311
  */
312
- defaultVersionName?: string;
312
+ defaultVersionName?: string | undefined;
313
313
  /**
314
314
  * <p>The date that the package was created.</p>
315
315
  * @public
316
316
  */
317
- creationDate?: Date;
317
+ creationDate?: Date | undefined;
318
318
  /**
319
319
  * <p>The date that the package was last updated.</p>
320
320
  * @public
321
321
  */
322
- lastModifiedDate?: Date;
322
+ lastModifiedDate?: Date | undefined;
323
323
  }
324
324
  /**
325
325
  * @public
@@ -329,12 +329,12 @@ export interface ListPackagesResponse {
329
329
  * <p>The software package summary.</p>
330
330
  * @public
331
331
  */
332
- packageSummaries?: PackageSummary[];
332
+ packageSummaries?: PackageSummary[] | undefined;
333
333
  /**
334
334
  * <p>The token for the next set of results.</p>
335
335
  * @public
336
336
  */
337
- nextToken?: string;
337
+ nextToken?: string | undefined;
338
338
  }
339
339
  /**
340
340
  * @public
@@ -349,17 +349,17 @@ export interface ListPackageVersionsRequest {
349
349
  * <p>The status of the package version. For more information, see <a href="https://docs.aws.amazon.com/iot/latest/developerguide/preparing-to-use-software-package-catalog.html#package-version-lifecycle">Package version lifecycle</a>.</p>
350
350
  * @public
351
351
  */
352
- status?: PackageVersionStatus;
352
+ status?: PackageVersionStatus | undefined;
353
353
  /**
354
354
  * <p>The maximum number of results to return at one time.</p>
355
355
  * @public
356
356
  */
357
- maxResults?: number;
357
+ maxResults?: number | undefined;
358
358
  /**
359
359
  * <p>The token for the next set of results.</p>
360
360
  * @public
361
361
  */
362
- nextToken?: string;
362
+ nextToken?: string | undefined;
363
363
  }
364
364
  /**
365
365
  * <p>A summary of information about a package version.</p>
@@ -370,27 +370,27 @@ export interface PackageVersionSummary {
370
370
  * <p>The name of the associated software package.</p>
371
371
  * @public
372
372
  */
373
- packageName?: string;
373
+ packageName?: string | undefined;
374
374
  /**
375
375
  * <p>The name of the target package version.</p>
376
376
  * @public
377
377
  */
378
- versionName?: string;
378
+ versionName?: string | undefined;
379
379
  /**
380
380
  * <p>The status of the package version. For more information, see <a href="https://docs.aws.amazon.com/iot/latest/developerguide/preparing-to-use-software-package-catalog.html#package-version-lifecycle">Package version lifecycle</a>.</p>
381
381
  * @public
382
382
  */
383
- status?: PackageVersionStatus;
383
+ status?: PackageVersionStatus | undefined;
384
384
  /**
385
385
  * <p>The date that the package version was created.</p>
386
386
  * @public
387
387
  */
388
- creationDate?: Date;
388
+ creationDate?: Date | undefined;
389
389
  /**
390
390
  * <p>The date that the package version was last updated.</p>
391
391
  * @public
392
392
  */
393
- lastModifiedDate?: Date;
393
+ lastModifiedDate?: Date | undefined;
394
394
  }
395
395
  /**
396
396
  * @public
@@ -400,12 +400,12 @@ export interface ListPackageVersionsResponse {
400
400
  * <p>Lists the package versions associated to the package.</p>
401
401
  * @public
402
402
  */
403
- packageVersionSummaries?: PackageVersionSummary[];
403
+ packageVersionSummaries?: PackageVersionSummary[] | undefined;
404
404
  /**
405
405
  * <p>The token for the next set of results.</p>
406
406
  * @public
407
407
  */
408
- nextToken?: string;
408
+ nextToken?: string | undefined;
409
409
  }
410
410
  /**
411
411
  * <p>The input for the ListPolicies operation.</p>
@@ -416,18 +416,18 @@ export interface ListPoliciesRequest {
416
416
  * <p>The marker for the next set of results.</p>
417
417
  * @public
418
418
  */
419
- marker?: string;
419
+ marker?: string | undefined;
420
420
  /**
421
421
  * <p>The result page size.</p>
422
422
  * @public
423
423
  */
424
- pageSize?: number;
424
+ pageSize?: number | undefined;
425
425
  /**
426
426
  * <p>Specifies the order for results. If true, the results are returned in ascending
427
427
  * creation order.</p>
428
428
  * @public
429
429
  */
430
- ascendingOrder?: boolean;
430
+ ascendingOrder?: boolean | undefined;
431
431
  }
432
432
  /**
433
433
  * <p>The output from the ListPolicies operation.</p>
@@ -438,13 +438,13 @@ export interface ListPoliciesResponse {
438
438
  * <p>The descriptions of the policies.</p>
439
439
  * @public
440
440
  */
441
- policies?: Policy[];
441
+ policies?: Policy[] | undefined;
442
442
  /**
443
443
  * <p>The marker for the next set of results, or null if there are no additional
444
444
  * results.</p>
445
445
  * @public
446
446
  */
447
- nextMarker?: string;
447
+ nextMarker?: string | undefined;
448
448
  }
449
449
  /**
450
450
  * <p>The input for the ListPolicyPrincipals operation.</p>
@@ -460,18 +460,18 @@ export interface ListPolicyPrincipalsRequest {
460
460
  * <p>The marker for the next set of results.</p>
461
461
  * @public
462
462
  */
463
- marker?: string;
463
+ marker?: string | undefined;
464
464
  /**
465
465
  * <p>The result page size.</p>
466
466
  * @public
467
467
  */
468
- pageSize?: number;
468
+ pageSize?: number | undefined;
469
469
  /**
470
470
  * <p>Specifies the order for results. If true, the results are returned in ascending
471
471
  * creation order.</p>
472
472
  * @public
473
473
  */
474
- ascendingOrder?: boolean;
474
+ ascendingOrder?: boolean | undefined;
475
475
  }
476
476
  /**
477
477
  * <p>The output from the ListPolicyPrincipals operation.</p>
@@ -482,13 +482,13 @@ export interface ListPolicyPrincipalsResponse {
482
482
  * <p>The descriptions of the principals.</p>
483
483
  * @public
484
484
  */
485
- principals?: string[];
485
+ principals?: string[] | undefined;
486
486
  /**
487
487
  * <p>The marker for the next set of results, or null if there are no additional
488
488
  * results.</p>
489
489
  * @public
490
490
  */
491
- nextMarker?: string;
491
+ nextMarker?: string | undefined;
492
492
  }
493
493
  /**
494
494
  * <p>The input for the ListPolicyVersions operation.</p>
@@ -510,17 +510,17 @@ export interface PolicyVersion {
510
510
  * <p>The policy version ID.</p>
511
511
  * @public
512
512
  */
513
- versionId?: string;
513
+ versionId?: string | undefined;
514
514
  /**
515
515
  * <p>Specifies whether the policy version is the default.</p>
516
516
  * @public
517
517
  */
518
- isDefaultVersion?: boolean;
518
+ isDefaultVersion?: boolean | undefined;
519
519
  /**
520
520
  * <p>The date and time the policy was created.</p>
521
521
  * @public
522
522
  */
523
- createDate?: Date;
523
+ createDate?: Date | undefined;
524
524
  }
525
525
  /**
526
526
  * <p>The output from the ListPolicyVersions operation.</p>
@@ -531,7 +531,7 @@ export interface ListPolicyVersionsResponse {
531
531
  * <p>The policy versions.</p>
532
532
  * @public
533
533
  */
534
- policyVersions?: PolicyVersion[];
534
+ policyVersions?: PolicyVersion[] | undefined;
535
535
  }
536
536
  /**
537
537
  * <p>The input for the ListPrincipalPolicies operation.</p>
@@ -547,18 +547,18 @@ export interface ListPrincipalPoliciesRequest {
547
547
  * <p>The marker for the next set of results.</p>
548
548
  * @public
549
549
  */
550
- marker?: string;
550
+ marker?: string | undefined;
551
551
  /**
552
552
  * <p>The result page size.</p>
553
553
  * @public
554
554
  */
555
- pageSize?: number;
555
+ pageSize?: number | undefined;
556
556
  /**
557
557
  * <p>Specifies the order for results. If true, results are returned in ascending creation
558
558
  * order.</p>
559
559
  * @public
560
560
  */
561
- ascendingOrder?: boolean;
561
+ ascendingOrder?: boolean | undefined;
562
562
  }
563
563
  /**
564
564
  * <p>The output from the ListPrincipalPolicies operation.</p>
@@ -569,13 +569,13 @@ export interface ListPrincipalPoliciesResponse {
569
569
  * <p>The policies.</p>
570
570
  * @public
571
571
  */
572
- policies?: Policy[];
572
+ policies?: Policy[] | undefined;
573
573
  /**
574
574
  * <p>The marker for the next set of results, or null if there are no additional
575
575
  * results.</p>
576
576
  * @public
577
577
  */
578
- nextMarker?: string;
578
+ nextMarker?: string | undefined;
579
579
  }
580
580
  /**
581
581
  * <p>The input for the ListPrincipalThings operation.</p>
@@ -588,12 +588,12 @@ export interface ListPrincipalThingsRequest {
588
588
  * the first set of results.</p>
589
589
  * @public
590
590
  */
591
- nextToken?: string;
591
+ nextToken?: string | undefined;
592
592
  /**
593
593
  * <p>The maximum number of results to return in this operation.</p>
594
594
  * @public
595
595
  */
596
- maxResults?: number;
596
+ maxResults?: number | undefined;
597
597
  /**
598
598
  * <p>The principal.</p>
599
599
  * @public
@@ -609,12 +609,12 @@ export interface ListPrincipalThingsResponse {
609
609
  * <p>The things.</p>
610
610
  * @public
611
611
  */
612
- things?: string[];
612
+ things?: string[] | undefined;
613
613
  /**
614
614
  * <p>The token to use to get the next set of results, or <b>null</b> if there are no additional results.</p>
615
615
  * @public
616
616
  */
617
- nextToken?: string;
617
+ nextToken?: string | undefined;
618
618
  }
619
619
  /**
620
620
  * @public
@@ -624,12 +624,12 @@ export interface ListProvisioningTemplatesRequest {
624
624
  * <p>The maximum number of results to return at one time.</p>
625
625
  * @public
626
626
  */
627
- maxResults?: number;
627
+ maxResults?: number | undefined;
628
628
  /**
629
629
  * <p>A token to retrieve the next set of results.</p>
630
630
  * @public
631
631
  */
632
- nextToken?: string;
632
+ nextToken?: string | undefined;
633
633
  }
634
634
  /**
635
635
  * <p>A summary of information about a provisioning template.</p>
@@ -640,32 +640,32 @@ export interface ProvisioningTemplateSummary {
640
640
  * <p>The ARN of the provisioning template.</p>
641
641
  * @public
642
642
  */
643
- templateArn?: string;
643
+ templateArn?: string | undefined;
644
644
  /**
645
645
  * <p>The name of the provisioning template.</p>
646
646
  * @public
647
647
  */
648
- templateName?: string;
648
+ templateName?: string | undefined;
649
649
  /**
650
650
  * <p>The description of the provisioning template.</p>
651
651
  * @public
652
652
  */
653
- description?: string;
653
+ description?: string | undefined;
654
654
  /**
655
655
  * <p>The date when the provisioning template summary was created.</p>
656
656
  * @public
657
657
  */
658
- creationDate?: Date;
658
+ creationDate?: Date | undefined;
659
659
  /**
660
660
  * <p>The date when the provisioning template summary was last modified.</p>
661
661
  * @public
662
662
  */
663
- lastModifiedDate?: Date;
663
+ lastModifiedDate?: Date | undefined;
664
664
  /**
665
665
  * <p>True if the fleet provision template is enabled, otherwise false.</p>
666
666
  * @public
667
667
  */
668
- enabled?: boolean;
668
+ enabled?: boolean | undefined;
669
669
  /**
670
670
  * <p>The type you define in a provisioning template. You can create a template with only one type.
671
671
  * You can't change the template type after its creation. The default value is <code>FLEET_PROVISIONING</code>.
@@ -673,7 +673,7 @@ export interface ProvisioningTemplateSummary {
673
673
  * </p>
674
674
  * @public
675
675
  */
676
- type?: TemplateType;
676
+ type?: TemplateType | undefined;
677
677
  }
678
678
  /**
679
679
  * @public
@@ -683,12 +683,12 @@ export interface ListProvisioningTemplatesResponse {
683
683
  * <p>A list of provisioning templates</p>
684
684
  * @public
685
685
  */
686
- templates?: ProvisioningTemplateSummary[];
686
+ templates?: ProvisioningTemplateSummary[] | undefined;
687
687
  /**
688
688
  * <p>A token to retrieve the next set of results.</p>
689
689
  * @public
690
690
  */
691
- nextToken?: string;
691
+ nextToken?: string | undefined;
692
692
  }
693
693
  /**
694
694
  * @public
@@ -703,12 +703,12 @@ export interface ListProvisioningTemplateVersionsRequest {
703
703
  * <p>The maximum number of results to return at one time.</p>
704
704
  * @public
705
705
  */
706
- maxResults?: number;
706
+ maxResults?: number | undefined;
707
707
  /**
708
708
  * <p>A token to retrieve the next set of results.</p>
709
709
  * @public
710
710
  */
711
- nextToken?: string;
711
+ nextToken?: string | undefined;
712
712
  }
713
713
  /**
714
714
  * <p>A summary of information about a fleet provision template version.</p>
@@ -719,18 +719,18 @@ export interface ProvisioningTemplateVersionSummary {
719
719
  * <p>The ID of the fleet provisioning template version.</p>
720
720
  * @public
721
721
  */
722
- versionId?: number;
722
+ versionId?: number | undefined;
723
723
  /**
724
724
  * <p>The date when the provisioning template version was created</p>
725
725
  * @public
726
726
  */
727
- creationDate?: Date;
727
+ creationDate?: Date | undefined;
728
728
  /**
729
729
  * <p>True if the provisioning template version is the default version, otherwise
730
730
  * false.</p>
731
731
  * @public
732
732
  */
733
- isDefaultVersion?: boolean;
733
+ isDefaultVersion?: boolean | undefined;
734
734
  }
735
735
  /**
736
736
  * @public
@@ -740,12 +740,12 @@ export interface ListProvisioningTemplateVersionsResponse {
740
740
  * <p>The list of provisioning template versions.</p>
741
741
  * @public
742
742
  */
743
- versions?: ProvisioningTemplateVersionSummary[];
743
+ versions?: ProvisioningTemplateVersionSummary[] | undefined;
744
744
  /**
745
745
  * <p>A token to retrieve the next set of results.</p>
746
746
  * @public
747
747
  */
748
- nextToken?: string;
748
+ nextToken?: string | undefined;
749
749
  }
750
750
  /**
751
751
  * @public
@@ -761,12 +761,12 @@ export interface ListRelatedResourcesForAuditFindingRequest {
761
761
  * or <code>null</code> if there are no additional results.</p>
762
762
  * @public
763
763
  */
764
- nextToken?: string;
764
+ nextToken?: string | undefined;
765
765
  /**
766
766
  * <p>The maximum number of results to return at one time.</p>
767
767
  * @public
768
768
  */
769
- maxResults?: number;
769
+ maxResults?: number | undefined;
770
770
  }
771
771
  /**
772
772
  * @public
@@ -776,13 +776,13 @@ export interface ListRelatedResourcesForAuditFindingResponse {
776
776
  * <p>The related resources.</p>
777
777
  * @public
778
778
  */
779
- relatedResources?: RelatedResource[];
779
+ relatedResources?: RelatedResource[] | undefined;
780
780
  /**
781
781
  * <p>A token that can be used to retrieve the next set of results,
782
782
  * or <code>null</code> for the first API call.</p>
783
783
  * @public
784
784
  */
785
- nextToken?: string;
785
+ nextToken?: string | undefined;
786
786
  }
787
787
  /**
788
788
  * @public
@@ -792,17 +792,17 @@ export interface ListRoleAliasesRequest {
792
792
  * <p>The maximum number of results to return at one time.</p>
793
793
  * @public
794
794
  */
795
- pageSize?: number;
795
+ pageSize?: number | undefined;
796
796
  /**
797
797
  * <p>A marker used to get the next set of results.</p>
798
798
  * @public
799
799
  */
800
- marker?: string;
800
+ marker?: string | undefined;
801
801
  /**
802
802
  * <p>Return the list of role aliases in ascending alphabetical order.</p>
803
803
  * @public
804
804
  */
805
- ascendingOrder?: boolean;
805
+ ascendingOrder?: boolean | undefined;
806
806
  }
807
807
  /**
808
808
  * @public
@@ -812,12 +812,12 @@ export interface ListRoleAliasesResponse {
812
812
  * <p>The role aliases.</p>
813
813
  * @public
814
814
  */
815
- roleAliases?: string[];
815
+ roleAliases?: string[] | undefined;
816
816
  /**
817
817
  * <p>A marker used to get the next set of results.</p>
818
818
  * @public
819
819
  */
820
- nextMarker?: string;
820
+ nextMarker?: string | undefined;
821
821
  }
822
822
  /**
823
823
  * @public
@@ -849,17 +849,17 @@ export interface ListSbomValidationResultsRequest {
849
849
  * <p>The end result of the </p>
850
850
  * @public
851
851
  */
852
- validationResult?: SbomValidationResult;
852
+ validationResult?: SbomValidationResult | undefined;
853
853
  /**
854
854
  * <p>The maximum number of results to return at one time.</p>
855
855
  * @public
856
856
  */
857
- maxResults?: number;
857
+ maxResults?: number | undefined;
858
858
  /**
859
859
  * <p>A token that can be used to retrieve the next set of results, or null if there are no additional results.</p>
860
860
  * @public
861
861
  */
862
- nextToken?: string;
862
+ nextToken?: string | undefined;
863
863
  }
864
864
  /**
865
865
  * @public
@@ -882,24 +882,24 @@ export interface SbomValidationResultSummary {
882
882
  * <p>The name of the SBOM file.</p>
883
883
  * @public
884
884
  */
885
- fileName?: string;
885
+ fileName?: string | undefined;
886
886
  /**
887
887
  * <p>The end result of the SBOM validation.</p>
888
888
  * @public
889
889
  */
890
- validationResult?: SbomValidationResult;
890
+ validationResult?: SbomValidationResult | undefined;
891
891
  /**
892
892
  * <p>The <code>errorCode</code> representing the validation failure error if the SBOM
893
893
  * validation failed.</p>
894
894
  * @public
895
895
  */
896
- errorCode?: SbomValidationErrorCode;
896
+ errorCode?: SbomValidationErrorCode | undefined;
897
897
  /**
898
898
  * <p>The <code>errorMessage</code> representing the validation failure error if the SBOM
899
899
  * validation failed.</p>
900
900
  * @public
901
901
  */
902
- errorMessage?: string;
902
+ errorMessage?: string | undefined;
903
903
  }
904
904
  /**
905
905
  * @public
@@ -909,12 +909,12 @@ export interface ListSbomValidationResultsResponse {
909
909
  * <p>A summary of the validation results for each software bill of materials attached to a software package version.</p>
910
910
  * @public
911
911
  */
912
- validationResultSummaries?: SbomValidationResultSummary[];
912
+ validationResultSummaries?: SbomValidationResultSummary[] | undefined;
913
913
  /**
914
914
  * <p>A token that can be used to retrieve the next set of results, or null if there are no additional results.</p>
915
915
  * @public
916
916
  */
917
- nextToken?: string;
917
+ nextToken?: string | undefined;
918
918
  }
919
919
  /**
920
920
  * @public
@@ -924,12 +924,12 @@ export interface ListScheduledAuditsRequest {
924
924
  * <p>The token for the next set of results.</p>
925
925
  * @public
926
926
  */
927
- nextToken?: string;
927
+ nextToken?: string | undefined;
928
928
  /**
929
929
  * <p>The maximum number of results to return at one time. The default is 25.</p>
930
930
  * @public
931
931
  */
932
- maxResults?: number;
932
+ maxResults?: number | undefined;
933
933
  }
934
934
  /**
935
935
  * <p>Information about the scheduled audit.</p>
@@ -940,17 +940,17 @@ export interface ScheduledAuditMetadata {
940
940
  * <p>The name of the scheduled audit.</p>
941
941
  * @public
942
942
  */
943
- scheduledAuditName?: string;
943
+ scheduledAuditName?: string | undefined;
944
944
  /**
945
945
  * <p>The ARN of the scheduled audit.</p>
946
946
  * @public
947
947
  */
948
- scheduledAuditArn?: string;
948
+ scheduledAuditArn?: string | undefined;
949
949
  /**
950
950
  * <p>How often the scheduled audit occurs.</p>
951
951
  * @public
952
952
  */
953
- frequency?: AuditFrequency;
953
+ frequency?: AuditFrequency | undefined;
954
954
  /**
955
955
  * <p>The day of the month on which the scheduled audit is run (if the
956
956
  * <code>frequency</code> is "MONTHLY").
@@ -958,13 +958,13 @@ export interface ScheduledAuditMetadata {
958
958
  * days, the audit takes place on the "LAST" day of the month.</p>
959
959
  * @public
960
960
  */
961
- dayOfMonth?: string;
961
+ dayOfMonth?: string | undefined;
962
962
  /**
963
963
  * <p>The day of the week on which the scheduled audit is run (if the
964
964
  * <code>frequency</code> is "WEEKLY" or "BIWEEKLY").</p>
965
965
  * @public
966
966
  */
967
- dayOfWeek?: DayOfWeek;
967
+ dayOfWeek?: DayOfWeek | undefined;
968
968
  }
969
969
  /**
970
970
  * @public
@@ -974,13 +974,13 @@ export interface ListScheduledAuditsResponse {
974
974
  * <p>The list of scheduled audits.</p>
975
975
  * @public
976
976
  */
977
- scheduledAudits?: ScheduledAuditMetadata[];
977
+ scheduledAudits?: ScheduledAuditMetadata[] | undefined;
978
978
  /**
979
979
  * <p>A token that can be used to retrieve the next set of results,
980
980
  * or <code>null</code> if there are no additional results.</p>
981
981
  * @public
982
982
  */
983
- nextToken?: string;
983
+ nextToken?: string | undefined;
984
984
  }
985
985
  /**
986
986
  * @public
@@ -990,25 +990,25 @@ export interface ListSecurityProfilesRequest {
990
990
  * <p>The token for the next set of results.</p>
991
991
  * @public
992
992
  */
993
- nextToken?: string;
993
+ nextToken?: string | undefined;
994
994
  /**
995
995
  * <p>The maximum number of results to return at one time.</p>
996
996
  * @public
997
997
  */
998
- maxResults?: number;
998
+ maxResults?: number | undefined;
999
999
  /**
1000
1000
  * <p>A filter to limit results to the security profiles that use the defined dimension.
1001
1001
  * Cannot be used with <code>metricName</code>
1002
1002
  * </p>
1003
1003
  * @public
1004
1004
  */
1005
- dimensionName?: string;
1005
+ dimensionName?: string | undefined;
1006
1006
  /**
1007
1007
  * <p> The name of the custom metric.
1008
1008
  * Cannot be used with <code>dimensionName</code>. </p>
1009
1009
  * @public
1010
1010
  */
1011
- metricName?: string;
1011
+ metricName?: string | undefined;
1012
1012
  }
1013
1013
  /**
1014
1014
  * <p>Identifying information for a Device Defender security profile.</p>
@@ -1034,13 +1034,13 @@ export interface ListSecurityProfilesResponse {
1034
1034
  * <p>A list of security profile identifiers (names and ARNs).</p>
1035
1035
  * @public
1036
1036
  */
1037
- securityProfileIdentifiers?: SecurityProfileIdentifier[];
1037
+ securityProfileIdentifiers?: SecurityProfileIdentifier[] | undefined;
1038
1038
  /**
1039
1039
  * <p>A token that can be used to retrieve the next set of results, or <code>null</code> if there are no
1040
1040
  * additional results.</p>
1041
1041
  * @public
1042
1042
  */
1043
- nextToken?: string;
1043
+ nextToken?: string | undefined;
1044
1044
  }
1045
1045
  /**
1046
1046
  * @public
@@ -1050,17 +1050,17 @@ export interface ListSecurityProfilesForTargetRequest {
1050
1050
  * <p>The token for the next set of results.</p>
1051
1051
  * @public
1052
1052
  */
1053
- nextToken?: string;
1053
+ nextToken?: string | undefined;
1054
1054
  /**
1055
1055
  * <p>The maximum number of results to return at one time.</p>
1056
1056
  * @public
1057
1057
  */
1058
- maxResults?: number;
1058
+ maxResults?: number | undefined;
1059
1059
  /**
1060
1060
  * <p>If true, return child groups too.</p>
1061
1061
  * @public
1062
1062
  */
1063
- recursive?: boolean;
1063
+ recursive?: boolean | undefined;
1064
1064
  /**
1065
1065
  * <p>The ARN of the target (thing group) whose attached security profiles you want to get.</p>
1066
1066
  * @public
@@ -1088,12 +1088,12 @@ export interface SecurityProfileTargetMapping {
1088
1088
  * <p>Information that identifies the security profile.</p>
1089
1089
  * @public
1090
1090
  */
1091
- securityProfileIdentifier?: SecurityProfileIdentifier;
1091
+ securityProfileIdentifier?: SecurityProfileIdentifier | undefined;
1092
1092
  /**
1093
1093
  * <p>Information about the target (thing group) associated with the security profile.</p>
1094
1094
  * @public
1095
1095
  */
1096
- target?: SecurityProfileTarget;
1096
+ target?: SecurityProfileTarget | undefined;
1097
1097
  }
1098
1098
  /**
1099
1099
  * @public
@@ -1103,13 +1103,13 @@ export interface ListSecurityProfilesForTargetResponse {
1103
1103
  * <p>A list of security profiles and their associated targets.</p>
1104
1104
  * @public
1105
1105
  */
1106
- securityProfileTargetMappings?: SecurityProfileTargetMapping[];
1106
+ securityProfileTargetMappings?: SecurityProfileTargetMapping[] | undefined;
1107
1107
  /**
1108
1108
  * <p>A token that can be used to retrieve the next set of results, or <code>null</code> if there are no
1109
1109
  * additional results.</p>
1110
1110
  * @public
1111
1111
  */
1112
- nextToken?: string;
1112
+ nextToken?: string | undefined;
1113
1113
  }
1114
1114
  /**
1115
1115
  * @public
@@ -1119,17 +1119,17 @@ export interface ListStreamsRequest {
1119
1119
  * <p>The maximum number of results to return at a time.</p>
1120
1120
  * @public
1121
1121
  */
1122
- maxResults?: number;
1122
+ maxResults?: number | undefined;
1123
1123
  /**
1124
1124
  * <p>A token used to get the next set of results.</p>
1125
1125
  * @public
1126
1126
  */
1127
- nextToken?: string;
1127
+ nextToken?: string | undefined;
1128
1128
  /**
1129
1129
  * <p>Set to true to return the list of streams in ascending order.</p>
1130
1130
  * @public
1131
1131
  */
1132
- ascendingOrder?: boolean;
1132
+ ascendingOrder?: boolean | undefined;
1133
1133
  }
1134
1134
  /**
1135
1135
  * <p>A summary of a stream.</p>
@@ -1140,22 +1140,22 @@ export interface StreamSummary {
1140
1140
  * <p>The stream ID.</p>
1141
1141
  * @public
1142
1142
  */
1143
- streamId?: string;
1143
+ streamId?: string | undefined;
1144
1144
  /**
1145
1145
  * <p>The stream ARN.</p>
1146
1146
  * @public
1147
1147
  */
1148
- streamArn?: string;
1148
+ streamArn?: string | undefined;
1149
1149
  /**
1150
1150
  * <p>The stream version.</p>
1151
1151
  * @public
1152
1152
  */
1153
- streamVersion?: number;
1153
+ streamVersion?: number | undefined;
1154
1154
  /**
1155
1155
  * <p>A description of the stream.</p>
1156
1156
  * @public
1157
1157
  */
1158
- description?: string;
1158
+ description?: string | undefined;
1159
1159
  }
1160
1160
  /**
1161
1161
  * @public
@@ -1165,12 +1165,12 @@ export interface ListStreamsResponse {
1165
1165
  * <p>A list of streams.</p>
1166
1166
  * @public
1167
1167
  */
1168
- streams?: StreamSummary[];
1168
+ streams?: StreamSummary[] | undefined;
1169
1169
  /**
1170
1170
  * <p>A token used to get the next set of results.</p>
1171
1171
  * @public
1172
1172
  */
1173
- nextToken?: string;
1173
+ nextToken?: string | undefined;
1174
1174
  }
1175
1175
  /**
1176
1176
  * @public
@@ -1187,7 +1187,7 @@ export interface ListTagsForResourceRequest {
1187
1187
  * the first set of results.</p>
1188
1188
  * @public
1189
1189
  */
1190
- nextToken?: string;
1190
+ nextToken?: string | undefined;
1191
1191
  }
1192
1192
  /**
1193
1193
  * @public
@@ -1197,12 +1197,12 @@ export interface ListTagsForResourceResponse {
1197
1197
  * <p>The list of tags assigned to the resource.</p>
1198
1198
  * @public
1199
1199
  */
1200
- tags?: Tag[];
1200
+ tags?: Tag[] | undefined;
1201
1201
  /**
1202
1202
  * <p>The token to use to get the next set of results, or <b>null</b> if there are no additional results.</p>
1203
1203
  * @public
1204
1204
  */
1205
- nextToken?: string;
1205
+ nextToken?: string | undefined;
1206
1206
  }
1207
1207
  /**
1208
1208
  * @public
@@ -1217,12 +1217,12 @@ export interface ListTargetsForPolicyRequest {
1217
1217
  * <p>A marker used to get the next set of results.</p>
1218
1218
  * @public
1219
1219
  */
1220
- marker?: string;
1220
+ marker?: string | undefined;
1221
1221
  /**
1222
1222
  * <p>The maximum number of results to return at one time.</p>
1223
1223
  * @public
1224
1224
  */
1225
- pageSize?: number;
1225
+ pageSize?: number | undefined;
1226
1226
  }
1227
1227
  /**
1228
1228
  * @public
@@ -1232,12 +1232,12 @@ export interface ListTargetsForPolicyResponse {
1232
1232
  * <p>The policy targets.</p>
1233
1233
  * @public
1234
1234
  */
1235
- targets?: string[];
1235
+ targets?: string[] | undefined;
1236
1236
  /**
1237
1237
  * <p>A marker used to get the next set of results.</p>
1238
1238
  * @public
1239
1239
  */
1240
- nextMarker?: string;
1240
+ nextMarker?: string | undefined;
1241
1241
  }
1242
1242
  /**
1243
1243
  * @public
@@ -1252,12 +1252,12 @@ export interface ListTargetsForSecurityProfileRequest {
1252
1252
  * <p>The token for the next set of results.</p>
1253
1253
  * @public
1254
1254
  */
1255
- nextToken?: string;
1255
+ nextToken?: string | undefined;
1256
1256
  /**
1257
1257
  * <p>The maximum number of results to return at one time.</p>
1258
1258
  * @public
1259
1259
  */
1260
- maxResults?: number;
1260
+ maxResults?: number | undefined;
1261
1261
  }
1262
1262
  /**
1263
1263
  * @public
@@ -1267,13 +1267,13 @@ export interface ListTargetsForSecurityProfileResponse {
1267
1267
  * <p>The thing groups to which the security profile is attached.</p>
1268
1268
  * @public
1269
1269
  */
1270
- securityProfileTargets?: SecurityProfileTarget[];
1270
+ securityProfileTargets?: SecurityProfileTarget[] | undefined;
1271
1271
  /**
1272
1272
  * <p>A token that can be used to retrieve the next set of results, or <code>null</code> if there are no
1273
1273
  * additional results.</p>
1274
1274
  * @public
1275
1275
  */
1276
- nextToken?: string;
1276
+ nextToken?: string | undefined;
1277
1277
  }
1278
1278
  /**
1279
1279
  * @public
@@ -1285,27 +1285,27 @@ export interface ListThingGroupsRequest {
1285
1285
  * the first set of results.</p>
1286
1286
  * @public
1287
1287
  */
1288
- nextToken?: string;
1288
+ nextToken?: string | undefined;
1289
1289
  /**
1290
1290
  * <p>The maximum number of results to return at one time.</p>
1291
1291
  * @public
1292
1292
  */
1293
- maxResults?: number;
1293
+ maxResults?: number | undefined;
1294
1294
  /**
1295
1295
  * <p>A filter that limits the results to those with the specified parent group.</p>
1296
1296
  * @public
1297
1297
  */
1298
- parentGroup?: string;
1298
+ parentGroup?: string | undefined;
1299
1299
  /**
1300
1300
  * <p>A filter that limits the results to those with the specified name prefix.</p>
1301
1301
  * @public
1302
1302
  */
1303
- namePrefixFilter?: string;
1303
+ namePrefixFilter?: string | undefined;
1304
1304
  /**
1305
1305
  * <p>If true, return child groups as well.</p>
1306
1306
  * @public
1307
1307
  */
1308
- recursive?: boolean;
1308
+ recursive?: boolean | undefined;
1309
1309
  }
1310
1310
  /**
1311
1311
  * @public
@@ -1315,12 +1315,12 @@ export interface ListThingGroupsResponse {
1315
1315
  * <p>The thing groups.</p>
1316
1316
  * @public
1317
1317
  */
1318
- thingGroups?: GroupNameAndArn[];
1318
+ thingGroups?: GroupNameAndArn[] | undefined;
1319
1319
  /**
1320
1320
  * <p>The token to use to get the next set of results. Will not be returned if operation has returned all results.</p>
1321
1321
  * @public
1322
1322
  */
1323
- nextToken?: string;
1323
+ nextToken?: string | undefined;
1324
1324
  }
1325
1325
  /**
1326
1326
  * @public
@@ -1337,12 +1337,12 @@ export interface ListThingGroupsForThingRequest {
1337
1337
  * the first set of results.</p>
1338
1338
  * @public
1339
1339
  */
1340
- nextToken?: string;
1340
+ nextToken?: string | undefined;
1341
1341
  /**
1342
1342
  * <p>The maximum number of results to return at one time.</p>
1343
1343
  * @public
1344
1344
  */
1345
- maxResults?: number;
1345
+ maxResults?: number | undefined;
1346
1346
  }
1347
1347
  /**
1348
1348
  * @public
@@ -1352,12 +1352,12 @@ export interface ListThingGroupsForThingResponse {
1352
1352
  * <p>The thing groups.</p>
1353
1353
  * @public
1354
1354
  */
1355
- thingGroups?: GroupNameAndArn[];
1355
+ thingGroups?: GroupNameAndArn[] | undefined;
1356
1356
  /**
1357
1357
  * <p>The token to use to get the next set of results, or <b>null</b> if there are no additional results.</p>
1358
1358
  * @public
1359
1359
  */
1360
- nextToken?: string;
1360
+ nextToken?: string | undefined;
1361
1361
  }
1362
1362
  /**
1363
1363
  * <p>The input for the ListThingPrincipal operation.</p>
@@ -1370,12 +1370,12 @@ export interface ListThingPrincipalsRequest {
1370
1370
  * the first set of results.</p>
1371
1371
  * @public
1372
1372
  */
1373
- nextToken?: string;
1373
+ nextToken?: string | undefined;
1374
1374
  /**
1375
1375
  * <p>The maximum number of results to return in this operation.</p>
1376
1376
  * @public
1377
1377
  */
1378
- maxResults?: number;
1378
+ maxResults?: number | undefined;
1379
1379
  /**
1380
1380
  * <p>The name of the thing.</p>
1381
1381
  * @public
@@ -1391,12 +1391,12 @@ export interface ListThingPrincipalsResponse {
1391
1391
  * <p>The principals associated with the thing.</p>
1392
1392
  * @public
1393
1393
  */
1394
- principals?: string[];
1394
+ principals?: string[] | undefined;
1395
1395
  /**
1396
1396
  * <p>The token to use to get the next set of results, or <b>null</b> if there are no additional results.</p>
1397
1397
  * @public
1398
1398
  */
1399
- nextToken?: string;
1399
+ nextToken?: string | undefined;
1400
1400
  }
1401
1401
  /**
1402
1402
  * @public
@@ -1430,12 +1430,12 @@ export interface ListThingRegistrationTaskReportsRequest {
1430
1430
  * the first set of results.</p>
1431
1431
  * @public
1432
1432
  */
1433
- nextToken?: string;
1433
+ nextToken?: string | undefined;
1434
1434
  /**
1435
1435
  * <p>The maximum number of results to return per request.</p>
1436
1436
  * @public
1437
1437
  */
1438
- maxResults?: number;
1438
+ maxResults?: number | undefined;
1439
1439
  }
1440
1440
  /**
1441
1441
  * @public
@@ -1445,17 +1445,17 @@ export interface ListThingRegistrationTaskReportsResponse {
1445
1445
  * <p>Links to the task resources.</p>
1446
1446
  * @public
1447
1447
  */
1448
- resourceLinks?: string[];
1448
+ resourceLinks?: string[] | undefined;
1449
1449
  /**
1450
1450
  * <p>The type of task report.</p>
1451
1451
  * @public
1452
1452
  */
1453
- reportType?: ReportType;
1453
+ reportType?: ReportType | undefined;
1454
1454
  /**
1455
1455
  * <p>The token to use to get the next set of results, or <b>null</b> if there are no additional results.</p>
1456
1456
  * @public
1457
1457
  */
1458
- nextToken?: string;
1458
+ nextToken?: string | undefined;
1459
1459
  }
1460
1460
  /**
1461
1461
  * @public
@@ -1467,17 +1467,17 @@ export interface ListThingRegistrationTasksRequest {
1467
1467
  * the first set of results.</p>
1468
1468
  * @public
1469
1469
  */
1470
- nextToken?: string;
1470
+ nextToken?: string | undefined;
1471
1471
  /**
1472
1472
  * <p>The maximum number of results to return at one time.</p>
1473
1473
  * @public
1474
1474
  */
1475
- maxResults?: number;
1475
+ maxResults?: number | undefined;
1476
1476
  /**
1477
1477
  * <p>The status of the bulk thing provisioning task.</p>
1478
1478
  * @public
1479
1479
  */
1480
- status?: Status;
1480
+ status?: Status | undefined;
1481
1481
  }
1482
1482
  /**
1483
1483
  * @public
@@ -1487,12 +1487,12 @@ export interface ListThingRegistrationTasksResponse {
1487
1487
  * <p>A list of bulk thing provisioning task IDs.</p>
1488
1488
  * @public
1489
1489
  */
1490
- taskIds?: string[];
1490
+ taskIds?: string[] | undefined;
1491
1491
  /**
1492
1492
  * <p>The token to use to get the next set of results, or <b>null</b> if there are no additional results.</p>
1493
1493
  * @public
1494
1494
  */
1495
- nextToken?: string;
1495
+ nextToken?: string | undefined;
1496
1496
  }
1497
1497
  /**
1498
1498
  * <p>The input for the ListThings operation.</p>
@@ -1505,27 +1505,27 @@ export interface ListThingsRequest {
1505
1505
  * the first set of results.</p>
1506
1506
  * @public
1507
1507
  */
1508
- nextToken?: string;
1508
+ nextToken?: string | undefined;
1509
1509
  /**
1510
1510
  * <p>The maximum number of results to return in this operation.</p>
1511
1511
  * @public
1512
1512
  */
1513
- maxResults?: number;
1513
+ maxResults?: number | undefined;
1514
1514
  /**
1515
1515
  * <p>The attribute name used to search for things.</p>
1516
1516
  * @public
1517
1517
  */
1518
- attributeName?: string;
1518
+ attributeName?: string | undefined;
1519
1519
  /**
1520
1520
  * <p>The attribute value used to search for things.</p>
1521
1521
  * @public
1522
1522
  */
1523
- attributeValue?: string;
1523
+ attributeValue?: string | undefined;
1524
1524
  /**
1525
1525
  * <p>The name of the thing type used to search for things.</p>
1526
1526
  * @public
1527
1527
  */
1528
- thingTypeName?: string;
1528
+ thingTypeName?: string | undefined;
1529
1529
  /**
1530
1530
  * <p>When <code>true</code>, the action returns the thing resources with attribute values
1531
1531
  * that start with the <code>attributeValue</code> provided.</p>
@@ -1534,7 +1534,7 @@ export interface ListThingsRequest {
1534
1534
  * provided. </p>
1535
1535
  * @public
1536
1536
  */
1537
- usePrefixAttributeValue?: boolean;
1537
+ usePrefixAttributeValue?: boolean | undefined;
1538
1538
  }
1539
1539
  /**
1540
1540
  * <p>The properties of the thing, including thing name, thing type name, and a list of thing
@@ -1546,27 +1546,27 @@ export interface ThingAttribute {
1546
1546
  * <p>The name of the thing.</p>
1547
1547
  * @public
1548
1548
  */
1549
- thingName?: string;
1549
+ thingName?: string | undefined;
1550
1550
  /**
1551
1551
  * <p>The name of the thing type, if the thing has been associated with a type.</p>
1552
1552
  * @public
1553
1553
  */
1554
- thingTypeName?: string;
1554
+ thingTypeName?: string | undefined;
1555
1555
  /**
1556
1556
  * <p>The thing ARN.</p>
1557
1557
  * @public
1558
1558
  */
1559
- thingArn?: string;
1559
+ thingArn?: string | undefined;
1560
1560
  /**
1561
1561
  * <p>A list of thing attributes which are name-value pairs.</p>
1562
1562
  * @public
1563
1563
  */
1564
- attributes?: Record<string, string>;
1564
+ attributes?: Record<string, string> | undefined;
1565
1565
  /**
1566
1566
  * <p>The version of the thing record in the registry.</p>
1567
1567
  * @public
1568
1568
  */
1569
- version?: number;
1569
+ version?: number | undefined;
1570
1570
  }
1571
1571
  /**
1572
1572
  * <p>The output from the ListThings operation.</p>
@@ -1577,12 +1577,12 @@ export interface ListThingsResponse {
1577
1577
  * <p>The things.</p>
1578
1578
  * @public
1579
1579
  */
1580
- things?: ThingAttribute[];
1580
+ things?: ThingAttribute[] | undefined;
1581
1581
  /**
1582
1582
  * <p>The token to use to get the next set of results. Will not be returned if operation has returned all results.</p>
1583
1583
  * @public
1584
1584
  */
1585
- nextToken?: string;
1585
+ nextToken?: string | undefined;
1586
1586
  }
1587
1587
  /**
1588
1588
  * @public
@@ -1599,12 +1599,12 @@ export interface ListThingsInBillingGroupRequest {
1599
1599
  * the first set of results.</p>
1600
1600
  * @public
1601
1601
  */
1602
- nextToken?: string;
1602
+ nextToken?: string | undefined;
1603
1603
  /**
1604
1604
  * <p>The maximum number of results to return per request.</p>
1605
1605
  * @public
1606
1606
  */
1607
- maxResults?: number;
1607
+ maxResults?: number | undefined;
1608
1608
  }
1609
1609
  /**
1610
1610
  * @public
@@ -1614,12 +1614,12 @@ export interface ListThingsInBillingGroupResponse {
1614
1614
  * <p>A list of things in the billing group.</p>
1615
1615
  * @public
1616
1616
  */
1617
- things?: string[];
1617
+ things?: string[] | undefined;
1618
1618
  /**
1619
1619
  * <p>The token to use to get the next set of results. Will not be returned if operation has returned all results.</p>
1620
1620
  * @public
1621
1621
  */
1622
- nextToken?: string;
1622
+ nextToken?: string | undefined;
1623
1623
  }
1624
1624
  /**
1625
1625
  * @public
@@ -1635,19 +1635,19 @@ export interface ListThingsInThingGroupRequest {
1635
1635
  * well.</p>
1636
1636
  * @public
1637
1637
  */
1638
- recursive?: boolean;
1638
+ recursive?: boolean | undefined;
1639
1639
  /**
1640
1640
  * <p>To retrieve the next set of results, the <code>nextToken</code>
1641
1641
  * value from a previous response; otherwise <b>null</b> to receive
1642
1642
  * the first set of results.</p>
1643
1643
  * @public
1644
1644
  */
1645
- nextToken?: string;
1645
+ nextToken?: string | undefined;
1646
1646
  /**
1647
1647
  * <p>The maximum number of results to return at one time.</p>
1648
1648
  * @public
1649
1649
  */
1650
- maxResults?: number;
1650
+ maxResults?: number | undefined;
1651
1651
  }
1652
1652
  /**
1653
1653
  * @public
@@ -1657,12 +1657,12 @@ export interface ListThingsInThingGroupResponse {
1657
1657
  * <p>The things in the specified thing group.</p>
1658
1658
  * @public
1659
1659
  */
1660
- things?: string[];
1660
+ things?: string[] | undefined;
1661
1661
  /**
1662
1662
  * <p>The token to use to get the next set of results, or <b>null</b> if there are no additional results.</p>
1663
1663
  * @public
1664
1664
  */
1665
- nextToken?: string;
1665
+ nextToken?: string | undefined;
1666
1666
  }
1667
1667
  /**
1668
1668
  * <p>The input for the ListThingTypes operation.</p>
@@ -1675,17 +1675,17 @@ export interface ListThingTypesRequest {
1675
1675
  * the first set of results.</p>
1676
1676
  * @public
1677
1677
  */
1678
- nextToken?: string;
1678
+ nextToken?: string | undefined;
1679
1679
  /**
1680
1680
  * <p>The maximum number of results to return in this operation.</p>
1681
1681
  * @public
1682
1682
  */
1683
- maxResults?: number;
1683
+ maxResults?: number | undefined;
1684
1684
  /**
1685
1685
  * <p>The name of the thing type.</p>
1686
1686
  * @public
1687
1687
  */
1688
- thingTypeName?: string;
1688
+ thingTypeName?: string | undefined;
1689
1689
  }
1690
1690
  /**
1691
1691
  * <p>The definition of the thing type, including thing type name and description.</p>
@@ -1696,24 +1696,24 @@ export interface ThingTypeDefinition {
1696
1696
  * <p>The name of the thing type.</p>
1697
1697
  * @public
1698
1698
  */
1699
- thingTypeName?: string;
1699
+ thingTypeName?: string | undefined;
1700
1700
  /**
1701
1701
  * <p>The thing type ARN.</p>
1702
1702
  * @public
1703
1703
  */
1704
- thingTypeArn?: string;
1704
+ thingTypeArn?: string | undefined;
1705
1705
  /**
1706
1706
  * <p>The ThingTypeProperties for the thing type.</p>
1707
1707
  * @public
1708
1708
  */
1709
- thingTypeProperties?: ThingTypeProperties;
1709
+ thingTypeProperties?: ThingTypeProperties | undefined;
1710
1710
  /**
1711
1711
  * <p>The ThingTypeMetadata contains additional information about the thing type including: creation date and
1712
1712
  * time, a value indicating whether the thing type is deprecated, and a date and time when it was
1713
1713
  * deprecated.</p>
1714
1714
  * @public
1715
1715
  */
1716
- thingTypeMetadata?: ThingTypeMetadata;
1716
+ thingTypeMetadata?: ThingTypeMetadata | undefined;
1717
1717
  }
1718
1718
  /**
1719
1719
  * <p>The output for the ListThingTypes operation.</p>
@@ -1724,12 +1724,12 @@ export interface ListThingTypesResponse {
1724
1724
  * <p>The thing types.</p>
1725
1725
  * @public
1726
1726
  */
1727
- thingTypes?: ThingTypeDefinition[];
1727
+ thingTypes?: ThingTypeDefinition[] | undefined;
1728
1728
  /**
1729
1729
  * <p>The token for the next set of results. Will not be returned if operation has returned all results.</p>
1730
1730
  * @public
1731
1731
  */
1732
- nextToken?: string;
1732
+ nextToken?: string | undefined;
1733
1733
  }
1734
1734
  /**
1735
1735
  * @public
@@ -1739,14 +1739,14 @@ export interface ListTopicRuleDestinationsRequest {
1739
1739
  * <p>The maximum number of results to return at one time.</p>
1740
1740
  * @public
1741
1741
  */
1742
- maxResults?: number;
1742
+ maxResults?: number | undefined;
1743
1743
  /**
1744
1744
  * <p>To retrieve the next set of results, the <code>nextToken</code>
1745
1745
  * value from a previous response; otherwise <b>null</b> to receive
1746
1746
  * the first set of results.</p>
1747
1747
  * @public
1748
1748
  */
1749
- nextToken?: string;
1749
+ nextToken?: string | undefined;
1750
1750
  }
1751
1751
  /**
1752
1752
  * <p>Information about an HTTP URL destination.</p>
@@ -1758,7 +1758,7 @@ export interface HttpUrlDestinationSummary {
1758
1758
  * URL.</p>
1759
1759
  * @public
1760
1760
  */
1761
- confirmationUrl?: string;
1761
+ confirmationUrl?: string | undefined;
1762
1762
  }
1763
1763
  /**
1764
1764
  * <p>The summary of a virtual private cloud (VPC) destination.</p>
@@ -1769,22 +1769,22 @@ export interface VpcDestinationSummary {
1769
1769
  * <p>The subnet IDs of the VPC destination.</p>
1770
1770
  * @public
1771
1771
  */
1772
- subnetIds?: string[];
1772
+ subnetIds?: string[] | undefined;
1773
1773
  /**
1774
1774
  * <p>The security groups of the VPC destination.</p>
1775
1775
  * @public
1776
1776
  */
1777
- securityGroups?: string[];
1777
+ securityGroups?: string[] | undefined;
1778
1778
  /**
1779
1779
  * <p>The ID of the VPC.</p>
1780
1780
  * @public
1781
1781
  */
1782
- vpcId?: string;
1782
+ vpcId?: string | undefined;
1783
1783
  /**
1784
1784
  * <p>The ARN of a role that has permission to create and attach to elastic network interfaces (ENIs).</p>
1785
1785
  * @public
1786
1786
  */
1787
- roleArn?: string;
1787
+ roleArn?: string | undefined;
1788
1788
  }
1789
1789
  /**
1790
1790
  * <p>Information about the topic rule destination.</p>
@@ -1795,7 +1795,7 @@ export interface TopicRuleDestinationSummary {
1795
1795
  * <p>The topic rule destination ARN.</p>
1796
1796
  * @public
1797
1797
  */
1798
- arn?: string;
1798
+ arn?: string | undefined;
1799
1799
  /**
1800
1800
  * <p>The status of the topic rule destination. Valid values are:</p>
1801
1801
  * <dl>
@@ -1831,32 +1831,32 @@ export interface TopicRuleDestinationSummary {
1831
1831
  * </dl>
1832
1832
  * @public
1833
1833
  */
1834
- status?: TopicRuleDestinationStatus;
1834
+ status?: TopicRuleDestinationStatus | undefined;
1835
1835
  /**
1836
1836
  * <p>The date and time when the topic rule destination was created.</p>
1837
1837
  * @public
1838
1838
  */
1839
- createdAt?: Date;
1839
+ createdAt?: Date | undefined;
1840
1840
  /**
1841
1841
  * <p>The date and time when the topic rule destination was last updated.</p>
1842
1842
  * @public
1843
1843
  */
1844
- lastUpdatedAt?: Date;
1844
+ lastUpdatedAt?: Date | undefined;
1845
1845
  /**
1846
1846
  * <p>The reason the topic rule destination is in the current status.</p>
1847
1847
  * @public
1848
1848
  */
1849
- statusReason?: string;
1849
+ statusReason?: string | undefined;
1850
1850
  /**
1851
1851
  * <p>Information about the HTTP URL.</p>
1852
1852
  * @public
1853
1853
  */
1854
- httpUrlSummary?: HttpUrlDestinationSummary;
1854
+ httpUrlSummary?: HttpUrlDestinationSummary | undefined;
1855
1855
  /**
1856
1856
  * <p>Information about the virtual private cloud (VPC) connection.</p>
1857
1857
  * @public
1858
1858
  */
1859
- vpcDestinationSummary?: VpcDestinationSummary;
1859
+ vpcDestinationSummary?: VpcDestinationSummary | undefined;
1860
1860
  }
1861
1861
  /**
1862
1862
  * @public
@@ -1866,12 +1866,12 @@ export interface ListTopicRuleDestinationsResponse {
1866
1866
  * <p>Information about a topic rule destination.</p>
1867
1867
  * @public
1868
1868
  */
1869
- destinationSummaries?: TopicRuleDestinationSummary[];
1869
+ destinationSummaries?: TopicRuleDestinationSummary[] | undefined;
1870
1870
  /**
1871
1871
  * <p>The token to use to get the next set of results, or <b>null</b> if there are no additional results.</p>
1872
1872
  * @public
1873
1873
  */
1874
- nextToken?: string;
1874
+ nextToken?: string | undefined;
1875
1875
  }
1876
1876
  /**
1877
1877
  * <p>The input for the ListTopicRules operation.</p>
@@ -1882,24 +1882,24 @@ export interface ListTopicRulesRequest {
1882
1882
  * <p>The topic.</p>
1883
1883
  * @public
1884
1884
  */
1885
- topic?: string;
1885
+ topic?: string | undefined;
1886
1886
  /**
1887
1887
  * <p>The maximum number of results to return.</p>
1888
1888
  * @public
1889
1889
  */
1890
- maxResults?: number;
1890
+ maxResults?: number | undefined;
1891
1891
  /**
1892
1892
  * <p>To retrieve the next set of results, the <code>nextToken</code>
1893
1893
  * value from a previous response; otherwise <b>null</b> to receive
1894
1894
  * the first set of results.</p>
1895
1895
  * @public
1896
1896
  */
1897
- nextToken?: string;
1897
+ nextToken?: string | undefined;
1898
1898
  /**
1899
1899
  * <p>Specifies whether the rule is disabled.</p>
1900
1900
  * @public
1901
1901
  */
1902
- ruleDisabled?: boolean;
1902
+ ruleDisabled?: boolean | undefined;
1903
1903
  }
1904
1904
  /**
1905
1905
  * <p>Describes a rule.</p>
@@ -1910,27 +1910,27 @@ export interface TopicRuleListItem {
1910
1910
  * <p>The rule ARN.</p>
1911
1911
  * @public
1912
1912
  */
1913
- ruleArn?: string;
1913
+ ruleArn?: string | undefined;
1914
1914
  /**
1915
1915
  * <p>The name of the rule.</p>
1916
1916
  * @public
1917
1917
  */
1918
- ruleName?: string;
1918
+ ruleName?: string | undefined;
1919
1919
  /**
1920
1920
  * <p>The pattern for the topic names that apply.</p>
1921
1921
  * @public
1922
1922
  */
1923
- topicPattern?: string;
1923
+ topicPattern?: string | undefined;
1924
1924
  /**
1925
1925
  * <p>The date and time the rule was created.</p>
1926
1926
  * @public
1927
1927
  */
1928
- createdAt?: Date;
1928
+ createdAt?: Date | undefined;
1929
1929
  /**
1930
1930
  * <p>Specifies whether the rule is disabled.</p>
1931
1931
  * @public
1932
1932
  */
1933
- ruleDisabled?: boolean;
1933
+ ruleDisabled?: boolean | undefined;
1934
1934
  }
1935
1935
  /**
1936
1936
  * <p>The output from the ListTopicRules operation.</p>
@@ -1941,12 +1941,12 @@ export interface ListTopicRulesResponse {
1941
1941
  * <p>The rules.</p>
1942
1942
  * @public
1943
1943
  */
1944
- rules?: TopicRuleListItem[];
1944
+ rules?: TopicRuleListItem[] | undefined;
1945
1945
  /**
1946
1946
  * <p>The token to use to get the next set of results, or <b>null</b> if there are no additional results.</p>
1947
1947
  * @public
1948
1948
  */
1949
- nextToken?: string;
1949
+ nextToken?: string | undefined;
1950
1950
  }
1951
1951
  /**
1952
1952
  * @public
@@ -1957,19 +1957,19 @@ export interface ListV2LoggingLevelsRequest {
1957
1957
  * <code>THING_Group</code>.</p>
1958
1958
  * @public
1959
1959
  */
1960
- targetType?: LogTargetType;
1960
+ targetType?: LogTargetType | undefined;
1961
1961
  /**
1962
1962
  * <p>To retrieve the next set of results, the <code>nextToken</code>
1963
1963
  * value from a previous response; otherwise <b>null</b> to receive
1964
1964
  * the first set of results.</p>
1965
1965
  * @public
1966
1966
  */
1967
- nextToken?: string;
1967
+ nextToken?: string | undefined;
1968
1968
  /**
1969
1969
  * <p>The maximum number of results to return at one time.</p>
1970
1970
  * @public
1971
1971
  */
1972
- maxResults?: number;
1972
+ maxResults?: number | undefined;
1973
1973
  }
1974
1974
  /**
1975
1975
  * <p>A log target.</p>
@@ -1985,7 +1985,7 @@ export interface LogTarget {
1985
1985
  * <p>The target name.</p>
1986
1986
  * @public
1987
1987
  */
1988
- targetName?: string;
1988
+ targetName?: string | undefined;
1989
1989
  }
1990
1990
  /**
1991
1991
  * <p>The target configuration.</p>
@@ -1996,12 +1996,12 @@ export interface LogTargetConfiguration {
1996
1996
  * <p>A log target</p>
1997
1997
  * @public
1998
1998
  */
1999
- logTarget?: LogTarget;
1999
+ logTarget?: LogTarget | undefined;
2000
2000
  /**
2001
2001
  * <p>The logging level.</p>
2002
2002
  * @public
2003
2003
  */
2004
- logLevel?: LogLevel;
2004
+ logLevel?: LogLevel | undefined;
2005
2005
  }
2006
2006
  /**
2007
2007
  * @public
@@ -2011,12 +2011,12 @@ export interface ListV2LoggingLevelsResponse {
2011
2011
  * <p>The logging configuration for a target.</p>
2012
2012
  * @public
2013
2013
  */
2014
- logTargetConfigurations?: LogTargetConfiguration[];
2014
+ logTargetConfigurations?: LogTargetConfiguration[] | undefined;
2015
2015
  /**
2016
2016
  * <p>The token to use to get the next set of results, or <b>null</b> if there are no additional results.</p>
2017
2017
  * @public
2018
2018
  */
2019
- nextToken?: string;
2019
+ nextToken?: string | undefined;
2020
2020
  }
2021
2021
  /**
2022
2022
  * @public
@@ -2036,41 +2036,41 @@ export interface ListViolationEventsRequest {
2036
2036
  * <p>A filter to limit results to those alerts caused by the specified thing.</p>
2037
2037
  * @public
2038
2038
  */
2039
- thingName?: string;
2039
+ thingName?: string | undefined;
2040
2040
  /**
2041
2041
  * <p>A filter to limit results to those alerts generated by the specified security profile.</p>
2042
2042
  * @public
2043
2043
  */
2044
- securityProfileName?: string;
2044
+ securityProfileName?: string | undefined;
2045
2045
  /**
2046
2046
  * <p>
2047
2047
  * The criteria for a behavior.
2048
2048
  * </p>
2049
2049
  * @public
2050
2050
  */
2051
- behaviorCriteriaType?: BehaviorCriteriaType;
2051
+ behaviorCriteriaType?: BehaviorCriteriaType | undefined;
2052
2052
  /**
2053
2053
  * <p>
2054
2054
  * A list of all suppressed alerts.
2055
2055
  * </p>
2056
2056
  * @public
2057
2057
  */
2058
- listSuppressedAlerts?: boolean;
2058
+ listSuppressedAlerts?: boolean | undefined;
2059
2059
  /**
2060
2060
  * <p>The verification state of the violation (detect alarm).</p>
2061
2061
  * @public
2062
2062
  */
2063
- verificationState?: VerificationState;
2063
+ verificationState?: VerificationState | undefined;
2064
2064
  /**
2065
2065
  * <p>The token for the next set of results.</p>
2066
2066
  * @public
2067
2067
  */
2068
- nextToken?: string;
2068
+ nextToken?: string | undefined;
2069
2069
  /**
2070
2070
  * <p>The maximum number of results to return at one time.</p>
2071
2071
  * @public
2072
2072
  */
2073
- maxResults?: number;
2073
+ maxResults?: number | undefined;
2074
2074
  }
2075
2075
  /**
2076
2076
  * @public
@@ -2094,54 +2094,54 @@ export interface ViolationEvent {
2094
2094
  * <p>The ID of the violation event.</p>
2095
2095
  * @public
2096
2096
  */
2097
- violationId?: string;
2097
+ violationId?: string | undefined;
2098
2098
  /**
2099
2099
  * <p>The name of the thing responsible for the violation event.</p>
2100
2100
  * @public
2101
2101
  */
2102
- thingName?: string;
2102
+ thingName?: string | undefined;
2103
2103
  /**
2104
2104
  * <p>The name of the security profile whose behavior was violated.</p>
2105
2105
  * @public
2106
2106
  */
2107
- securityProfileName?: string;
2107
+ securityProfileName?: string | undefined;
2108
2108
  /**
2109
2109
  * <p>The behavior that was violated.</p>
2110
2110
  * @public
2111
2111
  */
2112
- behavior?: Behavior;
2112
+ behavior?: Behavior | undefined;
2113
2113
  /**
2114
2114
  * <p>The value of the metric (the measurement).</p>
2115
2115
  * @public
2116
2116
  */
2117
- metricValue?: MetricValue;
2117
+ metricValue?: MetricValue | undefined;
2118
2118
  /**
2119
2119
  * <p>
2120
2120
  * The details of a violation event.
2121
2121
  * </p>
2122
2122
  * @public
2123
2123
  */
2124
- violationEventAdditionalInfo?: ViolationEventAdditionalInfo;
2124
+ violationEventAdditionalInfo?: ViolationEventAdditionalInfo | undefined;
2125
2125
  /**
2126
2126
  * <p>The type of violation event.</p>
2127
2127
  * @public
2128
2128
  */
2129
- violationEventType?: ViolationEventType;
2129
+ violationEventType?: ViolationEventType | undefined;
2130
2130
  /**
2131
2131
  * <p>The verification state of the violation (detect alarm).</p>
2132
2132
  * @public
2133
2133
  */
2134
- verificationState?: VerificationState;
2134
+ verificationState?: VerificationState | undefined;
2135
2135
  /**
2136
2136
  * <p>The description of the verification state of the violation.</p>
2137
2137
  * @public
2138
2138
  */
2139
- verificationStateDescription?: string;
2139
+ verificationStateDescription?: string | undefined;
2140
2140
  /**
2141
2141
  * <p>The time the violation event occurred.</p>
2142
2142
  * @public
2143
2143
  */
2144
- violationEventTime?: Date;
2144
+ violationEventTime?: Date | undefined;
2145
2145
  }
2146
2146
  /**
2147
2147
  * @public
@@ -2152,13 +2152,13 @@ export interface ListViolationEventsResponse {
2152
2152
  * potentially filtered by security profile, behavior violated, or thing (device) violating.</p>
2153
2153
  * @public
2154
2154
  */
2155
- violationEvents?: ViolationEvent[];
2155
+ violationEvents?: ViolationEvent[] | undefined;
2156
2156
  /**
2157
2157
  * <p>A token that can be used to retrieve the next set of results, or <code>null</code> if there are no
2158
2158
  * additional results.</p>
2159
2159
  * @public
2160
2160
  */
2161
- nextToken?: string;
2161
+ nextToken?: string | undefined;
2162
2162
  }
2163
2163
  /**
2164
2164
  * @public
@@ -2178,7 +2178,7 @@ export interface PutVerificationStateOnViolationRequest {
2178
2178
  * <p>The description of the verification state of the violation (detect alarm).</p>
2179
2179
  * @public
2180
2180
  */
2181
- verificationStateDescription?: string;
2181
+ verificationStateDescription?: string | undefined;
2182
2182
  }
2183
2183
  /**
2184
2184
  * @public
@@ -2202,25 +2202,25 @@ export interface RegisterCACertificateRequest {
2202
2202
  * <code>verificationCertificate</code> field must not be empty. </p>
2203
2203
  * @public
2204
2204
  */
2205
- verificationCertificate?: string;
2205
+ verificationCertificate?: string | undefined;
2206
2206
  /**
2207
2207
  * <p>A boolean value that specifies if the CA certificate is set to active.</p>
2208
2208
  * <p>Valid values: <code>ACTIVE | INACTIVE</code>
2209
2209
  * </p>
2210
2210
  * @public
2211
2211
  */
2212
- setAsActive?: boolean;
2212
+ setAsActive?: boolean | undefined;
2213
2213
  /**
2214
2214
  * <p>Allows this CA certificate to be used for auto registration of device
2215
2215
  * certificates.</p>
2216
2216
  * @public
2217
2217
  */
2218
- allowAutoRegistration?: boolean;
2218
+ allowAutoRegistration?: boolean | undefined;
2219
2219
  /**
2220
2220
  * <p>Information about the registration configuration.</p>
2221
2221
  * @public
2222
2222
  */
2223
- registrationConfig?: RegistrationConfig;
2223
+ registrationConfig?: RegistrationConfig | undefined;
2224
2224
  /**
2225
2225
  * <p>Metadata which can be used to manage the CA certificate.</p>
2226
2226
  * <note>
@@ -2232,7 +2232,7 @@ export interface RegisterCACertificateRequest {
2232
2232
  * </note>
2233
2233
  * @public
2234
2234
  */
2235
- tags?: Tag[];
2235
+ tags?: Tag[] | undefined;
2236
2236
  /**
2237
2237
  * <p>Describes the certificate mode in which the Certificate Authority (CA) will be
2238
2238
  * registered. If the <code>verificationCertificate</code> field is not provided, set <code>certificateMode</code> to be <code>SNI_ONLY</code>.
@@ -2245,7 +2245,7 @@ export interface RegisterCACertificateRequest {
2245
2245
  * </p>
2246
2246
  * @public
2247
2247
  */
2248
- certificateMode?: CertificateMode;
2248
+ certificateMode?: CertificateMode | undefined;
2249
2249
  }
2250
2250
  /**
2251
2251
  * <p>The output from the RegisterCACertificateResponse operation.</p>
@@ -2256,12 +2256,12 @@ export interface RegisterCACertificateResponse {
2256
2256
  * <p>The CA certificate ARN.</p>
2257
2257
  * @public
2258
2258
  */
2259
- certificateArn?: string;
2259
+ certificateArn?: string | undefined;
2260
2260
  /**
2261
2261
  * <p>The CA certificate identifier.</p>
2262
2262
  * @public
2263
2263
  */
2264
- certificateId?: string;
2264
+ certificateId?: string | undefined;
2265
2265
  }
2266
2266
  /**
2267
2267
  * <p>The registration code is invalid.</p>
@@ -2303,7 +2303,7 @@ export interface RegisterCertificateRequest {
2303
2303
  * <p>The CA certificate used to sign the device certificate being registered.</p>
2304
2304
  * @public
2305
2305
  */
2306
- caCertificatePem?: string;
2306
+ caCertificatePem?: string | undefined;
2307
2307
  /**
2308
2308
  * @deprecated
2309
2309
  *
@@ -2312,13 +2312,13 @@ export interface RegisterCertificateRequest {
2312
2312
  * </p>
2313
2313
  * @public
2314
2314
  */
2315
- setAsActive?: boolean;
2315
+ setAsActive?: boolean | undefined;
2316
2316
  /**
2317
2317
  * <p>The status of the register certificate request. Valid values that you can use include
2318
2318
  * <code>ACTIVE</code>, <code>INACTIVE</code>, and <code>REVOKED</code>.</p>
2319
2319
  * @public
2320
2320
  */
2321
- status?: CertificateStatus;
2321
+ status?: CertificateStatus | undefined;
2322
2322
  }
2323
2323
  /**
2324
2324
  * <p>The output from the RegisterCertificate operation.</p>
@@ -2329,12 +2329,12 @@ export interface RegisterCertificateResponse {
2329
2329
  * <p>The certificate ARN.</p>
2330
2330
  * @public
2331
2331
  */
2332
- certificateArn?: string;
2332
+ certificateArn?: string | undefined;
2333
2333
  /**
2334
2334
  * <p>The certificate identifier.</p>
2335
2335
  * @public
2336
2336
  */
2337
- certificateId?: string;
2337
+ certificateId?: string | undefined;
2338
2338
  }
2339
2339
  /**
2340
2340
  * @public
@@ -2349,7 +2349,7 @@ export interface RegisterCertificateWithoutCARequest {
2349
2349
  * <p>The status of the register certificate request.</p>
2350
2350
  * @public
2351
2351
  */
2352
- status?: CertificateStatus;
2352
+ status?: CertificateStatus | undefined;
2353
2353
  }
2354
2354
  /**
2355
2355
  * @public
@@ -2359,13 +2359,13 @@ export interface RegisterCertificateWithoutCAResponse {
2359
2359
  * <p>The Amazon Resource Name (ARN) of the registered certificate.</p>
2360
2360
  * @public
2361
2361
  */
2362
- certificateArn?: string;
2362
+ certificateArn?: string | undefined;
2363
2363
  /**
2364
2364
  * <p>The ID of the registered certificate. (The last part of the certificate ARN contains the
2365
2365
  * certificate ID.</p>
2366
2366
  * @public
2367
2367
  */
2368
- certificateId?: string;
2368
+ certificateId?: string | undefined;
2369
2369
  }
2370
2370
  /**
2371
2371
  * @public
@@ -2380,7 +2380,7 @@ export interface RegisterThingRequest {
2380
2380
  * <p>The parameters for provisioning a thing. See <a href="https://docs.aws.amazon.com/iot/latest/developerguide/provision-template.html">Provisioning Templates</a> for more information.</p>
2381
2381
  * @public
2382
2382
  */
2383
- parameters?: Record<string, string>;
2383
+ parameters?: Record<string, string> | undefined;
2384
2384
  }
2385
2385
  /**
2386
2386
  * @public
@@ -2390,12 +2390,12 @@ export interface RegisterThingResponse {
2390
2390
  * <p>The certificate data, in PEM format.</p>
2391
2391
  * @public
2392
2392
  */
2393
- certificatePem?: string;
2393
+ certificatePem?: string | undefined;
2394
2394
  /**
2395
2395
  * <p>ARNs for the generated resources.</p>
2396
2396
  * @public
2397
2397
  */
2398
- resourceArns?: Record<string, string>;
2398
+ resourceArns?: Record<string, string> | undefined;
2399
2399
  }
2400
2400
  /**
2401
2401
  * <p>The resource registration failed.</p>
@@ -2424,7 +2424,7 @@ export interface RejectCertificateTransferRequest {
2424
2424
  * <p>The reason the certificate transfer was rejected.</p>
2425
2425
  * @public
2426
2426
  */
2427
- rejectReason?: string;
2427
+ rejectReason?: string | undefined;
2428
2428
  }
2429
2429
  /**
2430
2430
  * @public
@@ -2434,22 +2434,22 @@ export interface RemoveThingFromBillingGroupRequest {
2434
2434
  * <p>The name of the billing group.</p>
2435
2435
  * @public
2436
2436
  */
2437
- billingGroupName?: string;
2437
+ billingGroupName?: string | undefined;
2438
2438
  /**
2439
2439
  * <p>The ARN of the billing group.</p>
2440
2440
  * @public
2441
2441
  */
2442
- billingGroupArn?: string;
2442
+ billingGroupArn?: string | undefined;
2443
2443
  /**
2444
2444
  * <p>The name of the thing to be removed from the billing group.</p>
2445
2445
  * @public
2446
2446
  */
2447
- thingName?: string;
2447
+ thingName?: string | undefined;
2448
2448
  /**
2449
2449
  * <p>The ARN of the thing to be removed from the billing group.</p>
2450
2450
  * @public
2451
2451
  */
2452
- thingArn?: string;
2452
+ thingArn?: string | undefined;
2453
2453
  }
2454
2454
  /**
2455
2455
  * @public
@@ -2464,22 +2464,22 @@ export interface RemoveThingFromThingGroupRequest {
2464
2464
  * <p>The group name.</p>
2465
2465
  * @public
2466
2466
  */
2467
- thingGroupName?: string;
2467
+ thingGroupName?: string | undefined;
2468
2468
  /**
2469
2469
  * <p>The group ARN.</p>
2470
2470
  * @public
2471
2471
  */
2472
- thingGroupArn?: string;
2472
+ thingGroupArn?: string | undefined;
2473
2473
  /**
2474
2474
  * <p>The name of the thing to remove from the group.</p>
2475
2475
  * @public
2476
2476
  */
2477
- thingName?: string;
2477
+ thingName?: string | undefined;
2478
2478
  /**
2479
2479
  * <p>The ARN of the thing to remove from the group.</p>
2480
2480
  * @public
2481
2481
  */
2482
- thingArn?: string;
2482
+ thingArn?: string | undefined;
2483
2483
  }
2484
2484
  /**
2485
2485
  * @public
@@ -2510,7 +2510,7 @@ export interface SearchIndexRequest {
2510
2510
  * <p>The search index name.</p>
2511
2511
  * @public
2512
2512
  */
2513
- indexName?: string;
2513
+ indexName?: string | undefined;
2514
2514
  /**
2515
2515
  * <p>The search query string. For more information about the search query syntax, see <a href="https://docs.aws.amazon.com/iot/latest/developerguide/query-syntax.html">Query
2516
2516
  * syntax</a>.</p>
@@ -2522,7 +2522,7 @@ export interface SearchIndexRequest {
2522
2522
  * results.</p>
2523
2523
  * @public
2524
2524
  */
2525
- nextToken?: string;
2525
+ nextToken?: string | undefined;
2526
2526
  /**
2527
2527
  * <p>The maximum number of results to return per page at one time. This maximum number
2528
2528
  * cannot exceed 100. The response might contain fewer results but will never contain more. You
@@ -2532,12 +2532,12 @@ export interface SearchIndexRequest {
2532
2532
  * <code>nextToken</code> returns <code>NULL</code>.</p>
2533
2533
  * @public
2534
2534
  */
2535
- maxResults?: number;
2535
+ maxResults?: number | undefined;
2536
2536
  /**
2537
2537
  * <p>The query version.</p>
2538
2538
  * @public
2539
2539
  */
2540
- queryVersion?: string;
2540
+ queryVersion?: string | undefined;
2541
2541
  }
2542
2542
  /**
2543
2543
  * <p>The thing group search index document.</p>
@@ -2548,27 +2548,27 @@ export interface ThingGroupDocument {
2548
2548
  * <p>The thing group name.</p>
2549
2549
  * @public
2550
2550
  */
2551
- thingGroupName?: string;
2551
+ thingGroupName?: string | undefined;
2552
2552
  /**
2553
2553
  * <p>The thing group ID.</p>
2554
2554
  * @public
2555
2555
  */
2556
- thingGroupId?: string;
2556
+ thingGroupId?: string | undefined;
2557
2557
  /**
2558
2558
  * <p>The thing group description.</p>
2559
2559
  * @public
2560
2560
  */
2561
- thingGroupDescription?: string;
2561
+ thingGroupDescription?: string | undefined;
2562
2562
  /**
2563
2563
  * <p>The thing group attributes.</p>
2564
2564
  * @public
2565
2565
  */
2566
- attributes?: Record<string, string>;
2566
+ attributes?: Record<string, string> | undefined;
2567
2567
  /**
2568
2568
  * <p>Parent group names.</p>
2569
2569
  * @public
2570
2570
  */
2571
- parentGroupNames?: string[];
2571
+ parentGroupNames?: string[] | undefined;
2572
2572
  }
2573
2573
  /**
2574
2574
  * <p>The connectivity status of the thing.</p>
@@ -2580,18 +2580,18 @@ export interface ThingConnectivity {
2580
2580
  * connected.</p>
2581
2581
  * @public
2582
2582
  */
2583
- connected?: boolean;
2583
+ connected?: boolean | undefined;
2584
2584
  /**
2585
2585
  * <p>The epoch time (in milliseconds) when the thing last connected or disconnected. If the
2586
2586
  * thing has been disconnected for approximately an hour, the time value might be missing.</p>
2587
2587
  * @public
2588
2588
  */
2589
- timestamp?: number;
2589
+ timestamp?: number | undefined;
2590
2590
  /**
2591
2591
  * <p>The reason why the client is disconnected. If the thing has been disconnected for approximately an hour, the <code>disconnectReason</code> value might be missing.</p>
2592
2592
  * @public
2593
2593
  */
2594
- disconnectReason?: string;
2594
+ disconnectReason?: string | undefined;
2595
2595
  }
2596
2596
  /**
2597
2597
  * <p>The thing search index document.</p>
@@ -2602,45 +2602,45 @@ export interface ThingDocument {
2602
2602
  * <p>The thing name.</p>
2603
2603
  * @public
2604
2604
  */
2605
- thingName?: string;
2605
+ thingName?: string | undefined;
2606
2606
  /**
2607
2607
  * <p>The thing ID.</p>
2608
2608
  * @public
2609
2609
  */
2610
- thingId?: string;
2610
+ thingId?: string | undefined;
2611
2611
  /**
2612
2612
  * <p>The thing type name.</p>
2613
2613
  * @public
2614
2614
  */
2615
- thingTypeName?: string;
2615
+ thingTypeName?: string | undefined;
2616
2616
  /**
2617
2617
  * <p>Thing group and billing group names.</p>
2618
2618
  * @public
2619
2619
  */
2620
- thingGroupNames?: string[];
2620
+ thingGroupNames?: string[] | undefined;
2621
2621
  /**
2622
2622
  * <p>The attributes.</p>
2623
2623
  * @public
2624
2624
  */
2625
- attributes?: Record<string, string>;
2625
+ attributes?: Record<string, string> | undefined;
2626
2626
  /**
2627
2627
  * <p>The unnamed shadow and named shadow.</p>
2628
2628
  * <p>For more information about shadows, see <a href="https://docs.aws.amazon.com/iot/latest/developerguide/iot-device-shadows.html">IoT Device Shadow service.</a>
2629
2629
  * </p>
2630
2630
  * @public
2631
2631
  */
2632
- shadow?: string;
2632
+ shadow?: string | undefined;
2633
2633
  /**
2634
2634
  * <p>Contains Device Defender data.</p>
2635
2635
  * <p>For more information about Device Defender, see <a href="https://docs.aws.amazon.com/iot/latest/developerguide/device-defender.html">Device Defender</a>. </p>
2636
2636
  * @public
2637
2637
  */
2638
- deviceDefender?: string;
2638
+ deviceDefender?: string | undefined;
2639
2639
  /**
2640
2640
  * <p>Indicates whether the thing is connected to the Amazon Web Services IoT Core service.</p>
2641
2641
  * @public
2642
2642
  */
2643
- connectivity?: ThingConnectivity;
2643
+ connectivity?: ThingConnectivity | undefined;
2644
2644
  }
2645
2645
  /**
2646
2646
  * @public
@@ -2651,17 +2651,17 @@ export interface SearchIndexResponse {
2651
2651
  * results.</p>
2652
2652
  * @public
2653
2653
  */
2654
- nextToken?: string;
2654
+ nextToken?: string | undefined;
2655
2655
  /**
2656
2656
  * <p>The things that match the search query.</p>
2657
2657
  * @public
2658
2658
  */
2659
- things?: ThingDocument[];
2659
+ things?: ThingDocument[] | undefined;
2660
2660
  /**
2661
2661
  * <p>The thing groups that match the search query.</p>
2662
2662
  * @public
2663
2663
  */
2664
- thingGroups?: ThingGroupDocument[];
2664
+ thingGroups?: ThingGroupDocument[] | undefined;
2665
2665
  }
2666
2666
  /**
2667
2667
  * @public
@@ -2681,12 +2681,12 @@ export interface SetDefaultAuthorizerResponse {
2681
2681
  * <p>The authorizer name.</p>
2682
2682
  * @public
2683
2683
  */
2684
- authorizerName?: string;
2684
+ authorizerName?: string | undefined;
2685
2685
  /**
2686
2686
  * <p>The authorizer ARN.</p>
2687
2687
  * @public
2688
2688
  */
2689
- authorizerArn?: string;
2689
+ authorizerArn?: string | undefined;
2690
2690
  }
2691
2691
  /**
2692
2692
  * <p>The input for the SetDefaultPolicyVersion operation.</p>
@@ -2718,7 +2718,7 @@ export interface LoggingOptionsPayload {
2718
2718
  * <p>The log level.</p>
2719
2719
  * @public
2720
2720
  */
2721
- logLevel?: LogLevel;
2721
+ logLevel?: LogLevel | undefined;
2722
2722
  }
2723
2723
  /**
2724
2724
  * <p>The input for the SetLoggingOptions operation.</p>
@@ -2754,17 +2754,17 @@ export interface SetV2LoggingOptionsRequest {
2754
2754
  * <p>The ARN of the role that allows IoT to write to Cloudwatch logs.</p>
2755
2755
  * @public
2756
2756
  */
2757
- roleArn?: string;
2757
+ roleArn?: string | undefined;
2758
2758
  /**
2759
2759
  * <p>The default logging level.</p>
2760
2760
  * @public
2761
2761
  */
2762
- defaultLogLevel?: LogLevel;
2762
+ defaultLogLevel?: LogLevel | undefined;
2763
2763
  /**
2764
2764
  * <p>If true all logs are disabled. The default is false.</p>
2765
2765
  * @public
2766
2766
  */
2767
- disableAllLogs?: boolean;
2767
+ disableAllLogs?: boolean | undefined;
2768
2768
  }
2769
2769
  /**
2770
2770
  * @public
@@ -2792,7 +2792,7 @@ export interface StartAuditMitigationActionsTaskRequest {
2792
2792
  * <p>Each audit mitigation task must have a unique client request token. If you try to start a new task with the same token as a task that already exists, an exception occurs. If you omit this value, a unique client request token is generated automatically.</p>
2793
2793
  * @public
2794
2794
  */
2795
- clientRequestToken?: string;
2795
+ clientRequestToken?: string | undefined;
2796
2796
  }
2797
2797
  /**
2798
2798
  * @public
@@ -2802,7 +2802,7 @@ export interface StartAuditMitigationActionsTaskResponse {
2802
2802
  * <p>The unique identifier for the audit mitigation task. This matches the <code>taskId</code> that you specified in the request.</p>
2803
2803
  * @public
2804
2804
  */
2805
- taskId?: string;
2805
+ taskId?: string | undefined;
2806
2806
  }
2807
2807
  /**
2808
2808
  * <p>
@@ -2849,28 +2849,28 @@ export interface StartDetectMitigationActionsTaskRequest {
2849
2849
  * </p>
2850
2850
  * @public
2851
2851
  */
2852
- violationEventOccurrenceRange?: ViolationEventOccurrenceRange;
2852
+ violationEventOccurrenceRange?: ViolationEventOccurrenceRange | undefined;
2853
2853
  /**
2854
2854
  * <p>
2855
2855
  * Specifies to list only active violations.
2856
2856
  * </p>
2857
2857
  * @public
2858
2858
  */
2859
- includeOnlyActiveViolations?: boolean;
2859
+ includeOnlyActiveViolations?: boolean | undefined;
2860
2860
  /**
2861
2861
  * <p>
2862
2862
  * Specifies to include suppressed alerts.
2863
2863
  * </p>
2864
2864
  * @public
2865
2865
  */
2866
- includeSuppressedAlerts?: boolean;
2866
+ includeSuppressedAlerts?: boolean | undefined;
2867
2867
  /**
2868
2868
  * <p>
2869
2869
  * Each mitigation action task must have a unique client request token. If you try to create a new task with the same token as a task that already exists, an exception occurs. If you omit this value, Amazon Web Services SDKs will automatically generate a unique client request.
2870
2870
  * </p>
2871
2871
  * @public
2872
2872
  */
2873
- clientRequestToken?: string;
2873
+ clientRequestToken?: string | undefined;
2874
2874
  }
2875
2875
  /**
2876
2876
  * @public
@@ -2882,7 +2882,7 @@ export interface StartDetectMitigationActionsTaskResponse {
2882
2882
  * </p>
2883
2883
  * @public
2884
2884
  */
2885
- taskId?: string;
2885
+ taskId?: string | undefined;
2886
2886
  }
2887
2887
  /**
2888
2888
  * @public
@@ -2905,7 +2905,7 @@ export interface StartOnDemandAuditTaskResponse {
2905
2905
  * <p>The ID of the on-demand audit you started.</p>
2906
2906
  * @public
2907
2907
  */
2908
- taskId?: string;
2908
+ taskId?: string | undefined;
2909
2909
  }
2910
2910
  /**
2911
2911
  * @public
@@ -2942,7 +2942,7 @@ export interface StartThingRegistrationTaskResponse {
2942
2942
  * <p>The bulk thing provisioning task ID.</p>
2943
2943
  * @public
2944
2944
  */
2945
- taskId?: string;
2945
+ taskId?: string | undefined;
2946
2946
  }
2947
2947
  /**
2948
2948
  * @public
@@ -2987,12 +2987,12 @@ export interface TestAuthorizationRequest {
2987
2987
  * <p>The principal. Valid principals are CertificateArn (arn:aws:iot:<i>region</i>:<i>accountId</i>:cert/<i>certificateId</i>), thingGroupArn (arn:aws:iot:<i>region</i>:<i>accountId</i>:thinggroup/<i>groupName</i>) and CognitoId (<i>region</i>:<i>id</i>).</p>
2988
2988
  * @public
2989
2989
  */
2990
- principal?: string;
2990
+ principal?: string | undefined;
2991
2991
  /**
2992
2992
  * <p>The Cognito identity pool ID.</p>
2993
2993
  * @public
2994
2994
  */
2995
- cognitoIdentityPoolId?: string;
2995
+ cognitoIdentityPoolId?: string | undefined;
2996
2996
  /**
2997
2997
  * <p>A list of authorization info objects. Simulating authorization will create a response
2998
2998
  * for each <code>authInfo</code> object in the list.</p>
@@ -3003,19 +3003,19 @@ export interface TestAuthorizationRequest {
3003
3003
  * <p>The MQTT client ID.</p>
3004
3004
  * @public
3005
3005
  */
3006
- clientId?: string;
3006
+ clientId?: string | undefined;
3007
3007
  /**
3008
3008
  * <p>When testing custom authorization, the policies specified here are treated as if they
3009
3009
  * are attached to the principal being authorized.</p>
3010
3010
  * @public
3011
3011
  */
3012
- policyNamesToAdd?: string[];
3012
+ policyNamesToAdd?: string[] | undefined;
3013
3013
  /**
3014
3014
  * <p>When testing custom authorization, the policies specified here are treated as if they
3015
3015
  * are not attached to the principal being authorized.</p>
3016
3016
  * @public
3017
3017
  */
3018
- policyNamesToSkip?: string[];
3018
+ policyNamesToSkip?: string[] | undefined;
3019
3019
  }
3020
3020
  /**
3021
3021
  * @public
@@ -3025,7 +3025,7 @@ export interface TestAuthorizationResponse {
3025
3025
  * <p>The authentication results.</p>
3026
3026
  * @public
3027
3027
  */
3028
- authResults?: AuthResult[];
3028
+ authResults?: AuthResult[] | undefined;
3029
3029
  }
3030
3030
  /**
3031
3031
  * <p>The response is invalid.</p>
@@ -3048,12 +3048,12 @@ export interface HttpContext {
3048
3048
  * <p>The header keys and values in an HTTP authorization request.</p>
3049
3049
  * @public
3050
3050
  */
3051
- headers?: Record<string, string>;
3051
+ headers?: Record<string, string> | undefined;
3052
3052
  /**
3053
3053
  * <p>The query string keys and values in an HTTP authorization request.</p>
3054
3054
  * @public
3055
3055
  */
3056
- queryString?: string;
3056
+ queryString?: string | undefined;
3057
3057
  }
3058
3058
  /**
3059
3059
  * <p>Specifies the MQTT context to use for the test authorizer request</p>
@@ -3064,17 +3064,17 @@ export interface MqttContext {
3064
3064
  * <p>The value of the <code>username</code> key in an MQTT authorization request.</p>
3065
3065
  * @public
3066
3066
  */
3067
- username?: string;
3067
+ username?: string | undefined;
3068
3068
  /**
3069
3069
  * <p>The value of the <code>password</code> key in an MQTT authorization request.</p>
3070
3070
  * @public
3071
3071
  */
3072
- password?: Uint8Array;
3072
+ password?: Uint8Array | undefined;
3073
3073
  /**
3074
3074
  * <p>The value of the <code>clientId</code> key in an MQTT authorization request.</p>
3075
3075
  * @public
3076
3076
  */
3077
- clientId?: string;
3077
+ clientId?: string | undefined;
3078
3078
  }
3079
3079
  /**
3080
3080
  * <p>Specifies the TLS context to use for the test authorizer request.</p>
@@ -3085,7 +3085,7 @@ export interface TlsContext {
3085
3085
  * <p>The value of the <code>serverName</code> key in a TLS authorization request.</p>
3086
3086
  * @public
3087
3087
  */
3088
- serverName?: string;
3088
+ serverName?: string | undefined;
3089
3089
  }
3090
3090
  /**
3091
3091
  * @public
@@ -3100,28 +3100,28 @@ export interface TestInvokeAuthorizerRequest {
3100
3100
  * <p>The token returned by your custom authentication service.</p>
3101
3101
  * @public
3102
3102
  */
3103
- token?: string;
3103
+ token?: string | undefined;
3104
3104
  /**
3105
3105
  * <p>The signature made with the token and your custom authentication service's private
3106
3106
  * key. This value must be Base-64-encoded.</p>
3107
3107
  * @public
3108
3108
  */
3109
- tokenSignature?: string;
3109
+ tokenSignature?: string | undefined;
3110
3110
  /**
3111
3111
  * <p>Specifies a test HTTP authorization request.</p>
3112
3112
  * @public
3113
3113
  */
3114
- httpContext?: HttpContext;
3114
+ httpContext?: HttpContext | undefined;
3115
3115
  /**
3116
3116
  * <p>Specifies a test MQTT authorization request.</p>
3117
3117
  * @public
3118
3118
  */
3119
- mqttContext?: MqttContext;
3119
+ mqttContext?: MqttContext | undefined;
3120
3120
  /**
3121
3121
  * <p>Specifies a test TLS authorization request.</p>
3122
3122
  * @public
3123
3123
  */
3124
- tlsContext?: TlsContext;
3124
+ tlsContext?: TlsContext | undefined;
3125
3125
  }
3126
3126
  /**
3127
3127
  * @public
@@ -3131,27 +3131,27 @@ export interface TestInvokeAuthorizerResponse {
3131
3131
  * <p>True if the token is authenticated, otherwise false.</p>
3132
3132
  * @public
3133
3133
  */
3134
- isAuthenticated?: boolean;
3134
+ isAuthenticated?: boolean | undefined;
3135
3135
  /**
3136
3136
  * <p>The principal ID.</p>
3137
3137
  * @public
3138
3138
  */
3139
- principalId?: string;
3139
+ principalId?: string | undefined;
3140
3140
  /**
3141
3141
  * <p>IAM policy documents.</p>
3142
3142
  * @public
3143
3143
  */
3144
- policyDocuments?: string[];
3144
+ policyDocuments?: string[] | undefined;
3145
3145
  /**
3146
3146
  * <p>The number of seconds after which the temporary credentials are refreshed.</p>
3147
3147
  * @public
3148
3148
  */
3149
- refreshAfterInSeconds?: number;
3149
+ refreshAfterInSeconds?: number | undefined;
3150
3150
  /**
3151
3151
  * <p>The number of seconds after which the connection is terminated.</p>
3152
3152
  * @public
3153
3153
  */
3154
- disconnectAfterInSeconds?: number;
3154
+ disconnectAfterInSeconds?: number | undefined;
3155
3155
  }
3156
3156
  /**
3157
3157
  * <p>The input for the TransferCertificate operation.</p>
@@ -3173,7 +3173,7 @@ export interface TransferCertificateRequest {
3173
3173
  * <p>The transfer message.</p>
3174
3174
  * @public
3175
3175
  */
3176
- transferMessage?: string;
3176
+ transferMessage?: string | undefined;
3177
3177
  }
3178
3178
  /**
3179
3179
  * <p>The output from the TransferCertificate operation.</p>
@@ -3184,7 +3184,7 @@ export interface TransferCertificateResponse {
3184
3184
  * <p>The ARN of the certificate.</p>
3185
3185
  * @public
3186
3186
  */
3187
- transferredCertificateArn?: string;
3187
+ transferredCertificateArn?: string | undefined;
3188
3188
  }
3189
3189
  /**
3190
3190
  * <p>You can't transfer the certificate because authorization policies are still
@@ -3234,12 +3234,12 @@ export interface UpdateAccountAuditConfigurationRequest {
3234
3234
  * and other items as required when performing an audit.</p>
3235
3235
  * @public
3236
3236
  */
3237
- roleArn?: string;
3237
+ roleArn?: string | undefined;
3238
3238
  /**
3239
3239
  * <p>Information about the targets to which audit notifications are sent.</p>
3240
3240
  * @public
3241
3241
  */
3242
- auditNotificationTargetConfigurations?: Partial<Record<AuditNotificationType, AuditNotificationTarget>>;
3242
+ auditNotificationTargetConfigurations?: Partial<Record<AuditNotificationType, AuditNotificationTarget>> | undefined;
3243
3243
  /**
3244
3244
  * <p>Specifies which audit checks are enabled and disabled for this account. Use
3245
3245
  * <code>DescribeAccountAuditConfiguration</code> to see the list of all checks, including those
@@ -3256,7 +3256,7 @@ export interface UpdateAccountAuditConfigurationRequest {
3256
3256
  * this parameter is required and must specify at least one enabled check.</p>
3257
3257
  * @public
3258
3258
  */
3259
- auditCheckConfigurations?: Record<string, AuditCheckConfiguration>;
3259
+ auditCheckConfigurations?: Record<string, AuditCheckConfiguration> | undefined;
3260
3260
  }
3261
3261
  /**
3262
3262
  * @public
@@ -3286,21 +3286,21 @@ export interface UpdateAuditSuppressionRequest {
3286
3286
  * </p>
3287
3287
  * @public
3288
3288
  */
3289
- expirationDate?: Date;
3289
+ expirationDate?: Date | undefined;
3290
3290
  /**
3291
3291
  * <p>
3292
3292
  * Indicates whether a suppression should exist indefinitely or not.
3293
3293
  * </p>
3294
3294
  * @public
3295
3295
  */
3296
- suppressIndefinitely?: boolean;
3296
+ suppressIndefinitely?: boolean | undefined;
3297
3297
  /**
3298
3298
  * <p>
3299
3299
  * The description of the audit suppression.
3300
3300
  * </p>
3301
3301
  * @public
3302
3302
  */
3303
- description?: string;
3303
+ description?: string | undefined;
3304
3304
  }
3305
3305
  /**
3306
3306
  * @public
@@ -3320,29 +3320,29 @@ export interface UpdateAuthorizerRequest {
3320
3320
  * <p>The ARN of the authorizer's Lambda function.</p>
3321
3321
  * @public
3322
3322
  */
3323
- authorizerFunctionArn?: string;
3323
+ authorizerFunctionArn?: string | undefined;
3324
3324
  /**
3325
3325
  * <p>The key used to extract the token from the HTTP headers. </p>
3326
3326
  * @public
3327
3327
  */
3328
- tokenKeyName?: string;
3328
+ tokenKeyName?: string | undefined;
3329
3329
  /**
3330
3330
  * <p>The public keys used to verify the token signature.</p>
3331
3331
  * @public
3332
3332
  */
3333
- tokenSigningPublicKeys?: Record<string, string>;
3333
+ tokenSigningPublicKeys?: Record<string, string> | undefined;
3334
3334
  /**
3335
3335
  * <p>The status of the update authorizer request.</p>
3336
3336
  * @public
3337
3337
  */
3338
- status?: AuthorizerStatus;
3338
+ status?: AuthorizerStatus | undefined;
3339
3339
  /**
3340
3340
  * <p>When <code>true</code>, the result from the authorizer’s Lambda function is
3341
3341
  * cached for the time specified in <code>refreshAfterInSeconds</code>. The cached
3342
3342
  * result is used while the device reuses the same HTTP connection.</p>
3343
3343
  * @public
3344
3344
  */
3345
- enableCachingForHttp?: boolean;
3345
+ enableCachingForHttp?: boolean | undefined;
3346
3346
  }
3347
3347
  /**
3348
3348
  * @public
@@ -3352,12 +3352,12 @@ export interface UpdateAuthorizerResponse {
3352
3352
  * <p>The authorizer name.</p>
3353
3353
  * @public
3354
3354
  */
3355
- authorizerName?: string;
3355
+ authorizerName?: string | undefined;
3356
3356
  /**
3357
3357
  * <p>The authorizer ARN.</p>
3358
3358
  * @public
3359
3359
  */
3360
- authorizerArn?: string;
3360
+ authorizerArn?: string | undefined;
3361
3361
  }
3362
3362
  /**
3363
3363
  * @public
@@ -3380,7 +3380,7 @@ export interface UpdateBillingGroupRequest {
3380
3380
  * <code>VersionConflictException</code>.</p>
3381
3381
  * @public
3382
3382
  */
3383
- expectedVersion?: number;
3383
+ expectedVersion?: number | undefined;
3384
3384
  }
3385
3385
  /**
3386
3386
  * @public
@@ -3390,7 +3390,7 @@ export interface UpdateBillingGroupResponse {
3390
3390
  * <p>The latest version of the billing group.</p>
3391
3391
  * @public
3392
3392
  */
3393
- version?: number;
3393
+ version?: number | undefined;
3394
3394
  }
3395
3395
  /**
3396
3396
  * <p>The input to the UpdateCACertificate operation.</p>
@@ -3409,23 +3409,23 @@ export interface UpdateCACertificateRequest {
3409
3409
  * should not be used.</p>
3410
3410
  * @public
3411
3411
  */
3412
- newStatus?: CACertificateStatus;
3412
+ newStatus?: CACertificateStatus | undefined;
3413
3413
  /**
3414
3414
  * <p>The new value for the auto registration status. Valid values are: "ENABLE" or
3415
3415
  * "DISABLE".</p>
3416
3416
  * @public
3417
3417
  */
3418
- newAutoRegistrationStatus?: AutoRegistrationStatus;
3418
+ newAutoRegistrationStatus?: AutoRegistrationStatus | undefined;
3419
3419
  /**
3420
3420
  * <p>Information about the registration configuration.</p>
3421
3421
  * @public
3422
3422
  */
3423
- registrationConfig?: RegistrationConfig;
3423
+ registrationConfig?: RegistrationConfig | undefined;
3424
3424
  /**
3425
3425
  * <p>If true, removes auto registration.</p>
3426
3426
  * @public
3427
3427
  */
3428
- removeAutoRegistration?: boolean;
3428
+ removeAutoRegistration?: boolean | undefined;
3429
3429
  }
3430
3430
  /**
3431
3431
  * <p>The input for the UpdateCertificate operation.</p>
@@ -3464,13 +3464,13 @@ export interface UpdateCertificateProviderRequest {
3464
3464
  * <p>The Lambda function ARN that's associated with the certificate provider.</p>
3465
3465
  * @public
3466
3466
  */
3467
- lambdaFunctionArn?: string;
3467
+ lambdaFunctionArn?: string | undefined;
3468
3468
  /**
3469
3469
  * <p>A list of the operations that the certificate provider will use to generate certificates.
3470
3470
  * Valid value: <code>CreateCertificateFromCsr</code>.</p>
3471
3471
  * @public
3472
3472
  */
3473
- accountDefaultForOperations?: CertificateProviderOperation[];
3473
+ accountDefaultForOperations?: CertificateProviderOperation[] | undefined;
3474
3474
  }
3475
3475
  /**
3476
3476
  * @public
@@ -3480,12 +3480,12 @@ export interface UpdateCertificateProviderResponse {
3480
3480
  * <p>The name of the certificate provider.</p>
3481
3481
  * @public
3482
3482
  */
3483
- certificateProviderName?: string;
3483
+ certificateProviderName?: string | undefined;
3484
3484
  /**
3485
3485
  * <p>The ARN of the certificate provider.</p>
3486
3486
  * @public
3487
3487
  */
3488
- certificateProviderArn?: string;
3488
+ certificateProviderArn?: string | undefined;
3489
3489
  }
3490
3490
  /**
3491
3491
  * @public
@@ -3520,14 +3520,14 @@ export interface UpdateCustomMetricResponse {
3520
3520
  * </p>
3521
3521
  * @public
3522
3522
  */
3523
- metricName?: string;
3523
+ metricName?: string | undefined;
3524
3524
  /**
3525
3525
  * <p>
3526
3526
  * The Amazon Resource Number (ARN) of the custom metric.
3527
3527
  * </p>
3528
3528
  * @public
3529
3529
  */
3530
- metricArn?: string;
3530
+ metricArn?: string | undefined;
3531
3531
  /**
3532
3532
  * <p> The type of the custom metric. </p>
3533
3533
  * <important>
@@ -3535,28 +3535,28 @@ export interface UpdateCustomMetricResponse {
3535
3535
  * </important>
3536
3536
  * @public
3537
3537
  */
3538
- metricType?: CustomMetricType;
3538
+ metricType?: CustomMetricType | undefined;
3539
3539
  /**
3540
3540
  * <p>
3541
3541
  * A friendly name in the console for the custom metric
3542
3542
  * </p>
3543
3543
  * @public
3544
3544
  */
3545
- displayName?: string;
3545
+ displayName?: string | undefined;
3546
3546
  /**
3547
3547
  * <p>
3548
3548
  * The creation date of the custom metric in milliseconds since epoch.
3549
3549
  * </p>
3550
3550
  * @public
3551
3551
  */
3552
- creationDate?: Date;
3552
+ creationDate?: Date | undefined;
3553
3553
  /**
3554
3554
  * <p>
3555
3555
  * The time the custom metric was last modified in milliseconds since epoch.
3556
3556
  * </p>
3557
3557
  * @public
3558
3558
  */
3559
- lastModifiedDate?: Date;
3559
+ lastModifiedDate?: Date | undefined;
3560
3560
  }
3561
3561
  /**
3562
3562
  * @public
@@ -3581,34 +3581,34 @@ export interface UpdateDimensionResponse {
3581
3581
  * <p>A unique identifier for the dimension.</p>
3582
3582
  * @public
3583
3583
  */
3584
- name?: string;
3584
+ name?: string | undefined;
3585
3585
  /**
3586
3586
  * <p>The Amazon Resource
3587
3587
  * Name (ARN)of
3588
3588
  * the created dimension.</p>
3589
3589
  * @public
3590
3590
  */
3591
- arn?: string;
3591
+ arn?: string | undefined;
3592
3592
  /**
3593
3593
  * <p>The type of the dimension.</p>
3594
3594
  * @public
3595
3595
  */
3596
- type?: DimensionType;
3596
+ type?: DimensionType | undefined;
3597
3597
  /**
3598
3598
  * <p>The value or list of values used to scope the dimension. For example, for topic filters, this is the pattern used to match the MQTT topic name.</p>
3599
3599
  * @public
3600
3600
  */
3601
- stringValues?: string[];
3601
+ stringValues?: string[] | undefined;
3602
3602
  /**
3603
3603
  * <p>The date and time, in milliseconds since epoch, when the dimension was initially created.</p>
3604
3604
  * @public
3605
3605
  */
3606
- creationDate?: Date;
3606
+ creationDate?: Date | undefined;
3607
3607
  /**
3608
3608
  * <p>The date and time, in milliseconds since epoch, when the dimension was most recently updated.</p>
3609
3609
  * @public
3610
3610
  */
3611
- lastModifiedDate?: Date;
3611
+ lastModifiedDate?: Date | undefined;
3612
3612
  }
3613
3613
  /**
3614
3614
  * @public
@@ -3623,27 +3623,27 @@ export interface UpdateDomainConfigurationRequest {
3623
3623
  * <p>An object that specifies the authorization service for a domain.</p>
3624
3624
  * @public
3625
3625
  */
3626
- authorizerConfig?: AuthorizerConfig;
3626
+ authorizerConfig?: AuthorizerConfig | undefined;
3627
3627
  /**
3628
3628
  * <p>The status to which the domain configuration should be updated.</p>
3629
3629
  * @public
3630
3630
  */
3631
- domainConfigurationStatus?: DomainConfigurationStatus;
3631
+ domainConfigurationStatus?: DomainConfigurationStatus | undefined;
3632
3632
  /**
3633
3633
  * <p>Removes the authorization configuration from a domain.</p>
3634
3634
  * @public
3635
3635
  */
3636
- removeAuthorizerConfig?: boolean;
3636
+ removeAuthorizerConfig?: boolean | undefined;
3637
3637
  /**
3638
3638
  * <p>An object that specifies the TLS configuration for a domain.</p>
3639
3639
  * @public
3640
3640
  */
3641
- tlsConfig?: TlsConfig;
3641
+ tlsConfig?: TlsConfig | undefined;
3642
3642
  /**
3643
3643
  * <p>The server certificate configuration.</p>
3644
3644
  * @public
3645
3645
  */
3646
- serverCertificateConfig?: ServerCertificateConfig;
3646
+ serverCertificateConfig?: ServerCertificateConfig | undefined;
3647
3647
  /**
3648
3648
  * <p>An enumerated string that specifies the authentication type.</p>
3649
3649
  * <ul>
@@ -3681,7 +3681,7 @@ export interface UpdateDomainConfigurationRequest {
3681
3681
  * </ul>
3682
3682
  * @public
3683
3683
  */
3684
- authenticationType?: AuthenticationType;
3684
+ authenticationType?: AuthenticationType | undefined;
3685
3685
  /**
3686
3686
  * <p>An enumerated string that specifies the application-layer protocol.</p>
3687
3687
  * <ul>
@@ -3711,12 +3711,12 @@ export interface UpdateDomainConfigurationRequest {
3711
3711
  * </ul>
3712
3712
  * @public
3713
3713
  */
3714
- applicationProtocol?: ApplicationProtocol;
3714
+ applicationProtocol?: ApplicationProtocol | undefined;
3715
3715
  /**
3716
3716
  * <p>An object that specifies the client certificate configuration for a domain.</p>
3717
3717
  * @public
3718
3718
  */
3719
- clientCertificateConfig?: ClientCertificateConfig;
3719
+ clientCertificateConfig?: ClientCertificateConfig | undefined;
3720
3720
  }
3721
3721
  /**
3722
3722
  * @public
@@ -3726,12 +3726,12 @@ export interface UpdateDomainConfigurationResponse {
3726
3726
  * <p>The name of the domain configuration that was updated.</p>
3727
3727
  * @public
3728
3728
  */
3729
- domainConfigurationName?: string;
3729
+ domainConfigurationName?: string | undefined;
3730
3730
  /**
3731
3731
  * <p>The ARN of the domain configuration that was updated.</p>
3732
3732
  * @public
3733
3733
  */
3734
- domainConfigurationArn?: string;
3734
+ domainConfigurationArn?: string | undefined;
3735
3735
  }
3736
3736
  /**
3737
3737
  * @public
@@ -3751,7 +3751,7 @@ export interface UpdateDynamicThingGroupRequest {
3751
3751
  * <p>The expected version of the dynamic thing group to update.</p>
3752
3752
  * @public
3753
3753
  */
3754
- expectedVersion?: number;
3754
+ expectedVersion?: number | undefined;
3755
3755
  /**
3756
3756
  * <p>The dynamic thing group index to update.</p>
3757
3757
  * <note>
@@ -3759,12 +3759,12 @@ export interface UpdateDynamicThingGroupRequest {
3759
3759
  * </note>
3760
3760
  * @public
3761
3761
  */
3762
- indexName?: string;
3762
+ indexName?: string | undefined;
3763
3763
  /**
3764
3764
  * <p>The dynamic thing group search query string to update.</p>
3765
3765
  * @public
3766
3766
  */
3767
- queryString?: string;
3767
+ queryString?: string | undefined;
3768
3768
  /**
3769
3769
  * <p>The dynamic thing group query version to update.</p>
3770
3770
  * <note>
@@ -3773,7 +3773,7 @@ export interface UpdateDynamicThingGroupRequest {
3773
3773
  * </note>
3774
3774
  * @public
3775
3775
  */
3776
- queryVersion?: string;
3776
+ queryVersion?: string | undefined;
3777
3777
  }
3778
3778
  /**
3779
3779
  * @public
@@ -3783,7 +3783,7 @@ export interface UpdateDynamicThingGroupResponse {
3783
3783
  * <p>The dynamic thing group version.</p>
3784
3784
  * @public
3785
3785
  */
3786
- version?: number;
3786
+ version?: number | undefined;
3787
3787
  }
3788
3788
  /**
3789
3789
  * @public
@@ -3793,7 +3793,7 @@ export interface UpdateEventConfigurationsRequest {
3793
3793
  * <p>The new event configuration values.</p>
3794
3794
  * @public
3795
3795
  */
3796
- eventConfigurations?: Partial<Record<EventType, Configuration>>;
3796
+ eventConfigurations?: Partial<Record<EventType, Configuration>> | undefined;
3797
3797
  }
3798
3798
  /**
3799
3799
  * @public
@@ -3813,32 +3813,32 @@ export interface UpdateFleetMetricRequest {
3813
3813
  * <p>The search query string.</p>
3814
3814
  * @public
3815
3815
  */
3816
- queryString?: string;
3816
+ queryString?: string | undefined;
3817
3817
  /**
3818
3818
  * <p>The type of the aggregation query.</p>
3819
3819
  * @public
3820
3820
  */
3821
- aggregationType?: AggregationType;
3821
+ aggregationType?: AggregationType | undefined;
3822
3822
  /**
3823
3823
  * <p>The time in seconds between fleet metric emissions. Range [60(1 min), 86400(1 day)] and must be multiple of 60.</p>
3824
3824
  * @public
3825
3825
  */
3826
- period?: number;
3826
+ period?: number | undefined;
3827
3827
  /**
3828
3828
  * <p>The field to aggregate.</p>
3829
3829
  * @public
3830
3830
  */
3831
- aggregationField?: string;
3831
+ aggregationField?: string | undefined;
3832
3832
  /**
3833
3833
  * <p>The description of the fleet metric.</p>
3834
3834
  * @public
3835
3835
  */
3836
- description?: string;
3836
+ description?: string | undefined;
3837
3837
  /**
3838
3838
  * <p>The version of the query.</p>
3839
3839
  * @public
3840
3840
  */
3841
- queryVersion?: string;
3841
+ queryVersion?: string | undefined;
3842
3842
  /**
3843
3843
  * <p>The name of the index to search.</p>
3844
3844
  * @public
@@ -3849,12 +3849,12 @@ export interface UpdateFleetMetricRequest {
3849
3849
  * supported by <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_MetricDatum.html">CW metric</a>.</p>
3850
3850
  * @public
3851
3851
  */
3852
- unit?: FleetMetricUnit;
3852
+ unit?: FleetMetricUnit | undefined;
3853
3853
  /**
3854
3854
  * <p>The expected version of the fleet metric record in the registry.</p>
3855
3855
  * @public
3856
3856
  */
3857
- expectedVersion?: number;
3857
+ expectedVersion?: number | undefined;
3858
3858
  }
3859
3859
  /**
3860
3860
  * @public
@@ -3864,12 +3864,12 @@ export interface UpdateIndexingConfigurationRequest {
3864
3864
  * <p>Thing indexing configuration.</p>
3865
3865
  * @public
3866
3866
  */
3867
- thingIndexingConfiguration?: ThingIndexingConfiguration;
3867
+ thingIndexingConfiguration?: ThingIndexingConfiguration | undefined;
3868
3868
  /**
3869
3869
  * <p>Thing group indexing configuration.</p>
3870
3870
  * @public
3871
3871
  */
3872
- thingGroupIndexingConfiguration?: ThingGroupIndexingConfiguration;
3872
+ thingGroupIndexingConfiguration?: ThingGroupIndexingConfiguration | undefined;
3873
3873
  }
3874
3874
  /**
3875
3875
  * @public
@@ -3889,28 +3889,28 @@ export interface UpdateJobRequest {
3889
3889
  * <p>A short text description of the job.</p>
3890
3890
  * @public
3891
3891
  */
3892
- description?: string;
3892
+ description?: string | undefined;
3893
3893
  /**
3894
3894
  * <p>Configuration information for pre-signed S3 URLs.</p>
3895
3895
  * @public
3896
3896
  */
3897
- presignedUrlConfig?: PresignedUrlConfig;
3897
+ presignedUrlConfig?: PresignedUrlConfig | undefined;
3898
3898
  /**
3899
3899
  * <p>Allows you to create a staged rollout of the job.</p>
3900
3900
  * @public
3901
3901
  */
3902
- jobExecutionsRolloutConfig?: JobExecutionsRolloutConfig;
3902
+ jobExecutionsRolloutConfig?: JobExecutionsRolloutConfig | undefined;
3903
3903
  /**
3904
3904
  * <p>Allows you to create criteria to abort a job.</p>
3905
3905
  * @public
3906
3906
  */
3907
- abortConfig?: AbortConfig;
3907
+ abortConfig?: AbortConfig | undefined;
3908
3908
  /**
3909
3909
  * <p>Specifies the amount of time each device has to finish its execution of the job. The timer is started when the job execution status is set to <code>IN_PROGRESS</code>.
3910
3910
  * If the job execution status is not set to another terminal state before the time expires, it will be automatically set to <code>TIMED_OUT</code>. </p>
3911
3911
  * @public
3912
3912
  */
3913
- timeoutConfig?: TimeoutConfig;
3913
+ timeoutConfig?: TimeoutConfig | undefined;
3914
3914
  /**
3915
3915
  * <p>The namespace used to indicate that a job is a customer-managed job.</p>
3916
3916
  * <p>When you specify a value for this parameter, Amazon Web Services IoT Core sends jobs notifications to MQTT topics that
@@ -3926,12 +3926,12 @@ export interface UpdateJobRequest {
3926
3926
  * </note>
3927
3927
  * @public
3928
3928
  */
3929
- namespaceId?: string;
3929
+ namespaceId?: string | undefined;
3930
3930
  /**
3931
3931
  * <p>Allows you to create the criteria to retry a job.</p>
3932
3932
  * @public
3933
3933
  */
3934
- jobExecutionsRetryConfig?: JobExecutionsRetryConfig;
3934
+ jobExecutionsRetryConfig?: JobExecutionsRetryConfig | undefined;
3935
3935
  }
3936
3936
  /**
3937
3937
  * @public
@@ -3949,12 +3949,12 @@ export interface UpdateMitigationActionRequest {
3949
3949
  * <p>The ARN of the IAM role that is used to apply the mitigation action.</p>
3950
3950
  * @public
3951
3951
  */
3952
- roleArn?: string;
3952
+ roleArn?: string | undefined;
3953
3953
  /**
3954
3954
  * <p>Defines the type of action and the parameters for that action.</p>
3955
3955
  * @public
3956
3956
  */
3957
- actionParams?: MitigationActionParams;
3957
+ actionParams?: MitigationActionParams | undefined;
3958
3958
  }
3959
3959
  /**
3960
3960
  * @public
@@ -3964,12 +3964,12 @@ export interface UpdateMitigationActionResponse {
3964
3964
  * <p>The ARN for the new mitigation action.</p>
3965
3965
  * @public
3966
3966
  */
3967
- actionArn?: string;
3967
+ actionArn?: string | undefined;
3968
3968
  /**
3969
3969
  * <p>A unique identifier for the mitigation action.</p>
3970
3970
  * @public
3971
3971
  */
3972
- actionId?: string;
3972
+ actionId?: string | undefined;
3973
3973
  }
3974
3974
  /**
3975
3975
  * @public
@@ -3984,7 +3984,7 @@ export interface UpdatePackageRequest {
3984
3984
  * <p>The package description.</p>
3985
3985
  * @public
3986
3986
  */
3987
- description?: string;
3987
+ description?: string | undefined;
3988
3988
  /**
3989
3989
  * <p>The name of the default package version.</p>
3990
3990
  * <p>
@@ -3992,7 +3992,7 @@ export interface UpdatePackageRequest {
3992
3992
  * and set <code>unsetDefaultVersion</code> equal to <code>true</code> at the same time.</p>
3993
3993
  * @public
3994
3994
  */
3995
- defaultVersionName?: string;
3995
+ defaultVersionName?: string | undefined;
3996
3996
  /**
3997
3997
  * <p>Indicates whether you want to remove the named default package version from the software package.
3998
3998
  * Set as <code>true</code> to remove the default package version. </p>
@@ -4001,13 +4001,13 @@ export interface UpdatePackageRequest {
4001
4001
  * and set <code>unsetDefaultVersion</code> equal to <code>true</code> at the same time.</p>
4002
4002
  * @public
4003
4003
  */
4004
- unsetDefaultVersion?: boolean;
4004
+ unsetDefaultVersion?: boolean | undefined;
4005
4005
  /**
4006
4006
  * <p>A unique case-sensitive identifier that you can provide to ensure the idempotency of the request.
4007
4007
  * Don't reuse this client token if a new idempotent request is required.</p>
4008
4008
  * @public
4009
4009
  */
4010
- clientToken?: string;
4010
+ clientToken?: string | undefined;
4011
4011
  }
4012
4012
  /**
4013
4013
  * @public
@@ -4022,13 +4022,13 @@ export interface UpdatePackageConfigurationRequest {
4022
4022
  * <p>Configuration to manage job's package version reporting. This updates the thing's reserved named shadow that the job targets.</p>
4023
4023
  * @public
4024
4024
  */
4025
- versionUpdateByJobsConfig?: VersionUpdateByJobsConfig;
4025
+ versionUpdateByJobsConfig?: VersionUpdateByJobsConfig | undefined;
4026
4026
  /**
4027
4027
  * <p>A unique case-sensitive identifier that you can provide to ensure the idempotency of the request.
4028
4028
  * Don't reuse this client token if a new idempotent request is required.</p>
4029
4029
  * @public
4030
4030
  */
4031
- clientToken?: string;
4031
+ clientToken?: string | undefined;
4032
4032
  }
4033
4033
  /**
4034
4034
  * @public
@@ -4065,7 +4065,7 @@ export interface UpdatePackageVersionRequest {
4065
4065
  * <p>The package version description.</p>
4066
4066
  * @public
4067
4067
  */
4068
- description?: string;
4068
+ description?: string | undefined;
4069
4069
  /**
4070
4070
  * <p>Metadata that can be used to define a package version’s configuration. For example, the Amazon S3 file location, configuration options that are being sent to the device or fleet. </p>
4071
4071
  * <p>
@@ -4074,29 +4074,29 @@ export interface UpdatePackageVersionRequest {
4074
4074
  * <p>The combined size of all the attributes on a package version is limited to 3KB.</p>
4075
4075
  * @public
4076
4076
  */
4077
- attributes?: Record<string, string>;
4077
+ attributes?: Record<string, string> | undefined;
4078
4078
  /**
4079
4079
  * <p>The various components that make up a software package version.</p>
4080
4080
  * @public
4081
4081
  */
4082
- artifact?: PackageVersionArtifact;
4082
+ artifact?: PackageVersionArtifact | undefined;
4083
4083
  /**
4084
4084
  * <p>The status that the package version should be assigned. For more information, see <a href="https://docs.aws.amazon.com/iot/latest/developerguide/preparing-to-use-software-package-catalog.html#package-version-lifecycle">Package version lifecycle</a>.</p>
4085
4085
  * @public
4086
4086
  */
4087
- action?: PackageVersionAction;
4087
+ action?: PackageVersionAction | undefined;
4088
4088
  /**
4089
4089
  * <p>The inline job document associated with a software package version used for a quick job
4090
4090
  * deployment.</p>
4091
4091
  * @public
4092
4092
  */
4093
- recipe?: string;
4093
+ recipe?: string | undefined;
4094
4094
  /**
4095
4095
  * <p>A unique case-sensitive identifier that you can provide to ensure the idempotency of the request.
4096
4096
  * Don't reuse this client token if a new idempotent request is required.</p>
4097
4097
  * @public
4098
4098
  */
4099
- clientToken?: string;
4099
+ clientToken?: string | undefined;
4100
4100
  }
4101
4101
  /**
4102
4102
  * @public
@@ -4116,35 +4116,35 @@ export interface UpdateProvisioningTemplateRequest {
4116
4116
  * <p>The description of the provisioning template.</p>
4117
4117
  * @public
4118
4118
  */
4119
- description?: string;
4119
+ description?: string | undefined;
4120
4120
  /**
4121
4121
  * <p>True to enable the provisioning template, otherwise false.</p>
4122
4122
  * @public
4123
4123
  */
4124
- enabled?: boolean;
4124
+ enabled?: boolean | undefined;
4125
4125
  /**
4126
4126
  * <p>The ID of the default provisioning template version.</p>
4127
4127
  * @public
4128
4128
  */
4129
- defaultVersionId?: number;
4129
+ defaultVersionId?: number | undefined;
4130
4130
  /**
4131
4131
  * <p>The ARN of the role associated with the provisioning template. This IoT role grants
4132
4132
  * permission to provision a device.</p>
4133
4133
  * @public
4134
4134
  */
4135
- provisioningRoleArn?: string;
4135
+ provisioningRoleArn?: string | undefined;
4136
4136
  /**
4137
4137
  * <p>Updates the pre-provisioning hook template. Only supports template of type
4138
4138
  * <code>FLEET_PROVISIONING</code>. For more information about provisioning template types,
4139
4139
  * see <a href="https://docs.aws.amazon.com/iot/latest/apireference/API_CreateProvisioningTemplate.html#iot-CreateProvisioningTemplate-request-type">type</a>.</p>
4140
4140
  * @public
4141
4141
  */
4142
- preProvisioningHook?: ProvisioningHook;
4142
+ preProvisioningHook?: ProvisioningHook | undefined;
4143
4143
  /**
4144
4144
  * <p>Removes pre-provisioning hook template.</p>
4145
4145
  * @public
4146
4146
  */
4147
- removePreProvisioningHook?: boolean;
4147
+ removePreProvisioningHook?: boolean | undefined;
4148
4148
  }
4149
4149
  /**
4150
4150
  * @public
@@ -4164,14 +4164,14 @@ export interface UpdateRoleAliasRequest {
4164
4164
  * <p>The role ARN.</p>
4165
4165
  * @public
4166
4166
  */
4167
- roleArn?: string;
4167
+ roleArn?: string | undefined;
4168
4168
  /**
4169
4169
  * <p>The number of seconds the credential will be valid.</p>
4170
4170
  * <p>This value must be less than or equal to the maximum session duration of the IAM role
4171
4171
  * that the role alias references.</p>
4172
4172
  * @public
4173
4173
  */
4174
- credentialDurationSeconds?: number;
4174
+ credentialDurationSeconds?: number | undefined;
4175
4175
  }
4176
4176
  /**
4177
4177
  * @public
@@ -4181,12 +4181,12 @@ export interface UpdateRoleAliasResponse {
4181
4181
  * <p>The role alias.</p>
4182
4182
  * @public
4183
4183
  */
4184
- roleAlias?: string;
4184
+ roleAlias?: string | undefined;
4185
4185
  /**
4186
4186
  * <p>The role alias ARN.</p>
4187
4187
  * @public
4188
4188
  */
4189
- roleAliasArn?: string;
4189
+ roleAliasArn?: string | undefined;
4190
4190
  }
4191
4191
  /**
4192
4192
  * @public
@@ -4200,7 +4200,7 @@ export interface UpdateScheduledAuditRequest {
4200
4200
  * system.</p>
4201
4201
  * @public
4202
4202
  */
4203
- frequency?: AuditFrequency;
4203
+ frequency?: AuditFrequency | undefined;
4204
4204
  /**
4205
4205
  * <p>The day of the month on which the scheduled audit takes place.
4206
4206
  * This
@@ -4210,7 +4210,7 @@ export interface UpdateScheduledAuditRequest {
4210
4210
  * takes place on the "LAST" day of the month.</p>
4211
4211
  * @public
4212
4212
  */
4213
- dayOfMonth?: string;
4213
+ dayOfMonth?: string | undefined;
4214
4214
  /**
4215
4215
  * <p>The day of the week on which the scheduled audit takes place.
4216
4216
  * This
@@ -4219,7 +4219,7 @@ export interface UpdateScheduledAuditRequest {
4219
4219
  * "frequency" parameter is set to <code>WEEKLY</code> or <code>BIWEEKLY</code>.</p>
4220
4220
  * @public
4221
4221
  */
4222
- dayOfWeek?: DayOfWeek;
4222
+ dayOfWeek?: DayOfWeek | undefined;
4223
4223
  /**
4224
4224
  * <p>Which checks are performed during the scheduled audit. Checks must be enabled
4225
4225
  * for your account. (Use <code>DescribeAccountAuditConfiguration</code> to see the list
@@ -4227,7 +4227,7 @@ export interface UpdateScheduledAuditRequest {
4227
4227
  * to select which checks are enabled.)</p>
4228
4228
  * @public
4229
4229
  */
4230
- targetCheckNames?: string[];
4230
+ targetCheckNames?: string[] | undefined;
4231
4231
  /**
4232
4232
  * <p>The name of the scheduled audit. (Max. 128 chars)</p>
4233
4233
  * @public
@@ -4242,7 +4242,7 @@ export interface UpdateScheduledAuditResponse {
4242
4242
  * <p>The ARN of the scheduled audit.</p>
4243
4243
  * @public
4244
4244
  */
4245
- scheduledAuditArn?: string;
4245
+ scheduledAuditArn?: string | undefined;
4246
4246
  }
4247
4247
  /**
4248
4248
  * @public
@@ -4257,17 +4257,17 @@ export interface UpdateSecurityProfileRequest {
4257
4257
  * <p>A description of the security profile.</p>
4258
4258
  * @public
4259
4259
  */
4260
- securityProfileDescription?: string;
4260
+ securityProfileDescription?: string | undefined;
4261
4261
  /**
4262
4262
  * <p>Specifies the behaviors that, when violated by a device (thing), cause an alert.</p>
4263
4263
  * @public
4264
4264
  */
4265
- behaviors?: Behavior[];
4265
+ behaviors?: Behavior[] | undefined;
4266
4266
  /**
4267
4267
  * <p>Where the alerts are sent. (Alerts are always sent to the console.)</p>
4268
4268
  * @public
4269
4269
  */
4270
- alertTargets?: Partial<Record<AlertTargetType, AlertTarget>>;
4270
+ alertTargets?: Partial<Record<AlertTargetType, AlertTarget>> | undefined;
4271
4271
  /**
4272
4272
  * @deprecated
4273
4273
  *
@@ -4283,48 +4283,48 @@ export interface UpdateSecurityProfileRequest {
4283
4283
  * also retained for any metric specified here. Can be used with custom metrics; cannot be used with dimensions.</p>
4284
4284
  * @public
4285
4285
  */
4286
- additionalMetricsToRetain?: string[];
4286
+ additionalMetricsToRetain?: string[] | undefined;
4287
4287
  /**
4288
4288
  * <p>A list of metrics whose data is retained (stored). By default, data is retained for any metric used in the profile's behaviors, but it is also retained for any metric specified here. Can be used with custom metrics; cannot be used with dimensions.</p>
4289
4289
  * @public
4290
4290
  */
4291
- additionalMetricsToRetainV2?: MetricToRetain[];
4291
+ additionalMetricsToRetainV2?: MetricToRetain[] | undefined;
4292
4292
  /**
4293
4293
  * <p>If true, delete all <code>behaviors</code> defined for this security profile.
4294
4294
  * If any <code>behaviors</code> are defined in the current invocation, an exception occurs.</p>
4295
4295
  * @public
4296
4296
  */
4297
- deleteBehaviors?: boolean;
4297
+ deleteBehaviors?: boolean | undefined;
4298
4298
  /**
4299
4299
  * <p>If true, delete all <code>alertTargets</code> defined for this security profile.
4300
4300
  * If any <code>alertTargets</code> are defined in the current invocation, an exception occurs.</p>
4301
4301
  * @public
4302
4302
  */
4303
- deleteAlertTargets?: boolean;
4303
+ deleteAlertTargets?: boolean | undefined;
4304
4304
  /**
4305
4305
  * <p>If true, delete all <code>additionalMetricsToRetain</code> defined for this
4306
4306
  * security profile. If any <code>additionalMetricsToRetain</code> are defined in the current
4307
4307
  * invocation, an exception occurs.</p>
4308
4308
  * @public
4309
4309
  */
4310
- deleteAdditionalMetricsToRetain?: boolean;
4310
+ deleteAdditionalMetricsToRetain?: boolean | undefined;
4311
4311
  /**
4312
4312
  * <p>The expected version of the security profile. A new version is generated whenever
4313
4313
  * the security profile is updated. If you specify a value that is different from the actual
4314
4314
  * version, a <code>VersionConflictException</code> is thrown.</p>
4315
4315
  * @public
4316
4316
  */
4317
- expectedVersion?: number;
4317
+ expectedVersion?: number | undefined;
4318
4318
  /**
4319
4319
  * <p>Specifies the MQTT topic and role ARN required for metric export.</p>
4320
4320
  * @public
4321
4321
  */
4322
- metricsExportConfig?: MetricsExportConfig;
4322
+ metricsExportConfig?: MetricsExportConfig | undefined;
4323
4323
  /**
4324
4324
  * <p>Set the value as true to delete metrics export related configurations.</p>
4325
4325
  * @public
4326
4326
  */
4327
- deleteMetricsExportConfig?: boolean;
4327
+ deleteMetricsExportConfig?: boolean | undefined;
4328
4328
  }
4329
4329
  /**
4330
4330
  * @public
@@ -4334,27 +4334,27 @@ export interface UpdateSecurityProfileResponse {
4334
4334
  * <p>The name of the security profile that was updated.</p>
4335
4335
  * @public
4336
4336
  */
4337
- securityProfileName?: string;
4337
+ securityProfileName?: string | undefined;
4338
4338
  /**
4339
4339
  * <p>The ARN of the security profile that was updated.</p>
4340
4340
  * @public
4341
4341
  */
4342
- securityProfileArn?: string;
4342
+ securityProfileArn?: string | undefined;
4343
4343
  /**
4344
4344
  * <p>The description of the security profile.</p>
4345
4345
  * @public
4346
4346
  */
4347
- securityProfileDescription?: string;
4347
+ securityProfileDescription?: string | undefined;
4348
4348
  /**
4349
4349
  * <p>Specifies the behaviors that, when violated by a device (thing), cause an alert.</p>
4350
4350
  * @public
4351
4351
  */
4352
- behaviors?: Behavior[];
4352
+ behaviors?: Behavior[] | undefined;
4353
4353
  /**
4354
4354
  * <p>Where the alerts are sent. (Alerts are always sent to the console.)</p>
4355
4355
  * @public
4356
4356
  */
4357
- alertTargets?: Partial<Record<AlertTargetType, AlertTarget>>;
4357
+ alertTargets?: Partial<Record<AlertTargetType, AlertTarget>> | undefined;
4358
4358
  /**
4359
4359
  * @deprecated
4360
4360
  *
@@ -4370,32 +4370,32 @@ export interface UpdateSecurityProfileResponse {
4370
4370
  * also retained for any metric specified here.</p>
4371
4371
  * @public
4372
4372
  */
4373
- additionalMetricsToRetain?: string[];
4373
+ additionalMetricsToRetain?: string[] | undefined;
4374
4374
  /**
4375
4375
  * <p>A list of metrics whose data is retained (stored). By default, data is retained for any metric used in the profile's behaviors, but it is also retained for any metric specified here. Can be used with custom metrics; cannot be used with dimensions.</p>
4376
4376
  * @public
4377
4377
  */
4378
- additionalMetricsToRetainV2?: MetricToRetain[];
4378
+ additionalMetricsToRetainV2?: MetricToRetain[] | undefined;
4379
4379
  /**
4380
4380
  * <p>The updated version of the security profile.</p>
4381
4381
  * @public
4382
4382
  */
4383
- version?: number;
4383
+ version?: number | undefined;
4384
4384
  /**
4385
4385
  * <p>The time the security profile was created.</p>
4386
4386
  * @public
4387
4387
  */
4388
- creationDate?: Date;
4388
+ creationDate?: Date | undefined;
4389
4389
  /**
4390
4390
  * <p>The time the security profile was last modified.</p>
4391
4391
  * @public
4392
4392
  */
4393
- lastModifiedDate?: Date;
4393
+ lastModifiedDate?: Date | undefined;
4394
4394
  /**
4395
4395
  * <p>Specifies the MQTT topic and role ARN required for metric export.</p>
4396
4396
  * @public
4397
4397
  */
4398
- metricsExportConfig?: MetricsExportConfig;
4398
+ metricsExportConfig?: MetricsExportConfig | undefined;
4399
4399
  }
4400
4400
  /**
4401
4401
  * @public
@@ -4410,17 +4410,17 @@ export interface UpdateStreamRequest {
4410
4410
  * <p>The description of the stream.</p>
4411
4411
  * @public
4412
4412
  */
4413
- description?: string;
4413
+ description?: string | undefined;
4414
4414
  /**
4415
4415
  * <p>The files associated with the stream.</p>
4416
4416
  * @public
4417
4417
  */
4418
- files?: StreamFile[];
4418
+ files?: StreamFile[] | undefined;
4419
4419
  /**
4420
4420
  * <p>An IAM role that allows the IoT service principal assumes to access your S3 files.</p>
4421
4421
  * @public
4422
4422
  */
4423
- roleArn?: string;
4423
+ roleArn?: string | undefined;
4424
4424
  }
4425
4425
  /**
4426
4426
  * @public
@@ -4430,22 +4430,22 @@ export interface UpdateStreamResponse {
4430
4430
  * <p>The stream ID.</p>
4431
4431
  * @public
4432
4432
  */
4433
- streamId?: string;
4433
+ streamId?: string | undefined;
4434
4434
  /**
4435
4435
  * <p>The stream ARN.</p>
4436
4436
  * @public
4437
4437
  */
4438
- streamArn?: string;
4438
+ streamArn?: string | undefined;
4439
4439
  /**
4440
4440
  * <p>A description of the stream.</p>
4441
4441
  * @public
4442
4442
  */
4443
- description?: string;
4443
+ description?: string | undefined;
4444
4444
  /**
4445
4445
  * <p>The stream version.</p>
4446
4446
  * @public
4447
4447
  */
4448
- streamVersion?: number;
4448
+ streamVersion?: number | undefined;
4449
4449
  }
4450
4450
  /**
4451
4451
  * <p>The input for the UpdateThing operation.</p>
@@ -4463,7 +4463,7 @@ export interface UpdateThingRequest {
4463
4463
  * <p>The name of the thing type.</p>
4464
4464
  * @public
4465
4465
  */
4466
- thingTypeName?: string;
4466
+ thingTypeName?: string | undefined;
4467
4467
  /**
4468
4468
  * <p>A list of thing attributes, a JSON string containing name-value pairs. For
4469
4469
  * example:</p>
@@ -4473,7 +4473,7 @@ export interface UpdateThingRequest {
4473
4473
  * <p>This data is used to add new attributes or update existing attributes.</p>
4474
4474
  * @public
4475
4475
  */
4476
- attributePayload?: AttributePayload;
4476
+ attributePayload?: AttributePayload | undefined;
4477
4477
  /**
4478
4478
  * <p>The expected version of the thing record in the registry. If the version of the
4479
4479
  * record in the registry does not match the expected version specified in the request, the
@@ -4481,13 +4481,13 @@ export interface UpdateThingRequest {
4481
4481
  * <code>VersionConflictException</code>.</p>
4482
4482
  * @public
4483
4483
  */
4484
- expectedVersion?: number;
4484
+ expectedVersion?: number | undefined;
4485
4485
  /**
4486
4486
  * <p>Remove a thing type association. If <b>true</b>, the
4487
4487
  * association is removed.</p>
4488
4488
  * @public
4489
4489
  */
4490
- removeThingType?: boolean;
4490
+ removeThingType?: boolean | undefined;
4491
4491
  }
4492
4492
  /**
4493
4493
  * <p>The output from the UpdateThing operation.</p>
@@ -4514,7 +4514,7 @@ export interface UpdateThingGroupRequest {
4514
4514
  * thing group being updated, the update will fail.</p>
4515
4515
  * @public
4516
4516
  */
4517
- expectedVersion?: number;
4517
+ expectedVersion?: number | undefined;
4518
4518
  }
4519
4519
  /**
4520
4520
  * @public
@@ -4524,7 +4524,7 @@ export interface UpdateThingGroupResponse {
4524
4524
  * <p>The version of the updated thing group.</p>
4525
4525
  * @public
4526
4526
  */
4527
- version?: number;
4527
+ version?: number | undefined;
4528
4528
  }
4529
4529
  /**
4530
4530
  * @public
@@ -4534,17 +4534,17 @@ export interface UpdateThingGroupsForThingRequest {
4534
4534
  * <p>The thing whose group memberships will be updated.</p>
4535
4535
  * @public
4536
4536
  */
4537
- thingName?: string;
4537
+ thingName?: string | undefined;
4538
4538
  /**
4539
4539
  * <p>The groups to which the thing will be added.</p>
4540
4540
  * @public
4541
4541
  */
4542
- thingGroupsToAdd?: string[];
4542
+ thingGroupsToAdd?: string[] | undefined;
4543
4543
  /**
4544
4544
  * <p>The groups from which the thing will be removed.</p>
4545
4545
  * @public
4546
4546
  */
4547
- thingGroupsToRemove?: string[];
4547
+ thingGroupsToRemove?: string[] | undefined;
4548
4548
  /**
4549
4549
  * <p>Override dynamic thing groups with static thing groups when 10-group limit is
4550
4550
  * reached. If a thing belongs to 10 thing groups, and one or more of those groups are
@@ -4552,7 +4552,7 @@ export interface UpdateThingGroupsForThingRequest {
4552
4552
  * dynamic group.</p>
4553
4553
  * @public
4554
4554
  */
4555
- overrideDynamicGroups?: boolean;
4555
+ overrideDynamicGroups?: boolean | undefined;
4556
4556
  }
4557
4557
  /**
4558
4558
  * @public
@@ -4629,7 +4629,7 @@ export interface ValidationError {
4629
4629
  * <p>The description of an error found in the behaviors.</p>
4630
4630
  * @public
4631
4631
  */
4632
- errorMessage?: string;
4632
+ errorMessage?: string | undefined;
4633
4633
  }
4634
4634
  /**
4635
4635
  * @public
@@ -4639,12 +4639,12 @@ export interface ValidateSecurityProfileBehaviorsResponse {
4639
4639
  * <p>True if the behaviors were valid.</p>
4640
4640
  * @public
4641
4641
  */
4642
- valid?: boolean;
4642
+ valid?: boolean | undefined;
4643
4643
  /**
4644
4644
  * <p>The list of any errors found in the behaviors.</p>
4645
4645
  * @public
4646
4646
  */
4647
- validationErrors?: ValidationError[];
4647
+ validationErrors?: ValidationError[] | undefined;
4648
4648
  }
4649
4649
  /**
4650
4650
  * @internal