@aws-sdk/client-greengrass 3.686.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.
@@ -9,22 +9,22 @@ export interface ConnectivityInfo {
9
9
  * The endpoint for the Greengrass core. Can be an IP address or DNS.
10
10
  * @public
11
11
  */
12
- HostAddress?: string;
12
+ HostAddress?: string | undefined;
13
13
  /**
14
14
  * The ID of the connectivity information.
15
15
  * @public
16
16
  */
17
- Id?: string;
17
+ Id?: string | undefined;
18
18
  /**
19
19
  * Metadata for this endpoint.
20
20
  * @public
21
21
  */
22
- Metadata?: string;
22
+ Metadata?: string | undefined;
23
23
  /**
24
24
  * The port of the Greengrass core. Usually 8883.
25
25
  * @public
26
26
  */
27
- PortNumber?: number;
27
+ PortNumber?: number | undefined;
28
28
  }
29
29
  /**
30
30
  * Information about a connector. Connectors run on the Greengrass core and contain built-in integration with local infrastructure, device protocols, AWS, and other cloud services.
@@ -45,7 +45,7 @@ export interface Connector {
45
45
  * The parameters or configuration that the connector uses.
46
46
  * @public
47
47
  */
48
- Parameters?: Record<string, string>;
48
+ Parameters?: Record<string, string> | undefined;
49
49
  }
50
50
  /**
51
51
  * Information about a core.
@@ -66,7 +66,7 @@ export interface Core {
66
66
  * If true, the core's local shadow is automatically synced with the cloud.
67
67
  * @public
68
68
  */
69
- SyncShadow?: boolean;
69
+ SyncShadow?: boolean | undefined;
70
70
  /**
71
71
  * The ARN of the thing which is the core.
72
72
  * @public
@@ -82,42 +82,42 @@ export interface DefinitionInformation {
82
82
  * The ARN of the definition.
83
83
  * @public
84
84
  */
85
- Arn?: string;
85
+ Arn?: string | undefined;
86
86
  /**
87
87
  * The time, in milliseconds since the epoch, when the definition was created.
88
88
  * @public
89
89
  */
90
- CreationTimestamp?: string;
90
+ CreationTimestamp?: string | undefined;
91
91
  /**
92
92
  * The ID of the definition.
93
93
  * @public
94
94
  */
95
- Id?: string;
95
+ Id?: string | undefined;
96
96
  /**
97
97
  * The time, in milliseconds since the epoch, when the definition was last updated.
98
98
  * @public
99
99
  */
100
- LastUpdatedTimestamp?: string;
100
+ LastUpdatedTimestamp?: string | undefined;
101
101
  /**
102
102
  * The ID of the latest version associated with the definition.
103
103
  * @public
104
104
  */
105
- LatestVersion?: string;
105
+ LatestVersion?: string | undefined;
106
106
  /**
107
107
  * The ARN of the latest version associated with the definition.
108
108
  * @public
109
109
  */
110
- LatestVersionArn?: string;
110
+ LatestVersionArn?: string | undefined;
111
111
  /**
112
112
  * The name of the definition.
113
113
  * @public
114
114
  */
115
- Name?: string;
115
+ Name?: string | undefined;
116
116
  /**
117
117
  * Tag(s) attached to the resource arn.
118
118
  * @public
119
119
  */
120
- Tags?: Record<string, string>;
120
+ Tags?: Record<string, string> | undefined;
121
121
  }
122
122
  /**
123
123
  * Information about a device.
@@ -138,7 +138,7 @@ export interface Device {
138
138
  * If true, the device's local shadow will be automatically synced with the cloud.
139
139
  * @public
140
140
  */
141
- SyncShadow?: boolean;
141
+ SyncShadow?: boolean | undefined;
142
142
  /**
143
143
  * The thing ARN of the device.
144
144
  * @public
@@ -178,12 +178,12 @@ export interface FunctionRunAsConfig {
178
178
  * The group ID whose permissions are used to run a Lambda function.
179
179
  * @public
180
180
  */
181
- Gid?: number;
181
+ Gid?: number | undefined;
182
182
  /**
183
183
  * The user ID whose permissions are used to run a Lambda function.
184
184
  * @public
185
185
  */
186
- Uid?: number;
186
+ Uid?: number | undefined;
187
187
  }
188
188
  /**
189
189
  * Configuration information that specifies how a Lambda function runs.
@@ -194,12 +194,12 @@ export interface FunctionExecutionConfig {
194
194
  * Specifies whether the Lambda function runs in a Greengrass container (default) or without containerization. Unless your scenario requires that you run without containerization, we recommend that you run in a Greengrass container. Omit this value to run the Lambda function with the default containerization for the group.
195
195
  * @public
196
196
  */
197
- IsolationMode?: FunctionIsolationMode;
197
+ IsolationMode?: FunctionIsolationMode | undefined;
198
198
  /**
199
199
  * Specifies the user and group whose permissions are used when running the Lambda function. You can specify one or both values to override the default values. We recommend that you avoid running as root unless absolutely necessary to minimize the risk of unintended changes or malicious attacks. To run as root, you must set ''IsolationMode'' to ''NoContainer'' and update config.json in ''greengrass-root/config'' to set ''allowFunctionsToRunAsRoot'' to ''yes''.
200
200
  * @public
201
201
  */
202
- RunAs?: FunctionRunAsConfig;
202
+ RunAs?: FunctionRunAsConfig | undefined;
203
203
  }
204
204
  /**
205
205
  * @public
@@ -222,7 +222,7 @@ export interface ResourceAccessPolicy {
222
222
  * The permissions that the Lambda function has to the resource. Can be one of ''rw'' (read/write) or ''ro'' (read-only).
223
223
  * @public
224
224
  */
225
- Permission?: Permission;
225
+ Permission?: Permission | undefined;
226
226
  /**
227
227
  * The ID of the resource. (This ID is assigned to the resource when you create the resource definiton.)
228
228
  * @public
@@ -238,22 +238,22 @@ export interface FunctionConfigurationEnvironment {
238
238
  * If true, the Lambda function is allowed to access the host's /sys folder. Use this when the Lambda function needs to read device information from /sys. This setting applies only when you run the Lambda function in a Greengrass container.
239
239
  * @public
240
240
  */
241
- AccessSysfs?: boolean;
241
+ AccessSysfs?: boolean | undefined;
242
242
  /**
243
243
  * Configuration related to executing the Lambda function
244
244
  * @public
245
245
  */
246
- Execution?: FunctionExecutionConfig;
246
+ Execution?: FunctionExecutionConfig | undefined;
247
247
  /**
248
248
  * A list of the resources, with their permissions, to which the Lambda function will be granted access. A Lambda function can have at most 10 resources. ResourceAccessPolicies apply only when you run the Lambda function in a Greengrass container.
249
249
  * @public
250
250
  */
251
- ResourceAccessPolicies?: ResourceAccessPolicy[];
251
+ ResourceAccessPolicies?: ResourceAccessPolicy[] | undefined;
252
252
  /**
253
253
  * Environment variables for the Lambda function's configuration.
254
254
  * @public
255
255
  */
256
- Variables?: Record<string, string>;
256
+ Variables?: Record<string, string> | undefined;
257
257
  }
258
258
  /**
259
259
  * The configuration of the Lambda function.
@@ -264,42 +264,42 @@ export interface FunctionConfiguration {
264
264
  * The expected encoding type of the input payload for the function. The default is ''json''.
265
265
  * @public
266
266
  */
267
- EncodingType?: EncodingType;
267
+ EncodingType?: EncodingType | undefined;
268
268
  /**
269
269
  * The environment configuration of the function.
270
270
  * @public
271
271
  */
272
- Environment?: FunctionConfigurationEnvironment;
272
+ Environment?: FunctionConfigurationEnvironment | undefined;
273
273
  /**
274
274
  * The execution arguments.
275
275
  * @public
276
276
  */
277
- ExecArgs?: string;
277
+ ExecArgs?: string | undefined;
278
278
  /**
279
279
  * The name of the function executable.
280
280
  * @public
281
281
  */
282
- Executable?: string;
282
+ Executable?: string | undefined;
283
283
  /**
284
284
  * The memory size, in KB, which the function requires. This setting is not applicable and should be cleared when you run the Lambda function without containerization.
285
285
  * @public
286
286
  */
287
- MemorySize?: number;
287
+ MemorySize?: number | undefined;
288
288
  /**
289
289
  * True if the function is pinned. Pinned means the function is long-lived and starts when the core starts.
290
290
  * @public
291
291
  */
292
- Pinned?: boolean;
292
+ Pinned?: boolean | undefined;
293
293
  /**
294
294
  * The allowed function execution time, after which Lambda should terminate the function. This timeout still applies to pinned Lambda functions for each request.
295
295
  * @public
296
296
  */
297
- Timeout?: number;
297
+ Timeout?: number | undefined;
298
298
  /**
299
299
  * The Lambda runtime supported by Greengrass which is to be used instead of the one specified in the Lambda function.
300
300
  * @public
301
301
  */
302
- FunctionRuntimeOverride?: string;
302
+ FunctionRuntimeOverride?: string | undefined;
303
303
  }
304
304
  /**
305
305
  * Information about a Lambda function.
@@ -310,12 +310,12 @@ export interface Function {
310
310
  * The ARN of the Lambda function.
311
311
  * @public
312
312
  */
313
- FunctionArn?: string;
313
+ FunctionArn?: string | undefined;
314
314
  /**
315
315
  * The configuration of the Lambda function.
316
316
  * @public
317
317
  */
318
- FunctionConfiguration?: FunctionConfiguration;
318
+ FunctionConfiguration?: FunctionConfiguration | undefined;
319
319
  /**
320
320
  * A descriptive or arbitrary ID for the function. This value must be unique within the function definition version. Max length is 128 characters with pattern ''[a-zA-Z0-9:_-]+''.
321
321
  * @public
@@ -331,12 +331,12 @@ export interface GroupCertificateAuthorityProperties {
331
331
  * The ARN of the certificate authority for the group.
332
332
  * @public
333
333
  */
334
- GroupCertificateAuthorityArn?: string;
334
+ GroupCertificateAuthorityArn?: string | undefined;
335
335
  /**
336
336
  * The ID of the certificate authority for the group.
337
337
  * @public
338
338
  */
339
- GroupCertificateAuthorityId?: string;
339
+ GroupCertificateAuthorityId?: string | undefined;
340
340
  }
341
341
  /**
342
342
  * Information about a group.
@@ -347,37 +347,37 @@ export interface GroupInformation {
347
347
  * The ARN of the group.
348
348
  * @public
349
349
  */
350
- Arn?: string;
350
+ Arn?: string | undefined;
351
351
  /**
352
352
  * The time, in milliseconds since the epoch, when the group was created.
353
353
  * @public
354
354
  */
355
- CreationTimestamp?: string;
355
+ CreationTimestamp?: string | undefined;
356
356
  /**
357
357
  * The ID of the group.
358
358
  * @public
359
359
  */
360
- Id?: string;
360
+ Id?: string | undefined;
361
361
  /**
362
362
  * The time, in milliseconds since the epoch, when the group was last updated.
363
363
  * @public
364
364
  */
365
- LastUpdatedTimestamp?: string;
365
+ LastUpdatedTimestamp?: string | undefined;
366
366
  /**
367
367
  * The ID of the latest version associated with the group.
368
368
  * @public
369
369
  */
370
- LatestVersion?: string;
370
+ LatestVersion?: string | undefined;
371
371
  /**
372
372
  * The ARN of the latest version associated with the group.
373
373
  * @public
374
374
  */
375
- LatestVersionArn?: string;
375
+ LatestVersionArn?: string | undefined;
376
376
  /**
377
377
  * The name of the group.
378
378
  * @public
379
379
  */
380
- Name?: string;
380
+ Name?: string | undefined;
381
381
  }
382
382
  /**
383
383
  * @public
@@ -442,7 +442,7 @@ export interface Logger {
442
442
  * The amount of file space, in KB, to use if the local file system is used for logging purposes.
443
443
  * @public
444
444
  */
445
- Space?: number;
445
+ Space?: number | undefined;
446
446
  /**
447
447
  * The type of log output which will be used.
448
448
  * @public
@@ -458,12 +458,12 @@ export interface GroupOwnerSetting {
458
458
  * If true, AWS IoT Greengrass automatically adds the specified Linux OS group owner of the resource to the Lambda process privileges. Thus the Lambda process will have the file access permissions of the added Linux group.
459
459
  * @public
460
460
  */
461
- AutoAddGroupOwner?: boolean;
461
+ AutoAddGroupOwner?: boolean | undefined;
462
462
  /**
463
463
  * The name of the Linux OS group whose privileges will be added to the Lambda process. This field is optional.
464
464
  * @public
465
465
  */
466
- GroupOwner?: string;
466
+ GroupOwner?: string | undefined;
467
467
  }
468
468
  /**
469
469
  * Attributes that define a local device resource.
@@ -474,12 +474,12 @@ export interface LocalDeviceResourceData {
474
474
  * Group/owner related settings for local resources.
475
475
  * @public
476
476
  */
477
- GroupOwnerSetting?: GroupOwnerSetting;
477
+ GroupOwnerSetting?: GroupOwnerSetting | undefined;
478
478
  /**
479
479
  * The local absolute path of the device resource. The source path for a device resource can refer only to a character device or block device under ''/dev''.
480
480
  * @public
481
481
  */
482
- SourcePath?: string;
482
+ SourcePath?: string | undefined;
483
483
  }
484
484
  /**
485
485
  * Attributes that define a local volume resource.
@@ -490,17 +490,17 @@ export interface LocalVolumeResourceData {
490
490
  * The absolute local path of the resource inside the Lambda environment.
491
491
  * @public
492
492
  */
493
- DestinationPath?: string;
493
+ DestinationPath?: string | undefined;
494
494
  /**
495
495
  * Allows you to configure additional group privileges for the Lambda process. This field is optional.
496
496
  * @public
497
497
  */
498
- GroupOwnerSetting?: GroupOwnerSetting;
498
+ GroupOwnerSetting?: GroupOwnerSetting | undefined;
499
499
  /**
500
500
  * The local absolute path of the volume resource on the host. The source path for a volume resource type cannot start with ''/sys''.
501
501
  * @public
502
502
  */
503
- SourcePath?: string;
503
+ SourcePath?: string | undefined;
504
504
  }
505
505
  /**
506
506
  * The owner setting for downloaded machine learning resources.
@@ -527,17 +527,17 @@ export interface S3MachineLearningModelResourceData {
527
527
  * The absolute local path of the resource inside the Lambda environment.
528
528
  * @public
529
529
  */
530
- DestinationPath?: string;
530
+ DestinationPath?: string | undefined;
531
531
  /**
532
532
  * The owner setting for downloaded machine learning resources.
533
533
  * @public
534
534
  */
535
- OwnerSetting?: ResourceDownloadOwnerSetting;
535
+ OwnerSetting?: ResourceDownloadOwnerSetting | undefined;
536
536
  /**
537
537
  * The URI of the source model in an S3 bucket. The model package must be in tar.gz or .zip format.
538
538
  * @public
539
539
  */
540
- S3Uri?: string;
540
+ S3Uri?: string | undefined;
541
541
  }
542
542
  /**
543
543
  * Attributes that define an Amazon SageMaker machine learning resource.
@@ -548,17 +548,17 @@ export interface SageMakerMachineLearningModelResourceData {
548
548
  * The absolute local path of the resource inside the Lambda environment.
549
549
  * @public
550
550
  */
551
- DestinationPath?: string;
551
+ DestinationPath?: string | undefined;
552
552
  /**
553
553
  * The owner setting for downloaded machine learning resources.
554
554
  * @public
555
555
  */
556
- OwnerSetting?: ResourceDownloadOwnerSetting;
556
+ OwnerSetting?: ResourceDownloadOwnerSetting | undefined;
557
557
  /**
558
558
  * The ARN of the Amazon SageMaker training job that represents the source model.
559
559
  * @public
560
560
  */
561
- SageMakerJobArn?: string;
561
+ SageMakerJobArn?: string | undefined;
562
562
  }
563
563
  /**
564
564
  * Attributes that define a secret resource, which references a secret from AWS Secrets Manager. AWS IoT Greengrass stores a local, encrypted copy of the secret on the Greengrass core, where it can be securely accessed by connectors and Lambda functions.
@@ -569,12 +569,12 @@ export interface SecretsManagerSecretResourceData {
569
569
  * The ARN of the Secrets Manager secret to make available on the core. The value of the secret's latest version (represented by the ''AWSCURRENT'' staging label) is included by default.
570
570
  * @public
571
571
  */
572
- ARN?: string;
572
+ ARN?: string | undefined;
573
573
  /**
574
574
  * Optional. The staging labels whose values you want to make available on the core, in addition to ''AWSCURRENT''.
575
575
  * @public
576
576
  */
577
- AdditionalStagingLabelsToDownload?: string[];
577
+ AdditionalStagingLabelsToDownload?: string[] | undefined;
578
578
  }
579
579
  /**
580
580
  * A container for resource data. The container takes only one of the following supported resource data types: ''LocalDeviceResourceData'', ''LocalVolumeResourceData'', ''SageMakerMachineLearningModelResourceData'', ''S3MachineLearningModelResourceData'', ''SecretsManagerSecretResourceData''.
@@ -585,27 +585,27 @@ export interface ResourceDataContainer {
585
585
  * Attributes that define the local device resource.
586
586
  * @public
587
587
  */
588
- LocalDeviceResourceData?: LocalDeviceResourceData;
588
+ LocalDeviceResourceData?: LocalDeviceResourceData | undefined;
589
589
  /**
590
590
  * Attributes that define the local volume resource.
591
591
  * @public
592
592
  */
