@aws-sdk/client-iotfleetwise 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.
@@ -76,49 +76,49 @@ export interface Actuator {
76
76
  * <p>A brief description of the actuator.</p>
77
77
  * @public
78
78
  */
79
- description?: string;
79
+ description?: string | undefined;
80
80
  /**
81
81
  * <p>The scientific unit for the actuator.</p>
82
82
  * @public
83
83
  */
84
- unit?: string;
84
+ unit?: string | undefined;
85
85
  /**
86
86
  * <p>A list of possible values an actuator can take.</p>
87
87
  * @public
88
88
  */
89
- allowedValues?: string[];
89
+ allowedValues?: string[] | undefined;
90
90
  /**
91
91
  * <p>The specified possible minimum value of an actuator.</p>
92
92
  * @public
93
93
  */
94
- min?: number;
94
+ min?: number | undefined;
95
95
  /**
96
96
  * <p>The specified possible maximum value of an actuator.</p>
97
97
  * @public
98
98
  */
99
- max?: number;
99
+ max?: number | undefined;
100
100
  /**
101
101
  * @deprecated
102
102
  *
103
103
  * <p>A specified value for the actuator.</p>
104
104
  * @public
105
105
  */
106
- assignedValue?: string;
106
+ assignedValue?: string | undefined;
107
107
  /**
108
108
  * <p>The deprecation message for the node or the branch that was moved or deleted.</p>
109
109
  * @public
110
110
  */
111
- deprecationMessage?: string;
111
+ deprecationMessage?: string | undefined;
112
112
  /**
113
113
  * <p>A comment in addition to the description.</p>
114
114
  * @public
115
115
  */
116
- comment?: string;
116
+ comment?: string | undefined;
117
117
  /**
118
118
  * <p>The fully qualified name of the struct node for the actuator if the data type of the actuator is <code>Struct</code> or <code>StructArray</code>. For example, the struct fully qualified name of an actuator might be <code>Vehicle.Door.LockStruct</code>.</p>
119
119
  * @public
120
120
  */
121
- structFullyQualifiedName?: string;
121
+ structFullyQualifiedName?: string | undefined;
122
122
  }
123
123
  /**
124
124
  * @public
@@ -151,7 +151,7 @@ export declare class InternalServerException extends __BaseException {
151
151
  * <p>The number of seconds to wait before retrying the command.</p>
152
152
  * @public
153
153
  */
154
- retryAfterSeconds?: number;
154
+ retryAfterSeconds?: number | undefined;
155
155
  /**
156
156
  * @internal
157
157
  */
@@ -212,17 +212,17 @@ export declare class ThrottlingException extends __BaseException {
212
212
  * <p>The quota identifier of the applied throttling rules for this request.</p>
213
213
  * @public
214
214
  */
215
- quotaCode?: string;
215
+ quotaCode?: string | undefined;
216
216
  /**
217
217
  * <p>The code for the service that couldn't be completed due to throttling.</p>
218
218
  * @public
219
219
  */
220
- serviceCode?: string;
220
+ serviceCode?: string | undefined;
221
221
  /**
222
222
  * <p>The number of seconds to wait before retrying the command.</p>
223
223
  * @public
224
224
  */
225
- retryAfterSeconds?: number;
225
+ retryAfterSeconds?: number | undefined;
226
226
  /**
227
227
  * @internal
228
228
  */
@@ -270,12 +270,12 @@ export declare class ValidationException extends __BaseException {
270
270
  * <p>The reason the input failed to satisfy the constraints specified by an Amazon Web Services service.</p>
271
271
  * @public
272
272
  */
273
- reason?: ValidationExceptionReason;
273
+ reason?: ValidationExceptionReason | undefined;
274
274
  /**
275
275
  * <p>The list of fields that fail to satisfy the constraints specified by an Amazon Web Services service.</p>
276
276
  * @public
277
277
  */
278
- fieldList?: ValidationExceptionField[];
278
+ fieldList?: ValidationExceptionField[] | undefined;
279
279
  /**
280
280
  * @internal
281
281
  */
@@ -302,49 +302,49 @@ export interface Attribute {
302
302
  * <p>A brief description of the attribute.</p>
303
303
  * @public
304
304
  */
305
- description?: string;
305
+ description?: string | undefined;
306
306
  /**
307
307
  * <p>The scientific unit for the attribute.</p>
308
308
  * @public
309
309
  */
310
- unit?: string;
310
+ unit?: string | undefined;
311
311
  /**
312
312
  * <p>A list of possible values an attribute can be assigned.</p>
313
313
  * @public
314
314
  */
315
- allowedValues?: string[];
315
+ allowedValues?: string[] | undefined;
316
316
  /**
317
317
  * <p>The specified possible minimum value of the attribute.</p>
318
318
  * @public
319
319
  */
320
- min?: number;
320
+ min?: number | undefined;
321
321
  /**
322
322
  * <p>The specified possible maximum value of the attribute.</p>
323
323
  * @public
324
324
  */
325
- max?: number;
325
+ max?: number | undefined;
326
326
  /**
327
327
  * @deprecated
328
328
  *
329
329
  * <p>A specified value for the attribute.</p>
330
330
  * @public
331
331
  */
332
- assignedValue?: string;
332
+ assignedValue?: string | undefined;
333
333
  /**
334
334
  * <p>The default value of the attribute.</p>
335
335
  * @public
336
336
  */
337
- defaultValue?: string;
337
+ defaultValue?: string | undefined;
338
338
  /**
339
339
  * <p>The deprecation message for the node or the branch that was moved or deleted.</p>
340
340
  * @public
341
341
  */
342
- deprecationMessage?: string;
342
+ deprecationMessage?: string | undefined;
343
343
  /**
344
344
  * <p>A comment in addition to the description.</p>
345
345
  * @public
346
346
  */
347
- comment?: string;
347
+ comment?: string | undefined;
348
348
  }
349
349
  /**
350
350
  * @public
@@ -401,18 +401,18 @@ export interface CreateVehicleRequestItem {
401
401
  * </p>
402
402
  * @public
403
403
  */
404
- attributes?: Record<string, string>;
404
+ attributes?: Record<string, string> | undefined;
405
405
  /**
406
406
  * <p>An option to create a new Amazon Web Services IoT thing when creating a vehicle, or to validate an
407
407
  * existing thing as a vehicle.</p>
408
408
  * @public
409
409
  */
410
- associationBehavior?: VehicleAssociationBehavior;
410
+ associationBehavior?: VehicleAssociationBehavior | undefined;
411
411
  /**
412
412
  * <p>Metadata which can be used to manage the vehicle.</p>
413
413
  * @public
414
414
  */
415
- tags?: Tag[];
415
+ tags?: Tag[] | undefined;
416
416
  }
417
417
  /**
418
418
  * @public
@@ -434,17 +434,17 @@ export interface CreateVehicleError {
434
434
  * <p>The ID of the vehicle with the error.</p>
435
435
  * @public
436
436
  */
437
- vehicleName?: string;
437
+ vehicleName?: string | undefined;
438
438
  /**
439
439
  * <p>An HTTP error code.</p>
440
440
  * @public
441
441
  */
442
- code?: string;
442
+ code?: string | undefined;
443
443
  /**
444
444
  * <p>A description of the HTTP error.</p>
445
445
  * @public
446
446
  */
447
- message?: string;
447
+ message?: string | undefined;
448
448
  }
449
449
  /**
450
450
  * <p>Information about a created vehicle.</p>
@@ -455,17 +455,17 @@ export interface CreateVehicleResponseItem {
455
455
  * <p>The unique ID of the vehicle to create.</p>
456
456
  * @public
457
457
  */
458
- vehicleName?: string;
458
+ vehicleName?: string | undefined;
459
459
  /**
460
460
  * <p>The ARN of the created vehicle.</p>
461
461
  * @public
462
462
  */
463
- arn?: string;
463
+ arn?: string | undefined;
464
464
  /**
465
465
  * <p>The ARN of a created or validated Amazon Web Services IoT thing.</p>
466
466
  * @public
467
467
  */
468
- thingArn?: string;
468
+ thingArn?: string | undefined;
469
469
  }
470
470
  /**
471
471
  * @public
@@ -476,13 +476,13 @@ export interface BatchCreateVehicleResponse {
476
476
  * the API data type.</p>
477
477
  * @public
478
478
  */
479
- vehicles?: CreateVehicleResponseItem[];
479
+ vehicles?: CreateVehicleResponseItem[] | undefined;
480
480
  /**
481
481
  * <p>A list of information about creation errors, or an empty list if there aren't any
482
482
  * errors. </p>
483
483
  * @public
484
484
  */
485
- errors?: CreateVehicleError[];
485
+ errors?: CreateVehicleError[] | undefined;
486
486
  }
487
487
  /**
488
488
  * @public
@@ -510,12 +510,12 @@ export interface UpdateVehicleRequestItem {
510
510
  * <p>The ARN of the vehicle model (model manifest) associated with the vehicle to update.</p>
511
511
  * @public
512
512
  */
513
- modelManifestArn?: string;
513
+ modelManifestArn?: string | undefined;
514
514
  /**
515
515
  * <p>The ARN of the signal decoder manifest associated with the vehicle to update.</p>
516
516
  * @public
517
517
  */
518
- decoderManifestArn?: string;
518
+ decoderManifestArn?: string | undefined;
519
519
  /**
520
520
  * <p>Static information about a vehicle in a key-value pair. For example:</p>
521
521
  * <p>
@@ -523,7 +523,7 @@ export interface UpdateVehicleRequestItem {
523
523
  * </p>
524
524
  * @public
525
525
  */
526
- attributes?: Record<string, string>;
526
+ attributes?: Record<string, string> | undefined;
527
527
  /**
528
528
  * <p>The method the specified attributes will update the existing attributes on the
529
529
  * vehicle. Use<code>Overwite</code> to replace the vehicle attributes with the specified
@@ -531,7 +531,7 @@ export interface UpdateVehicleRequestItem {
531
531
  * <p>This is required if attributes are present in the input.</p>
532
532
  * @public
533
533
  */
534
- attributeUpdateMode?: UpdateMode;
534
+ attributeUpdateMode?: UpdateMode | undefined;
535
535
  }
536
536
  /**
537
537
  * @public
@@ -553,17 +553,17 @@ export interface UpdateVehicleError {
553
553
  * <p>The ID of the vehicle with the error.</p>
554
554
  * @public
555
555
  */
556
- vehicleName?: string;
556
+ vehicleName?: string | undefined;
557
557
  /**
558
558
  * <p>The relevant HTTP error code (400+).</p>
559
559
  * @public
560
560
  */
561
- code?: number;
561
+ code?: number | undefined;
562
562
  /**
563
563
  * <p>A message associated with the error.</p>
564
564
  * @public
565
565
  */
566
- message?: string;
566
+ message?: string | undefined;
567
567
  }
568
568
  /**
569
569
  * <p>Information about the updated vehicle.</p>
@@ -574,12 +574,12 @@ export interface UpdateVehicleResponseItem {
574
574
  * <p>The unique ID of the updated vehicle.</p>
575
575
  * @public
576
576
  */
577
- vehicleName?: string;
577
+ vehicleName?: string | undefined;
578
578
  /**
579
579
  * <p>The Amazon Resource Name (ARN) of the updated vehicle.</p>
580
580
  * @public
581
581
  */
582
- arn?: string;
582
+ arn?: string | undefined;
583
583
  }
584
584
  /**
585
585
  * @public
@@ -592,13 +592,13 @@ export interface BatchUpdateVehicleResponse {
592
592
  * </note>
593
593
  * @public
594
594
  */
595
- vehicles?: UpdateVehicleResponseItem[];
595
+ vehicles?: UpdateVehicleResponseItem[] | undefined;
596
596
  /**
597
597
  * <p>A list of information about errors returned while updating a batch of vehicles, or, if
598
598
  * there aren't any errors, an empty list.</p>
599
599
  * @public
600
600
  */
601
- errors?: UpdateVehicleError[];
601
+ errors?: UpdateVehicleError[] | undefined;
602
602
  }
603
603
  /**
604
604
  * <p>A group of signals that are defined in a hierarchical structure.</p>
@@ -615,17 +615,17 @@ export interface Branch {
615
615
  * <p>A brief description of the branch.</p>
616
616
  * @public
617
617
  */
618
- description?: string;
618
+ description?: string | undefined;
619
619
  /**
620
620
  * <p>The deprecation message for the node or the branch that was moved or deleted.</p>
621
621
  * @public
622
622
  */
623
- deprecationMessage?: string;
623
+ deprecationMessage?: string | undefined;
624
624
  /**
625
625
  * <p>A comment in addition to the description.</p>
626
626
  * @public
627
627
  */
628
- comment?: string;
628
+ comment?: string | undefined;
629
629
  }
630
630
  /**
631
631
  * <p>The request has conflicting operations. This can occur if you're trying to perform
@@ -682,7 +682,7 @@ export interface ConditionBasedCollectionScheme {
682
682
  * </note>
683
683
  * @public
684
684
  */
685
- minimumTriggerIntervalMs?: number;
685
+ minimumTriggerIntervalMs?: number | undefined;
686
686
  /**
687
687
  * <p>Whether to collect data for all triggering events (<code>ALWAYS</code>). Specify
688
688
  * (<code>RISING_EDGE</code>), or specify only when the condition first evaluates to
@@ -691,12 +691,12 @@ export interface ConditionBasedCollectionScheme {
691
691
  * deployed =&gt; deployed.</p>
692
692
  * @public
693
693
  */
694
- triggerMode?: TriggerMode;
694
+ triggerMode?: TriggerMode | undefined;
695
695
  /**
696
696
  * <p>Specifies the version of the conditional expression language.</p>
697
697
  * @public
698
698
  */
699
- conditionLanguageVersion?: number;
699
+ conditionLanguageVersion?: number | undefined;
700
700
  }
701
701
  /**
702
702
  * <p>Information about a collection scheme that uses a time period to decide how often to
@@ -816,19 +816,19 @@ export interface S3Config {
816
816
  * </ul>
817
817
  * @public
818
818
  */
819
- dataFormat?: DataFormat;
819
+ dataFormat?: DataFormat | undefined;
820
820
  /**
821
821
  * <p>By default, stored data is compressed as a .gzip file. Compressed files have a reduced
822
822
  * file size, which can optimize the cost of data storage.</p>
823
823
  * @public
824
824
  */
825
- storageCompressionFormat?: StorageCompressionFormat;
825
+ storageCompressionFormat?: StorageCompressionFormat | undefined;
826
826
  /**
827
827
  * <p>(Optional) Enter an S3 bucket prefix. The prefix is the string of characters after the bucket name and before the object name. You can use the prefix to organize data stored in Amazon S3 buckets. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-prefixes.html">Organizing objects using prefixes</a> in the <i>Amazon Simple Storage Service User Guide</i>.</p>
828
828
  * <p>By default, Amazon Web Services IoT FleetWise sets the prefix <code>processed-data/year=YY/month=MM/date=DD/hour=HH/</code> (in UTC) to data it delivers to Amazon S3. You can enter a prefix to append it to this default prefix. For example, if you enter the prefix <code>vehicles</code>, the prefix will be <code>vehicles/processed-data/year=YY/month=MM/date=DD/hour=HH/</code>.</p>
829
829
  * @public
830
830
  */
831
- prefix?: string;
831
+ prefix?: string | undefined;
832
832
  }
833
833
  /**
834
834
  * <p>The Amazon Timestream table where the Amazon Web Services IoT FleetWise campaign sends data. Timestream stores and organizes data to optimize query processing time and to reduce storage costs. For more information, see <a href="https://docs.aws.amazon.com/timestream/latest/developerguide/data-modeling.html">Data modeling</a> in the <i>Amazon Timestream Developer Guide</i>.</p>
@@ -914,7 +914,7 @@ export interface SignalInformation {
914
914
  * <p>The maximum number of samples to collect.</p>
915
915
  * @public
916
916
  */
917
- maxSampleCount?: number;
917
+ maxSampleCount?: number | undefined;
918
918
  /**
919
919
  * <p>The minimum duration of time (in milliseconds) between two triggering events to
920
920
  * collect data.</p>
@@ -923,7 +923,7 @@ export interface SignalInformation {
923
923
  * </note>
924
924
  * @public
925
925
  */
926
- minimumSamplingIntervalMs?: number;
926
+ minimumSamplingIntervalMs?: number | undefined;
927
927
  }
928
928
  /**
929
929
  * @public
@@ -950,7 +950,7 @@ export interface CreateCampaignRequest {
950
950
  * <p>An optional description of the campaign to help identify its purpose.</p>
951
951
  * @public
952
952
  */
953
- description?: string;
953
+ description?: string | undefined;
954
954
  /**
955
955
  * <p>The Amazon Resource Name (ARN) of the signal catalog to associate with the campaign.
956
956
  * </p>
@@ -969,14 +969,14 @@ export interface CreateCampaignRequest {
969
969
  * </p>
970
970
  * @public
971
971
  */
972
- startTime?: Date;
972
+ startTime?: Date | undefined;
973
973
  /**
974
974
  * <p> (Optional) The time the campaign expires, in seconds since epoch (January 1, 1970 at
975
975
  * midnight UTC time). Vehicle data isn't collected after the campaign expires. </p>
976
976
  * <p>Default: 253402214400 (December 31, 9999, 00:00:00 UTC)</p>
977
977
  * @public
978
978
  */
979
- expiryTime?: Date;
979
+ expiryTime?: Date | undefined;
980
980
  /**
981
981
  * <p> (Optional) How long (in milliseconds) to collect raw data after a triggering event
982
982
  * initiates the collection. If it's not specified, <code>0</code> is used.</p>
@@ -984,7 +984,7 @@ export interface CreateCampaignRequest {
984
984
  * </p>
985
985
  * @public
986
986
  */
987
- postTriggerCollectionDuration?: number;
987
+ postTriggerCollectionDuration?: number | undefined;
988
988
  /**
989
989
  * <p> (Optional) Option for a vehicle to send diagnostic trouble codes to Amazon Web Services IoT FleetWise. If you
990
990
  * want to send diagnostic trouble codes, use <code>SEND_ACTIVE_DTCS</code>. If it's not
@@ -993,7 +993,7 @@ export interface CreateCampaignRequest {
993
993
  * </p>
994
994
  * @public
995
995
  */
996
- diagnosticsMode?: DiagnosticsMode;
996
+ diagnosticsMode?: DiagnosticsMode | undefined;
997
997
  /**
998
998
  * <p>(Optional) Whether to store collected data after a vehicle lost a connection with the
999
999
  * cloud. After a connection is re-established, the data is automatically forwarded to
@@ -1003,7 +1003,7 @@ export interface CreateCampaignRequest {
1003
1003
  * </p>
1004
1004
  * @public
1005
1005
  */
1006
- spoolingMode?: SpoolingMode;
1006
+ spoolingMode?: SpoolingMode | undefined;
1007
1007
  /**
1008
1008
  * <p> (Optional) Whether to compress signals before transmitting data to Amazon Web Services IoT FleetWise. If you
1009
1009
  * don't want to compress the signals, use <code>OFF</code>. If it's not specified,
@@ -1012,7 +1012,7 @@ export interface CreateCampaignRequest {
1012
1012
  * </p>
1013
1013
  * @public
1014
1014
  */
1015
- compression?: Compression;
1015
+ compression?: Compression | undefined;
1016
1016
  /**
1017
1017
  * @deprecated
1018
1018
  *
@@ -1023,12 +1023,12 @@ export interface CreateCampaignRequest {
1023
1023
  * </p>
1024
1024
  * @public
1025
1025
  */
1026
- priority?: number;
1026
+ priority?: number | undefined;
1027
1027
  /**
1028
1028
  * <p>(Optional) A list of information about signals to collect. </p>
1029
1029
  * @public
1030
1030
  */
1031
- signalsToCollect?: SignalInformation[];
1031
+ signalsToCollect?: SignalInformation[] | undefined;
1032
1032
  /**
1033
1033
  * <p> The data collection scheme associated with the campaign. You can specify a scheme
1034
1034
  * that collects data based on time or an event.</p>
@@ -1041,12 +1041,12 @@ export interface CreateCampaignRequest {
1041
1041
  * <p>Default: An empty array</p>
1042
1042
  * @public
1043
1043
  */
1044
- dataExtraDimensions?: string[];
1044
+ dataExtraDimensions?: string[] | undefined;
1045
1045
  /**
1046
1046
  * <p>Metadata that can be used to manage the campaign.</p>
1047
1047
  * @public
1048
1048
  */
1049
- tags?: Tag[];
1049
+ tags?: Tag[] | undefined;
1050
1050
  /**
1051
1051
  * <p>The destination where the campaign sends data. You can choose to send data to be stored in Amazon S3 or Amazon Timestream.</p>
1052
1052
  * <p>Amazon S3 optimizes the cost of data storage and provides additional mechanisms to use vehicle data, such as data lakes, centralized data storage, data processing pipelines, and analytics. Amazon Web Services IoT FleetWise supports at-least-once file delivery to S3. Your vehicle data is stored on multiple Amazon Web Services IoT FleetWise servers for redundancy and high availability.</p>
@@ -1054,7 +1054,7 @@ export interface CreateCampaignRequest {
1054
1054
  * vehicle data so that you can identify trends and patterns.</p>
1055
1055
  * @public
1056
1056
  */
1057
- dataDestinationConfigs?: DataDestinationConfig[];
1057
+ dataDestinationConfigs?: DataDestinationConfig[] | undefined;
1058
1058
  }
1059
1059
  /**
1060
1060
  * @public
@@ -1064,12 +1064,12 @@ export interface CreateCampaignResponse {
1064
1064
  * <p>The name of the created campaign.</p>
1065
1065
  * @public
1066
1066
  */
1067
- name?: string;
1067
+ name?: string | undefined;
1068
1068
  /**
1069
1069
  * <p> The ARN of the created campaign. </p>
1070
1070
  * @public
1071
1071
  */
1072
- arn?: string;
1072
+ arn?: string | undefined;
1073
1073
  }
1074
1074
  /**
1075
1075
  * @public
@@ -1089,7 +1089,7 @@ export interface DeleteCampaignResponse {
1089
1089
  * <p>The name of the deleted campaign.</p>
1090
1090
  * @public
1091
1091
  */
1092
- name?: string;
1092
+ name?: string | undefined;
1093
1093
  /**
1094
1094
  * <p> The Amazon Resource Name (ARN) of the deleted campaign.</p>
1095
1095
  * <note>
@@ -1097,7 +1097,7 @@ export interface DeleteCampaignResponse {
1097
1097
  * </note>
1098
1098
  * @public
1099
1099
  */
1100
- arn?: string;
1100
+ arn?: string | undefined;
1101
1101
  }
1102
1102
  /**
1103
1103
  * @public
@@ -1131,103 +1131,103 @@ export interface GetCampaignResponse {
1131
1131
  * <p>The name of the campaign.</p>
1132
1132
  * @public
1133
1133
  */
1134
- name?: string;
1134
+ name?: string | undefined;
1135
1135
  /**
1136
1136
  * <p> The Amazon Resource Name (ARN) of the campaign. </p>
1137
1137
  * @public
1138
1138
  */
1139
- arn?: string;
1139
+ arn?: string | undefined;
1140
1140
  /**
1141
1141
  * <p>The description of the campaign.</p>
1142
1142
  * @public
1143
1143
  */
1144
- description?: string;
1144
+ description?: string | undefined;
1145
1145
  /**
1146
1146
  * <p> The ARN of a signal catalog. </p>
1147
1147
  * @public
1148
1148
  */
1149
- signalCatalogArn?: string;
1149
+ signalCatalogArn?: string | undefined;
1150
1150
  /**
1151
1151
  * <p> The ARN of the vehicle or the fleet targeted by the campaign. </p>
1152
1152
  * @public
1153
1153
  */
1154
- targetArn?: string;
1154
+ targetArn?: string | undefined;
1155
1155
  /**
1156
1156
  * <p>The state of the campaign. The status can be one of: <code>CREATING</code>,
1157
1157
  * <code>WAITING_FOR_APPROVAL</code>, <code>RUNNING</code>, and <code>SUSPENDED</code>.
1158
1158
  * </p>
1159
1159
  * @public
1160
1160
  */
1161
- status?: CampaignStatus;
1161
+ status?: CampaignStatus | undefined;
1162
1162
  /**
1163
1163
  * <p> The time, in milliseconds, to deliver a campaign after it was approved.</p>
1164
1164
  * @public
1165
1165
  */
1166
- startTime?: Date;
1166
+ startTime?: Date | undefined;
1167
1167
  /**
1168
1168
  * <p> The time the campaign expires, in seconds since epoch (January 1, 1970 at midnight
1169
1169
  * UTC time). Vehicle data won't be collected after the campaign expires.</p>
1170
1170
  * @public
1171
1171
  */
1172
- expiryTime?: Date;
1172
+ expiryTime?: Date | undefined;
1173
1173
  /**
1174
1174
  * <p> How long (in seconds) to collect raw data after a triggering event initiates the
1175
1175
  * collection. </p>
1176
1176
  * @public
1177
1177
  */
1178
- postTriggerCollectionDuration?: number;
1178
+ postTriggerCollectionDuration?: number | undefined;
1179
1179
  /**
1180
1180
  * <p> Option for a vehicle to send diagnostic trouble codes to Amazon Web Services IoT FleetWise. </p>
1181
1181
  * @public
1182
1182
  */
1183
- diagnosticsMode?: DiagnosticsMode;
1183
+ diagnosticsMode?: DiagnosticsMode | undefined;
1184
1184
  /**
1185
1185
  * <p> Whether to store collected data after a vehicle lost a connection with the cloud.
1186
1186
  * After a connection is re-established, the data is automatically forwarded to Amazon Web Services IoT FleetWise.
1187
1187
  * </p>
1188
1188
  * @public
1189
1189
  */
1190
- spoolingMode?: SpoolingMode;
1190
+ spoolingMode?: SpoolingMode | undefined;
1191
1191
  /**
1192
1192
  * <p> Whether to compress signals before transmitting data to Amazon Web Services IoT FleetWise. If
1193
1193
  * <code>OFF</code> is specified, the signals aren't compressed. If it's not specified,
1194
1194
  * <code>SNAPPY</code> is used. </p>
1195
1195
  * @public
1196
1196
  */