593
- LocalVolumeResourceData?: LocalVolumeResourceData;
593
+ LocalVolumeResourceData?: LocalVolumeResourceData | undefined;
594
594
  /**
595
595
  * Attributes that define an Amazon S3 machine learning resource.
596
596
  * @public
597
597
  */
598
- S3MachineLearningModelResourceData?: S3MachineLearningModelResourceData;
598
+ S3MachineLearningModelResourceData?: S3MachineLearningModelResourceData | undefined;
599
599
  /**
600
600
  * Attributes that define an Amazon SageMaker machine learning resource.
601
601
  * @public
602
602
  */
603
- SageMakerMachineLearningModelResourceData?: SageMakerMachineLearningModelResourceData;
603
+ SageMakerMachineLearningModelResourceData?: SageMakerMachineLearningModelResourceData | undefined;
604
604
  /**
605
605
  * Attributes that define a secret resource, which references a secret from AWS Secrets Manager.
606
606
  * @public
607
607
  */
608
- SecretsManagerSecretResourceData?: SecretsManagerSecretResourceData;
608
+ SecretsManagerSecretResourceData?: SecretsManagerSecretResourceData | undefined;
609
609
  }
610
610
  /**
611
611
  * Information about a resource.
@@ -663,22 +663,22 @@ export interface VersionInformation {
663
663
  * The ARN of the version.
664
664
  * @public
665
665
  */
666
- Arn?: string;
666
+ Arn?: string | undefined;
667
667
  /**
668
668
  * The time, in milliseconds since the epoch, when the version was created.
669
669
  * @public
670
670
  */
671
- CreationTimestamp?: string;
671
+ CreationTimestamp?: string | undefined;
672
672
  /**
673
673
  * The ID of the parent definition that the version is associated with.
674
674
  * @public
675
675
  */
676
- Id?: string;
676
+ Id?: string | undefined;
677
677
  /**
678
678
  * The ID of the version.
679
679
  * @public
680
680
  */
681
- Version?: string;
681
+ Version?: string | undefined;
682
682
  }
683
683
  /**
684
684
  * @public
@@ -703,7 +703,7 @@ export interface AssociateRoleToGroupResponse {
703
703
  * The time, in milliseconds since the epoch, when the role ARN was associated with the group.
704
704
  * @public
705
705
  */
706
- AssociatedAt?: string;
706
+ AssociatedAt?: string | undefined;
707
707
  }
708
708
  /**
709
709
  * Details about the error.
@@ -714,12 +714,12 @@ export interface ErrorDetail {
714
714
  * A detailed error code.
715
715
  * @public
716
716
  */
717
- DetailedErrorCode?: string;
717
+ DetailedErrorCode?: string | undefined;
718
718
  /**
719
719
  * A detailed error message.
720
720
  * @public
721
721
  */
722
- DetailedErrorMessage?: string;
722
+ DetailedErrorMessage?: string | undefined;
723
723
  }
724
724
  /**
725
725
  * General error information.
@@ -732,12 +732,12 @@ export declare class BadRequestException extends __BaseException {
732
732
  * Details about the error.
733
733
  * @public
734
734
  */
735
- ErrorDetails?: ErrorDetail[];
735
+ ErrorDetails?: ErrorDetail[] | undefined;
736
736
  /**
737
737
  * A message containing information about the error.
738
738
  * @public
739
739
  */
740
- Message?: string;
740
+ Message?: string | undefined;
741
741
  /**
742
742
  * @internal
743
743
  */
@@ -754,12 +754,12 @@ export declare class InternalServerErrorException extends __BaseException {
754
754
  * Details about the error.
755
755
  * @public
756
756
  */
757
- ErrorDetails?: ErrorDetail[];
757
+ ErrorDetails?: ErrorDetail[] | undefined;
758
758
  /**
759
759
  * A message containing information about the error.
760
760
  * @public
761
761
  */
762
- Message?: string;
762
+ Message?: string | undefined;
763
763
  /**
764
764
  * @internal
765
765
  */
@@ -783,7 +783,7 @@ export interface AssociateServiceRoleToAccountResponse {
783
783
  * The time when the service role was associated with the account.
784
784
  * @public
785
785
  */
786
- AssociatedAt?: string;
786
+ AssociatedAt?: string | undefined;
787
787
  }
788
788
  /**
789
789
  * Information about a bulk deployment. You cannot start a new bulk deployment while another one is still running or in a non-terminal state.
@@ -794,17 +794,17 @@ export interface BulkDeployment {
794
794
  * The ARN of the bulk deployment.
795
795
  * @public
796
796
  */
797
- BulkDeploymentArn?: string;
797
+ BulkDeploymentArn?: string | undefined;
798
798
  /**
799
799
  * The ID of the bulk deployment.
800
800
  * @public
801
801
  */
802
- BulkDeploymentId?: string;
802
+ BulkDeploymentId?: string | undefined;
803
803
  /**
804
804
  * The time, in ISO format, when the deployment was created.
805
805
  * @public
806
806
  */
807
- CreatedAt?: string;
807
+ CreatedAt?: string | undefined;
808
808
  }
809
809
  /**
810
810
  * Relevant metrics on input records processed during bulk deployment.
@@ -815,17 +815,17 @@ export interface BulkDeploymentMetrics {
815
815
  * The total number of records that returned a non-retryable error. For example, this can occur if a group record from the input file uses an invalid format or specifies a nonexistent group version, or if the execution role doesn't grant permission to deploy a group or group version.
816
816
  * @public
817
817
  */
818
- InvalidInputRecords?: number;
818
+ InvalidInputRecords?: number | undefined;
819
819
  /**
820
820
  * The total number of group records from the input file that have been processed so far, or attempted.
821
821
  * @public
822
822
  */
823
- RecordsProcessed?: number;
823
+ RecordsProcessed?: number | undefined;
824
824
  /**
825
825
  * The total number of deployment attempts that returned a retryable error. For example, a retry is triggered if the attempt to deploy a group returns a throttling error. ''StartBulkDeployment'' retries a group deployment up to five times.
826
826
  * @public
827
827
  */
828
- RetryAttempts?: number;
828
+ RetryAttempts?: number | undefined;
829
829
  }
830
830
  /**
831
831
  * @public
@@ -850,42 +850,42 @@ export interface BulkDeploymentResult {
850
850
  * The time, in ISO format, when the deployment was created.
851
851
  * @public
852
852
  */
853
- CreatedAt?: string;
853
+ CreatedAt?: string | undefined;
854
854
  /**
855
855
  * The ARN of the group deployment.
856
856
  * @public
857
857
  */
858
- DeploymentArn?: string;
858
+ DeploymentArn?: string | undefined;
859
859
  /**
860
860
  * The ID of the group deployment.
861
861
  * @public
862
862
  */
863
- DeploymentId?: string;
863
+ DeploymentId?: string | undefined;
864
864
  /**
865
865
  * The current status of the group deployment: ''InProgress'', ''Building'', ''Success'', or ''Failure''.
866
866
  * @public
867
867
  */
868
- DeploymentStatus?: string;
868
+ DeploymentStatus?: string | undefined;
869
869
  /**
870
870
  * The type of the deployment.
871
871
  * @public
872
872
  */
873
- DeploymentType?: DeploymentType;
873
+ DeploymentType?: DeploymentType | undefined;
874
874
  /**
875
875
  * Details about the error.
876
876
  * @public
877
877
  */
878
- ErrorDetails?: ErrorDetail[];
878
+ ErrorDetails?: ErrorDetail[] | undefined;
879
879
  /**
880
880
  * The error message for a failed deployment
881
881
  * @public
882
882
  */
883
- ErrorMessage?: string;
883
+ ErrorMessage?: string | undefined;
884
884
  /**
885
885
  * The ARN of the Greengrass group.
886
886
  * @public
887
887
  */
888
- GroupArn?: string;
888
+ GroupArn?: string | undefined;
889
889
  }
890
890
  /**
891
891
  * @public
@@ -924,7 +924,7 @@ export interface ConnectorDefinitionVersion {
924
924
  * A list of references to connectors in this version, with their corresponding configuration settings.
925
925
  * @public
926
926
  */
927
- Connectors?: Connector[];
927
+ Connectors?: Connector[] | undefined;
928
928
  }
929
929
  /**
930
930
  * Information about a core definition version.
@@ -935,7 +935,7 @@ export interface CoreDefinitionVersion {
935
935
  * A list of cores in the core definition version.
936
936
  * @public
937
937
  */
938
- Cores?: Core[];
938
+ Cores?: Core[] | undefined;
939
939
  }
940
940
  /**
941
941
  * @public
@@ -945,22 +945,22 @@ export interface CreateConnectorDefinitionRequest {
945
945
  * A client token used to correlate requests and responses.
946
946
  * @public
947
947
  */
948
- AmznClientToken?: string;
948
+ AmznClientToken?: string | undefined;
949
949
  /**
950
950
  * Information about the initial version of the connector definition.
951
951
  * @public
952
952
  */
953
- InitialVersion?: ConnectorDefinitionVersion;
953
+ InitialVersion?: ConnectorDefinitionVersion | undefined;
954
954
  /**
955
955
  * The name of the connector definition.
956
956
  * @public
957
957
  */
958
- Name?: string;
958
+ Name?: string | undefined;
959
959
  /**
960
960
  * Tag(s) to add to the new resource.
961
961
  * @public
962
962
  */
963
- tags?: Record<string, string>;
963
+ tags?: Record<string, string> | undefined;
964
964
  }
965
965
  /**
966
966
  * @public
@@ -970,37 +970,37 @@ export interface CreateConnectorDefinitionResponse {
970
970
  * The ARN of the definition.
971
971
  * @public
972
972
  */
973
- Arn?: string;
973
+ Arn?: string | undefined;
974
974
  /**
975
975
  * The time, in milliseconds since the epoch, when the definition was created.
976
976
  * @public
977
977
  */
978
- CreationTimestamp?: string;
978
+ CreationTimestamp?: string | undefined;
979
979
  /**
980
980
  * The ID of the definition.
981
981
  * @public
982
982
  */
983
- Id?: string;
983
+ Id?: string | undefined;
984
984
  /**
985
985
  * The time, in milliseconds since the epoch, when the definition was last updated.
986
986
  * @public
987
987
  */
988
- LastUpdatedTimestamp?: string;
988
+ LastUpdatedTimestamp?: string | undefined;
989
989
  /**
990
990
  * The ID of the latest version associated with the definition.
991
991
  * @public
992
992
  */
993
- LatestVersion?: string;
993
+ LatestVersion?: string | undefined;
994
994
  /**
995
995
  * The ARN of the latest version associated with the definition.
996
996
  * @public
997
997
  */
998
- LatestVersionArn?: string;
998
+ LatestVersionArn?: string | undefined;
999
999
  /**
1000
1000
  * The name of the definition.
1001
1001
  * @public
1002
1002
  */
1003
- Name?: string;
1003
+ Name?: string | undefined;
1004
1004
  }
1005
1005
  /**
1006
1006
  * @public
@@ -1010,7 +1010,7 @@ export interface CreateConnectorDefinitionVersionRequest {
1010
1010
  * A client token used to correlate requests and responses.
1011
1011
  * @public
1012
1012
  */
1013
- AmznClientToken?: string;
1013
+ AmznClientToken?: string | undefined;
1014
1014
  /**
1015
1015
  * The ID of the connector definition.
1016
1016
  * @public
@@ -1020,7 +1020,7 @@ export interface CreateConnectorDefinitionVersionRequest {
1020
1020
  * A list of references to connectors in this version, with their corresponding configuration settings.
1021
1021
  * @public
1022
1022
  */
1023
- Connectors?: Connector[];
1023
+ Connectors?: Connector[] | undefined;
1024
1024
  }
1025
1025
  /**
1026
1026
  * @public
@@ -1030,22 +1030,22 @@ export interface CreateConnectorDefinitionVersionResponse {
1030
1030
  * The ARN of the version.
1031
1031
  * @public
1032
1032
  */
1033
- Arn?: string;
1033
+ Arn?: string | undefined;
1034
1034
  /**
1035
1035
  * The time, in milliseconds since the epoch, when the version was created.
1036
1036
  * @public
1037
1037
  */
1038
- CreationTimestamp?: string;
1038
+ CreationTimestamp?: string | undefined;
1039
1039
  /**
1040
1040
  * The ID of the parent definition that the version is associated with.
1041
1041
  * @public
1042
1042
  */
1043
- Id?: string;
1043
+ Id?: string | undefined;
1044
1044
  /**
1045
1045
  * The ID of the version.
1046
1046
  * @public
1047
1047
  */
1048
- Version?: string;
1048
+ Version?: string | undefined;
1049
1049
  }
1050
1050
  /**
1051
1051
  * Information needed to create a core definition.
@@ -1056,22 +1056,22 @@ export interface CreateCoreDefinitionRequest {
1056
1056
  * A client token used to correlate requests and responses.
1057
1057
  * @public
1058
1058
  */
1059
- AmznClientToken?: string;
1059
+ AmznClientToken?: string | undefined;
1060
1060
  /**
1061
1061
  * Information about the initial version of the core definition.
1062
1062
  * @public
1063
1063
  */
1064
- InitialVersion?: CoreDefinitionVersion;
1064
+ InitialVersion?: CoreDefinitionVersion | undefined;
1065
1065
  /**
1066
1066
  * The name of the core definition.
1067
1067
  * @public
1068
1068
  */
1069
- Name?: string;
1069
+ Name?: string | undefined;
1070
1070
  /**
1071
1071
  * Tag(s) to add to the new resource.
1072
1072
  * @public
1073
1073
  */
1074
- tags?: Record<string, string>;
1074
+ tags?: Record<string, string> | undefined;
1075
1075
  }
1076
1076
  /**
1077
1077
  * @public
@@ -1081,37 +1081,37 @@ export interface CreateCoreDefinitionResponse {
1081
1081
  * The ARN of the definition.
1082
1082
  * @public
1083
1083
  */
1084
- Arn?: string;
1084
+ Arn?: string | undefined;
1085
1085
  /**
1086
1086
  * The time, in milliseconds since the epoch, when the definition was created.
1087
1087
  * @public
1088
1088
  */
1089
- CreationTimestamp?: string;
1089
+ CreationTimestamp?: string | undefined;
1090
1090
  /**
1091
1091
  * The ID of the definition.
1092
1092
  * @public
1093
1093
  */
1094
- Id?: string;
1094
+ Id?: string | undefined;
1095
1095
  /**
1096
1096
  * The time, in milliseconds since the epoch, when the definition was last updated.
1097
1097
  * @public
1098
1098
  */
1099
- LastUpdatedTimestamp?: string;
1099
+ LastUpdatedTimestamp?: string | undefined;
1100
1100
  /**
1101
1101
  * The ID of the latest version associated with the definition.
1102
1102
  * @public
1103
1103
  */
1104
- LatestVersion?: string;
1104
+ LatestVersion?: string | undefined;
1105
1105
  /**
1106
1106
  * The ARN of the latest version associated with the definition.
1107
1107
  * @public
1108
1108
  */
1109
- LatestVersionArn?: string;
1109
+ LatestVersionArn?: string | undefined;
1110
1110
  /**
1111
1111
  * The name of the definition.
1112
1112
  * @public
1113
1113
  */
1114
- Name?: string;
1114
+ Name?: string | undefined;
1115
1115
  }
1116
1116
  /**
1117
1117
  * @public
@@ -1121,7 +1121,7 @@ export interface CreateCoreDefinitionVersionRequest {
1121
1121
  * A client token used to correlate requests and responses.
1122
1122
  * @public
1123
1123
  */
1124
- AmznClientToken?: string;
1124
+ AmznClientToken?: string | undefined;
1125
1125
  /**
1126
1126
  * The ID of the core definition.
1127
1127
  * @public
@@ -1131,7 +1131,7 @@ export interface CreateCoreDefinitionVersionRequest {
1131
1131
  * A list of cores in the core definition version.
1132
1132
  * @public
1133
1133
  */
1134
- Cores?: Core[];
1134
+ Cores?: Core[] | undefined;
1135
1135
  }
1136
1136
  /**
1137
1137
  * @public
@@ -1141,22 +1141,22 @@ export interface CreateCoreDefinitionVersionResponse {
1141
1141
  * The ARN of the version.
1142
1142
  * @public
1143
1143
  */
1144
- Arn?: string;
1144
+ Arn?: string | undefined;
1145
1145
  /**
1146
1146
  * The time, in milliseconds since the epoch, when the version was created.
1147
1147
  * @public
1148
1148
  */
1149
- CreationTimestamp?: string;
1149
+ CreationTimestamp?: string | undefined;
1150
1150
  /**
1151
1151
  * The ID of the parent definition that the version is associated with.
1152
1152
  * @public
1153
1153
  */
1154
- Id?: string;
1154
+ Id?: string | undefined;
1155
1155
  /**
1156
1156
  * The ID of the version.
1157
1157
  * @public
1158
1158
  */
1159
- Version?: string;
1159
+ Version?: string | undefined;
1160
1160
  }
1161
1161
  /**
1162
1162
  * @public
@@ -1166,12 +1166,12 @@ export interface CreateDeploymentRequest {
1166
1166
  * A client token used to correlate requests and responses.
1167
1167
  * @public
1168
1168
  */
1169
- AmznClientToken?: string;
1169
+ AmznClientToken?: string | undefined;
1170
1170
  /**
1171
1171
  * The ID of the deployment if you wish to redeploy a previous deployment.
1172
1172
  * @public
1173
1173
  */
1174
- DeploymentId?: string;
1174
+ DeploymentId?: string | undefined;
1175
1175
  /**
1176
1176
  * The type of deployment. When used for ''CreateDeployment'', only ''NewDeployment'' and ''Redeployment'' are valid.
1177
1177
  * @public
@@ -1186,7 +1186,7 @@ export interface CreateDeploymentRequest {
1186
1186
  * The ID of the group version to be deployed.
1187
1187
  * @public
1188
1188
  */
1189
- GroupVersionId?: string;
1189
+ GroupVersionId?: string | undefined;
1190
1190
  }
1191
1191
  /**
1192
1192
  * @public
@@ -1196,12 +1196,12 @@ export interface CreateDeploymentResponse {
1196
1196
  * The ARN of the deployment.
1197
1197
  * @public
1198
1198
  */
1199
- DeploymentArn?: string;
1199
+ DeploymentArn?: string | undefined;
1200
1200
  /**
1201
1201
  * The ID of the deployment.
1202
1202
  * @public
1203
1203
  */
1204
- DeploymentId?: string;
1204
+ DeploymentId?: string | undefined;
1205
1205
  }
1206
1206
  /**
1207
1207
  * Information about a device definition version.
@@ -1212,7 +1212,7 @@ export interface DeviceDefinitionVersion {
1212
1212
  * A list of devices in the definition version.
1213
1213
  * @public
1214
1214
  */
1215
- Devices?: Device[];
1215
+ Devices?: Device[] | undefined;
1216
1216
  }
1217
1217
  /**
1218
1218
  * @public
@@ -1222,22 +1222,22 @@ export interface CreateDeviceDefinitionRequest {
1222
1222
  * A client token used to correlate requests and responses.
1223
1223
  * @public
1224
1224
  */
1225
- AmznClientToken?: string;
1225
+ AmznClientToken?: string | undefined;
1226
1226
  /**
1227
1227
  * Information about the initial version of the device definition.
1228
1228
  * @public
1229
1229
  */
1230
- InitialVersion?: DeviceDefinitionVersion;
1230
+ InitialVersion?: DeviceDefinitionVersion | undefined;
1231
1231
  /**
1232
1232
  * The name of the device definition.
1233
1233
  * @public
1234
1234
  */
1235
- Name?: string;
1235
+ Name?: string | undefined;
1236
1236
  /**
1237
1237
  * Tag(s) to add to the new resource.
1238
1238
  * @public
1239
1239
  */
1240
- tags?: Record<string, string>;
1240
+ tags?: Record<string, string> | undefined;
1241
1241
  }
1242
1242
  /**
1243
1243
  * @public
@@ -1247,37 +1247,37 @@ export interface CreateDeviceDefinitionResponse {
1247
1247
  * The ARN of the definition.
1248
1248
  * @public
1249
1249
  */
1250
- Arn?: string;
1250
+ Arn?: string | undefined;
1251
1251
  /**
1252
1252
  * The time, in milliseconds since the epoch, when the definition was created.
1253
1253
  * @public
1254
1254
  */
1255
- CreationTimestamp?: string;
1255
+ CreationTimestamp?: string | undefined;
1256
1256
  /**
1257
1257
  * The ID of the definition.
1258
1258
  * @public
1259
1259
  */
1260
- Id?: string;
1260
+ Id?: string | undefined;
1261
1261
  /**
1262
1262
  * The time, in milliseconds since the epoch, when the definition was last updated.
1263
1263
  * @public
1264
1264
  */
1265
- LastUpdatedTimestamp?: string;
1265
+ LastUpdatedTimestamp?: string | undefined;
1266
1266
  /**
1267
1267
  * The ID of the latest version associated with the definition.
1268
1268
  * @public
1269
1269
  */
1270
- LatestVersion?: string;
1270
+ LatestVersion?: string | undefined;
1271
1271
  /**
1272
1272
  * The ARN of the latest version associated with the definition.
1273
1273
  * @public
1274
1274
  */
1275
- LatestVersionArn?: string;
1275
+ LatestVersionArn?: string | undefined;
1276
1276
  /**
1277
1277
  * The name of the definition.
1278
1278
  * @public
1279
1279
  */
1280
- Name?: string;
1280
+ Name?: string | undefined;
1281
1281
  }
1282
1282
  /**
1283
1283
  * @public
@@ -1287,7 +1287,7 @@ export interface CreateDeviceDefinitionVersionRequest {
1287
1287
  * A client token used to correlate requests and responses.
1288
1288
  * @public
1289
1289
  */
1290
- AmznClientToken?: string;
1290
+ AmznClientToken?: string | undefined;
1291
1291
  /**
1292
1292
  * The ID of the device definition.
1293
1293
  * @public
@@ -1297,7 +1297,7 @@ export interface CreateDeviceDefinitionVersionRequest {
1297
1297
  * A list of devices in the definition version.
1298
1298
  * @public
1299
1299
  */
1300
- Devices?: Device[];
1300
+ Devices?: Device[] | undefined;
1301
1301
  }
1302
1302
  /**
1303
1303
  * @public
@@ -1307,22 +1307,22 @@ export interface CreateDeviceDefinitionVersionResponse {
1307
1307
  * The ARN of the version.
1308
1308
  * @public
1309
1309
  */
1310
- Arn?: string;
1310
+ Arn?: string | undefined;
1311
1311
  /**
1312
1312
  * The time, in milliseconds since the epoch, when the version was created.
1313
1313
  * @public
1314
1314
  */
1315
- CreationTimestamp?: string;
1315
+ CreationTimestamp?: string | undefined;
1316
1316
  /**
1317
1317
  * The ID of the parent definition that the version is associated with.
1318
1318
  * @public
1319
1319
  */
1320
- Id?: string;
1320
+ Id?: string | undefined;
1321
1321
  /**
1322
1322
  * The ID of the version.
1323
1323
  * @public
1324
1324
  */
1325
- Version?: string;
1325
+ Version?: string | undefined;
1326
1326
  }
1327
1327
  /**
1328
1328
  * Configuration information that specifies how a Lambda function runs.
@@ -1333,12 +1333,12 @@ export interface FunctionDefaultExecutionConfig {
1333
1333
  * Specifies whether the Lambda function runs in a Greengrass container (default) or without containerization. Unless your scenario requires that you run without containerization, we recommend that you run in a Greengrass container. Omit this value to run the Lambda function with the default containerization for the group.
1334
1334
  * @public
1335
1335
  */
1336
- IsolationMode?: FunctionIsolationMode;
1336
+ IsolationMode?: FunctionIsolationMode | undefined;
1337
1337
  /**
1338
1338
  * Specifies the user and group whose permissions are used when running the Lambda function. You can specify one or both values to override the default values. We recommend that you avoid running as root unless absolutely necessary to minimize the risk of unintended changes or malicious attacks. To run as root, you must set ''IsolationMode'' to ''NoContainer'' and update config.json in ''greengrass-root/config'' to set ''allowFunctionsToRunAsRoot'' to ''yes''.
1339
1339
  * @public
1340
1340
  */
1341
- RunAs?: FunctionRunAsConfig;
1341
+ RunAs?: FunctionRunAsConfig | undefined;
1342
1342
  }
1343
1343
  /**
1344
1344
  * The default configuration that applies to all Lambda functions in the group. Individual Lambda functions can override these settings.
@@ -1349,7 +1349,7 @@ export interface FunctionDefaultConfig {
1349
1349
  * Configuration information that specifies how a Lambda function runs.
1350
1350
  * @public
1351
1351
  */
1352
- Execution?: FunctionDefaultExecutionConfig;
1352
+ Execution?: FunctionDefaultExecutionConfig | undefined;
1353
1353
  }
1354
1354
  /**
1355
1355
  * Information about a function definition version.
@@ -1360,12 +1360,12 @@ export interface FunctionDefinitionVersion {
1360
1360
  * The default configuration that applies to all Lambda functions in this function definition version. Individual Lambda functions can override these settings.
1361
1361
  * @public
1362
1362
  */
1363
- DefaultConfig?: FunctionDefaultConfig;
1363
+ DefaultConfig?: FunctionDefaultConfig | undefined;
1364
1364
  /**
1365
1365
  * A list of Lambda functions in this function definition version.
1366
1366
  * @public
1367
1367
  */
1368
- Functions?: Function[];
1368
+ Functions?: Function[] | undefined;
1369
1369
  }
1370
1370
  /**
1371
1371
  * @public
@@ -1375,22 +1375,22 @@ export interface CreateFunctionDefinitionRequest {
1375
1375
  * A client token used to correlate requests and responses.
1376
1376
  * @public
1377
1377
  */
1378
- AmznClientToken?: string;
1378
+ AmznClientToken?: string | undefined;
1379
1379
  /**
1380
1380
  * Information about the initial version of the function definition.
1381
1381
  * @public
1382
1382
  */
1383
- InitialVersion?: FunctionDefinitionVersion;
1383
+ InitialVersion?: FunctionDefinitionVersion | undefined;
1384
1384
  /**
1385
1385
  * The name of the function definition.
1386
1386
  * @public
1387
1387
  */
1388
- Name?: string;
1388
+ Name?: string | undefined;
1389
1389
  /**
1390
1390
  * Tag(s) to add to the new resource.
1391
1391
  * @public
1392
1392
  */
1393
- tags?: Record<string, string>;
1393
+ tags?: Record<string, string> | undefined;
1394
1394
  }
1395
1395
  /**
1396
1396
  * @public
@@ -1400,37 +1400,37 @@ export interface CreateFunctionDefinitionResponse {
1400
1400
  * The ARN of the definition.
1401
1401
  * @public
1402
1402
  */
1403
- Arn?: string;
1403
+ Arn?: string | undefined;
1404
1404
  /**
1405
1405
  * The time, in milliseconds since the epoch, when the definition was created.
1406
1406
  * @public
1407
1407
  */
1408
- CreationTimestamp?: string;
1408
+ CreationTimestamp?: string | undefined;
1409
1409
  /**
1410
1410
  * The ID of the definition.
1411
1411
  * @public
1412
1412
  */
1413
- Id?: string;
1413
+ Id?: string | undefined;
1414
1414
  /**
1415
1415
  * The time, in milliseconds since the epoch, when the definition was last updated.
1416
1416
  * @public
1417
1417
  */
1418
- LastUpdatedTimestamp?: string;
1418
+ LastUpdatedTimestamp?: string | undefined;
1419
1419
  /**
1420
1420
  * The ID of the latest version associated with the definition.
1421
1421
  * @public
1422
1422
  */
1423
- LatestVersion?: string;
1423
+ LatestVersion?: string | undefined;
1424
1424
  /**
1425
1425
  * The ARN of the latest version associated with the definition.
1426
1426
  * @public
1427
1427
  */
1428
- LatestVersionArn?: string;
1428
+ LatestVersionArn?: string | undefined;
1429
1429
  /**
1430
1430
  * The name of the definition.
1431
1431
  * @public
1432
1432
  */
1433
- Name?: string;
1433
+ Name?: string | undefined;
1434
1434
  }
1435
1435
  /**
1436
1436
  * Information needed to create a function definition version.
@@ -1441,12 +1441,12 @@ export interface CreateFunctionDefinitionVersionRequest {
1441
1441
  * A client token used to correlate requests and responses.
1442
1442
  * @public
1443
1443
  */
1444
- AmznClientToken?: string;
1444
+ AmznClientToken?: string | undefined;
1445
1445
  /**
1446
1446
  * The default configuration that applies to all Lambda functions in this function definition version. Individual Lambda functions can override these settings.
1447
1447
  * @public
1448
1448
  */
1449
- DefaultConfig?: FunctionDefaultConfig;
1449
+ DefaultConfig?: FunctionDefaultConfig | undefined;
1450
1450
  /**
1451
1451
  * The ID of the Lambda function definition.
1452
1452
  * @public
@@ -1456,7 +1456,7 @@ export interface CreateFunctionDefinitionVersionRequest {
1456
1456
  * A list of Lambda functions in this function definition version.
1457
1457
  * @public
1458
1458
  */
1459
- Functions?: Function[];
1459
+ Functions?: Function[] | undefined;
1460
1460
  }
1461
1461
  /**
1462
1462
  * @public
@@ -1466,22 +1466,22 @@ export interface CreateFunctionDefinitionVersionResponse {
1466
1466
  * The ARN of the version.
1467
1467
  * @public
1468
1468
  */
1469
- Arn?: string;
1469
+ Arn?: string | undefined;
1470
1470
  /**
1471
1471
  * The time, in milliseconds since the epoch, when the version was created.
1472
1472
  * @public
1473
1473
  */
1474
- CreationTimestamp?: string;
1474
+ CreationTimestamp?: string | undefined;
1475
1475
  /**
1476
1476
  * The ID of the parent definition that the version is associated with.
1477
1477
  * @public
1478
1478
  */
1479
- Id?: string;
1479
+ Id?: string | undefined;
1480
1480
  /**
1481
1481
  * The ID of the version.
1482
1482
  * @public
1483
1483
  */
1484
- Version?: string;
1484
+ Version?: string | undefined;
1485
1485
  }
1486
1486
  /**
1487
1487
  * Information about a group version.
@@ -1492,37 +1492,37 @@ export interface GroupVersion {
1492
1492
  * The ARN of the connector definition version for this group.
1493
1493
  * @public
1494
1494
  */
1495
- ConnectorDefinitionVersionArn?: string;
1495
+ ConnectorDefinitionVersionArn?: string | undefined;
1496
1496
  /**
1497
1497
  * The ARN of the core definition version for this group.
1498
1498
  * @public
1499
1499
  */
1500
- CoreDefinitionVersionArn?: string;
1500
+ CoreDefinitionVersionArn?: string | undefined;
1501
1501
  /**
1502
1502
  * The ARN of the device definition version for this group.
1503
1503
  * @public
1504
1504
  */
1505
- DeviceDefinitionVersionArn?: string;
1505
+ DeviceDefinitionVersionArn?: string | undefined;
1506
1506
  /**
1507
1507
  * The ARN of the function definition version for this group.
1508
1508
  * @public
1509
1509
  */
1510
- FunctionDefinitionVersionArn?: string;
1510
+ FunctionDefinitionVersionArn?: string | undefined;
1511
1511
  /**
1512
1512
  * The ARN of the logger definition version for this group.
1513
1513
  * @public
1514
1514
  */
1515
- LoggerDefinitionVersionArn?: string;
1515
+ LoggerDefinitionVersionArn?: string | undefined;
1516
1516
  /**
1517
1517
  * The ARN of the resource definition version for this group.
1518
1518
  * @public
1519
1519
  */
1520
- ResourceDefinitionVersionArn?: string;
1520
+ ResourceDefinitionVersionArn?: string | undefined;
1521
1521
  /**
1522
1522
  * The ARN of the subscription definition version for this group.
1523
1523
  * @public
1524
1524
  */
1525
- SubscriptionDefinitionVersionArn?: string;
1525
+ SubscriptionDefinitionVersionArn?: string | undefined;
1526
1526
  }
1527
1527
  /**
1528
1528
  * @public
@@ -1532,12 +1532,12 @@ export interface CreateGroupRequest {
1532
1532
  * A client token used to correlate requests and responses.
1533
1533
  * @public
1534
1534
  */
1535
- AmznClientToken?: string;
1535
+ AmznClientToken?: string | undefined;
1536
1536
  /**
1537
1537
  * Information about the initial version of the group.
1538
1538
  * @public
1539
1539
  */
1540
- InitialVersion?: GroupVersion;
1540
+ InitialVersion?: GroupVersion | undefined;
1541
1541
  /**
1542
1542
  * The name of the group.
1543
1543
  * @public
@@ -1547,7 +1547,7 @@ export interface CreateGroupRequest {
1547
1547
  * Tag(s) to add to the new resource.
1548
1548
  * @public
1549
1549
  */
1550
- tags?: Record<string, string>;
1550
+ tags?: Record<string, string> | undefined;
1551
1551
  }
1552
1552
  /**
1553
1553
  * @public
@@ -1557,37 +1557,37 @@ export interface CreateGroupResponse {
1557
1557
  * The ARN of the definition.
1558
1558
  * @public
1559
1559
  */
1560
- Arn?: string;
1560
+ Arn?: string | undefined;
1561
1561
  /**
1562
1562
  * The time, in milliseconds since the epoch, when the definition was created.
1563
1563
  * @public
1564
1564
  */
1565
- CreationTimestamp?: string;
1565
+ CreationTimestamp?: string | undefined;
1566
1566
  /**
1567
1567
  * The ID of the definition.
1568
1568
  * @public
1569
1569
  */
1570
- Id?: string;
1570
+ Id?: string | undefined;
1571
1571
  /**
1572
1572
  * The time, in milliseconds since the epoch, when the definition was last updated.
1573
1573
  * @public
1574
1574
  */
1575
- LastUpdatedTimestamp?: string;
1575
+ LastUpdatedTimestamp?: string | undefined;
1576
1576
  /**
1577
1577
  * The ID of the latest version associated with the definition.
1578
1578
  * @public
1579
1579
  */
1580
- LatestVersion?: string;
1580
+ LatestVersion?: string | undefined;
1581
1581
  /**
1582
1582
  * The ARN of the latest version associated with the definition.
1583
1583
  * @public
1584
1584
  */
1585
- LatestVersionArn?: string;
1585
+ LatestVersionArn?: string | undefined;
1586
1586
  /**
1587
1587
  * The name of the definition.
1588
1588
  * @public
1589
1589
  */
1590
- Name?: string;
1590
+ Name?: string | undefined;
1591
1591
  }
1592
1592
  /**
1593
1593
  * @public
@@ -1597,7 +1597,7 @@ export interface CreateGroupCertificateAuthorityRequest {
1597
1597
  * A client token used to correlate requests and responses.
1598
1598
  * @public
1599
1599
  */
1600
- AmznClientToken?: string;
1600
+ AmznClientToken?: string | undefined;
1601
1601
  /**
1602
1602
  * The ID of the Greengrass group.
1603
1603
  * @public
@@ -1612,7 +1612,7 @@ export interface CreateGroupCertificateAuthorityResponse {
1612
1612
  * The ARN of the group certificate authority.
1613
1613
  * @public
1614
1614
  */