1197
- compression?: Compression;
1197
+ compression?: Compression | undefined;
1198
1198
  /**
1199
1199
  * <p> A number indicating the priority of one campaign over another campaign for a certain
1200
1200
  * vehicle or fleet. A campaign with the lowest value is deployed to vehicles before any
1201
1201
  * other campaigns.</p>
1202
1202
  * @public
1203
1203
  */
1204
- priority?: number;
1204
+ priority?: number | undefined;
1205
1205
  /**
1206
1206
  * <p> Information about a list of signals to collect data on. </p>
1207
1207
  * @public
1208
1208
  */
1209
- signalsToCollect?: SignalInformation[];
1209
+ signalsToCollect?: SignalInformation[] | undefined;
1210
1210
  /**
1211
1211
  * <p> Information about the data collection scheme associated with the campaign. </p>
1212
1212
  * @public
1213
1213
  */
1214
- collectionScheme?: CollectionScheme;
1214
+ collectionScheme?: CollectionScheme | undefined;
1215
1215
  /**
1216
1216
  * <p> A list of vehicle attributes associated with the campaign. </p>
1217
1217
  * @public
1218
1218
  */
1219
- dataExtraDimensions?: string[];
1219
+ dataExtraDimensions?: string[] | undefined;
1220
1220
  /**
1221
1221
  * <p> The time the campaign was created in seconds since epoch (January 1, 1970 at midnight
1222
1222
  * UTC time). </p>
1223
1223
  * @public
1224
1224
  */
1225
- creationTime?: Date;
1225
+ creationTime?: Date | undefined;
1226
1226
  /**
1227
1227
  * <p>The last time the campaign was modified.</p>
1228
1228
  * @public
1229
1229
  */
1230
- lastModificationTime?: Date;
1230
+ lastModificationTime?: Date | undefined;
1231
1231
  /**
1232
1232
  * <p>The destination where the campaign sends data. You can choose to send data to be stored in Amazon S3 or Amazon Timestream.</p>
1233
1233
  * <p>Amazon S3 optimizes the cost of data storage and provides additional mechanisms to use vehicle data, such as data lakes, centralized data storage, data processing pipelines, and analytics. </p>
@@ -1235,7 +1235,7 @@ export interface GetCampaignResponse {
1235
1235
  * vehicle data so that you can identify trends and patterns.</p>
1236
1236
  * @public
1237
1237
  */
1238
- dataDestinationConfigs?: DataDestinationConfig[];
1238
+ dataDestinationConfigs?: DataDestinationConfig[] | undefined;
1239
1239
  }
1240
1240
  /**
1241
1241
  * @public
@@ -1246,12 +1246,12 @@ export interface ListCampaignsRequest {
1246
1246
  * <p>If the results of a search are large, only a portion of the results are returned, and a <code>nextToken</code> pagination token is returned in the response. To retrieve the next set of results, reissue the search request and include the returned token. When all results have been returned, the response does not contain a pagination token value. </p>
1247
1247
  * @public
1248
1248
  */
1249
- nextToken?: string;
1249
+ nextToken?: string | undefined;
1250
1250
  /**
1251
1251
  * <p> The maximum number of items to return, between 1 and 100, inclusive. </p>
1252
1252
  * @public
1253
1253
  */
1254
- maxResults?: number;
1254
+ maxResults?: number | undefined;
1255
1255
  /**
1256
1256
  * <p>Optional parameter to filter the results by the status of each created campaign in
1257
1257
  * your account. The status can be one of: <code>CREATING</code>,
@@ -1259,7 +1259,7 @@ export interface ListCampaignsRequest {
1259
1259
  * <code>SUSPENDED</code>.</p>
1260
1260
  * @public
1261
1261
  */
1262
- status?: string;
1262
+ status?: string | undefined;
1263
1263
  }
1264
1264
  /**
1265
1265
  * <p>Information about a campaign. </p>
@@ -1272,27 +1272,27 @@ export interface CampaignSummary {
1272
1272
  * <p>The Amazon Resource Name (ARN) of a campaign.</p>
1273
1273
  * @public
1274
1274
  */
1275
- arn?: string;
1275
+ arn?: string | undefined;
1276
1276
  /**
1277
1277
  * <p>The name of a campaign.</p>
1278
1278
  * @public
1279
1279
  */
1280
- name?: string;
1280
+ name?: string | undefined;
1281
1281
  /**
1282
1282
  * <p>The description of the campaign.</p>
1283
1283
  * @public
1284
1284
  */
1285
- description?: string;
1285
+ description?: string | undefined;
1286
1286
  /**
1287
1287
  * <p>The ARN of the signal catalog associated with the campaign.</p>
1288
1288
  * @public
1289
1289
  */
1290
- signalCatalogArn?: string;
1290
+ signalCatalogArn?: string | undefined;
1291
1291
  /**
1292
1292
  * <p>The ARN of a vehicle or fleet to which the campaign is deployed.</p>
1293
1293
  * @public
1294
1294
  */
1295
- targetArn?: string;
1295
+ targetArn?: string | undefined;
1296
1296
  /**
1297
1297
  * <p>The state of a campaign. The status can be one of the following:</p>
1298
1298
  * <ul>
@@ -1320,7 +1320,7 @@ export interface CampaignSummary {
1320
1320
  * </ul>
1321
1321
  * @public
1322
1322
  */
1323
- status?: CampaignStatus;
1323
+ status?: CampaignStatus | undefined;
1324
1324
  /**
1325
1325
  * <p>The time the campaign was created.</p>
1326
1326
  * @public
@@ -1340,12 +1340,12 @@ export interface ListCampaignsResponse {
1340
1340
  * <p> A summary of information about each campaign. </p>
1341
1341
  * @public
1342
1342
  */
1343
- campaignSummaries?: CampaignSummary[];
1343
+ campaignSummaries?: CampaignSummary[] | undefined;
1344
1344
  /**
1345
1345
  * <p> The token to retrieve the next set of results, or <code>null</code> if there are no more results. </p>
1346
1346
  * @public
1347
1347
  */
1348
- nextToken?: string;
1348
+ nextToken?: string | undefined;
1349
1349
  }
1350
1350
  /**
1351
1351
  * @public
@@ -1374,13 +1374,13 @@ export interface UpdateCampaignRequest {
1374
1374
  * <p>The description of the campaign.</p>
1375
1375
  * @public
1376
1376
  */
1377
- description?: string;
1377
+ description?: string | undefined;
1378
1378
  /**
1379
1379
  * <p> A list of vehicle attributes to associate with a signal. </p>
1380
1380
  * <p>Default: An empty array</p>
1381
1381
  * @public
1382
1382
  */
1383
- dataExtraDimensions?: string[];
1383
+ dataExtraDimensions?: string[] | undefined;
1384
1384
  /**
1385
1385
  * <p> Specifies how to update a campaign. The action can be one of the following:</p>
1386
1386
  * <ul>
@@ -1414,12 +1414,12 @@ export interface UpdateCampaignResponse {
1414
1414
  * <p> The Amazon Resource Name (ARN) of the campaign. </p>
1415
1415
  * @public
1416
1416
  */
1417
- arn?: string;
1417
+ arn?: string | undefined;
1418
1418
  /**
1419
1419
  * <p>The name of the updated campaign.</p>
1420
1420
  * @public
1421
1421
  */
1422
- name?: string;
1422
+ name?: string | undefined;
1423
1423
  /**
1424
1424
  * <p>The state of a campaign. The status can be one of:</p>
1425
1425
  * <ul>
@@ -1447,7 +1447,7 @@ export interface UpdateCampaignResponse {
1447
1447
  * </ul>
1448
1448
  * @public
1449
1449
  */
1450
- status?: CampaignStatus;
1450
+ status?: CampaignStatus | undefined;
1451
1451
  }
1452
1452
  /**
1453
1453
  * <p>Configurations used to create a decoder manifest.</p>
@@ -1469,7 +1469,7 @@ export interface CanDbcDefinition {
1469
1469
  * <p>Pairs every signal specified in your vehicle model with a signal decoder.</p>
1470
1470
  * @public
1471
1471
  */
1472
- signalsMap?: Record<string, string>;
1472
+ signalsMap?: Record<string, string> | undefined;
1473
1473
  }
1474
1474
  /**
1475
1475
  * <p>A single controller area network (CAN) device interface.</p>
@@ -1485,12 +1485,12 @@ export interface CanInterface {
1485
1485
  * <p>The name of the communication protocol for the interface.</p>
1486
1486
  * @public
1487
1487
  */
1488
- protocolName?: string;
1488
+ protocolName?: string | undefined;
1489
1489
  /**
1490
1490
  * <p>The version of the communication protocol for the interface.</p>
1491
1491
  * @public
1492
1492
  */
1493
- protocolVersion?: string;
1493
+ protocolVersion?: string | undefined;
1494
1494
  }
1495
1495
  /**
1496
1496
  * <p>Information about a single controller area network (CAN) signal and the messages it
@@ -1541,7 +1541,7 @@ export interface CanSignal {
1541
1541
  * <p>The name of the signal.</p>
1542
1542
  * @public
1543
1543
  */
1544
- name?: string;
1544
+ name?: string | undefined;
1545
1545
  }
1546
1546
  /**
1547
1547
  * @public
@@ -1569,7 +1569,7 @@ export interface CloudWatchLogDeliveryOptions {
1569
1569
  * <p>The Amazon CloudWatch Logs group the operation sends data to.</p>
1570
1570
  * @public
1571
1571
  */
1572
- logGroupName?: string;
1572
+ logGroupName?: string | undefined;
1573
1573
  }
1574
1574
  /**
1575
1575
  * <p>A network interface that specifies the On-board diagnostic (OBD) II network protocol.</p>
@@ -1590,27 +1590,27 @@ export interface ObdInterface {
1590
1590
  * <p>The standard OBD II PID.</p>
1591
1591
  * @public
1592
1592
  */
1593
- obdStandard?: string;
1593
+ obdStandard?: string | undefined;
1594
1594
  /**
1595
1595
  * <p>The maximum number message requests per second.</p>
1596
1596
  * @public
1597
1597
  */
1598
- pidRequestIntervalSeconds?: number;
1598
+ pidRequestIntervalSeconds?: number | undefined;
1599
1599
  /**
1600
1600
  * <p>The maximum number message requests per diagnostic trouble code per second.</p>
1601
1601
  * @public
1602
1602
  */
1603
- dtcRequestIntervalSeconds?: number;
1603
+ dtcRequestIntervalSeconds?: number | undefined;
1604
1604
  /**
1605
1605
  * <p>Whether to use extended IDs in the message.</p>
1606
1606
  * @public
1607
1607
  */
1608
- useExtendedIds?: boolean;
1608
+ useExtendedIds?: boolean | undefined;
1609
1609
  /**
1610
1610
  * <p>Whether the vehicle has a transmission control module (TCM).</p>
1611
1611
  * @public
1612
1612
  */
1613
- hasTransmissionEcu?: boolean;
1613
+ hasTransmissionEcu?: boolean | undefined;
1614
1614
  }
1615
1615
  /**
1616
1616
  * @public
@@ -1679,18 +1679,18 @@ export interface NetworkInterface {
1679
1679
  * protocol.</p>
1680
1680
  * @public
1681
1681
  */
1682
- canInterface?: CanInterface;
1682
+ canInterface?: CanInterface | undefined;
1683
1683
  /**
1684
1684
  * <p>Information about a network interface specified by the On-board diagnostic (OBD) II
1685
1685
  * protocol.</p>
1686
1686
  * @public
1687
1687
  */
1688
- obdInterface?: ObdInterface;
1688
+ obdInterface?: ObdInterface | undefined;
1689
1689
  /**
1690
1690
  * <p>The vehicle middleware defined as a type of network interface. Examples of vehicle middleware include <code>ROS2</code> and <code>SOME/IP</code>.</p>
1691
1691
  * @public
1692
1692
  */
1693
- vehicleMiddleware?: VehicleMiddleware;
1693
+ vehicleMiddleware?: VehicleMiddleware | undefined;
1694
1694
  }
1695
1695
  /**
1696
1696
  * @public
@@ -1731,17 +1731,17 @@ export interface ROS2PrimitiveMessageDefinition {
1731
1731
  * <p>The offset used to calculate the signal value. Combined with scaling, the calculation is <code>value = raw_value * scaling + offset</code>.</p>
1732
1732
  * @public
1733
1733
  */
1734
- offset?: number;
1734
+ offset?: number | undefined;
1735
1735
  /**
1736
1736
  * <p>A multiplier used to decode the message.</p>
1737
1737
  * @public
1738
1738
  */
1739
- scaling?: number;
1739
+ scaling?: number | undefined;
1740
1740
  /**
1741
1741
  * <p>An optional attribute specifying the upper bound for <code>STRING</code> and <code>WSTRING</code>.</p>
1742
1742
  * @public
1743
1743
  */
1744
- upperBound?: number;
1744
+ upperBound?: number | undefined;
1745
1745
  }