1615
- GroupCertificateAuthorityArn?: string;
1615
+ GroupCertificateAuthorityArn?: string | undefined;
1616
1616
  }
1617
1617
  /**
1618
1618
  * @public
@@ -1622,27 +1622,27 @@ export interface CreateGroupVersionRequest {
1622
1622
  * A client token used to correlate requests and responses.
1623
1623
  * @public
1624
1624
  */
1625
- AmznClientToken?: string;
1625
+ AmznClientToken?: string | undefined;
1626
1626
  /**
1627
1627
  * The ARN of the connector definition version for this group.
1628
1628
  * @public
1629
1629
  */
1630
- ConnectorDefinitionVersionArn?: string;
1630
+ ConnectorDefinitionVersionArn?: string | undefined;
1631
1631
  /**
1632
1632
  * The ARN of the core definition version for this group.
1633
1633
  * @public
1634
1634
  */
1635
- CoreDefinitionVersionArn?: string;
1635
+ CoreDefinitionVersionArn?: string | undefined;
1636
1636
  /**
1637
1637
  * The ARN of the device definition version for this group.
1638
1638
  * @public
1639
1639
  */
1640
- DeviceDefinitionVersionArn?: string;
1640
+ DeviceDefinitionVersionArn?: string | undefined;
1641
1641
  /**
1642
1642
  * The ARN of the function definition version for this group.
1643
1643
  * @public
1644
1644
  */
1645
- FunctionDefinitionVersionArn?: string;
1645
+ FunctionDefinitionVersionArn?: string | undefined;
1646
1646
  /**
1647
1647
  * The ID of the Greengrass group.
1648
1648
  * @public
@@ -1652,17 +1652,17 @@ export interface CreateGroupVersionRequest {
1652
1652
  * The ARN of the logger definition version for this group.
1653
1653
  * @public
1654
1654
  */
1655
- LoggerDefinitionVersionArn?: string;
1655
+ LoggerDefinitionVersionArn?: string | undefined;
1656
1656
  /**
1657
1657
  * The ARN of the resource definition version for this group.
1658
1658
  * @public
1659
1659
  */
1660
- ResourceDefinitionVersionArn?: string;
1660
+ ResourceDefinitionVersionArn?: string | undefined;
1661
1661
  /**
1662
1662
  * The ARN of the subscription definition version for this group.
1663
1663
  * @public
1664
1664
  */
1665
- SubscriptionDefinitionVersionArn?: string;
1665
+ SubscriptionDefinitionVersionArn?: string | undefined;
1666
1666
  }
1667
1667
  /**
1668
1668
  * @public
@@ -1672,22 +1672,22 @@ export interface CreateGroupVersionResponse {
1672
1672
  * The ARN of the version.
1673
1673
  * @public
1674
1674
  */
1675
- Arn?: string;
1675
+ Arn?: string | undefined;
1676
1676
  /**
1677
1677
  * The time, in milliseconds since the epoch, when the version was created.
1678
1678
  * @public
1679
1679
  */
1680
- CreationTimestamp?: string;
1680
+ CreationTimestamp?: string | undefined;
1681
1681
  /**
1682
1682
  * The ID of the parent definition that the version is associated with.
1683
1683
  * @public
1684
1684
  */
1685
- Id?: string;
1685
+ Id?: string | undefined;
1686
1686
  /**
1687
1687
  * The ID of the version.
1688
1688
  * @public
1689
1689
  */
1690
- Version?: string;
1690
+ Version?: string | undefined;
1691
1691
  }
1692
1692
  /**
1693
1693
  * Information about a logger definition version.
@@ -1698,7 +1698,7 @@ export interface LoggerDefinitionVersion {
1698
1698
  * A list of loggers.
1699
1699
  * @public
1700
1700
  */
1701
- Loggers?: Logger[];
1701
+ Loggers?: Logger[] | undefined;
1702
1702
  }
1703
1703
  /**
1704
1704
  * @public
@@ -1708,22 +1708,22 @@ export interface CreateLoggerDefinitionRequest {
1708
1708
  * A client token used to correlate requests and responses.
1709
1709
  * @public
1710
1710
  */
1711
- AmznClientToken?: string;
1711
+ AmznClientToken?: string | undefined;
1712
1712
  /**
1713
1713
  * Information about the initial version of the logger definition.
1714
1714
  * @public
1715
1715
  */
1716
- InitialVersion?: LoggerDefinitionVersion;
1716
+ InitialVersion?: LoggerDefinitionVersion | undefined;
1717
1717
  /**
1718
1718
  * The name of the logger definition.
1719
1719
  * @public
1720
1720
  */
1721
- Name?: string;
1721
+ Name?: string | undefined;
1722
1722
  /**
1723
1723
  * Tag(s) to add to the new resource.
1724
1724
  * @public
1725
1725
  */
1726
- tags?: Record<string, string>;
1726
+ tags?: Record<string, string> | undefined;
1727
1727
  }
1728
1728
  /**
1729
1729
  * @public
@@ -1733,37 +1733,37 @@ export interface CreateLoggerDefinitionResponse {
1733
1733
  * The ARN of the definition.
1734
1734
  * @public
1735
1735
  */
1736
- Arn?: string;
1736
+ Arn?: string | undefined;
1737
1737
  /**
1738
1738
  * The time, in milliseconds since the epoch, when the definition was created.
1739
1739
  * @public
1740
1740
  */
1741
- CreationTimestamp?: string;
1741
+ CreationTimestamp?: string | undefined;
1742
1742
  /**
1743
1743
  * The ID of the definition.
1744
1744
  * @public
1745
1745
  */
1746
- Id?: string;
1746
+ Id?: string | undefined;
1747
1747
  /**
1748
1748
  * The time, in milliseconds since the epoch, when the definition was last updated.
1749
1749
  * @public
1750
1750
  */
1751
- LastUpdatedTimestamp?: string;
1751
+ LastUpdatedTimestamp?: string | undefined;
1752
1752
  /**
1753
1753
  * The ID of the latest version associated with the definition.
1754
1754
  * @public
1755
1755
  */
1756
- LatestVersion?: string;
1756
+ LatestVersion?: string | undefined;
1757
1757
  /**
1758
1758
  * The ARN of the latest version associated with the definition.
1759
1759
  * @public
1760
1760
  */
1761
- LatestVersionArn?: string;
1761
+ LatestVersionArn?: string | undefined;
1762
1762
  /**
1763
1763
  * The name of the definition.
1764
1764
  * @public
1765
1765
  */
1766
- Name?: string;
1766
+ Name?: string | undefined;
1767
1767
  }
1768
1768
  /**
1769
1769
  * @public
@@ -1773,7 +1773,7 @@ export interface CreateLoggerDefinitionVersionRequest {
1773
1773
  * A client token used to correlate requests and responses.
1774
1774
  * @public
1775
1775
  */
1776
- AmznClientToken?: string;
1776
+ AmznClientToken?: string | undefined;
1777
1777
  /**
1778
1778
  * The ID of the logger definition.
1779
1779
  * @public
@@ -1783,7 +1783,7 @@ export interface CreateLoggerDefinitionVersionRequest {
1783
1783
  * A list of loggers.
1784
1784
  * @public
1785
1785
  */
1786
- Loggers?: Logger[];
1786
+ Loggers?: Logger[] | undefined;
1787
1787
  }
1788
1788
  /**
1789
1789
  * @public
@@ -1793,22 +1793,22 @@ export interface CreateLoggerDefinitionVersionResponse {
1793
1793
  * The ARN of the version.
1794
1794
  * @public
1795
1795
  */
1796
- Arn?: string;
1796
+ Arn?: string | undefined;
1797
1797
  /**
1798
1798
  * The time, in milliseconds since the epoch, when the version was created.
1799
1799
  * @public
1800
1800
  */
1801
- CreationTimestamp?: string;
1801
+ CreationTimestamp?: string | undefined;
1802
1802
  /**
1803
1803
  * The ID of the parent definition that the version is associated with.
1804
1804
  * @public
1805
1805
  */
1806
- Id?: string;
1806
+ Id?: string | undefined;
1807
1807
  /**
1808
1808
  * The ID of the version.
1809
1809
  * @public
1810
1810
  */
1811
- Version?: string;
1811
+ Version?: string | undefined;
1812
1812
  }
1813
1813
  /**
1814
1814
  * Information about a resource definition version.
@@ -1819,7 +1819,7 @@ export interface ResourceDefinitionVersion {
1819
1819
  * A list of resources.
1820
1820
  * @public
1821
1821
  */
1822
- Resources?: Resource[];
1822
+ Resources?: Resource[] | undefined;
1823
1823
  }
1824
1824
  /**
1825
1825
  * @public
@@ -1829,22 +1829,22 @@ export interface CreateResourceDefinitionRequest {
1829
1829
  * A client token used to correlate requests and responses.
1830
1830
  * @public
1831
1831
  */
1832
- AmznClientToken?: string;
1832
+ AmznClientToken?: string | undefined;
1833
1833
  /**
1834
1834
  * Information about the initial version of the resource definition.
1835
1835
  * @public
1836
1836
  */
1837
- InitialVersion?: ResourceDefinitionVersion;
1837
+ InitialVersion?: ResourceDefinitionVersion | undefined;
1838
1838
  /**
1839
1839
  * The name of the resource definition.
1840
1840
  * @public
1841
1841
  */
1842
- Name?: string;
1842
+ Name?: string | undefined;
1843
1843
  /**
1844
1844
  * Tag(s) to add to the new resource.
1845
1845
  * @public
1846
1846
  */
1847
- tags?: Record<string, string>;
1847
+ tags?: Record<string, string> | undefined;
1848
1848
  }
1849
1849
  /**
1850
1850
  * @public
@@ -1854,37 +1854,37 @@ export interface CreateResourceDefinitionResponse {
1854
1854
  * The ARN of the definition.
1855
1855
  * @public
1856
1856
  */
1857
- Arn?: string;
1857
+ Arn?: string | undefined;
1858
1858
  /**
1859
1859
  * The time, in milliseconds since the epoch, when the definition was created.
1860
1860
  * @public
1861
1861
  */
1862
- CreationTimestamp?: string;
1862
+ CreationTimestamp?: string | undefined;
1863
1863
  /**
1864
1864
  * The ID of the definition.
1865
1865
  * @public
1866
1866
  */
1867
- Id?: string;
1867
+ Id?: string | undefined;
1868
1868
  /**
1869
1869
  * The time, in milliseconds since the epoch, when the definition was last updated.
1870
1870
  * @public
1871
1871
  */
1872
- LastUpdatedTimestamp?: string;
1872
+ LastUpdatedTimestamp?: string | undefined;
1873
1873
  /**
1874
1874
  * The ID of the latest version associated with the definition.
1875
1875
  * @public
1876
1876
  */
1877
- LatestVersion?: string;
1877
+ LatestVersion?: string | undefined;
1878
1878
  /**
1879
1879
  * The ARN of the latest version associated with the definition.
1880
1880
  * @public
1881
1881
  */
1882
- LatestVersionArn?: string;
1882
+ LatestVersionArn?: string | undefined;
1883
1883
  /**
1884
1884
  * The name of the definition.
1885
1885
  * @public
1886
1886
  */
1887
- Name?: string;
1887
+ Name?: string | undefined;
1888
1888
  }
1889
1889
  /**
1890
1890
  * @public
@@ -1894,7 +1894,7 @@ export interface CreateResourceDefinitionVersionRequest {
1894
1894
  * A client token used to correlate requests and responses.
1895
1895
  * @public
1896
1896
  */
1897
- AmznClientToken?: string;
1897
+ AmznClientToken?: string | undefined;
1898
1898
  /**
1899
1899
  * The ID of the resource definition.
1900
1900
  * @public
@@ -1904,7 +1904,7 @@ export interface CreateResourceDefinitionVersionRequest {
1904
1904
  * A list of resources.
1905
1905
  * @public
1906
1906
  */
1907
- Resources?: Resource[];
1907
+ Resources?: Resource[] | undefined;
1908
1908
  }
1909
1909
  /**
1910
1910
  * @public
@@ -1914,22 +1914,22 @@ export interface CreateResourceDefinitionVersionResponse {
1914
1914
  * The ARN of the version.
1915
1915
  * @public
1916
1916
  */
1917
- Arn?: string;
1917
+ Arn?: string | undefined;
1918
1918
  /**
1919
1919
  * The time, in milliseconds since the epoch, when the version was created.
1920
1920
  * @public
1921
1921
  */
1922
- CreationTimestamp?: string;
1922
+ CreationTimestamp?: string | undefined;
1923
1923
  /**
1924
1924
  * The ID of the parent definition that the version is associated with.
1925
1925
  * @public
1926
1926
  */
1927
- Id?: string;
1927
+ Id?: string | undefined;
1928
1928
  /**
1929
1929
  * The ID of the version.
1930
1930
  * @public
1931
1931
  */
1932
- Version?: string;
1932
+ Version?: string | undefined;
1933
1933
  }
1934
1934
  /**
1935
1935
  * @public
@@ -1997,7 +1997,7 @@ export interface CreateSoftwareUpdateJobRequest {
1997
1997
  * A client token used to correlate requests and responses.
1998
1998
  * @public
1999
1999
  */
2000
- AmznClientToken?: string;
2000
+ AmznClientToken?: string | undefined;
2001
2001
  /**
2002
2002
  * The IAM Role that Greengrass will use to create pre-signed URLs pointing towards the update artifact.
2003
2003
  * @public
@@ -2012,7 +2012,7 @@ export interface CreateSoftwareUpdateJobRequest {
2012
2012
  * The minimum level of log statements that should be logged by the OTA Agent during an update.
2013
2013
  * @public
2014
2014
  */
2015
- UpdateAgentLogLevel?: UpdateAgentLogLevel;
2015
+ UpdateAgentLogLevel?: UpdateAgentLogLevel | undefined;
2016
2016
  /**
2017
2017
  * The ARNs of the targets (IoT things or IoT thing groups) that this update will be applied to.
2018
2018
  * @public
@@ -2037,17 +2037,17 @@ export interface CreateSoftwareUpdateJobResponse {
2037
2037
  * The IoT Job ARN corresponding to this update.
2038
2038
  * @public
2039
2039
  */
2040
- IotJobArn?: string;
2040
+ IotJobArn?: string | undefined;
2041
2041
  /**
2042
2042
  * The IoT Job Id corresponding to this update.
2043
2043
  * @public
2044
2044
  */
2045
- IotJobId?: string;
2045
+ IotJobId?: string | undefined;
2046
2046
  /**
2047
2047
  * The software version installed on the device or devices after the update.
2048
2048
  * @public
2049
2049
  */
2050
- PlatformSoftwareVersion?: string;
2050
+ PlatformSoftwareVersion?: string | undefined;
2051
2051
  }
2052
2052
  /**
2053
2053
  * Information about a subscription definition version.
@@ -2058,7 +2058,7 @@ export interface SubscriptionDefinitionVersion {
2058
2058
  * A list of subscriptions.
2059
2059
  * @public
2060
2060
  */
2061
- Subscriptions?: Subscription[];
2061
+ Subscriptions?: Subscription[] | undefined;
2062
2062
  }
2063
2063
  /**
2064
2064
  * @public
@@ -2068,22 +2068,22 @@ export interface CreateSubscriptionDefinitionRequest {
2068
2068
  * A client token used to correlate requests and responses.
2069
2069
  * @public
2070
2070
  */
2071
- AmznClientToken?: string;
2071
+ AmznClientToken?: string | undefined;
2072
2072
  /**
2073
2073
  * Information about the initial version of the subscription definition.
2074
2074
  * @public
2075
2075
  */
2076
- InitialVersion?: SubscriptionDefinitionVersion;
2076
+ InitialVersion?: SubscriptionDefinitionVersion | undefined;
2077
2077
  /**
2078
2078
  * The name of the subscription definition.
2079
2079
  * @public
2080
2080
  */
2081
- Name?: string;
2081
+ Name?: string | undefined;
2082
2082
  /**
2083
2083
  * Tag(s) to add to the new resource.
2084
2084
  * @public
2085
2085
  */
2086
- tags?: Record<string, string>;
2086
+ tags?: Record<string, string> | undefined;
2087
2087
  }
2088
2088
  /**
2089
2089
  * @public
@@ -2093,37 +2093,37 @@ export interface CreateSubscriptionDefinitionResponse {
2093
2093
  * The ARN of the definition.
2094
2094
  * @public
2095
2095
  */
2096
- Arn?: string;
2096
+ Arn?: string | undefined;
2097
2097
  /**
2098
2098
  * The time, in milliseconds since the epoch, when the definition was created.
2099
2099
  * @public
2100
2100
  */
2101
- CreationTimestamp?: string;
2101
+ CreationTimestamp?: string | undefined;
2102
2102
  /**
2103
2103
  * The ID of the definition.
2104
2104
  * @public
2105
2105
  */
2106
- Id?: string;
2106
+ Id?: string | undefined;
2107
2107
  /**
2108
2108
  * The time, in milliseconds since the epoch, when the definition was last updated.
2109
2109
  * @public
2110
2110
  */
2111
- LastUpdatedTimestamp?: string;
2111
+ LastUpdatedTimestamp?: string | undefined;
2112
2112
  /**
2113
2113
  * The ID of the latest version associated with the definition.
2114
2114
  * @public
2115
2115
  */
2116
- LatestVersion?: string;
2116
+ LatestVersion?: string | undefined;
2117
2117
  /**
2118
2118
  * The ARN of the latest version associated with the definition.
2119
2119
  * @public
2120
2120
  */
2121
- LatestVersionArn?: string;
2121
+ LatestVersionArn?: string | undefined;
2122
2122
  /**
2123
2123
  * The name of the definition.
2124
2124
  * @public
2125
2125
  */
2126
- Name?: string;
2126
+ Name?: string | undefined;
2127
2127
  }
2128
2128
  /**
2129
2129
  * @public
@@ -2133,7 +2133,7 @@ export interface CreateSubscriptionDefinitionVersionRequest {
2133
2133
  * A client token used to correlate requests and responses.
2134
2134
  * @public
2135
2135
  */
2136
- AmznClientToken?: string;
2136
+ AmznClientToken?: string | undefined;
2137
2137
  /**
2138
2138
  * The ID of the subscription definition.
2139
2139
  * @public
@@ -2143,7 +2143,7 @@ export interface CreateSubscriptionDefinitionVersionRequest {
2143
2143
  * A list of subscriptions.
2144
2144
  * @public
2145
2145
  */
2146
- Subscriptions?: Subscription[];
2146
+ Subscriptions?: Subscription[] | undefined;
2147
2147
  }
2148
2148
  /**
2149
2149
  * @public
@@ -2153,22 +2153,22 @@ export interface CreateSubscriptionDefinitionVersionResponse {
2153
2153
  * The ARN of the version.
2154
2154
  * @public
2155
2155
  */
2156
- Arn?: string;
2156
+ Arn?: string | undefined;
2157
2157
  /**
2158
2158
  * The time, in milliseconds since the epoch, when the version was created.
2159
2159
  * @public
2160
2160
  */
2161
- CreationTimestamp?: string;
2161
+ CreationTimestamp?: string | undefined;
2162
2162
  /**
2163
2163
  * The ID of the parent definition that the version is associated with.
2164
2164
  * @public
2165
2165
  */
2166
- Id?: string;
2166
+ Id?: string | undefined;
2167
2167
  /**
2168
2168
  * The ID of the version.
2169
2169
  * @public
2170
2170
  */
2171
- Version?: string;
2171
+ Version?: string | undefined;
2172
2172
  }
2173
2173
  /**
2174
2174
  * @public
@@ -2299,27 +2299,27 @@ export interface Deployment {
2299
2299
  * The time, in milliseconds since the epoch, when the deployment was created.
2300
2300
  * @public
2301
2301
  */
2302
- CreatedAt?: string;
2302
+ CreatedAt?: string | undefined;
2303
2303
  /**
2304
2304
  * The ARN of the deployment.
2305
2305
  * @public
2306
2306
  */
2307
- DeploymentArn?: string;
2307
+ DeploymentArn?: string | undefined;
2308
2308
  /**
2309
2309
  * The ID of the deployment.
2310
2310
  * @public
2311
2311
  */
2312
- DeploymentId?: string;
2312
+ DeploymentId?: string | undefined;
2313
2313
  /**
2314
2314
  * The type of the deployment.
2315
2315
  * @public
2316
2316
  */
2317
- DeploymentType?: DeploymentType;
2317
+ DeploymentType?: DeploymentType | undefined;
2318
2318
  /**
2319
2319
  * The ARN of the group for this deployment.
2320
2320
  * @public
2321
2321
  */
2322
- GroupArn?: string;
2322
+ GroupArn?: string | undefined;
2323
2323
  }
2324
2324
  /**
2325
2325
  * @public
@@ -2339,7 +2339,7 @@ export interface DisassociateRoleFromGroupResponse {
2339
2339
  * The time, in milliseconds since the epoch, when the role was disassociated from the group.
2340
2340
  * @public
2341
2341
  */
2342
- DisassociatedAt?: string;
2342
+ DisassociatedAt?: string | undefined;
2343
2343
  }
2344
2344
  /**
2345
2345
  * @public
@@ -2354,7 +2354,7 @@ export interface DisassociateServiceRoleFromAccountResponse {
2354
2354
  * The time when the service role was disassociated from the account.
2355
2355
  * @public
2356
2356
  */
2357
- DisassociatedAt?: string;
2357
+ DisassociatedAt?: string | undefined;
2358
2358
  }
2359
2359
  /**
2360
2360
  * @public
@@ -2374,12 +2374,12 @@ export interface GetAssociatedRoleResponse {
2374
2374
  * The time when the role was associated with the group.
2375
2375
  * @public
2376
2376
  */
2377
- AssociatedAt?: string;
2377
+ AssociatedAt?: string | undefined;
2378
2378
  /**
2379
2379
  * The ARN of the role that is associated with the group.
2380
2380
  * @public
2381
2381
  */
2382
- RoleArn?: string;
2382
+ RoleArn?: string | undefined;
2383
2383
  }
2384
2384
  /**
2385
2385
  * @public
@@ -2399,32 +2399,32 @@ export interface GetBulkDeploymentStatusResponse {
2399
2399
  * Relevant metrics on input records processed during bulk deployment.
2400
2400
  * @public
2401
2401
  */
2402
- BulkDeploymentMetrics?: BulkDeploymentMetrics;
2402
+ BulkDeploymentMetrics?: BulkDeploymentMetrics | undefined;
2403
2403
  /**
2404
2404
  * The status of the bulk deployment.
2405
2405
  * @public
2406
2406
  */
2407
- BulkDeploymentStatus?: BulkDeploymentStatus;
2407
+ BulkDeploymentStatus?: BulkDeploymentStatus | undefined;
2408
2408
  /**
2409
2409
  * The time, in ISO format, when the deployment was created.
2410
2410
  * @public
2411
2411
  */
2412
- CreatedAt?: string;
2412
+ CreatedAt?: string | undefined;
2413
2413
  /**
2414
2414
  * Error details
2415
2415
  * @public
2416
2416
  */
2417
- ErrorDetails?: ErrorDetail[];
2417
+ ErrorDetails?: ErrorDetail[] | undefined;
2418
2418
  /**
2419
2419
  * Error message
2420
2420
  * @public
2421
2421
  */
2422
- ErrorMessage?: string;
2422
+ ErrorMessage?: string | undefined;
2423
2423
  /**
2424
2424
  * Tag(s) attached to the resource arn.
2425
2425
  * @public
2426
2426
  */
2427
- tags?: Record<string, string>;
2427
+ tags?: Record<string, string> | undefined;
2428
2428
  }
2429
2429
  /**
2430
2430
  * @public
@@ -2444,12 +2444,12 @@ export interface GetConnectivityInfoResponse {
2444
2444
  * Connectivity info list.
2445
2445
  * @public
2446
2446
  */
2447
- ConnectivityInfo?: ConnectivityInfo[];
2447
+ ConnectivityInfo?: ConnectivityInfo[] | undefined;
2448
2448
  /**
2449
2449
  * A message about the connectivity info request.
2450
2450
  * @public
2451
2451
  */
2452
- Message?: string;
2452
+ Message?: string | undefined;
2453
2453
  }
2454
2454
  /**
2455
2455
  * @public
@@ -2469,42 +2469,42 @@ export interface GetConnectorDefinitionResponse {
2469
2469
  * The ARN of the definition.
2470
2470
  * @public
2471
2471
  */
2472
- Arn?: string;
2472
+ Arn?: string | undefined;
2473
2473
  /**
2474
2474
  * The time, in milliseconds since the epoch, when the definition was created.
2475
2475
  * @public
2476
2476
  */
2477
- CreationTimestamp?: string;
2477
+ CreationTimestamp?: string | undefined;
2478
2478
  /**
2479
2479
  * The ID of the definition.
2480
2480
  * @public
2481
2481
  */
2482
- Id?: string;
2482
+ Id?: string | undefined;
2483
2483
  /**
2484
2484
  * The time, in milliseconds since the epoch, when the definition was last updated.
2485
2485
  * @public
2486
2486
  */
2487
- LastUpdatedTimestamp?: string;
2487
+ LastUpdatedTimestamp?: string | undefined;
2488
2488
  /**
2489
2489
  * The ID of the latest version associated with the definition.
2490
2490
  * @public
2491
2491
  */
2492
- LatestVersion?: string;
2492
+ LatestVersion?: string | undefined;
2493
2493
  /**
2494
2494
  * The ARN of the latest version associated with the definition.
2495
2495
  * @public
2496
2496
  */
2497
- LatestVersionArn?: string;
2497
+ LatestVersionArn?: string | undefined;
2498
2498
  /**
2499
2499
  * The name of the definition.
2500
2500
  * @public
2501
2501
  */
2502
- Name?: string;
2502
+ Name?: string | undefined;
2503
2503
  /**
2504
2504
  * Tag(s) attached to the resource arn.
2505
2505
  * @public
2506
2506
  */
2507
- tags?: Record<string, string>;
2507
+ tags?: Record<string, string> | undefined;
2508
2508
  }
2509
2509
  /**
2510
2510
  * @public
@@ -2524,7 +2524,7 @@ export interface GetConnectorDefinitionVersionRequest {
2524
2524
  * The token for the next set of results, or ''null'' if there are no additional results.
2525
2525
  * @public
2526
2526
  */
2527
- NextToken?: string;
2527
+ NextToken?: string | undefined;
2528
2528
  }
2529
2529
  /**
2530
2530
  * @public
@@ -2534,32 +2534,32 @@ export interface GetConnectorDefinitionVersionResponse {
2534
2534
  * The ARN of the connector definition version.
2535
2535
  * @public
2536
2536
  */
2537
- Arn?: string;
2537
+ Arn?: string | undefined;
2538
2538
  /**
2539
2539
  * The time, in milliseconds since the epoch, when the connector definition version was created.
2540
2540
  * @public
2541
2541
  */
2542
- CreationTimestamp?: string;
2542
+ CreationTimestamp?: string | undefined;
2543
2543
  /**
2544
2544
  * Information about the connector definition version.
2545
2545
  * @public
2546
2546
  */
2547
- Definition?: ConnectorDefinitionVersion;
2547
+ Definition?: ConnectorDefinitionVersion | undefined;
2548
2548
  /**
2549
2549
  * The ID of the connector definition version.
2550
2550
  * @public
2551
2551
  */
2552
- Id?: string;
2552
+ Id?: string | undefined;
2553
2553
  /**
2554
2554
  * The token for the next set of results, or ''null'' if there are no additional results.
2555
2555
  * @public
2556
2556
  */
2557
- NextToken?: string;
2557
+ NextToken?: string | undefined;
2558
2558
  /**
2559
2559
  * The version of the connector definition version.
2560
2560
  * @public
2561
2561
  */
2562
- Version?: string;
2562
+ Version?: string | undefined;
2563
2563
  }
2564
2564
  /**
2565
2565
  * @public
@@ -2579,42 +2579,42 @@ export interface GetCoreDefinitionResponse {
2579
2579
  * The ARN of the definition.
2580
2580
  * @public
2581
2581
  */
2582
- Arn?: string;
2582
+ Arn?: string | undefined;
2583
2583
  /**
2584
2584
  * The time, in milliseconds since the epoch, when the definition was created.
2585
2585
  * @public
2586
2586
  */
2587
- CreationTimestamp?: string;
2587
+ CreationTimestamp?: string | undefined;
2588
2588
  /**
2589
2589
  * The ID of the definition.
2590
2590
  * @public
2591
2591
  */
2592
- Id?: string;
2592
+ Id?: string | undefined;
2593
2593
  /**
2594
2594
  * The time, in milliseconds since the epoch, when the definition was last updated.
2595
2595
  * @public
2596
2596
  */
2597
- LastUpdatedTimestamp?: string;
2597
+ LastUpdatedTimestamp?: string | undefined;
2598
2598
  /**
2599
2599
  * The ID of the latest version associated with the definition.
2600
2600
  * @public
2601
2601
  */
2602
- LatestVersion?: string;
2602
+ LatestVersion?: string | undefined;
2603
2603
  /**
2604
2604
  * The ARN of the latest version associated with the definition.
2605
2605
  * @public
2606
2606
  */
2607
- LatestVersionArn?: string;
2607
+ LatestVersionArn?: string | undefined;
2608
2608
  /**
2609
2609
  * The name of the definition.
2610
2610
  * @public
2611
2611
  */
2612
- Name?: string;
2612
+ Name?: string | undefined;
2613
2613
  /**
2614
2614
  * Tag(s) attached to the resource arn.
2615
2615
  * @public
2616
2616
  */
2617
- tags?: Record<string, string>;
2617
+ tags?: Record<string, string> | undefined;
2618
2618
  }
2619
2619
  /**
2620
2620
  * @public
@@ -2639,32 +2639,32 @@ export interface GetCoreDefinitionVersionResponse {
2639
2639
  * The ARN of the core definition version.
2640
2640
  * @public
2641
2641
  */
2642
- Arn?: string;
2642
+ Arn?: string | undefined;
2643
2643
  /**
2644
2644
  * The time, in milliseconds since the epoch, when the core definition version was created.
2645
2645
  * @public
2646
2646
  */
2647
- CreationTimestamp?: string;
2647
+ CreationTimestamp?: string | undefined;
2648
2648
  /**
2649
2649
  * Information about the core definition version.
2650
2650
  * @public
2651
2651
  */
2652
- Definition?: CoreDefinitionVersion;
2652
+ Definition?: CoreDefinitionVersion | undefined;
2653
2653
  /**
2654
2654
  * The ID of the core definition version.
2655
2655
  * @public
2656
2656
  */
2657
- Id?: string;
2657
+ Id?: string | undefined;
2658
2658
  /**
2659
2659
  * The token for the next set of results, or ''null'' if there are no additional results.
2660
2660
  * @public
2661
2661
  */
2662
- NextToken?: string;
2662
+ NextToken?: string | undefined;
2663
2663
  /**
2664
2664
  * The version of the core definition version.
2665
2665
  * @public
2666
2666
  */
2667
- Version?: string;
2667
+ Version?: string | undefined;
2668
2668
  }
2669
2669
  /**
2670
2670
  * @public
@@ -2689,27 +2689,27 @@ export interface GetDeploymentStatusResponse {
2689
2689
  * The status of the deployment: ''InProgress'', ''Building'', ''Success'', or ''Failure''.
2690
2690
  * @public
2691
2691
  */
2692
- DeploymentStatus?: string;
2692
+ DeploymentStatus?: string | undefined;
2693
2693
  /**
2694
2694
  * The type of the deployment.
2695
2695
  * @public
2696
2696
  */
2697
- DeploymentType?: DeploymentType;
2697
+ DeploymentType?: DeploymentType | undefined;
2698
2698
  /**
2699
2699
  * Error details
2700
2700
  * @public
2701
2701
  */
2702
- ErrorDetails?: ErrorDetail[];
2702
+ ErrorDetails?: ErrorDetail[] | undefined;
2703
2703
  /**
2704
2704
  * Error message
2705
2705
  * @public
2706
2706
  */
2707
- ErrorMessage?: string;
2707
+ ErrorMessage?: string | undefined;
2708
2708
  /**
2709
2709
  * The time, in milliseconds since the epoch, when the deployment status was updated.
2710
2710
  * @public
2711
2711
  */
2712
- UpdatedAt?: string;
2712
+ UpdatedAt?: string | undefined;
2713
2713
  }
2714
2714
  /**
2715
2715
  * @public
@@ -2729,42 +2729,42 @@ export interface GetDeviceDefinitionResponse {
2729
2729
  * The ARN of the definition.
2730
2730
  * @public
2731
2731
  */
2732
- Arn?: string;
2732
+ Arn?: string | undefined;
2733
2733
  /**
2734
2734
  * The time, in milliseconds since the epoch, when the definition was created.
2735
2735
  * @public
2736
2736
  */
2737
- CreationTimestamp?: string;
2737
+ CreationTimestamp?: string | undefined;
2738
2738
  /**
2739
2739
  * The ID of the definition.
2740
2740
  * @public
2741
2741
  */
2742
- Id?: string;
2742
+ Id?: string | undefined;
2743
2743
  /**
2744
2744
  * The time, in milliseconds since the epoch, when the definition was last updated.
2745
2745
  * @public
2746
2746
  */
2747
- LastUpdatedTimestamp?: string;
2747
+ LastUpdatedTimestamp?: string | undefined;
2748
2748
  /**
2749
2749
  * The ID of the latest version associated with the definition.
2750
2750
  * @public
2751
2751
  */
2752
- LatestVersion?: string;
2752
+ LatestVersion?: string | undefined;
2753
2753
  /**
2754
2754
  * The ARN of the latest version associated with the definition.
2755
2755
  * @public
2756
2756
  */
2757
- LatestVersionArn?: string;
2757
+ LatestVersionArn?: string | undefined;
2758
2758
  /**
2759
2759
  * The name of the definition.
2760
2760
  * @public
2761
2761
  */
2762
- Name?: string;
2762
+ Name?: string | undefined;
2763
2763
  /**
2764
2764
  * Tag(s) attached to the resource arn.
2765
2765
  * @public
2766
2766
  */
2767
- tags?: Record<string, string>;
2767
+ tags?: Record<string, string> | undefined;
2768
2768
  }
2769
2769
  /**
2770
2770
  * @public
@@ -2784,7 +2784,7 @@ export interface GetDeviceDefinitionVersionRequest {
2784
2784
  * The token for the next set of results, or ''null'' if there are no additional results.
2785
2785
  * @public
2786
2786
  */
2787
- NextToken?: string;
2787
+ NextToken?: string | undefined;
2788
2788
  }
2789
2789
  /**
2790
2790
  * @public
@@ -2794,32 +2794,32 @@ export interface GetDeviceDefinitionVersionResponse {
2794
2794
  * The ARN of the device definition version.
2795
2795
  * @public
2796
2796
  */
2797
- Arn?: string;
2797
+ Arn?: string | undefined;
2798
2798
  /**
2799
2799
  * The time, in milliseconds since the epoch, when the device definition version was created.
2800
2800
  * @public
2801
2801
  */