1746
1746
  /**
1747
1747
  * <p>Represents a primitive type node of the complex data structure.</p>
@@ -1831,12 +1831,12 @@ export interface ObdSignal {
1831
1831
  * <p>The number of positions to shift bits in the message.</p>
1832
1832
  * @public
1833
1833
  */
1834
- bitRightShift?: number;
1834
+ bitRightShift?: number | undefined;
1835
1835
  /**
1836
1836
  * <p>The number of bits to mask in a message.</p>
1837
1837
  * @public
1838
1838
  */
1839
- bitMaskLength?: number;
1839
+ bitMaskLength?: number | undefined;
1840
1840
  }
1841
1841
  /**
1842
1842
  * @public
@@ -1892,12 +1892,12 @@ export interface InvalidNetworkInterface {
1892
1892
  * <p>The ID of the interface that isn't valid.</p>
1893
1893
  * @public
1894
1894
  */
1895
- interfaceId?: string;
1895
+ interfaceId?: string | undefined;
1896
1896
  /**
1897
1897
  * <p>A message about why the interface isn't valid. </p>
1898
1898
  * @public
1899
1899
  */
1900
- reason?: NetworkInterfaceFailureReason;
1900
+ reason?: NetworkInterfaceFailureReason | undefined;
1901
1901
  }
1902
1902
  /**
1903
1903
  * @public
@@ -1933,17 +1933,17 @@ export interface InvalidSignalDecoder {
1933
1933
  * <p>The name of a signal decoder that isn't valid.</p>
1934
1934
  * @public
1935
1935
  */
1936
- name?: string;
1936
+ name?: string | undefined;
1937
1937
  /**
1938
1938
  * <p>A message about why the signal decoder isn't valid.</p>
1939
1939
  * @public
1940
1940
  */
1941
- reason?: SignalDecoderFailureReason;
1941
+ reason?: SignalDecoderFailureReason | undefined;
1942
1942
  /**
1943
1943
  * <p>The possible cause for the invalid signal decoder.</p>
1944
1944
  * @public
1945
1945
  */
1946
- hint?: string;
1946
+ hint?: string | undefined;
1947
1947
  }
1948
1948
  /**
1949
1949
  * <p>The request couldn't be completed because it contains signal decoders with one or more validation errors.</p>
@@ -1956,12 +1956,12 @@ export declare class DecoderManifestValidationException extends __BaseException
1956
1956
  * <p>The request couldn't be completed because of invalid signals in the request.</p>
1957
1957
  * @public
1958
1958
  */
1959
- invalidSignals?: InvalidSignalDecoder[];
1959
+ invalidSignals?: InvalidSignalDecoder[] | undefined;
1960
1960
  /**
1961
1961
  * <p>The request couldn't be completed because of invalid network interfaces in the request.</p>
1962
1962
  * @public
1963
1963
  */
1964
- invalidNetworkInterfaces?: InvalidNetworkInterface[];
1964
+ invalidNetworkInterfaces?: InvalidNetworkInterface[] | undefined;
1965
1965
  /**
1966
1966
  * @internal
1967
1967
  */
@@ -1980,7 +1980,7 @@ export interface CreateFleetRequest {
1980
1980
  * <p> A brief description of the fleet to create. </p>
1981
1981
  * @public
1982
1982
  */
1983
- description?: string;
1983
+ description?: string | undefined;
1984
1984
  /**
1985
1985
  * <p> The Amazon Resource Name (ARN) of a signal catalog. </p>
1986
1986
  * @public
@@ -1990,7 +1990,7 @@ export interface CreateFleetRequest {
1990
1990
  * <p>Metadata that can be used to manage the fleet.</p>
1991
1991
  * @public
1992
1992
  */
1993
- tags?: Tag[];
1993
+ tags?: Tag[] | undefined;
1994
1994
  }
1995
1995
  /**
1996
1996
  * @public
@@ -2020,7 +2020,7 @@ export interface CreateModelManifestRequest {
2020
2020
  * <p> A brief description of the vehicle model. </p>
2021
2021
  * @public
2022
2022
  */
2023
- description?: string;
2023
+ description?: string | undefined;
2024
2024
  /**
2025
2025
  * <p> A list of nodes, which are a general abstraction of signals. </p>
2026
2026
  * @public
@@ -2035,7 +2035,7 @@ export interface CreateModelManifestRequest {
2035
2035
  * <p>Metadata that can be used to manage the vehicle model.</p>
2036
2036
  * @public
2037
2037
  */
2038
- tags?: Tag[];
2038
+ tags?: Tag[] | undefined;
2039
2039
  }
2040
2040
  /**
2041
2041
  * @public
@@ -2061,12 +2061,12 @@ export interface InvalidSignal {
2061
2061
  * <p>The name of the signal that isn't valid.</p>
2062
2062
  * @public
2063
2063
  */
2064
- name?: string;
2064
+ name?: string | undefined;
2065
2065
  /**
2066
2066
  * <p>A message about why the signal isn't valid.</p>
2067
2067
  * @public
2068
2068
  */
2069
- reason?: string;
2069
+ reason?: string | undefined;
2070
2070
  }
2071
2071
  /**
2072
2072
  * <p>The request couldn't be completed because it contains signals that aren't valid.</p>
@@ -2079,7 +2079,7 @@ export declare class InvalidSignalsException extends __BaseException {
2079
2079
  * <p>The signals which caused the exception.</p>
2080
2080
  * @public
2081
2081
  */
2082
- invalidSignals?: InvalidSignal[];
2082
+ invalidSignals?: InvalidSignal[] | undefined;
2083
2083
  /**
2084
2084
  * @internal
2085
2085
  */
@@ -2116,27 +2116,27 @@ export interface CustomProperty {
2116
2116
  * <p>Indicates whether the property is binary data.</p>
2117
2117
  * @public
2118
2118
  */
2119
- dataEncoding?: NodeDataEncoding;
2119
+ dataEncoding?: NodeDataEncoding | undefined;
2120
2120
  /**
2121
2121
  * <p>A brief description of the custom property.</p>
2122
2122
  * @public
2123
2123
  */
2124
- description?: string;
2124
+ description?: string | undefined;
2125
2125
  /**
2126
2126
  * <p>The deprecation message for the node or the branch that was moved or deleted.</p>
2127
2127
  * @public
2128
2128
  */
2129
- deprecationMessage?: string;
2129
+ deprecationMessage?: string | undefined;
2130
2130
  /**
2131
2131
  * <p>A comment in addition to the description.</p>
2132
2132
  * @public
2133
2133
  */
2134
- comment?: string;
2134
+ comment?: string | undefined;
2135
2135
  /**
2136
2136
  * <p>The fully qualified name of the struct node for the custom property if the data type of the custom property is <code>Struct</code> or <code>StructArray</code>. </p>
2137
2137
  * @public
2138
2138
  */
2139
- structFullyQualifiedName?: string;
2139
+ structFullyQualifiedName?: string | undefined;
2140
2140
  }
2141
2141
  /**
2142
2142
  * <p>An input component that reports the environmental condition of a vehicle.</p>
@@ -2162,42 +2162,42 @@ export interface Sensor {
2162
2162
  * <p>A brief description of a sensor.</p>
2163
2163
  * @public
2164
2164
  */
2165
- description?: string;
2165
+ description?: string | undefined;
2166
2166
  /**
2167
2167
  * <p>The scientific unit of measurement for data collected by the sensor.</p>
2168
2168
  * @public
2169
2169
  */
2170
- unit?: string;
2170
+ unit?: string | undefined;
2171
2171
  /**
2172
2172
  * <p>A list of possible values a sensor can take.</p>
2173
2173
  * @public
2174
2174
  */
2175
- allowedValues?: string[];
2175
+ allowedValues?: string[] | undefined;
2176
2176
  /**
2177
2177
  * <p>The specified possible minimum value of the sensor.</p>
2178
2178
  * @public
2179
2179
  */
2180
- min?: number;
2180
+ min?: number | undefined;
2181
2181
  /**
2182
2182
  * <p>The specified possible maximum value of the sensor.</p>
2183
2183
  * @public
2184
2184
  */
2185
- max?: number;
2185
+ max?: number | undefined;
2186
2186
  /**
2187
2187
  * <p>The deprecation message for the node or the branch that was moved or deleted.</p>
2188
2188
  * @public
2189
2189
  */
2190
- deprecationMessage?: string;
2190
+ deprecationMessage?: string | undefined;
2191
2191
  /**
2192
2192
  * <p>A comment in addition to the description.</p>
2193
2193
  * @public
2194
2194
  */
2195
- comment?: string;
2195
+ comment?: string | undefined;
2196
2196
  /**
2197
2197
  * <p>The fully qualified name of the struct node for a sensor if the data type of the actuator is <code>Struct</code> or <code>StructArray</code>. For example, the struct fully qualified name of a sensor might be <code>Vehicle.ADAS.CameraStruct</code>.</p>
2198
2198
  * @public
2199
2199
  */
2200
- structFullyQualifiedName?: string;
2200
+ structFullyQualifiedName?: string | undefined;
2201
2201
  }
2202
2202
  /**
2203
2203
  * <p>The custom structure represents a complex or higher-order data structure.</p>
@@ -2213,17 +2213,17 @@ export interface CustomStruct {
2213
2213
  * <p>A brief description of the custom structure.</p>
2214
2214
  * @public
2215
2215
  */
2216
- description?: string;
2216
+ description?: string | undefined;
2217
2217
  /**
2218
2218
  * <p>The deprecation message for the node or the branch that was moved or deleted.</p>
2219
2219
  * @public
2220
2220
  */
2221
- deprecationMessage?: string;
2221
+ deprecationMessage?: string | undefined;
2222
2222
  /**
2223
2223
  * <p>A comment in addition to the description.</p>
2224
2224
  * @public
2225
2225
  */
2226
- comment?: string;
2226
+ comment?: string | undefined;
2227
2227
  }
2228
2228
  /**
2229
2229
  * <p>A general abstraction of a signal. A node can be specified as an actuator, attribute,
@@ -2362,18 +2362,18 @@ export interface CreateSignalCatalogRequest {
2362
2362
  * <p>A brief description of the signal catalog.</p>
2363
2363
  * @public
2364
2364
  */
2365
- description?: string;
2365
+ description?: string | undefined;
2366
2366
  /**
2367
2367
  * <p> A list of information about nodes, which are a general abstraction of signals. For
2368
2368
  * more information, see the API data type.</p>
2369
2369
  * @public
2370
2370
  */
2371
- nodes?: Node[];
2371
+ nodes?: Node[] | undefined;
2372
2372
  /**
2373
2373
  * <p>Metadata that can be used to manage the signal catalog.</p>
2374
2374
  * @public
2375
2375
  */
2376
- tags?: Tag[];
2376
+ tags?: Tag[] | undefined;
2377
2377
  }
2378
2378
  /**
2379
2379
  * @public
@@ -2402,12 +2402,12 @@ export declare class InvalidNodeException extends __BaseException {
2402
2402
  * <p>The specified node type isn't valid.</p>
2403
2403
  * @public
2404
2404
  */
2405
- invalidNodes?: Node[];
2405
+ invalidNodes?: Node[] | undefined;
2406
2406
  /**
2407
2407
  * <p>The reason the node validation failed.</p>
2408
2408
  * @public
2409
2409
  */
2410
- reason?: string;
2410
+ reason?: string | undefined;
2411
2411
  /**
2412
2412
  * @internal
2413
2413
  */
@@ -2439,7 +2439,7 @@ export interface CreateVehicleRequest {
2439
2439
  * <p>A campaign must include the keys (attribute names) in <code>dataExtraDimensions</code> for them to display in Amazon Timestream.</p>
2440
2440
  * @public
2441
2441
  */
2442
- attributes?: Record<string, string>;
2442
+ attributes?: Record<string, string> | undefined;
2443
2443
  /**
2444
2444
  * <p> An option to create a new Amazon Web Services IoT thing when creating a vehicle, or to validate an
2445
2445
  * existing Amazon Web Services IoT thing as a vehicle. </p>
@@ -2447,12 +2447,12 @@ export interface CreateVehicleRequest {
2447
2447
  * </p>
2448
2448
  * @public
2449
2449
  */
2450
- associationBehavior?: VehicleAssociationBehavior;
2450
+ associationBehavior?: VehicleAssociationBehavior | undefined;
2451
2451
  /**
2452
2452
  * <p>Metadata that can be used to manage the vehicle.</p>
2453
2453
  * @public
2454
2454
  */
2455
- tags?: Tag[];
2455
+ tags?: Tag[] | undefined;
2456
2456
  }
2457
2457
  /**
2458
2458
  * @public
@@ -2462,17 +2462,17 @@ export interface CreateVehicleResponse {
2462
2462
  * <p>The unique ID of the created vehicle.</p>
2463
2463
  * @public
2464
2464
  */
2465
- vehicleName?: string;
2465
+ vehicleName?: string | undefined;
2466
2466
  /**
2467
2467
  * <p> The ARN of the created vehicle. </p>
2468
2468
  * @public
2469
2469
  */
2470
- arn?: string;
2470
+ arn?: string | undefined;
2471
2471
  /**
2472
2472
  * <p> The ARN of a created or validated Amazon Web Services IoT thing. </p>
2473
2473
  * @public
2474
2474
  */
2475
- thingArn?: string;
2475
+ thingArn?: string | undefined;
2476
2476
  }
2477
2477
  /**
2478
2478
  * @public
@@ -2541,20 +2541,20 @@ export interface GetDecoderManifestResponse {
2541
2541
  * <p> A brief description of the decoder manifest.</p>
2542
2542
  * @public
2543
2543
  */
2544
- description?: string;
2544
+ description?: string | undefined;
2545
2545
  /**
2546
2546
  * <p> The ARN of a vehicle model (model manifest) associated with the decoder
2547
2547
  * manifest.</p>
2548
2548
  * @public
2549
2549
  */
2550
- modelManifestArn?: string;
2550
+ modelManifestArn?: string | undefined;
2551
2551
  /**
2552
2552
  * <p> The state of the decoder manifest. If the status is <code>ACTIVE</code>, the decoder
2553
2553
  * manifest can't be edited. If the status is marked <code>DRAFT</code>, you can edit the
2554
2554
  * decoder manifest.</p>
2555
2555
  * @public
2556
2556
  */
2557
- status?: ManifestStatus;
2557
+ status?: ManifestStatus | undefined;
2558
2558
  /**
2559
2559
  * <p> The time the decoder manifest was created in seconds since epoch (January 1, 1970 at midnight UTC time). </p>
2560
2560
  * @public
@@ -2569,7 +2569,7 @@ export interface GetDecoderManifestResponse {
2569
2569
  * <p>The detailed message for the decoder manifest. When a decoder manifest is in an <code>INVALID</code> status, the message contains detailed reason and help information.</p>
2570
2570
  * @public
2571
2571
  */
2572
- message?: string;
2572
+ message?: string | undefined;
2573
2573
  }
2574
2574
  /**
2575
2575
  * <p>Specifications for defining a vehicle network.</p>
@@ -2646,12 +2646,12 @@ export interface ListDecoderManifestNetworkInterfacesRequest {
2646
2646
  * <p>If the results of a search are large, only a portion of the results are returned, and a <code>nextToken</code> pagination token is returned in the response. To retrieve the next set of results, reissue the search request and include the returned token. When all results have been returned, the response does not contain a pagination token value. </p>
2647
2647
  * @public
2648
2648
  */
2649
- nextToken?: string;
2649
+ nextToken?: string | undefined;
2650
2650
  /**
2651
2651
  * <p> The maximum number of items to return, between 1 and 100, inclusive. </p>
2652
2652
  * @public
2653
2653
  */
2654
- maxResults?: number;
2654
+ maxResults?: number | undefined;
2655
2655
  }
2656
2656
  /**
2657
2657
  * @public
@@ -2661,12 +2661,12 @@ export interface ListDecoderManifestNetworkInterfacesResponse {
2661
2661
  * <p> A list of information about network interfaces. </p>
2662
2662
  * @public
2663
2663
  */
2664
- networkInterfaces?: NetworkInterface[];
2664
+ networkInterfaces?: NetworkInterface[] | undefined;
2665
2665
  /**
2666
2666
  * <p> The token to retrieve the next set of results, or <code>null</code> if there are no more results. </p>
2667
2667
  * @public
2668
2668
  */
2669
- nextToken?: string;
2669
+ nextToken?: string | undefined;
2670
2670
  }
2671
2671
  /**
2672
2672
  * @public
@@ -2677,18 +2677,18 @@ export interface ListDecoderManifestsRequest {
2677
2677
  * the decoder manifest. </p>
2678
2678
  * @public
2679
2679
  */
2680
- modelManifestArn?: string;
2680
+ modelManifestArn?: string | undefined;
2681
2681
  /**
2682
2682
  * <p>A pagination token for the next set of results.</p>
2683
2683
  * <p>If the results of a search are large, only a portion of the results are returned, and a <code>nextToken</code> pagination token is returned in the response. To retrieve the next set of results, reissue the search request and include the returned token. When all results have been returned, the response does not contain a pagination token value. </p>
2684
2684
  * @public
2685
2685
  */
2686
- nextToken?: string;
2686
+ nextToken?: string | undefined;
2687
2687
  /**
2688
2688
  * <p> The maximum number of items to return, between 1 and 100, inclusive. </p>
2689
2689
  * @public
2690
2690
  */
2691
- maxResults?: number;
2691
+ maxResults?: number | undefined;
2692
2692
  }
2693
2693
  /**
2694
2694
  * <p>Information about a created decoder manifest. You can use the API operation to return this information about
@@ -2700,31 +2700,31 @@ export interface DecoderManifestSummary {
2700
2700
  * <p>The name of the decoder manifest.</p>
2701
2701
  * @public
2702
2702
  */
2703
- name?: string;
2703
+ name?: string | undefined;
2704
2704
  /**
2705
2705
  * <p>The ARN of a vehicle model (model manifest) associated with the decoder manifest.
2706
2706
  * </p>
2707
2707
  * @public
2708
2708
  */
2709
- arn?: string;
2709
+ arn?: string | undefined;
2710
2710
  /**
2711
2711
  * <p>The ARN of a vehicle model (model manifest) associated with the decoder
2712
2712
  * manifest.</p>
2713
2713
  * @public
2714
2714
  */
2715
- modelManifestArn?: string;
2715
+ modelManifestArn?: string | undefined;
2716
2716
  /**
2717
2717
  * <p>A brief description of the decoder manifest.</p>
2718
2718
  * @public
2719
2719
  */
2720
- description?: string;
2720
+ description?: string | undefined;
2721
2721
  /**
2722
2722
  * <p>The state of the decoder manifest. If the status is <code>ACTIVE</code>, the decoder
2723
2723
  * manifest can't be edited. If the status is marked <code>DRAFT</code>, you can edit the
2724
2724
  * decoder manifest.</p>
2725
2725
  * @public
2726
2726
  */
2727
- status?: ManifestStatus;
2727
+ status?: ManifestStatus | undefined;
2728
2728
  /**
2729
2729
  * <p>The time the decoder manifest was created in seconds since epoch (January 1, 1970 at
2730
2730
  * midnight UTC time).</p>
@@ -2741,7 +2741,7 @@ export interface DecoderManifestSummary {
2741
2741
  * <p>The detailed message for the decoder manifest. When a decoder manifest is in an <code>INVALID</code> status, the message contains detailed reason and help information.</p>
2742
2742
  * @public
2743
2743
  */
2744
- message?: string;
2744
+ message?: string | undefined;
2745
2745
  }
2746
2746
  /**
2747
2747
  * @public
@@ -2751,12 +2751,12 @@ export interface ListDecoderManifestsResponse {
2751
2751
  * <p> A list of information about each decoder manifest. </p>
2752
2752
  * @public
2753
2753
  */
2754
- summaries?: DecoderManifestSummary[];
2754
+ summaries?: DecoderManifestSummary[] | undefined;
2755
2755
  /**
2756
2756
  * <p> The token to retrieve the next set of results, or <code>null</code> if there are no more results. </p>
2757
2757
  * @public
2758
2758
  */
2759
- nextToken?: string;
2759
+ nextToken?: string | undefined;
2760
2760
  }
2761
2761
  /**
2762
2762
  * @public
@@ -2772,12 +2772,12 @@ export interface ListDecoderManifestSignalsRequest {
2772
2772
  * <p>If the results of a search are large, only a portion of the results are returned, and a <code>nextToken</code> pagination token is returned in the response. To retrieve the next set of results, reissue the search request and include the returned token. When all results have been returned, the response does not contain a pagination token value. </p>
2773
2773
  * @public
2774
2774
  */
2775
- nextToken?: string;
2775
+ nextToken?: string | undefined;
2776
2776
  /**
2777
2777
  * <p> The maximum number of items to return, between 1 and 100, inclusive. </p>
2778
2778
  * @public
2779
2779
  */
2780
- maxResults?: number;
2780
+ maxResults?: number | undefined;
2781
2781
  }
2782
2782
  /**
2783
2783
  * @public
@@ -2812,12 +2812,12 @@ export interface DeleteFleetResponse {
2812
2812
  * <p>The ID of the deleted fleet.</p>
2813
2813
  * @public
2814
2814
  */
2815
- id?: string;
2815
+ id?: string | undefined;
2816
2816
  /**
2817
2817
  * <p>The Amazon Resource Name (ARN) of the deleted fleet.</p>
2818
2818
  * @public
2819
2819
  */
2820
- arn?: string;
2820
+ arn?: string | undefined;
2821
2821
  }
2822
2822
  /**
2823
2823
  * @public
@@ -2953,12 +2953,12 @@ export interface ListFleetsForVehicleRequest {
2953
2953
  * <p>If the results of a search are large, only a portion of the results are returned, and a <code>nextToken</code> pagination token is returned in the response. To retrieve the next set of results, reissue the search request and include the returned token. When all results have been returned, the response does not contain a pagination token value. </p>
2954
2954
  * @public
2955
2955
  */
2956
- nextToken?: string;
2956
+ nextToken?: string | undefined;
2957
2957
  /**
2958
2958
  * <p> The maximum number of items to return, between 1 and 100, inclusive. </p>
2959
2959
  * @public
2960
2960
  */
2961
- maxResults?: number;
2961
+ maxResults?: number | undefined;
2962
2962
  }
2963
2963
  /**
2964
2964
  * @public
@@ -2968,12 +2968,12 @@ export interface ListFleetsForVehicleResponse {
2968
2968
  * <p> A list of fleet IDs that the vehicle is associated with. </p>
2969
2969
  * @public
2970
2970
  */
2971
- fleets?: string[];
2971
+ fleets?: string[] | undefined;
2972
2972
  /**
2973
2973
  * <p> The token to retrieve the next set of results, or <code>null</code> if there are no more results. </p>
2974
2974
  * @public
2975
2975
  */
2976
- nextToken?: string;
2976
+ nextToken?: string | undefined;
2977
2977
  }
2978
2978
  /**
2979
2979
  * @public
@@ -3003,7 +3003,7 @@ export interface GetFleetResponse {
3003
3003
  * <p> A brief description of the fleet. </p>
3004
3004
  * @public
3005
3005
  */
3006
- description?: string;
3006
+ description?: string | undefined;
3007
3007
  /**
3008
3008
  * <p> The ARN of a signal catalog associated with the fleet. </p>
3009
3009
  * @public
@@ -3031,12 +3031,12 @@ export interface ListFleetsRequest {
3031
3031
  * <p>If the results of a search are large, only a portion of the results are returned, and a <code>nextToken</code> pagination token is returned in the response. To retrieve the next set of results, reissue the search request and include the returned token. When all results have been returned, the response does not contain a pagination token value. </p>
3032
3032
  * @public
3033
3033
  */
3034
- nextToken?: string;
3034
+ nextToken?: string | undefined;
3035
3035
  /**
3036
3036
  * <p> The maximum number of items to return, between 1 and 100, inclusive. </p>
3037
3037
  * @public
3038
3038
  */
3039
- maxResults?: number;
3039
+ maxResults?: number | undefined;
3040
3040
  }
3041
3041
  /**
3042
3042
  * <p>Information about a fleet.</p>
@@ -3059,7 +3059,7 @@ export interface FleetSummary {
3059
3059
  * <p>A brief description of the fleet.</p>
3060
3060
  * @public
3061
3061
  */
3062
- description?: string;
3062
+ description?: string | undefined;
3063
3063
  /**
3064
3064
  * <p>The ARN of the signal catalog associated with the fleet.</p>
3065
3065
  * @public
@@ -3076,7 +3076,7 @@ export interface FleetSummary {
3076
3076
  * midnight UTC time).</p>
3077
3077
  * @public
3078
3078
  */
3079
- lastModificationTime?: Date;
3079
+ lastModificationTime?: Date | undefined;
3080
3080
  }
3081
3081
  /**
3082
3082
  * @public
@@ -3086,12 +3086,12 @@ export interface ListFleetsResponse {
3086
3086
  * <p> A list of information for each fleet. </p>
3087
3087
  * @public
3088
3088
  */
3089
- fleetSummaries?: FleetSummary[];
3089
+ fleetSummaries?: FleetSummary[] | undefined;
3090
3090
  /**
3091
3091
  * <p> The token to retrieve the next set of results, or <code>null</code> if there are no more results. </p>
3092
3092
  * @public
3093
3093
  */
3094
- nextToken?: string;
3094
+ nextToken?: string | undefined;
3095
3095
  }
3096
3096
  /**
3097
3097
  * @public
@@ -3106,7 +3106,7 @@ export interface UpdateFleetRequest {
3106
3106
  * <p> An updated description of the fleet. </p>
3107
3107
  * @public
3108
3108
  */
3109
- description?: string;
3109
+ description?: string | undefined;
3110
3110
  }
3111
3111
  /**
3112
3112
  * @public
@@ -3116,12 +3116,12 @@ export interface UpdateFleetResponse {
3116
3116
  * <p>The ID of the updated fleet.</p>
3117
3117
  * @public
3118
3118
  */
3119
- id?: string;
3119
+ id?: string | undefined;
3120
3120
  /**
3121
3121
  * <p>The Amazon Resource Name (ARN) of the updated fleet.</p>
3122
3122
  * @public
3123
3123
  */