2802
- CreationTimestamp?: string;
2802
+ CreationTimestamp?: string | undefined;
2803
2803
  /**
2804
2804
  * Information about the device definition version.
2805
2805
  * @public
2806
2806
  */
2807
- Definition?: DeviceDefinitionVersion;
2807
+ Definition?: DeviceDefinitionVersion | undefined;
2808
2808
  /**
2809
2809
  * The ID of the device definition version.
2810
2810
  * @public
2811
2811
  */
2812
- Id?: string;
2812
+ Id?: string | undefined;
2813
2813
  /**
2814
2814
  * The token for the next set of results, or ''null'' if there are no additional results.
2815
2815
  * @public
2816
2816
  */
2817
- NextToken?: string;
2817
+ NextToken?: string | undefined;
2818
2818
  /**
2819
2819
  * The version of the device definition version.
2820
2820
  * @public
2821
2821
  */
2822
- Version?: string;
2822
+ Version?: string | undefined;
2823
2823
  }
2824
2824
  /**
2825
2825
  * @public
@@ -2839,42 +2839,42 @@ export interface GetFunctionDefinitionResponse {
2839
2839
  * The ARN of the definition.
2840
2840
  * @public
2841
2841
  */
2842
- Arn?: string;
2842
+ Arn?: string | undefined;
2843
2843
  /**
2844
2844
  * The time, in milliseconds since the epoch, when the definition was created.
2845
2845
  * @public
2846
2846
  */
2847
- CreationTimestamp?: string;
2847
+ CreationTimestamp?: string | undefined;
2848
2848
  /**
2849
2849
  * The ID of the definition.
2850
2850
  * @public
2851
2851
  */
2852
- Id?: string;
2852
+ Id?: string | undefined;
2853
2853
  /**
2854
2854
  * The time, in milliseconds since the epoch, when the definition was last updated.
2855
2855
  * @public
2856
2856
  */
2857
- LastUpdatedTimestamp?: string;
2857
+ LastUpdatedTimestamp?: string | undefined;
2858
2858
  /**
2859
2859
  * The ID of the latest version associated with the definition.
2860
2860
  * @public
2861
2861
  */
2862
- LatestVersion?: string;
2862
+ LatestVersion?: string | undefined;
2863
2863
  /**
2864
2864
  * The ARN of the latest version associated with the definition.
2865
2865
  * @public
2866
2866
  */
2867
- LatestVersionArn?: string;
2867
+ LatestVersionArn?: string | undefined;
2868
2868
  /**
2869
2869
  * The name of the definition.
2870
2870
  * @public
2871
2871
  */
2872
- Name?: string;
2872
+ Name?: string | undefined;
2873
2873
  /**
2874
2874
  * Tag(s) attached to the resource arn.
2875
2875
  * @public
2876
2876
  */
2877
- tags?: Record<string, string>;
2877
+ tags?: Record<string, string> | undefined;
2878
2878
  }
2879
2879
  /**
2880
2880
  * @public
@@ -2894,7 +2894,7 @@ export interface GetFunctionDefinitionVersionRequest {
2894
2894
  * The token for the next set of results, or ''null'' if there are no additional results.
2895
2895
  * @public
2896
2896
  */
2897
- NextToken?: string;
2897
+ NextToken?: string | undefined;
2898
2898
  }
2899
2899
  /**
2900
2900
  * @public
@@ -2904,32 +2904,32 @@ export interface GetFunctionDefinitionVersionResponse {
2904
2904
  * The ARN of the function definition version.
2905
2905
  * @public
2906
2906
  */
2907
- Arn?: string;
2907
+ Arn?: string | undefined;
2908
2908
  /**
2909
2909
  * The time, in milliseconds since the epoch, when the function definition version was created.
2910
2910
  * @public
2911
2911
  */
2912
- CreationTimestamp?: string;
2912
+ CreationTimestamp?: string | undefined;
2913
2913
  /**
2914
2914
  * Information on the definition.
2915
2915
  * @public
2916
2916
  */
2917
- Definition?: FunctionDefinitionVersion;
2917
+ Definition?: FunctionDefinitionVersion | undefined;
2918
2918
  /**
2919
2919
  * The ID of the function definition version.
2920
2920
  * @public
2921
2921
  */
2922
- Id?: string;
2922
+ Id?: string | undefined;
2923
2923
  /**
2924
2924
  * The token for the next set of results, or ''null'' if there are no additional results.
2925
2925
  * @public
2926
2926
  */
2927
- NextToken?: string;
2927
+ NextToken?: string | undefined;
2928
2928
  /**
2929
2929
  * The version of the function definition version.
2930
2930
  * @public
2931
2931
  */
2932
- Version?: string;
2932
+ Version?: string | undefined;
2933
2933
  }
2934
2934
  /**
2935
2935
  * @public
@@ -2949,42 +2949,42 @@ export interface GetGroupResponse {
2949
2949
  * The ARN of the definition.
2950
2950
  * @public
2951
2951
  */
2952
- Arn?: string;
2952
+ Arn?: string | undefined;
2953
2953
  /**
2954
2954
  * The time, in milliseconds since the epoch, when the definition was created.
2955
2955
  * @public
2956
2956
  */
2957
- CreationTimestamp?: string;
2957
+ CreationTimestamp?: string | undefined;
2958
2958
  /**
2959
2959
  * The ID of the definition.
2960
2960
  * @public
2961
2961
  */
2962
- Id?: string;
2962
+ Id?: string | undefined;
2963
2963
  /**
2964
2964
  * The time, in milliseconds since the epoch, when the definition was last updated.
2965
2965
  * @public
2966
2966
  */
2967
- LastUpdatedTimestamp?: string;
2967
+ LastUpdatedTimestamp?: string | undefined;
2968
2968
  /**
2969
2969
  * The ID of the latest version associated with the definition.
2970
2970
  * @public
2971
2971
  */
2972
- LatestVersion?: string;
2972
+ LatestVersion?: string | undefined;
2973
2973
  /**
2974
2974
  * The ARN of the latest version associated with the definition.
2975
2975
  * @public
2976
2976
  */
2977
- LatestVersionArn?: string;
2977
+ LatestVersionArn?: string | undefined;
2978
2978
  /**
2979
2979
  * The name of the definition.
2980
2980
  * @public
2981
2981
  */
2982
- Name?: string;
2982
+ Name?: string | undefined;
2983
2983
  /**
2984
2984
  * Tag(s) attached to the resource arn.
2985
2985
  * @public
2986
2986
  */
2987
- tags?: Record<string, string>;
2987
+ tags?: Record<string, string> | undefined;
2988
2988
  }
2989
2989
  /**
2990
2990
  * @public
@@ -3009,17 +3009,17 @@ export interface GetGroupCertificateAuthorityResponse {
3009
3009
  * The ARN of the certificate authority for the group.
3010
3010
  * @public
3011
3011
  */
3012
- GroupCertificateAuthorityArn?: string;
3012
+ GroupCertificateAuthorityArn?: string | undefined;
3013
3013
  /**
3014
3014
  * The ID of the certificate authority for the group.
3015
3015
  * @public
3016
3016
  */
3017
- GroupCertificateAuthorityId?: string;
3017
+ GroupCertificateAuthorityId?: string | undefined;
3018
3018
  /**
3019
3019
  * The PEM encoded certificate for the group.
3020
3020
  * @public
3021
3021
  */
3022
- PemEncodedCertificate?: string;
3022
+ PemEncodedCertificate?: string | undefined;
3023
3023
  }
3024
3024
  /**
3025
3025
  * @public
@@ -3039,17 +3039,17 @@ export interface GetGroupCertificateConfigurationResponse {
3039
3039
  * The amount of time remaining before the certificate authority expires, in milliseconds.
3040
3040
  * @public
3041
3041
  */
3042
- CertificateAuthorityExpiryInMilliseconds?: string;
3042
+ CertificateAuthorityExpiryInMilliseconds?: string | undefined;
3043
3043
  /**
3044
3044
  * The amount of time remaining before the certificate expires, in milliseconds.
3045
3045
  * @public
3046
3046
  */
3047
- CertificateExpiryInMilliseconds?: string;
3047
+ CertificateExpiryInMilliseconds?: string | undefined;
3048
3048
  /**
3049
3049
  * The ID of the group certificate configuration.
3050
3050
  * @public
3051
3051
  */
3052
- GroupId?: string;
3052
+ GroupId?: string | undefined;
3053
3053
  }
3054
3054
  /**
3055
3055
  * @public
@@ -3074,27 +3074,27 @@ export interface GetGroupVersionResponse {
3074
3074
  * The ARN of the group version.
3075
3075
  * @public
3076
3076
  */
3077
- Arn?: string;
3077
+ Arn?: string | undefined;
3078
3078
  /**
3079
3079
  * The time, in milliseconds since the epoch, when the group version was created.
3080
3080
  * @public
3081
3081
  */
3082
- CreationTimestamp?: string;
3082
+ CreationTimestamp?: string | undefined;
3083
3083
  /**
3084
3084
  * Information about the group version definition.
3085
3085
  * @public
3086
3086
  */
3087
- Definition?: GroupVersion;
3087
+ Definition?: GroupVersion | undefined;
3088
3088
  /**
3089
3089
  * The ID of the group that the version is associated with.
3090
3090
  * @public
3091
3091
  */
3092
- Id?: string;
3092
+ Id?: string | undefined;
3093
3093
  /**
3094
3094
  * The ID of the group version.
3095
3095
  * @public
3096
3096
  */
3097
- Version?: string;
3097
+ Version?: string | undefined;
3098
3098
  }
3099
3099
  /**
3100
3100
  * @public
@@ -3114,42 +3114,42 @@ export interface GetLoggerDefinitionResponse {
3114
3114
  * The ARN of the definition.
3115
3115
  * @public
3116
3116
  */
3117
- Arn?: string;
3117
+ Arn?: string | undefined;
3118
3118
  /**
3119
3119
  * The time, in milliseconds since the epoch, when the definition was created.
3120
3120
  * @public
3121
3121
  */
3122
- CreationTimestamp?: string;
3122
+ CreationTimestamp?: string | undefined;
3123
3123
  /**
3124
3124
  * The ID of the definition.
3125
3125
  * @public
3126
3126
  */
3127
- Id?: string;
3127
+ Id?: string | undefined;
3128
3128
  /**
3129
3129
  * The time, in milliseconds since the epoch, when the definition was last updated.
3130
3130
  * @public
3131
3131
  */
3132
- LastUpdatedTimestamp?: string;
3132
+ LastUpdatedTimestamp?: string | undefined;
3133
3133
  /**
3134
3134
  * The ID of the latest version associated with the definition.
3135
3135
  * @public
3136
3136
  */
3137
- LatestVersion?: string;
3137
+ LatestVersion?: string | undefined;
3138
3138
  /**
3139
3139
  * The ARN of the latest version associated with the definition.
3140
3140
  * @public
3141
3141
  */
3142
- LatestVersionArn?: string;
3142
+ LatestVersionArn?: string | undefined;
3143
3143
  /**
3144
3144
  * The name of the definition.
3145
3145
  * @public
3146
3146
  */
3147
- Name?: string;
3147
+ Name?: string | undefined;
3148
3148
  /**
3149
3149
  * Tag(s) attached to the resource arn.
3150
3150
  * @public
3151
3151
  */
3152
- tags?: Record<string, string>;
3152
+ tags?: Record<string, string> | undefined;
3153
3153
  }
3154
3154
  /**
3155
3155
  * @public
@@ -3169,7 +3169,7 @@ export interface GetLoggerDefinitionVersionRequest {
3169
3169
  * The token for the next set of results, or ''null'' if there are no additional results.
3170
3170
  * @public
3171
3171
  */
3172
- NextToken?: string;
3172
+ NextToken?: string | undefined;
3173
3173
  }
3174
3174
  /**
3175
3175
  * @public
@@ -3179,27 +3179,27 @@ export interface GetLoggerDefinitionVersionResponse {
3179
3179
  * The ARN of the logger definition version.
3180
3180
  * @public
3181
3181
  */
3182
- Arn?: string;
3182
+ Arn?: string | undefined;
3183
3183
  /**
3184
3184
  * The time, in milliseconds since the epoch, when the logger definition version was created.
3185
3185
  * @public
3186
3186
  */
3187
- CreationTimestamp?: string;
3187
+ CreationTimestamp?: string | undefined;
3188
3188
  /**
3189
3189
  * Information about the logger definition version.
3190
3190
  * @public
3191
3191
  */
3192
- Definition?: LoggerDefinitionVersion;
3192
+ Definition?: LoggerDefinitionVersion | undefined;
3193
3193
  /**
3194
3194
  * The ID of the logger definition version.
3195
3195
  * @public
3196
3196
  */
3197
- Id?: string;
3197
+ Id?: string | undefined;
3198
3198
  /**
3199
3199
  * The version of the logger definition version.
3200
3200
  * @public
3201
3201
  */
3202
- Version?: string;
3202
+ Version?: string | undefined;
3203
3203
  }
3204
3204
  /**
3205
3205
  * @public
@@ -3219,42 +3219,42 @@ export interface GetResourceDefinitionResponse {
3219
3219
  * The ARN of the definition.
3220
3220
  * @public
3221
3221
  */
3222
- Arn?: string;
3222
+ Arn?: string | undefined;
3223
3223
  /**
3224
3224
  * The time, in milliseconds since the epoch, when the definition was created.
3225
3225
  * @public
3226
3226
  */
3227
- CreationTimestamp?: string;
3227
+ CreationTimestamp?: string | undefined;
3228
3228
  /**
3229
3229
  * The ID of the definition.
3230
3230
  * @public
3231
3231
  */
3232
- Id?: string;
3232
+ Id?: string | undefined;
3233
3233
  /**
3234
3234
  * The time, in milliseconds since the epoch, when the definition was last updated.
3235
3235
  * @public
3236
3236
  */
3237
- LastUpdatedTimestamp?: string;
3237
+ LastUpdatedTimestamp?: string | undefined;
3238
3238
  /**
3239
3239
  * The ID of the latest version associated with the definition.
3240
3240
  * @public
3241
3241
  */
3242
- LatestVersion?: string;
3242
+ LatestVersion?: string | undefined;
3243
3243
  /**
3244
3244
  * The ARN of the latest version associated with the definition.
3245
3245
  * @public
3246
3246
  */
3247
- LatestVersionArn?: string;
3247
+ LatestVersionArn?: string | undefined;
3248
3248
  /**
3249
3249
  * The name of the definition.
3250
3250
  * @public
3251
3251
  */
3252
- Name?: string;
3252
+ Name?: string | undefined;
3253
3253
  /**
3254
3254
  * Tag(s) attached to the resource arn.
3255
3255
  * @public
3256
3256
  */
3257
- tags?: Record<string, string>;
3257
+ tags?: Record<string, string> | undefined;
3258
3258
  }
3259
3259
  /**
3260
3260
  * @public
@@ -3279,27 +3279,27 @@ export interface GetResourceDefinitionVersionResponse {
3279
3279
  * Arn of the resource definition version.
3280
3280
  * @public
3281
3281
  */
3282
- Arn?: string;
3282
+ Arn?: string | undefined;
3283
3283
  /**
3284
3284
  * The time, in milliseconds since the epoch, when the resource definition version was created.
3285
3285
  * @public
3286
3286
  */
3287
- CreationTimestamp?: string;
3287
+ CreationTimestamp?: string | undefined;
3288
3288
  /**
3289
3289
  * Information about the definition.
3290
3290
  * @public
3291
3291
  */
3292
- Definition?: ResourceDefinitionVersion;
3292
+ Definition?: ResourceDefinitionVersion | undefined;
3293
3293
  /**
3294
3294
  * The ID of the resource definition version.
3295
3295
  * @public
3296
3296
  */
3297
- Id?: string;
3297
+ Id?: string | undefined;
3298
3298
  /**
3299
3299
  * The version of the resource definition version.
3300
3300
  * @public
3301
3301
  */
3302
- Version?: string;
3302
+ Version?: string | undefined;
3303
3303
  }
3304
3304
  /**
3305
3305
  * @public
@@ -3314,12 +3314,12 @@ export interface GetServiceRoleForAccountResponse {
3314
3314
  * The time when the service role was associated with the account.
3315
3315
  * @public
3316
3316
  */
3317
- AssociatedAt?: string;
3317
+ AssociatedAt?: string | undefined;
3318
3318
  /**
3319
3319
  * The ARN of the role which is associated with the account.
3320
3320
  * @public
3321
3321
  */
3322
- RoleArn?: string;
3322
+ RoleArn?: string | undefined;
3323
3323
  }
3324
3324
  /**
3325
3325
  * @public
@@ -3339,42 +3339,42 @@ export interface GetSubscriptionDefinitionResponse {
3339
3339
  * The ARN of the definition.
3340
3340
  * @public
3341
3341
  */
3342
- Arn?: string;
3342
+ Arn?: string | undefined;
3343
3343
  /**
3344
3344
  * The time, in milliseconds since the epoch, when the definition was created.
3345
3345
  * @public
3346
3346
  */
3347
- CreationTimestamp?: string;
3347
+ CreationTimestamp?: string | undefined;
3348
3348
  /**
3349
3349
  * The ID of the definition.
3350
3350
  * @public
3351
3351
  */
3352
- Id?: string;
3352
+ Id?: string | undefined;
3353
3353
  /**
3354
3354
  * The time, in milliseconds since the epoch, when the definition was last updated.
3355
3355
  * @public
3356
3356
  */
3357
- LastUpdatedTimestamp?: string;
3357
+ LastUpdatedTimestamp?: string | undefined;
3358
3358
  /**
3359
3359
  * The ID of the latest version associated with the definition.
3360
3360
  * @public
3361
3361
  */
3362
- LatestVersion?: string;
3362
+ LatestVersion?: string | undefined;
3363
3363
  /**
3364
3364
  * The ARN of the latest version associated with the definition.
3365
3365
  * @public
3366
3366
  */