3124
- arn?: string;
3124
+ arn?: string | undefined;
3125
3125
  }
3126
3126
  /**
3127
3127
  * @public
@@ -3137,12 +3137,12 @@ export interface ListVehiclesInFleetRequest {
3137
3137
  * <p>If the results of a search are large, only a portion of the results are returned, and a <code>nextToken</code> pagination token is returned in the response. To retrieve the next set of results, reissue the search request and include the returned token. When all results have been returned, the response does not contain a pagination token value. </p>
3138
3138
  * @public
3139
3139
  */
3140
- nextToken?: string;
3140
+ nextToken?: string | undefined;
3141
3141
  /**
3142
3142
  * <p> The maximum number of items to return, between 1 and 100, inclusive. </p>
3143
3143
  * @public
3144
3144
  */
3145
- maxResults?: number;
3145
+ maxResults?: number | undefined;
3146
3146
  }
3147
3147
  /**
3148
3148
  * @public
@@ -3152,12 +3152,12 @@ export interface ListVehiclesInFleetResponse {
3152
3152
  * <p> A list of vehicles associated with the fleet. </p>
3153
3153
  * @public
3154
3154
  */
3155
- vehicles?: string[];
3155
+ vehicles?: string[] | undefined;
3156
3156
  /**
3157
3157
  * <p> The token to retrieve the next set of results, or <code>null</code> if there are no more results. </p>
3158
3158
  * @public
3159
3159
  */
3160
- nextToken?: string;
3160
+ nextToken?: string | undefined;
3161
3161
  }
3162
3162
  /**
3163
3163
  * <p>
@@ -3205,7 +3205,7 @@ export interface GetEncryptionConfigurationResponse {
3205
3205
  * <p>The ID of the KMS key that is used for encryption.</p>
3206
3206
  * @public
3207
3207
  */
3208
- kmsKeyId?: string;
3208
+ kmsKeyId?: string | undefined;
3209
3209
  /**
3210
3210
  * <p>The encryption status.</p>
3211
3211
  * @public
@@ -3220,17 +3220,17 @@ export interface GetEncryptionConfigurationResponse {
3220
3220
  * <p>The error message that describes why encryption settings couldn't be configured, if applicable.</p>
3221
3221
  * @public
3222
3222
  */
3223
- errorMessage?: string;
3223
+ errorMessage?: string | undefined;
3224
3224
  /**
3225
3225
  * <p>The time when encryption was configured in seconds since epoch (January 1, 1970 at midnight UTC time).</p>
3226
3226
  * @public
3227
3227
  */
3228
- creationTime?: Date;
3228
+ creationTime?: Date | undefined;
3229
3229
  /**
3230
3230
  * <p>The time when encryption was last updated in seconds since epoch (January 1, 1970 at midnight UTC time).</p>
3231
3231
  * @public
3232
3232
  */
3233
- lastModificationTime?: Date;
3233
+ lastModificationTime?: Date | undefined;
3234
3234
  }
3235
3235
  /**
3236
3236
  * @public
@@ -3275,19 +3275,19 @@ export interface GetModelManifestResponse {
3275
3275
  * <p> A brief description of the vehicle model. </p>
3276
3276
  * @public
3277
3277
  */
3278
- description?: string;
3278
+ description?: string | undefined;
3279
3279
  /**
3280
3280
  * <p> The ARN of the signal catalog associated with the vehicle model. </p>
3281
3281
  * @public
3282
3282
  */
3283
- signalCatalogArn?: string;
3283
+ signalCatalogArn?: string | undefined;
3284
3284
  /**
3285
3285
  * <p> The state of the vehicle model. If the status is <code>ACTIVE</code>, the vehicle
3286
3286
  * model can't be edited. You can edit the vehicle model if the status is marked
3287
3287
  * <code>DRAFT</code>.</p>
3288
3288
  * @public
3289
3289
  */
3290
- status?: ManifestStatus;
3290
+ status?: ManifestStatus | undefined;
3291
3291
  /**
3292
3292
  * <p>The time the vehicle model was created, in seconds since epoch (January 1, 1970 at
3293
3293
  * midnight UTC time).</p>
@@ -3340,7 +3340,7 @@ export interface IamRegistrationResponse {
3340
3340
  * <p>A message associated with a registration error.</p>
3341
3341
  * @public
3342
3342
  */
3343
- errorMessage?: string;
3343
+ errorMessage?: string | undefined;
3344
3344
  }
3345
3345
  /**
3346
3346
  * <p>Information about the registered Amazon Timestream resources or errors, if any.</p>
@@ -3361,12 +3361,12 @@ export interface TimestreamRegistrationResponse {
3361
3361
  * <p>The Amazon Resource Name (ARN) of the Timestream database.</p>
3362
3362
  * @public
3363
3363
  */
3364
- timestreamDatabaseArn?: string;
3364
+ timestreamDatabaseArn?: string | undefined;
3365
3365
  /**
3366
3366
  * <p>The ARN of the Timestream database table.</p>
3367
3367
  * @public
3368
3368
  */
3369
- timestreamTableArn?: string;
3369
+ timestreamTableArn?: string | undefined;
3370
3370
  /**
3371
3371
  * <p>The status of registering your Amazon Timestream resources. The status can be one of
3372
3372
  * <code>REGISTRATION_SUCCESS</code>, <code>REGISTRATION_PENDING</code>,
@@ -3378,7 +3378,7 @@ export interface TimestreamRegistrationResponse {
3378
3378
  * <p>A message associated with a registration error.</p>
3379
3379
  * @public
3380
3380
  */
3381
- errorMessage?: string;
3381
+ errorMessage?: string | undefined;
3382
3382
  }
3383
3383
  /**
3384
3384
  * @public
@@ -3416,7 +3416,7 @@ export interface GetRegisterAccountStatusResponse {
3416
3416
  * <p> Information about the registered Amazon Timestream resources or errors, if any.</p>
3417
3417
  * @public
3418
3418
  */
3419
- timestreamRegistrationResponse?: TimestreamRegistrationResponse;
3419
+ timestreamRegistrationResponse?: TimestreamRegistrationResponse | undefined;
3420
3420
  /**
3421
3421
  * <p> Information about the registered IAM resources or errors, if any. </p>
3422
3422
  * @public
@@ -3454,37 +3454,37 @@ export interface NodeCounts {
3454
3454
  * <p>The total number of nodes in a vehicle network.</p>
3455
3455
  * @public
3456
3456
  */
3457
- totalNodes?: number;
3457
+ totalNodes?: number | undefined;
3458
3458
  /**
3459
3459
  * <p>The total number of nodes in a vehicle network that represent branches.</p>
3460
3460
  * @public
3461
3461
  */
3462
- totalBranches?: number;
3462
+ totalBranches?: number | undefined;
3463
3463
  /**
3464
3464
  * <p>The total number of nodes in a vehicle network that represent sensors.</p>
3465
3465
  * @public
3466
3466
  */
3467
- totalSensors?: number;
3467
+ totalSensors?: number | undefined;
3468
3468
  /**
3469
3469
  * <p>The total number of nodes in a vehicle network that represent attributes.</p>
3470
3470
  * @public
3471
3471
  */
3472
- totalAttributes?: number;
3472
+ totalAttributes?: number | undefined;
3473
3473
  /**
3474
3474
  * <p>The total number of nodes in a vehicle network that represent actuators.</p>
3475
3475
  * @public
3476
3476
  */
3477
- totalActuators?: number;
3477
+ totalActuators?: number | undefined;
3478
3478
  /**
3479
3479
  * <p>The total structure for the node.</p>
3480
3480
  * @public
3481
3481
  */
3482
- totalStructs?: number;
3482
+ totalStructs?: number | undefined;
3483
3483
  /**
3484
3484
  * <p>The total properties for the node.</p>
3485
3485
  * @public
3486
3486
  */
3487
- totalProperties?: number;
3487
+ totalProperties?: number | undefined;
3488
3488
  }
3489
3489
  /**
3490
3490
  * @public
@@ -3504,12 +3504,12 @@ export interface GetSignalCatalogResponse {
3504
3504
  * <p> A brief description of the signal catalog. </p>
3505
3505
  * @public
3506
3506
  */
3507
- description?: string;
3507
+ description?: string | undefined;
3508
3508
  /**
3509
3509
  * <p> The total number of network nodes specified in a signal catalog. </p>
3510
3510
  * @public
3511
3511
  */
3512
- nodeCounts?: NodeCounts;
3512
+ nodeCounts?: NodeCounts | undefined;
3513
3513
  /**
3514
3514
  * <p> The time the signal catalog was created in seconds since epoch (January 1, 1970 at midnight UTC time). </p>
3515
3515
  * @public
@@ -3539,22 +3539,22 @@ export interface GetVehicleResponse {
3539
3539
  * <p>The ID of the vehicle.</p>
3540
3540
  * @public
3541
3541
  */
3542
- vehicleName?: string;
3542
+ vehicleName?: string | undefined;
3543
3543
  /**
3544
3544
  * <p> The Amazon Resource Name (ARN) of the vehicle to retrieve information about. </p>
3545
3545
  * @public
3546
3546
  */
3547
- arn?: string;
3547
+ arn?: string | undefined;
3548
3548
  /**
3549
3549
  * <p> The ARN of a vehicle model (model manifest) associated with the vehicle. </p>
3550
3550
  * @public
3551
3551
  */
3552
- modelManifestArn?: string;
3552
+ modelManifestArn?: string | undefined;
3553
3553
  /**
3554
3554
  * <p> The ARN of a decoder manifest associated with the vehicle. </p>
3555
3555
  * @public
3556
3556
  */
3557
- decoderManifestArn?: string;
3557
+ decoderManifestArn?: string | undefined;
3558
3558
  /**
3559
3559
  * <p>Static information about a vehicle in a key-value pair. For example:</p>
3560
3560
  * <p>
@@ -3562,17 +3562,17 @@ export interface GetVehicleResponse {
3562
3562
  * </p>
3563
3563
  * @public
3564
3564
  */
3565
- attributes?: Record<string, string>;
3565
+ attributes?: Record<string, string> | undefined;
3566
3566
  /**
3567
3567
  * <p> The time the vehicle was created in seconds since epoch (January 1, 1970 at midnight UTC time). </p>
3568
3568
  * @public
3569
3569
  */
3570
- creationTime?: Date;
3570
+ creationTime?: Date | undefined;
3571
3571
  /**
3572
3572
  * <p> The time the vehicle was last updated in seconds since epoch (January 1, 1970 at midnight UTC time). </p>
3573
3573
  * @public
3574
3574
  */
3575
- lastModificationTime?: Date;
3575
+ lastModificationTime?: Date | undefined;
3576
3576
  }
3577
3577
  /**
3578
3578
  * @public
@@ -3583,12 +3583,12 @@ export interface GetVehicleStatusRequest {
3583
3583
  * <p>If the results of a search are large, only a portion of the results are returned, and a <code>nextToken</code> pagination token is returned in the response. To retrieve the next set of results, reissue the search request and include the returned token. When all results have been returned, the response does not contain a pagination token value. </p>
3584
3584
  * @public
3585
3585
  */
3586
- nextToken?: string;
3586
+ nextToken?: string | undefined;
3587
3587
  /**
3588
3588
  * <p> The maximum number of items to return, between 1 and 100, inclusive. </p>
3589
3589
  * @public
3590
3590
  */
3591
- maxResults?: number;
3591
+ maxResults?: number | undefined;
3592
3592
  /**
3593
3593
  * <p> The ID of the vehicle to retrieve information about. </p>
3594
3594
  * @public
@@ -3620,12 +3620,12 @@ export interface VehicleStatus {
3620
3620
  * <p>The name of a campaign.</p>
3621
3621
  * @public
3622
3622
  */
3623
- campaignName?: string;
3623
+ campaignName?: string | undefined;
3624
3624
  /**
3625
3625
  * <p>The unique ID of the vehicle.</p>
3626
3626
  * @public
3627
3627
  */
3628
- vehicleName?: string;
3628
+ vehicleName?: string | undefined;
3629
3629
  /**
3630
3630
  * <p>The state of a vehicle, which can be one of the following:</p>
3631
3631
  * <ul>
@@ -3656,7 +3656,7 @@ export interface VehicleStatus {
3656
3656
  * </ul>
3657
3657
  * @public
3658
3658
  */
3659
- status?: VehicleState;
3659
+ status?: VehicleState | undefined;
3660
3660
  }
3661
3661
  /**
3662
3662
  * @public
@@ -3666,12 +3666,12 @@ export interface GetVehicleStatusResponse {
3666
3666
  * <p> Lists information about the state of the vehicle with deployed campaigns. </p>
3667
3667
  * @public
3668
3668
  */
3669
- campaigns?: VehicleStatus[];
3669
+ campaigns?: VehicleStatus[] | undefined;
3670
3670
  /**
3671
3671
  * <p> The token to retrieve the next set of results, or <code>null</code> if there are no more results. </p>
3672
3672
  * @public
3673
3673
  */
3674
- nextToken?: string;
3674
+ nextToken?: string | undefined;
3675
3675
  }
3676
3676
  /**
3677
3677
  * <p>The IAM resource that enables Amazon Web Services IoT FleetWise edge agent software to send data to
@@ -3702,18 +3702,18 @@ export interface ImportSignalCatalogRequest {
3702
3702
  * <p> A brief description of the signal catalog. </p>
3703
3703
  * @public
3704
3704
  */
3705
- description?: string;
3705
+ description?: string | undefined;
3706
3706
  /**
3707
3707
  * <p>The contents of the Vehicle Signal Specification (VSS) configuration. VSS is a precise
3708
3708
  * language used to describe and model signals in vehicle networks.</p>
3709
3709
  * @public
3710
3710
  */
3711
- vss?: FormattedVss;
3711
+ vss?: FormattedVss | undefined;
3712
3712
  /**
3713
3713
  * <p>Metadata that can be used to manage the signal catalog.</p>
3714
3714
  * @public
3715
3715
  */
3716
- tags?: Tag[];
3716
+ tags?: Tag[] | undefined;
3717
3717
  }
3718
3718
  /**
3719
3719
  * @public
@@ -3748,7 +3748,7 @@ export interface ListTagsForResourceResponse {
3748
3748
  * <p>The list of tags assigned to the resource.</p>
3749
3749
  * @public
3750
3750
  */
3751
- Tags?: Tag[];
3751
+ Tags?: Tag[] | undefined;
3752
3752
  }
3753
3753
  /**
3754
3754
  * @public
@@ -3764,12 +3764,12 @@ export interface ListModelManifestNodesRequest {
3764
3764
  * <p>If the results of a search are large, only a portion of the results are returned, and a <code>nextToken</code> pagination token is returned in the response. To retrieve the next set of results, reissue the search request and include the returned token. When all results have been returned, the response does not contain a pagination token value. </p>
3765
3765
  * @public
3766
3766
  */
3767
- nextToken?: string;
3767
+ nextToken?: string | undefined;
3768
3768
  /**
3769
3769
  * <p> The maximum number of items to return, between 1 and 100, inclusive. </p>
3770
3770
  * @public
3771
3771
  */
3772
- maxResults?: number;
3772
+ maxResults?: number | undefined;
3773
3773
  }
3774
3774
  /**
3775
3775
  * @public
@@ -3779,12 +3779,12 @@ export interface ListModelManifestNodesResponse {
3779
3779
  * <p> A list of information about nodes. </p>
3780
3780
  * @public
3781
3781
  */
3782
- nodes?: Node[];
3782
+ nodes?: Node[] | undefined;
3783
3783
  /**
3784
3784
  * <p> The token to retrieve the next set of results, or <code>null</code> if there are no more results. </p>
3785
3785
  * @public
3786
3786
  */
3787
- nextToken?: string;
3787
+ nextToken?: string | undefined;
3788
3788
  }
3789
3789
  /**
3790
3790
  * @public
@@ -3795,18 +3795,18 @@ export interface ListModelManifestsRequest {
3795
3795
  * associated with it are returned.</p>
3796
3796
  * @public
3797
3797
  */
3798
- signalCatalogArn?: string;
3798
+ signalCatalogArn?: string | undefined;
3799
3799
  /**
3800
3800
  * <p>A pagination token for the next set of results.</p>
3801
3801
  * <p>If the results of a search are large, only a portion of the results are returned, and a <code>nextToken</code> pagination token is returned in the response. To retrieve the next set of results, reissue the search request and include the returned token. When all results have been returned, the response does not contain a pagination token value. </p>
3802
3802
  * @public
3803
3803
  */
3804
- nextToken?: string;
3804
+ nextToken?: string | undefined;
3805
3805
  /**
3806
3806
  * <p> The maximum number of items to return, between 1 and 100, inclusive. </p>
3807
3807
  * @public
3808
3808
  */
3809
- maxResults?: number;
3809
+ maxResults?: number | undefined;
3810
3810
  }
3811
3811
  /**
3812
3812
  * <p>Information about a vehicle model (model manifest). You can use the API operation to return this information about
@@ -3818,29 +3818,29 @@ export interface ModelManifestSummary {
3818
3818
  * <p>The name of the vehicle model.</p>
3819
3819
  * @public
3820
3820
  */
3821
- name?: string;
3821
+ name?: string | undefined;
3822
3822
  /**
3823
3823
  * <p>The Amazon Resource Name (ARN) of the vehicle model.</p>
3824
3824
  * @public
3825
3825
  */
3826
- arn?: string;
3826
+ arn?: string | undefined;
3827
3827
  /**
3828
3828
  * <p>The ARN of the signal catalog associated with the vehicle model.</p>
3829
3829
  * @public
3830
3830
  */
3831
- signalCatalogArn?: string;
3831
+ signalCatalogArn?: string | undefined;
3832
3832
  /**
3833
3833
  * <p>A brief description of the vehicle model.</p>
3834
3834
  * @public
3835
3835
  */
3836
- description?: string;
3836
+ description?: string | undefined;
3837
3837
  /**
3838
3838
  * <p>The state of the vehicle model. If the status is <code>ACTIVE</code>, the vehicle
3839
3839
  * model can't be edited. If the status is <code>DRAFT</code>, you can edit the vehicle
3840
3840
  * model.</p>
3841
3841
  * @public
3842
3842
  */
3843
- status?: ManifestStatus;
3843
+ status?: ManifestStatus | undefined;
3844
3844
  /**
3845
3845
  * <p>The time the vehicle model was created, in seconds since epoch (January 1, 1970 at
3846
3846
  * midnight UTC time).</p>
@@ -3862,12 +3862,12 @@ export interface ListModelManifestsResponse {
3862
3862
  * <p> A list of information about vehicle models.</p>
3863
3863
  * @public
3864
3864
  */
3865
- summaries?: ModelManifestSummary[];
3865
+ summaries?: ModelManifestSummary[] | undefined;
3866
3866
  /**
3867
3867
  * <p> The token to retrieve the next set of results, or <code>null</code> if there are no more results. </p>
3868
3868
  * @public
3869
3869
  */
3870
- nextToken?: string;
3870
+ nextToken?: string | undefined;
3871
3871
  }
3872
3872
  /**
3873
3873
  * @public
@@ -3882,26 +3882,26 @@ export interface UpdateModelManifestRequest {
3882
3882
  * <p> A brief description of the vehicle model. </p>
3883
3883
  * @public
3884
3884
  */
3885
- description?: string;
3885
+ description?: string | undefined;
3886
3886
  /**
3887
3887
  * <p> A list of <code>fullyQualifiedName</code> of nodes, which are a general abstraction
3888
3888
  * of signals, to add to the vehicle model. </p>
3889
3889
  * @public
3890
3890
  */
3891
- nodesToAdd?: string[];
3891
+ nodesToAdd?: string[] | undefined;
3892
3892
  /**
3893
3893
  * <p> A list of <code>fullyQualifiedName</code> of nodes, which are a general abstraction
3894
3894
  * of signals, to remove from the vehicle model. </p>
3895
3895
  * @public
3896
3896
  */
3897
- nodesToRemove?: string[];
3897
+ nodesToRemove?: string[] | undefined;
3898
3898
  /**
3899
3899
  * <p> The state of the vehicle model. If the status is <code>ACTIVE</code>, the vehicle
3900
3900
  * model can't be edited. If the status is <code>DRAFT</code>, you can edit the vehicle
3901
3901
  * model. </p>
3902
3902
  * @public
3903
3903
  */
3904
- status?: ManifestStatus;
3904
+ status?: ManifestStatus | undefined;
3905
3905
  }
3906
3906
  /**
3907
3907
  * @public
@@ -3926,7 +3926,7 @@ export interface PutEncryptionConfigurationRequest {
3926
3926
  * <p>The ID of the KMS key that is used for encryption.</p>
3927
3927
  * @public
3928
3928
  */
3929
- kmsKeyId?: string;
3929
+ kmsKeyId?: string | undefined;
3930
3930
  /**
3931
3931
  * <p>The type of encryption. Choose <code>KMS_BASED_ENCRYPTION</code> to use a KMS key or <code>FLEETWISE_DEFAULT_ENCRYPTION</code> to use an Amazon Web Services managed key.</p>
3932
3932
  * @public
@@ -3941,7 +3941,7 @@ export interface PutEncryptionConfigurationResponse {
3941
3941
  * <p>The ID of the KMS key that is used for encryption.</p>
3942
3942
  * @public
3943
3943
  */
3944
- kmsKeyId?: string;
3944
+ kmsKeyId?: string | undefined;
3945
3945
  /**
3946
3946
  * <p>The encryption status.</p>
3947
3947
  * @public
@@ -3996,14 +3996,14 @@ export interface RegisterAccountRequest {
3996
3996
  * your vehicle data to.</p>
3997
3997
  * @public
3998
3998
  */
3999
- timestreamResources?: TimestreamResources;
3999
+ timestreamResources?: TimestreamResources | undefined;
4000
4000
  /**
4001
4001
  * @deprecated
4002
4002
  *
4003
4003
  * <p>The IAM resource that allows Amazon Web Services IoT FleetWise to send data to Amazon Timestream.</p>
4004
4004
  * @public
4005
4005
  */
4006
- iamResources?: IamResources;
4006
+ iamResources?: IamResources | undefined;
4007
4007
  }
4008
4008
  /**
4009
4009
  * @public
@@ -4020,7 +4020,7 @@ export interface RegisterAccountResponse {
4020
4020
  * your vehicle data to.</p>
4021
4021
  * @public
4022
4022
  */
4023
- timestreamResources?: TimestreamResources;
4023
+ timestreamResources?: TimestreamResources | undefined;
4024
4024
  /**
4025
4025
  * <p> The registered IAM resource that allows Amazon Web Services IoT FleetWise to send data to Amazon Timestream. </p>
4026
4026
  * @public
@@ -4069,17 +4069,17 @@ export interface ListSignalCatalogNodesRequest {
4069
4069
  * <p>If the results of a search are large, only a portion of the results are returned, and a <code>nextToken</code> pagination token is returned in the response. To retrieve the next set of results, reissue the search request and include the returned token. When all results have been returned, the response does not contain a pagination token value. </p>
4070
4070
  * @public
4071
4071
  */
4072
- nextToken?: string;
4072
+ nextToken?: string | undefined;
4073
4073
  /**
4074
4074
  * <p> The maximum number of items to return, between 1 and 100, inclusive. </p>
4075
4075
  * @public
4076
4076
  */
4077
- maxResults?: number;
4077
+ maxResults?: number | undefined;
4078
4078
  /**
4079
4079
  * <p>The type of node in the signal catalog.</p>
4080
4080
  * @public
4081
4081
  */
4082
- signalNodeType?: SignalNodeType;
4082
+ signalNodeType?: SignalNodeType | undefined;
4083
4083
  }
4084
4084
  /**
4085
4085
  * @public
@@ -4089,12 +4089,12 @@ export interface ListSignalCatalogNodesResponse {
4089
4089
  * <p> A list of information about nodes. </p>
4090
4090
  * @public
4091
4091
  */
4092
- nodes?: Node[];
4092
+ nodes?: Node[] | undefined;
4093
4093
  /**
4094
4094
  * <p> The token to retrieve the next set of results, or <code>null</code> if there are no more results. </p>
4095
4095
  * @public
4096
4096
  */
4097
- nextToken?: string;
4097
+ nextToken?: string | undefined;
4098
4098
  }
4099
4099
  /**
4100
4100
  * @public
@@ -4105,12 +4105,12 @@ export interface ListSignalCatalogsRequest {
4105
4105
  * <p>If the results of a search are large, only a portion of the results are returned, and a <code>nextToken</code> pagination token is returned in the response. To retrieve the next set of results, reissue the search request and include the returned token. When all results have been returned, the response does not contain a pagination token value. </p>
4106
4106
  * @public
4107
4107
  */
4108
- nextToken?: string;
4108
+ nextToken?: string | undefined;
4109
4109
  /**
4110
4110
  * <p> The maximum number of items to return, between 1 and 100, inclusive. </p>
4111
4111
  * @public
4112
4112
  */
4113
- maxResults?: number;
4113
+ maxResults?: number | undefined;
4114
4114
  }
4115
4115
  /**
4116
4116
  * <p>Information about a collection of standardized signals, which can be attributes,
@@ -4122,22 +4122,22 @@ export interface SignalCatalogSummary {
4122
4122
  * <p>The name of the signal catalog.</p>
4123
4123
  * @public
4124
4124
  */
4125
- name?: string;
4125
+ name?: string | undefined;
4126
4126
  /**
4127
4127
  * <p>The Amazon Resource Name (ARN) of the signal catalog.</p>
4128
4128
  * @public
4129
4129
  */
4130
- arn?: string;
4130
+ arn?: string | undefined;
4131
4131
  /**
4132
4132
  * <p>The time the signal catalog was created in seconds since epoch (January 1, 1970 at midnight UTC time). </p>
4133
4133
  * @public
4134
4134
  */
4135
- creationTime?: Date;
4135
+ creationTime?: Date | undefined;
4136
4136
  /**
4137
4137
  * <p>The time the signal catalog was last updated in seconds since epoch (January 1, 1970 at midnight UTC time). </p>
4138
4138
  * @public
4139
4139
  */
4140
- lastModificationTime?: Date;
4140
+ lastModificationTime?: Date | undefined;
4141
4141
  }