3367
- LatestVersionArn?: string;
3367
+ LatestVersionArn?: string | undefined;
3368
3368
  /**
3369
3369
  * The name of the definition.
3370
3370
  * @public
3371
3371
  */
3372
- Name?: string;
3372
+ Name?: string | undefined;
3373
3373
  /**
3374
3374
  * Tag(s) attached to the resource arn.
3375
3375
  * @public
3376
3376
  */
3377
- tags?: Record<string, string>;
3377
+ tags?: Record<string, string> | undefined;
3378
3378
  }
3379
3379
  /**
3380
3380
  * @public
@@ -3384,7 +3384,7 @@ export interface GetSubscriptionDefinitionVersionRequest {
3384
3384
  * The token for the next set of results, or ''null'' if there are no additional results.
3385
3385
  * @public
3386
3386
  */
3387
- NextToken?: string;
3387
+ NextToken?: string | undefined;
3388
3388
  /**
3389
3389
  * The ID of the subscription definition.
3390
3390
  * @public
@@ -3404,32 +3404,32 @@ export interface GetSubscriptionDefinitionVersionResponse {
3404
3404
  * The ARN of the subscription definition version.
3405
3405
  * @public
3406
3406
  */
3407
- Arn?: string;
3407
+ Arn?: string | undefined;
3408
3408
  /**
3409
3409
  * The time, in milliseconds since the epoch, when the subscription definition version was created.
3410
3410
  * @public
3411
3411
  */
3412
- CreationTimestamp?: string;
3412
+ CreationTimestamp?: string | undefined;
3413
3413
  /**
3414
3414
  * Information about the subscription definition version.
3415
3415
  * @public
3416
3416
  */
3417
- Definition?: SubscriptionDefinitionVersion;
3417
+ Definition?: SubscriptionDefinitionVersion | undefined;
3418
3418
  /**
3419
3419
  * The ID of the subscription definition version.
3420
3420
  * @public
3421
3421
  */
3422
- Id?: string;
3422
+ Id?: string | undefined;
3423
3423
  /**
3424
3424
  * The token for the next set of results, or ''null'' if there are no additional results.
3425
3425
  * @public
3426
3426
  */
3427
- NextToken?: string;
3427
+ NextToken?: string | undefined;
3428
3428
  /**
3429
3429
  * The version of the subscription definition version.
3430
3430
  * @public
3431
3431
  */
3432
- Version?: string;
3432
+ Version?: string | undefined;
3433
3433
  }
3434
3434
  /**
3435
3435
  * @public
@@ -3462,7 +3462,7 @@ export interface TelemetryConfiguration {
3462
3462
  * Synchronization status of the device reported configuration with the desired configuration.
3463
3463
  * @public
3464
3464
  */
3465
- ConfigurationSyncStatus?: ConfigurationSyncStatus;
3465
+ ConfigurationSyncStatus?: ConfigurationSyncStatus | undefined;
3466
3466
  /**
3467
3467
  * Configure telemetry to be on or off.
3468
3468
  * @public
@@ -3478,7 +3478,7 @@ export interface RuntimeConfiguration {
3478
3478
  * Configuration for telemetry service.
3479
3479
  * @public
3480
3480
  */
3481
- TelemetryConfiguration?: TelemetryConfiguration;
3481
+ TelemetryConfiguration?: TelemetryConfiguration | undefined;
3482
3482
  }
3483
3483
  /**
3484
3484
  * @public
@@ -3488,7 +3488,7 @@ export interface GetThingRuntimeConfigurationResponse {
3488
3488
  * Runtime configuration for a thing.
3489
3489
  * @public
3490
3490
  */
3491
- RuntimeConfiguration?: RuntimeConfiguration;
3491
+ RuntimeConfiguration?: RuntimeConfiguration | undefined;
3492
3492
  }
3493
3493
  /**
3494
3494
  * @public
@@ -3503,12 +3503,12 @@ export interface ListBulkDeploymentDetailedReportsRequest {
3503
3503
  * The maximum number of results to be returned per request.
3504
3504
  * @public
3505
3505
  */
3506
- MaxResults?: string;
3506
+ MaxResults?: string | undefined;
3507
3507
  /**
3508
3508
  * The token for the next set of results, or ''null'' if there are no additional results.
3509
3509
  * @public
3510
3510
  */
3511
- NextToken?: string;
3511
+ NextToken?: string | undefined;
3512
3512
  }
3513
3513
  /**
3514
3514
  * @public
@@ -3518,12 +3518,12 @@ export interface ListBulkDeploymentDetailedReportsResponse {
3518
3518
  * A list of the individual group deployments in the bulk deployment operation.
3519
3519
  * @public
3520
3520
  */
3521
- Deployments?: BulkDeploymentResult[];
3521
+ Deployments?: BulkDeploymentResult[] | undefined;
3522
3522
  /**
3523
3523
  * The token for the next set of results, or ''null'' if there are no additional results.
3524
3524
  * @public
3525
3525
  */
3526
- NextToken?: string;
3526
+ NextToken?: string | undefined;
3527
3527
  }
3528
3528
  /**
3529
3529
  * @public
@@ -3533,12 +3533,12 @@ export interface ListBulkDeploymentsRequest {
3533
3533
  * The maximum number of results to be returned per request.
3534
3534
  * @public
3535
3535
  */
3536
- MaxResults?: string;
3536
+ MaxResults?: string | undefined;
3537
3537
  /**
3538
3538
  * The token for the next set of results, or ''null'' if there are no additional results.
3539
3539
  * @public
3540
3540
  */
3541
- NextToken?: string;
3541
+ NextToken?: string | undefined;
3542
3542
  }
3543
3543
  /**
3544
3544
  * @public
@@ -3548,12 +3548,12 @@ export interface ListBulkDeploymentsResponse {
3548
3548
  * A list of bulk deployments.
3549
3549
  * @public
3550
3550
  */
3551
- BulkDeployments?: BulkDeployment[];
3551
+ BulkDeployments?: BulkDeployment[] | undefined;
3552
3552
  /**
3553
3553
  * The token for the next set of results, or ''null'' if there are no additional results.
3554
3554
  * @public
3555
3555
  */
3556
- NextToken?: string;
3556
+ NextToken?: string | undefined;
3557
3557
  }
3558
3558
  /**
3559
3559
  * @public
@@ -3563,12 +3563,12 @@ export interface ListConnectorDefinitionsRequest {
3563
3563
  * The maximum number of results to be returned per request.
3564
3564
  * @public
3565
3565
  */
3566
- MaxResults?: string;
3566
+ MaxResults?: string | undefined;
3567
3567
  /**
3568
3568
  * The token for the next set of results, or ''null'' if there are no additional results.
3569
3569
  * @public
3570
3570
  */
3571
- NextToken?: string;
3571
+ NextToken?: string | undefined;
3572
3572
  }
3573
3573
  /**
3574
3574
  * @public
@@ -3578,12 +3578,12 @@ export interface ListConnectorDefinitionsResponse {
3578
3578
  * Information about a definition.
3579
3579
  * @public
3580
3580
  */
3581
- Definitions?: DefinitionInformation[];
3581
+ Definitions?: DefinitionInformation[] | undefined;
3582
3582
  /**
3583
3583
  * The token for the next set of results, or ''null'' if there are no additional results.
3584
3584
  * @public
3585
3585
  */
3586
- NextToken?: string;
3586
+ NextToken?: string | undefined;
3587
3587
  }
3588
3588
  /**
3589
3589
  * @public
@@ -3598,12 +3598,12 @@ export interface ListConnectorDefinitionVersionsRequest {
3598
3598
  * The maximum number of results to be returned per request.
3599
3599
  * @public
3600
3600
  */
3601
- MaxResults?: string;
3601
+ MaxResults?: string | undefined;
3602
3602
  /**
3603
3603
  * The token for the next set of results, or ''null'' if there are no additional results.
3604
3604
  * @public
3605
3605
  */
3606
- NextToken?: string;
3606
+ NextToken?: string | undefined;
3607
3607
  }
3608
3608
  /**
3609
3609
  * @public
@@ -3613,12 +3613,12 @@ export interface ListConnectorDefinitionVersionsResponse {
3613
3613
  * The token for the next set of results, or ''null'' if there are no additional results.
3614
3614
  * @public
3615
3615
  */
3616
- NextToken?: string;
3616
+ NextToken?: string | undefined;
3617
3617
  /**
3618
3618
  * Information about a version.
3619
3619
  * @public
3620
3620
  */
3621
- Versions?: VersionInformation[];
3621
+ Versions?: VersionInformation[] | undefined;
3622
3622
  }
3623
3623
  /**
3624
3624
  * @public
@@ -3628,12 +3628,12 @@ export interface ListCoreDefinitionsRequest {
3628
3628
  * The maximum number of results to be returned per request.
3629
3629
  * @public
3630
3630
  */
3631
- MaxResults?: string;
3631
+ MaxResults?: string | undefined;
3632
3632
  /**
3633
3633
  * The token for the next set of results, or ''null'' if there are no additional results.
3634
3634
  * @public
3635
3635
  */
3636
- NextToken?: string;
3636
+ NextToken?: string | undefined;
3637
3637
  }
3638
3638
  /**
3639
3639
  * @public
@@ -3643,12 +3643,12 @@ export interface ListCoreDefinitionsResponse {
3643
3643
  * Information about a definition.
3644
3644
  * @public
3645
3645
  */
3646
- Definitions?: DefinitionInformation[];
3646
+ Definitions?: DefinitionInformation[] | undefined;
3647
3647
  /**
3648
3648
  * The token for the next set of results, or ''null'' if there are no additional results.
3649
3649
  * @public
3650
3650
  */
3651
- NextToken?: string;
3651
+ NextToken?: string | undefined;
3652
3652
  }
3653
3653
  /**
3654
3654
  * @public
@@ -3663,12 +3663,12 @@ export interface ListCoreDefinitionVersionsRequest {
3663
3663
  * The maximum number of results to be returned per request.
3664
3664
  * @public
3665
3665
  */
3666
- MaxResults?: string;
3666
+ MaxResults?: string | undefined;
3667
3667
  /**
3668
3668
  * The token for the next set of results, or ''null'' if there are no additional results.
3669
3669
  * @public
3670
3670
  */
3671
- NextToken?: string;
3671
+ NextToken?: string | undefined;
3672
3672
  }
3673
3673
  /**
3674
3674
  * @public
@@ -3678,12 +3678,12 @@ export interface ListCoreDefinitionVersionsResponse {
3678
3678
  * The token for the next set of results, or ''null'' if there are no additional results.
3679
3679
  * @public
3680
3680
  */
3681
- NextToken?: string;
3681
+ NextToken?: string | undefined;
3682
3682
  /**
3683
3683
  * Information about a version.
3684
3684
  * @public
3685
3685
  */
3686
- Versions?: VersionInformation[];
3686
+ Versions?: VersionInformation[] | undefined;
3687
3687
  }
3688
3688
  /**
3689
3689
  * @public
@@ -3698,12 +3698,12 @@ export interface ListDeploymentsRequest {
3698
3698
  * The maximum number of results to be returned per request.
3699
3699
  * @public
3700
3700
  */
3701
- MaxResults?: string;
3701
+ MaxResults?: string | undefined;
3702
3702
  /**
3703
3703
  * The token for the next set of results, or ''null'' if there are no additional results.
3704
3704
  * @public
3705
3705
  */
3706
- NextToken?: string;
3706
+ NextToken?: string | undefined;
3707
3707
  }
3708
3708
  /**
3709
3709
  * @public
@@ -3713,12 +3713,12 @@ export interface ListDeploymentsResponse {
3713
3713
  * A list of deployments for the requested groups.
3714
3714
  * @public
3715
3715
  */
3716
- Deployments?: Deployment[];
3716
+ Deployments?: Deployment[] | undefined;
3717
3717
  /**
3718
3718
  * The token for the next set of results, or ''null'' if there are no additional results.
3719
3719
  * @public
3720
3720
  */
3721
- NextToken?: string;
3721
+ NextToken?: string | undefined;
3722
3722
  }
3723
3723
  /**
3724
3724
  * @public
@@ -3728,12 +3728,12 @@ export interface ListDeviceDefinitionsRequest {
3728
3728
  * The maximum number of results to be returned per request.
3729
3729
  * @public
3730
3730
  */
3731
- MaxResults?: string;
3731
+ MaxResults?: string | undefined;
3732
3732
  /**
3733
3733
  * The token for the next set of results, or ''null'' if there are no additional results.
3734
3734
  * @public
3735
3735
  */
3736
- NextToken?: string;
3736
+ NextToken?: string | undefined;
3737
3737
  }
3738
3738
  /**
3739
3739
  * @public
@@ -3743,12 +3743,12 @@ export interface ListDeviceDefinitionsResponse {
3743
3743
  * Information about a definition.
3744
3744
  * @public
3745
3745
  */
3746
- Definitions?: DefinitionInformation[];
3746
+ Definitions?: DefinitionInformation[] | undefined;
3747
3747
  /**
3748
3748
  * The token for the next set of results, or ''null'' if there are no additional results.
3749
3749
  * @public
3750
3750
  */
3751
- NextToken?: string;
3751
+ NextToken?: string | undefined;
3752
3752
  }
3753
3753
  /**
3754
3754
  * @public
@@ -3763,12 +3763,12 @@ export interface ListDeviceDefinitionVersionsRequest {
3763
3763
  * The maximum number of results to be returned per request.
3764
3764
  * @public
3765
3765
  */
3766
- MaxResults?: string;
3766
+ MaxResults?: string | undefined;
3767
3767
  /**
3768
3768
  * The token for the next set of results, or ''null'' if there are no additional results.
3769
3769
  * @public
3770
3770
  */
3771
- NextToken?: string;
3771
+ NextToken?: string | undefined;
3772
3772
  }
3773
3773
  /**
3774
3774
  * @public
@@ -3778,12 +3778,12 @@ export interface ListDeviceDefinitionVersionsResponse {
3778
3778
  * The token for the next set of results, or ''null'' if there are no additional results.
3779
3779
  * @public
3780
3780
  */
3781
- NextToken?: string;
3781
+ NextToken?: string | undefined;
3782
3782
  /**
3783
3783
  * Information about a version.
3784
3784
  * @public
3785
3785
  */
3786
- Versions?: VersionInformation[];
3786
+ Versions?: VersionInformation[] | undefined;
3787
3787
  }
3788
3788
  /**
3789
3789
  * @public
@@ -3793,12 +3793,12 @@ export interface ListFunctionDefinitionsRequest {
3793
3793
  * The maximum number of results to be returned per request.
3794
3794
  * @public
3795
3795
  */
3796
- MaxResults?: string;
3796
+ MaxResults?: string | undefined;
3797
3797
  /**
3798
3798
  * The token for the next set of results, or ''null'' if there are no additional results.
3799
3799
  * @public
3800
3800
  */
3801
- NextToken?: string;
3801
+ NextToken?: string | undefined;
3802
3802
  }
3803
3803
  /**
3804
3804
  * @public
@@ -3808,12 +3808,12 @@ export interface ListFunctionDefinitionsResponse {
3808
3808
  * Information about a definition.
3809
3809
  * @public
3810
3810
  */
3811
- Definitions?: DefinitionInformation[];
3811
+ Definitions?: DefinitionInformation[] | undefined;
3812
3812
  /**
3813
3813
  * The token for the next set of results, or ''null'' if there are no additional results.
3814
3814
  * @public
3815
3815
  */
3816
- NextToken?: string;
3816
+ NextToken?: string | undefined;
3817
3817
  }
3818
3818
  /**
3819
3819
  * @public
@@ -3828,12 +3828,12 @@ export interface ListFunctionDefinitionVersionsRequest {
3828
3828
  * The maximum number of results to be returned per request.
3829
3829
  * @public
3830
3830
  */
3831
- MaxResults?: string;
3831
+ MaxResults?: string | undefined;
3832
3832
  /**
3833
3833
  * The token for the next set of results, or ''null'' if there are no additional results.
3834
3834
  * @public
3835
3835
  */
3836
- NextToken?: string;
3836
+ NextToken?: string | undefined;
3837
3837
  }
3838
3838
  /**
3839
3839
  * @public
@@ -3843,12 +3843,12 @@ export interface ListFunctionDefinitionVersionsResponse {
3843
3843
  * The token for the next set of results, or ''null'' if there are no additional results.
3844
3844
  * @public
3845
3845
  */
3846
- NextToken?: string;
3846
+ NextToken?: string | undefined;
3847
3847
  /**
3848
3848
  * Information about a version.
3849
3849
  * @public
3850
3850
  */
3851
- Versions?: VersionInformation[];
3851
+ Versions?: VersionInformation[] | undefined;
3852
3852
  }
3853
3853
  /**
3854
3854
  * @public
@@ -3868,7 +3868,7 @@ export interface ListGroupCertificateAuthoritiesResponse {
3868
3868
  * A list of certificate authorities associated with the group.
3869
3869
  * @public
3870
3870
  */
3871
- GroupCertificateAuthorities?: GroupCertificateAuthorityProperties[];
3871
+ GroupCertificateAuthorities?: GroupCertificateAuthorityProperties[] | undefined;
3872
3872
  }
3873
3873
  /**
3874
3874
  * @public
@@ -3878,12 +3878,12 @@ export interface ListGroupsRequest {
3878
3878
  * The maximum number of results to be returned per request.
3879
3879
  * @public
3880
3880
  */
3881
- MaxResults?: string;
3881
+ MaxResults?: string | undefined;
3882
3882
  /**
3883
3883
  * The token for the next set of results, or ''null'' if there are no additional results.
3884
3884
  * @public
3885
3885
  */
3886
- NextToken?: string;
3886
+ NextToken?: string | undefined;
3887
3887
  }
3888
3888
  /**
3889
3889
  * @public
@@ -3893,12 +3893,12 @@ export interface ListGroupsResponse {
3893
3893
  * Information about a group.
3894
3894
  * @public
3895
3895
  */
3896
- Groups?: GroupInformation[];
3896
+ Groups?: GroupInformation[] | undefined;
3897
3897
  /**
3898
3898
  * The token for the next set of results, or ''null'' if there are no additional results.
3899
3899
  * @public
3900
3900
  */
3901
- NextToken?: string;
3901
+ NextToken?: string | undefined;
3902
3902
  }
3903
3903
  /**
3904
3904
  * @public
@@ -3913,12 +3913,12 @@ export interface ListGroupVersionsRequest {
3913
3913
  * The maximum number of results to be returned per request.
3914
3914
  * @public
3915
3915
  */
3916
- MaxResults?: string;
3916
+ MaxResults?: string | undefined;
3917
3917
  /**
3918
3918
  * The token for the next set of results, or ''null'' if there are no additional results.
3919
3919
  * @public
3920
3920
  */
3921
- NextToken?: string;
3921
+ NextToken?: string | undefined;
3922
3922
  }
3923
3923
  /**
3924
3924
  * @public
@@ -3928,12 +3928,12 @@ export interface ListGroupVersionsResponse {
3928
3928
  * The token for the next set of results, or ''null'' if there are no additional results.
3929
3929
  * @public
3930
3930
  */
3931
- NextToken?: string;
3931
+ NextToken?: string | undefined;
3932
3932
  /**
3933
3933
  * Information about a version.
3934
3934
  * @public
3935
3935
  */
3936
- Versions?: VersionInformation[];
3936
+ Versions?: VersionInformation[] | undefined;
3937
3937
  }
3938
3938
  /**
3939
3939
  * @public
@@ -3943,12 +3943,12 @@ export interface ListLoggerDefinitionsRequest {
3943
3943
  * The maximum number of results to be returned per request.
3944
3944
  * @public
3945
3945
  */
3946
- MaxResults?: string;
3946
+ MaxResults?: string | undefined;
3947
3947
  /**
3948
3948
  * The token for the next set of results, or ''null'' if there are no additional results.
3949
3949
  * @public
3950
3950
  */
3951
- NextToken?: string;
3951
+ NextToken?: string | undefined;
3952
3952
  }
3953
3953
  /**
3954
3954
  * @public
@@ -3958,12 +3958,12 @@ export interface ListLoggerDefinitionsResponse {
3958
3958
  * Information about a definition.
3959
3959
  * @public
3960
3960
  */
3961
- Definitions?: DefinitionInformation[];
3961
+ Definitions?: DefinitionInformation[] | undefined;
3962
3962
  /**
3963
3963
  * The token for the next set of results, or ''null'' if there are no additional results.
3964
3964
  * @public
3965
3965
  */
3966
- NextToken?: string;
3966
+ NextToken?: string | undefined;
3967
3967
  }
3968
3968
  /**
3969
3969
  * @public
@@ -3978,12 +3978,12 @@ export interface ListLoggerDefinitionVersionsRequest {
3978
3978
  * The maximum number of results to be returned per request.
3979
3979
  * @public
3980
3980
  */
3981
- MaxResults?: string;
3981
+ MaxResults?: string | undefined;
3982
3982
  /**
3983
3983
  * The token for the next set of results, or ''null'' if there are no additional results.
3984
3984
  * @public
3985
3985
  */
3986
- NextToken?: string;
3986
+ NextToken?: string | undefined;
3987
3987
  }
3988
3988
  /**
3989
3989
  * @public
@@ -3993,12 +3993,12 @@ export interface ListLoggerDefinitionVersionsResponse {
3993
3993
  * The token for the next set of results, or ''null'' if there are no additional results.
3994
3994
  * @public
3995
3995
  */
3996
- NextToken?: string;
3996
+ NextToken?: string | undefined;
3997
3997
  /**
3998
3998
  * Information about a version.
3999
3999
  * @public
4000
4000
  */
4001
- Versions?: VersionInformation[];
4001
+ Versions?: VersionInformation[] | undefined;
4002
4002
  }
4003
4003
  /**
4004
4004
  * @public
@@ -4008,12 +4008,12 @@ export interface ListResourceDefinitionsRequest {
4008
4008
  * The maximum number of results to be returned per request.
4009
4009
  * @public
4010
4010
  */
4011
- MaxResults?: string;
4011
+ MaxResults?: string | undefined;
4012
4012
  /**
4013
4013
  * The token for the next set of results, or ''null'' if there are no additional results.
4014
4014
  * @public
4015
4015
  */
4016
- NextToken?: string;
4016
+ NextToken?: string | undefined;
4017
4017
  }
4018
4018
  /**
4019
4019
  * @public
@@ -4023,12 +4023,12 @@ export interface ListResourceDefinitionsResponse {
4023
4023
  * Information about a definition.
4024
4024
  * @public
4025
4025
  */
4026
- Definitions?: DefinitionInformation[];
4026
+ Definitions?: DefinitionInformation[] | undefined;
4027
4027
  /**
4028
4028
  * The token for the next set of results, or ''null'' if there are no additional results.
4029
4029
  * @public
4030
4030
  */
4031
- NextToken?: string;
4031
+ NextToken?: string | undefined;
4032
4032
  }
4033
4033
  /**
4034
4034
  * @public
@@ -4038,12 +4038,12 @@ export interface ListResourceDefinitionVersionsRequest {
4038
4038
  * The maximum number of results to be returned per request.
4039
4039
  * @public
4040
4040
  */
4041
- MaxResults?: string;
4041
+ MaxResults?: string | undefined;
4042
4042
  /**
4043
4043
  * The token for the next set of results, or ''null'' if there are no additional results.
4044
4044
  * @public
4045
4045
  */
4046
- NextToken?: string;
4046
+ NextToken?: string | undefined;
4047
4047
  /**
4048
4048
  * The ID of the resource definition.
4049
4049
  * @public
@@ -4058,12 +4058,12 @@ export interface ListResourceDefinitionVersionsResponse {
4058
4058
  * The token for the next set of results, or ''null'' if there are no additional results.
4059
4059
  * @public
4060
4060
  */
4061
- NextToken?: string;
4061
+ NextToken?: string | undefined;
4062
4062
  /**
4063
4063
  * Information about a version.
4064
4064
  * @public
4065
4065
  */
4066
- Versions?: VersionInformation[];
4066
+ Versions?: VersionInformation[] | undefined;
4067
4067
  }
4068
4068
  /**
4069
4069
  * @public
@@ -4073,12 +4073,12 @@ export interface ListSubscriptionDefinitionsRequest {
4073
4073
  * The maximum number of results to be returned per request.
4074
4074
  * @public
4075
4075
  */
4076
- MaxResults?: string;
4076
+ MaxResults?: string | undefined;
4077
4077
  /**
4078
4078
  * The token for the next set of results, or ''null'' if there are no additional results.
4079
4079
  * @public
4080
4080
  */
4081
- NextToken?: string;
4081
+ NextToken?: string | undefined;
4082
4082
  }
4083
4083
  /**
4084
4084
  * @public
@@ -4088,12 +4088,12 @@ export interface ListSubscriptionDefinitionsResponse {
4088
4088
  * Information about a definition.
4089
4089
  * @public
4090
4090
  */
4091
- Definitions?: DefinitionInformation[];
4091
+ Definitions?: DefinitionInformation[] | undefined;
4092
4092
  /**
4093
4093
  * The token for the next set of results, or ''null'' if there are no additional results.
4094
4094
  * @public
4095
4095
  */
4096
- NextToken?: string;
4096
+ NextToken?: string | undefined;
4097
4097
  }
4098
4098
  /**
4099
4099
  * @public
@@ -4103,12 +4103,12 @@ export interface ListSubscriptionDefinitionVersionsRequest {
4103
4103
  * The maximum number of results to be returned per request.
4104
4104
  * @public
4105
4105
  */
4106
- MaxResults?: string;
4106
+ MaxResults?: string | undefined;
4107
4107
  /**
4108
4108
  * The token for the next set of results, or ''null'' if there are no additional results.
4109
4109
  * @public
4110
4110
  */
4111
- NextToken?: string;
4111
+ NextToken?: string | undefined;
4112
4112
  /**
4113
4113
  * The ID of the subscription definition.
4114
4114
  * @public
@@ -4123,12 +4123,12 @@ export interface ListSubscriptionDefinitionVersionsResponse {
4123
4123
  * The token for the next set of results, or ''null'' if there are no additional results.
4124
4124
  * @public
4125
4125
  */
4126
- NextToken?: string;
4126
+ NextToken?: string | undefined;
4127
4127
  /**
4128
4128
  * Information about a version.
4129
4129
  * @public
4130
4130
  */
4131
- Versions?: VersionInformation[];
4131
+ Versions?: VersionInformation[] | undefined;
4132
4132
  }
4133
4133
  /**
4134
4134
  * @public
@@ -4148,7 +4148,7 @@ export interface ListTagsForResourceResponse {
4148
4148
  * The key-value pair for the resource tag.
4149
4149
  * @public
4150
4150
  */
4151
- tags?: Record<string, string>;
4151
+ tags?: Record<string, string> | undefined;
4152
4152
  }
4153
4153
  /**
4154
4154
  * Information needed to reset deployments.
@@ -4159,12 +4159,12 @@ export interface ResetDeploymentsRequest {
4159
4159
  * A client token used to correlate requests and responses.
4160
4160
  * @public
4161
4161
  */
4162
- AmznClientToken?: string;
4162
+ AmznClientToken?: string | undefined;
4163
4163
  /**
4164
4164
  * If true, performs a best-effort only core reset.
4165
4165
  * @public
4166
4166
  */
4167
- Force?: boolean;
4167
+ Force?: boolean | undefined;
4168
4168
  /**
4169
4169
  * The ID of the Greengrass group.
4170
4170
  * @public
@@ -4179,12 +4179,12 @@ export interface ResetDeploymentsResponse {
4179
4179
  * The ARN of the deployment.
4180
4180
  * @public
4181
4181
  */
4182
- DeploymentArn?: string;
4182
+ DeploymentArn?: string | undefined;
4183
4183
  /**
4184
4184
  * The ID of the deployment.
4185
4185
  * @public
4186
4186
  */
4187
- DeploymentId?: string;
4187
+ DeploymentId?: string | undefined;
4188
4188
  }
4189
4189
  /**
4190
4190
  * @public
@@ -4194,7 +4194,7 @@ export interface StartBulkDeploymentRequest {
4194
4194
  * A client token used to correlate requests and responses.
4195
4195
  * @public
4196
4196
  */
4197
- AmznClientToken?: string;
4197
+ AmznClientToken?: string | undefined;
4198
4198
  /**
4199
4199
  * The ARN of the execution role to associate with the bulk deployment operation. This IAM role must allow the ''greengrass:CreateDeployment'' action for all group versions that are listed in the input file. This IAM role must have access to the S3 bucket containing the input file.
4200
4200
  * @public
@@ -4209,7 +4209,7 @@ export interface StartBulkDeploymentRequest {
4209
4209
  * Tag(s) to add to the new resource.
4210
4210
  * @public
4211
4211
  */
4212
- tags?: Record<string, string>;
4212
+ tags?: Record<string, string> | undefined;
4213
4213
  }
4214
4214
  /**
4215
4215
  * @public
@@ -4219,12 +4219,12 @@ export interface StartBulkDeploymentResponse {
4219
4219
  * The ARN of the bulk deployment.
4220
4220
  * @public
4221
4221
  */
4222
- BulkDeploymentArn?: string;
4222
+ BulkDeploymentArn?: string | undefined;
4223
4223
  /**
4224
4224
  * The ID of the bulk deployment.
4225
4225
  * @public
4226
4226
  */
4227
- BulkDeploymentId?: string;
4227
+ BulkDeploymentId?: string | undefined;
4228
4228
  }
4229
4229
  /**
4230
4230
  * @public
@@ -4255,7 +4255,7 @@ export interface TagResourceRequest {
4255
4255
  * The key-value pair for the resource tag.
4256
4256
  * @public
4257
4257
  */
4258
- tags?: Record<string, string>;
4258
+ tags?: Record<string, string> | undefined;
4259
4259
  }
4260
4260
  /**
4261
4261
  * @public
@@ -4281,7 +4281,7 @@ export interface UpdateConnectivityInfoRequest {
4281
4281
  * A list of connectivity info.
4282
4282
  * @public
4283
4283
  */
4284
- ConnectivityInfo?: ConnectivityInfo[];
4284
+ ConnectivityInfo?: ConnectivityInfo[] | undefined;
4285
4285
  /**
4286
4286
  * The thing name.
4287
4287
  * @public
@@ -4296,12 +4296,12 @@ export interface UpdateConnectivityInfoResponse {
4296
4296
  * A message about the connectivity info update request.
4297
4297
  * @public
4298
4298
  */
4299
- Message?: string;
4299
+ Message?: string | undefined;
4300
4300
  /**
4301
4301
  * The new version of the connectivity info.
4302
4302
  * @public
4303
4303
  */
4304
- Version?: string;
4304
+ Version?: string | undefined;
4305
4305
  }
4306
4306
  /**
4307
4307
  * @public
@@ -4316,7 +4316,7 @@ export interface UpdateConnectorDefinitionRequest {
4316
4316
  * The name of the definition.
4317
4317
  * @public
4318
4318
  */
4319
- Name?: string;
4319
+ Name?: string | undefined;
4320
4320
  }
4321
4321
  /**
4322
4322
  * @public
@@ -4336,7 +4336,7 @@ export interface UpdateCoreDefinitionRequest {
4336
4336
  * The name of the definition.
4337
4337
  * @public
4338
4338
  */
4339
- Name?: string;
4339
+ Name?: string | undefined;
4340
4340
  }
4341
4341
  /**
4342
4342
  * @public
@@ -4356,7 +4356,7 @@ export interface UpdateDeviceDefinitionRequest {
4356
4356
  * The name of the definition.
4357
4357
  * @public
4358
4358
  */
4359
- Name?: string;
4359
+ Name?: string | undefined;
4360
4360
  }
4361
4361
  /**
4362
4362
  * @public
@@ -4376,7 +4376,7 @@ export interface UpdateFunctionDefinitionRequest {
4376
4376
  * The name of the definition.
4377
4377
  * @public
4378
4378
  */
4379
- Name?: string;
4379
+ Name?: string | undefined;
4380
4380
  }
4381
4381
  /**
4382
4382
  * @public
@@ -4396,7 +4396,7 @@ export interface UpdateGroupRequest {
4396
4396
  * The name of the definition.
4397
4397
  * @public
4398
4398
  */
4399
- Name?: string;
4399
+ Name?: string | undefined;
4400
4400
  }
4401
4401
  /**
4402
4402
  * @public
@@ -4411,7 +4411,7 @@ export interface UpdateGroupCertificateConfigurationRequest {
4411
4411
  * The amount of time remaining before the certificate expires, in milliseconds.
4412
4412
  * @public
4413
4413
  */
4414
- CertificateExpiryInMilliseconds?: string;
4414
+ CertificateExpiryInMilliseconds?: string | undefined;
4415
4415
  /**
4416
4416
  * The ID of the Greengrass group.
4417
4417
  * @public
@@ -4426,17 +4426,17 @@ export interface UpdateGroupCertificateConfigurationResponse {
4426
4426
  * The amount of time remaining before the certificate authority expires, in milliseconds.
4427
4427
  * @public
4428
4428
  */
4429
- CertificateAuthorityExpiryInMilliseconds?: string;
4429
+ CertificateAuthorityExpiryInMilliseconds?: string | undefined;
4430
4430
  /**
4431
4431
  * The amount of time remaining before the certificate expires, in milliseconds.
4432
4432
  * @public
4433
4433
  */
4434
- CertificateExpiryInMilliseconds?: string;
4434
+ CertificateExpiryInMilliseconds?: string | undefined;
4435
4435
  /**
4436
4436
  * The ID of the group certificate configuration.
4437
4437
  * @public
4438
4438
  */
4439
- GroupId?: string;
4439
+ GroupId?: string | undefined;
4440
4440
  }
4441
4441
  /**
4442
4442
  * @public
@@ -4451,7 +4451,7 @@ export interface UpdateLoggerDefinitionRequest {
4451
4451
  * The name of the definition.
4452
4452
  * @public
4453
4453
  */
4454
- Name?: string;
4454
+ Name?: string | undefined;
4455
4455
  }
4456
4456
  /**
4457
4457
  * @public
@@ -4466,7 +4466,7 @@ export interface UpdateResourceDefinitionRequest {
4466
4466
  * The name of the definition.
4467
4467
  * @public
4468
4468
  */
4469
- Name?: string;
4469
+ Name?: string | undefined;
4470
4470
  /**
4471
4471
  * The ID of the resource definition.
4472
4472
  * @public
@@ -4486,7 +4486,7 @@ export interface UpdateSubscriptionDefinitionRequest {
4486
4486
  * The name of the definition.
4487
4487
  * @public
4488
4488
  */
4489
- Name?: string;
4489
+ Name?: string | undefined;
4490
4490
  /**
4491
4491
  * The ID of the subscription definition.
4492
4492
  * @public
@@ -4517,7 +4517,7 @@ export interface UpdateThingRuntimeConfigurationRequest {
4517
4517
  * Configuration for telemetry service.
4518
4518
  * @public
4519
4519
  */
4520
- TelemetryConfiguration?: TelemetryConfigurationUpdate;
4520
+ TelemetryConfiguration?: TelemetryConfigurationUpdate | undefined;
4521
4521
  /**
4522
4522
  * The thing name.
4523
4523
  * @public