4142
4142
  /**
4143
4143
  * @public
@@ -4147,12 +4147,12 @@ export interface ListSignalCatalogsResponse {
4147
4147
  * <p> A list of information about each signal catalog. </p>
4148
4148
  * @public
4149
4149
  */
4150
- summaries?: SignalCatalogSummary[];
4150
+ summaries?: SignalCatalogSummary[] | undefined;
4151
4151
  /**
4152
4152
  * <p> The token to retrieve the next set of results, or <code>null</code> if there are no more results. </p>
4153
4153
  * @public
4154
4154
  */
4155
- nextToken?: string;
4155
+ nextToken?: string | undefined;
4156
4156
  }
4157
4157
  /**
4158
4158
  * @public
@@ -4167,23 +4167,23 @@ export interface UpdateSignalCatalogRequest {
4167
4167
  * <p> A brief description of the signal catalog to update.</p>
4168
4168
  * @public
4169
4169
  */
4170
- description?: string;
4170
+ description?: string | undefined;
4171
4171
  /**
4172
4172
  * <p> A list of information about nodes to add to the signal catalog. </p>
4173
4173
  * @public
4174
4174
  */
4175
- nodesToAdd?: Node[];
4175
+ nodesToAdd?: Node[] | undefined;
4176
4176
  /**
4177
4177
  * <p> A list of information about nodes to update in the signal catalog. </p>
4178
4178
  * @public
4179
4179
  */
4180
- nodesToUpdate?: Node[];
4180
+ nodesToUpdate?: Node[] | undefined;
4181
4181
  /**
4182
4182
  * <p> A list of <code>fullyQualifiedName</code> of nodes to remove from the signal catalog.
4183
4183
  * </p>
4184
4184
  * @public
4185
4185
  */
4186
- nodesToRemove?: string[];
4186
+ nodesToRemove?: string[] | undefined;
4187
4187
  }
4188
4188
  /**
4189
4189
  * @public
@@ -4249,12 +4249,12 @@ export interface ListVehiclesRequest {
4249
4249
  * parameter to list only the vehicles created from a certain vehicle model. </p>
4250
4250
  * @public
4251
4251
  */
4252
- modelManifestArn?: string;
4252
+ modelManifestArn?: string | undefined;
4253
4253
  /**
4254
4254
  * <p>The fully qualified names of the attributes. For example, the fully qualified name of an attribute might be <code>Vehicle.Body.Engine.Type</code>.</p>
4255
4255
  * @public
4256
4256
  */
4257
- attributeNames?: string[];
4257
+ attributeNames?: string[] | undefined;
4258
4258
  /**
4259
4259
  * <p>Static information about a vehicle attribute value in string format. For example:</p>
4260
4260
  * <p>
@@ -4262,18 +4262,18 @@ export interface ListVehiclesRequest {
4262
4262
  * </p>
4263
4263
  * @public
4264
4264
  */
4265
- attributeValues?: string[];
4265
+ attributeValues?: string[] | undefined;
4266
4266
  /**
4267
4267
  * <p>A pagination token for the next set of results.</p>
4268
4268
  * <p>If the results of a search are large, only a portion of the results are returned, and a <code>nextToken</code> pagination token is returned in the response. To retrieve the next set of results, reissue the search request and include the returned token. When all results have been returned, the response does not contain a pagination token value. </p>
4269
4269
  * @public
4270
4270
  */
4271
- nextToken?: string;
4271
+ nextToken?: string | undefined;
4272
4272
  /**
4273
4273
  * <p> The maximum number of items to return, between 1 and 100, inclusive. </p>
4274
4274
  * @public
4275
4275
  */
4276
- maxResults?: number;
4276
+ maxResults?: number | undefined;
4277
4277
  }
4278
4278
  /**
4279
4279
  * <p>Information about a vehicle.</p>
@@ -4318,7 +4318,7 @@ export interface VehicleSummary {
4318
4318
  * </p>
4319
4319
  * @public
4320
4320
  */
4321
- attributes?: Record<string, string>;
4321
+ attributes?: Record<string, string> | undefined;
4322
4322
  }
4323
4323
  /**
4324
4324
  * @public
@@ -4328,12 +4328,12 @@ export interface ListVehiclesResponse {
4328
4328
  * <p> A list of vehicles and information about them. </p>
4329
4329
  * @public
4330
4330
  */
4331
- vehicleSummaries?: VehicleSummary[];
4331
+ vehicleSummaries?: VehicleSummary[] | undefined;
4332
4332
  /**
4333
4333
  * <p> The token to retrieve the next set of results, or <code>null</code> if there are no more results. </p>
4334
4334
  * @public
4335
4335
  */
4336
- nextToken?: string;
4336
+ nextToken?: string | undefined;
4337
4337
  }
4338
4338
  /**
4339
4339
  * @public
@@ -4348,12 +4348,12 @@ export interface UpdateVehicleRequest {
4348
4348
  * <p>The ARN of a vehicle model (model manifest) associated with the vehicle.</p>
4349
4349
  * @public
4350
4350
  */
4351
- modelManifestArn?: string;
4351
+ modelManifestArn?: string | undefined;
4352
4352
  /**
4353
4353
  * <p>The ARN of the decoder manifest associated with this vehicle.</p>
4354
4354
  * @public
4355
4355
  */
4356
- decoderManifestArn?: string;
4356
+ decoderManifestArn?: string | undefined;
4357
4357
  /**
4358
4358
  * <p>Static information about a vehicle in a key-value pair. For example:</p>
4359
4359
  * <p>
@@ -4361,7 +4361,7 @@ export interface UpdateVehicleRequest {
4361
4361
  * </p>
4362
4362
  * @public
4363
4363
  */
4364
- attributes?: Record<string, string>;
4364
+ attributes?: Record<string, string> | undefined;
4365
4365
  /**
4366
4366
  * <p>The method the specified attributes will update the existing attributes on the
4367
4367
  * vehicle. Use<code>Overwite</code> to replace the vehicle attributes with the specified
@@ -4369,7 +4369,7 @@ export interface UpdateVehicleRequest {
4369
4369
  * <p>This is required if attributes are present in the input.</p>
4370
4370
  * @public
4371
4371
  */
4372
- attributeUpdateMode?: UpdateMode;
4372
+ attributeUpdateMode?: UpdateMode | undefined;
4373
4373
  }
4374
4374
  /**
4375
4375
  * @public
@@ -4379,12 +4379,12 @@ export interface UpdateVehicleResponse {
4379
4379
  * <p>The ID of the updated vehicle.</p>
4380
4380
  * @public
4381
4381
  */
4382
- vehicleName?: string;
4382
+ vehicleName?: string | undefined;
4383
4383
  /**
4384
4384
  * <p>The ARN of the updated vehicle.</p>
4385
4385
  * @public
4386
4386
  */
4387
- arn?: string;
4387
+ arn?: string | undefined;
4388
4388
  }
4389
4389
  /**
4390
4390
  * <p>The structured message for the message signal. It can be defined with either a <code>primitiveMessageDefinition</code>, <code>structuredMessageListDefinition</code>, or <code>structuredMessageDefinition</code> recursively.</p>
@@ -4482,7 +4482,7 @@ export interface StructuredMessageListDefinition {
4482
4482
  * <p>The capacity of the structured message list definition when the list type is <code>FIXED_CAPACITY</code> or <code>DYNAMIC_BOUNDED_CAPACITY</code>.</p>
4483
4483
  * @public
4484
4484
  */
4485
- capacity?: number;
4485
+ capacity?: number | undefined;
4486
4486
  }
4487
4487
  /**
4488
4488
  * <p>The decoding information for a specific message which support higher order data types. </p>
@@ -4527,17 +4527,17 @@ export interface SignalDecoder {
4527
4527
  * <p>Information about signal decoder using the Controller Area Network (CAN) protocol.</p>
4528
4528
  * @public
4529
4529
  */
4530
- canSignal?: CanSignal;
4530
+ canSignal?: CanSignal | undefined;
4531
4531
  /**
4532
4532
  * <p>Information about signal decoder using the On-board diagnostic (OBD) II protocol.</p>
4533
4533
  * @public
4534
4534
  */
4535
- obdSignal?: ObdSignal;
4535
+ obdSignal?: ObdSignal | undefined;
4536
4536
  /**
4537
4537
  * <p>The decoding information for a specific message which supports higher order data types. </p>
4538
4538
  * @public
4539
4539
  */
4540
- messageSignal?: MessageSignal;
4540
+ messageSignal?: MessageSignal | undefined;
4541
4541
  }
4542
4542
  /**
4543
4543
  * @public
@@ -4552,7 +4552,7 @@ export interface CreateDecoderManifestRequest {
4552
4552
  * <p> A brief description of the decoder manifest. </p>
4553
4553
  * @public
4554
4554
  */
4555
- description?: string;
4555
+ description?: string | undefined;
4556
4556
  /**
4557
4557
  * <p> The Amazon Resource Name (ARN) of the vehicle model (model manifest). </p>
4558
4558
  * @public
@@ -4562,17 +4562,17 @@ export interface CreateDecoderManifestRequest {
4562
4562
  * <p> A list of information about signal decoders. </p>
4563
4563
  * @public
4564
4564
  */
4565
- signalDecoders?: SignalDecoder[];
4565
+ signalDecoders?: SignalDecoder[] | undefined;
4566
4566
  /**
4567
4567
  * <p> A list of information about available network interfaces. </p>
4568
4568
  * @public
4569
4569
  */
4570
- networkInterfaces?: NetworkInterface[];
4570
+ networkInterfaces?: NetworkInterface[] | undefined;
4571
4571
  /**
4572
4572
  * <p>Metadata that can be used to manage the decoder manifest.</p>
4573
4573
  * @public
4574
4574
  */
4575
- tags?: Tag[];
4575
+ tags?: Tag[] | undefined;
4576
4576
  }
4577
4577
  /**
4578
4578
  * @public
@@ -4582,12 +4582,12 @@ export interface ListDecoderManifestSignalsResponse {
4582
4582
  * <p> Information about a list of signals to decode. </p>
4583
4583
  * @public
4584
4584
  */
4585
- signalDecoders?: SignalDecoder[];
4585
+ signalDecoders?: SignalDecoder[] | undefined;
4586
4586
  /**
4587
4587
  * <p> The token to retrieve the next set of results, or <code>null</code> if there are no more results. </p>
4588
4588
  * @public
4589
4589
  */
4590
- nextToken?: string;
4590
+ nextToken?: string | undefined;
4591
4591
  }
4592
4592
  /**
4593
4593
  * @public
@@ -4602,48 +4602,48 @@ export interface UpdateDecoderManifestRequest {
4602
4602
  * <p> A brief description of the decoder manifest to update. </p>
4603
4603
  * @public
4604
4604
  */
4605
- description?: string;
4605
+ description?: string | undefined;
4606
4606
  /**
4607
4607
  * <p> A list of information about decoding additional signals to add to the decoder
4608
4608
  * manifest. </p>
4609
4609
  * @public
4610
4610
  */
4611
- signalDecodersToAdd?: SignalDecoder[];
4611
+ signalDecodersToAdd?: SignalDecoder[] | undefined;
4612
4612
  /**
4613
4613
  * <p> A list of updated information about decoding signals to update in the decoder
4614
4614
  * manifest. </p>
4615
4615
  * @public
4616
4616
  */
4617
- signalDecodersToUpdate?: SignalDecoder[];
4617
+ signalDecodersToUpdate?: SignalDecoder[] | undefined;
4618
4618
  /**
4619
4619
  * <p> A list of signal decoders to remove from the decoder manifest. </p>
4620
4620
  * @public
4621
4621
  */
4622
- signalDecodersToRemove?: string[];
4622
+ signalDecodersToRemove?: string[] | undefined;
4623
4623
  /**
4624
4624
  * <p> A list of information about the network interfaces to add to the decoder manifest.
4625
4625
  * </p>
4626
4626
  * @public
4627
4627
  */
4628
- networkInterfacesToAdd?: NetworkInterface[];
4628
+ networkInterfacesToAdd?: NetworkInterface[] | undefined;
4629
4629
  /**
4630
4630
  * <p> A list of information about the network interfaces to update in the decoder manifest.
4631
4631
  * </p>
4632
4632
  * @public
4633
4633
  */
4634
- networkInterfacesToUpdate?: NetworkInterface[];
4634
+ networkInterfacesToUpdate?: NetworkInterface[] | undefined;
4635
4635
  /**
4636
4636
  * <p> A list of network interfaces to remove from the decoder manifest.</p>
4637
4637
  * @public
4638
4638
  */
4639
- networkInterfacesToRemove?: string[];
4639
+ networkInterfacesToRemove?: string[] | undefined;
4640
4640
  /**
4641
4641
  * <p> The state of the decoder manifest. If the status is <code>ACTIVE</code>, the decoder
4642
4642
  * manifest can't be edited. If the status is <code>DRAFT</code>, you can edit the decoder
4643
4643
  * manifest. </p>
4644
4644
  * @public
4645
4645
  */
4646
- status?: ManifestStatus;
4646
+ status?: ManifestStatus | undefined;
4647
4647
  }
4648
4648
  /**
4649
4649
  * @internal