@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.
@@ -1,36 +1,36 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
2
  import { GreengrassServiceException as __BaseException } from "./GreengrassServiceException";
3
3
  export interface ConnectivityInfo {
4
- HostAddress?: string;
5
- Id?: string;
6
- Metadata?: string;
7
- PortNumber?: number;
4
+ HostAddress?: string | undefined;
5
+ Id?: string | undefined;
6
+ Metadata?: string | undefined;
7
+ PortNumber?: number | undefined;
8
8
  }
9
9
  export interface Connector {
10
10
  ConnectorArn: string | undefined;
11
11
  Id: string | undefined;
12
- Parameters?: Record<string, string>;
12
+ Parameters?: Record<string, string> | undefined;
13
13
  }
14
14
  export interface Core {
15
15
  CertificateArn: string | undefined;
16
16
  Id: string | undefined;
17
- SyncShadow?: boolean;
17
+ SyncShadow?: boolean | undefined;
18
18
  ThingArn: string | undefined;
19
19
  }
20
20
  export interface DefinitionInformation {
21
- Arn?: string;
22
- CreationTimestamp?: string;
23
- Id?: string;
24
- LastUpdatedTimestamp?: string;
25
- LatestVersion?: string;
26
- LatestVersionArn?: string;
27
- Name?: string;
28
- Tags?: Record<string, string>;
21
+ Arn?: string | undefined;
22
+ CreationTimestamp?: string | undefined;
23
+ Id?: string | undefined;
24
+ LastUpdatedTimestamp?: string | undefined;
25
+ LatestVersion?: string | undefined;
26
+ LatestVersionArn?: string | undefined;
27
+ Name?: string | undefined;
28
+ Tags?: Record<string, string> | undefined;
29
29
  }
30
30
  export interface Device {
31
31
  CertificateArn: string | undefined;
32
32
  Id: string | undefined;
33
- SyncShadow?: boolean;
33
+ SyncShadow?: boolean | undefined;
34
34
  ThingArn: string | undefined;
35
35
  }
36
36
  export declare const EncodingType: {
@@ -45,12 +45,12 @@ export declare const FunctionIsolationMode: {
45
45
  export type FunctionIsolationMode =
46
46
  (typeof FunctionIsolationMode)[keyof typeof FunctionIsolationMode];
47
47
  export interface FunctionRunAsConfig {
48
- Gid?: number;
49
- Uid?: number;
48
+ Gid?: number | undefined;
49
+ Uid?: number | undefined;
50
50
  }
51
51
  export interface FunctionExecutionConfig {
52
- IsolationMode?: FunctionIsolationMode;
53
- RunAs?: FunctionRunAsConfig;
52
+ IsolationMode?: FunctionIsolationMode | undefined;
53
+ RunAs?: FunctionRunAsConfig | undefined;
54
54
  }
55
55
  export declare const Permission: {
56
56
  readonly ro: "ro";
@@ -58,42 +58,42 @@ export declare const Permission: {
58
58
  };
59
59
  export type Permission = (typeof Permission)[keyof typeof Permission];
60
60
  export interface ResourceAccessPolicy {
61
- Permission?: Permission;
61
+ Permission?: Permission | undefined;
62
62
  ResourceId: string | undefined;
63
63
  }
64
64
  export interface FunctionConfigurationEnvironment {
65
- AccessSysfs?: boolean;
66
- Execution?: FunctionExecutionConfig;
67
- ResourceAccessPolicies?: ResourceAccessPolicy[];
68
- Variables?: Record<string, string>;
65
+ AccessSysfs?: boolean | undefined;
66
+ Execution?: FunctionExecutionConfig | undefined;
67
+ ResourceAccessPolicies?: ResourceAccessPolicy[] | undefined;
68
+ Variables?: Record<string, string> | undefined;
69
69
  }
70
70
  export interface FunctionConfiguration {
71
- EncodingType?: EncodingType;
72
- Environment?: FunctionConfigurationEnvironment;
73
- ExecArgs?: string;
74
- Executable?: string;
75
- MemorySize?: number;
76
- Pinned?: boolean;
77
- Timeout?: number;
78
- FunctionRuntimeOverride?: string;
71
+ EncodingType?: EncodingType | undefined;
72
+ Environment?: FunctionConfigurationEnvironment | undefined;
73
+ ExecArgs?: string | undefined;
74
+ Executable?: string | undefined;
75
+ MemorySize?: number | undefined;
76
+ Pinned?: boolean | undefined;
77
+ Timeout?: number | undefined;
78
+ FunctionRuntimeOverride?: string | undefined;
79
79
  }
80
80
  export interface Function {
81
- FunctionArn?: string;
82
- FunctionConfiguration?: FunctionConfiguration;
81
+ FunctionArn?: string | undefined;
82
+ FunctionConfiguration?: FunctionConfiguration | undefined;
83
83
  Id: string | undefined;
84
84
  }
85
85
  export interface GroupCertificateAuthorityProperties {
86
- GroupCertificateAuthorityArn?: string;
87
- GroupCertificateAuthorityId?: string;
86
+ GroupCertificateAuthorityArn?: string | undefined;
87
+ GroupCertificateAuthorityId?: string | undefined;
88
88
  }
89
89
  export interface GroupInformation {
90
- Arn?: string;
91
- CreationTimestamp?: string;
92
- Id?: string;
93
- LastUpdatedTimestamp?: string;
94
- LatestVersion?: string;
95
- LatestVersionArn?: string;
96
- Name?: string;
90
+ Arn?: string | undefined;
91
+ CreationTimestamp?: string | undefined;
92
+ Id?: string | undefined;
93
+ LastUpdatedTimestamp?: string | undefined;
94
+ LatestVersion?: string | undefined;
95
+ LatestVersionArn?: string | undefined;
96
+ Name?: string | undefined;
97
97
  }
98
98
  export declare const LoggerComponent: {
99
99
  readonly GreengrassSystem: "GreengrassSystem";
@@ -118,46 +118,52 @@ export interface Logger {
118
118
  Component: LoggerComponent | undefined;
119
119
  Id: string | undefined;
120
120
  Level: LoggerLevel | undefined;
121
- Space?: number;
121
+ Space?: number | undefined;
122
122
  Type: LoggerType | undefined;
123
123
  }
124
124
  export interface GroupOwnerSetting {
125
- AutoAddGroupOwner?: boolean;
126
- GroupOwner?: string;
125
+ AutoAddGroupOwner?: boolean | undefined;
126
+ GroupOwner?: string | undefined;
127
127
  }
128
128
  export interface LocalDeviceResourceData {
129
- GroupOwnerSetting?: GroupOwnerSetting;
130
- SourcePath?: string;
129
+ GroupOwnerSetting?: GroupOwnerSetting | undefined;
130
+ SourcePath?: string | undefined;
131
131
  }
132
132
  export interface LocalVolumeResourceData {
133
- DestinationPath?: string;
134
- GroupOwnerSetting?: GroupOwnerSetting;
135
- SourcePath?: string;
133
+ DestinationPath?: string | undefined;
134
+ GroupOwnerSetting?: GroupOwnerSetting | undefined;
135
+ SourcePath?: string | undefined;
136
136
  }
137
137
  export interface ResourceDownloadOwnerSetting {
138
138
  GroupOwner: string | undefined;
139
139
  GroupPermission: Permission | undefined;
140
140
  }
141
141
  export interface S3MachineLearningModelResourceData {
142
- DestinationPath?: string;
143
- OwnerSetting?: ResourceDownloadOwnerSetting;
144
- S3Uri?: string;
142
+ DestinationPath?: string | undefined;
143
+ OwnerSetting?: ResourceDownloadOwnerSetting | undefined;
144
+ S3Uri?: string | undefined;
145
145
  }
146
146
  export interface SageMakerMachineLearningModelResourceData {
147
- DestinationPath?: string;
148
- OwnerSetting?: ResourceDownloadOwnerSetting;
149
- SageMakerJobArn?: string;
147
+ DestinationPath?: string | undefined;
148
+ OwnerSetting?: ResourceDownloadOwnerSetting | undefined;
149
+ SageMakerJobArn?: string | undefined;
150
150
  }
151
151
  export interface SecretsManagerSecretResourceData {
152
- ARN?: string;
153
- AdditionalStagingLabelsToDownload?: string[];
152
+ ARN?: string | undefined;
153
+ AdditionalStagingLabelsToDownload?: string[] | undefined;
154
154
  }
155
155
  export interface ResourceDataContainer {
156
- LocalDeviceResourceData?: LocalDeviceResourceData;
157
- LocalVolumeResourceData?: LocalVolumeResourceData;
158
- S3MachineLearningModelResourceData?: S3MachineLearningModelResourceData;
159
- SageMakerMachineLearningModelResourceData?: SageMakerMachineLearningModelResourceData;
160
- SecretsManagerSecretResourceData?: SecretsManagerSecretResourceData;
156
+ LocalDeviceResourceData?: LocalDeviceResourceData | undefined;
157
+ LocalVolumeResourceData?: LocalVolumeResourceData | undefined;
158
+ S3MachineLearningModelResourceData?:
159
+ | S3MachineLearningModelResourceData
160
+ | undefined;
161
+ SageMakerMachineLearningModelResourceData?:
162
+ | SageMakerMachineLearningModelResourceData
163
+ | undefined;
164
+ SecretsManagerSecretResourceData?:
165
+ | SecretsManagerSecretResourceData
166
+ | undefined;
161
167
  }
162
168
  export interface Resource {
163
169
  Id: string | undefined;
@@ -171,27 +177,27 @@ export interface Subscription {
171
177
  Target: string | undefined;
172
178
  }
173
179
  export interface VersionInformation {
174
- Arn?: string;
175
- CreationTimestamp?: string;
176
- Id?: string;
177
- Version?: string;
180
+ Arn?: string | undefined;
181
+ CreationTimestamp?: string | undefined;
182
+ Id?: string | undefined;
183
+ Version?: string | undefined;
178
184
  }
179
185
  export interface AssociateRoleToGroupRequest {
180
186
  GroupId: string | undefined;
181
187
  RoleArn: string | undefined;
182
188
  }
183
189
  export interface AssociateRoleToGroupResponse {
184
- AssociatedAt?: string;
190
+ AssociatedAt?: string | undefined;
185
191
  }
186
192
  export interface ErrorDetail {
187
- DetailedErrorCode?: string;
188
- DetailedErrorMessage?: string;
193
+ DetailedErrorCode?: string | undefined;
194
+ DetailedErrorMessage?: string | undefined;
189
195
  }
190
196
  export declare class BadRequestException extends __BaseException {
191
197
  readonly name: "BadRequestException";
192
198
  readonly $fault: "client";
193
- ErrorDetails?: ErrorDetail[];
194
- Message?: string;
199
+ ErrorDetails?: ErrorDetail[] | undefined;
200
+ Message?: string | undefined;
195
201
  constructor(
196
202
  opts: __ExceptionOptionType<BadRequestException, __BaseException>
197
203
  );
@@ -199,8 +205,8 @@ export declare class BadRequestException extends __BaseException {
199
205
  export declare class InternalServerErrorException extends __BaseException {
200
206
  readonly name: "InternalServerErrorException";
201
207
  readonly $fault: "server";
202
- ErrorDetails?: ErrorDetail[];
203
- Message?: string;
208
+ ErrorDetails?: ErrorDetail[] | undefined;
209
+ Message?: string | undefined;
204
210
  constructor(
205
211
  opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>
206
212
  );
@@ -209,17 +215,17 @@ export interface AssociateServiceRoleToAccountRequest {
209
215
  RoleArn: string | undefined;
210
216
  }
211
217
  export interface AssociateServiceRoleToAccountResponse {
212
- AssociatedAt?: string;
218
+ AssociatedAt?: string | undefined;
213
219
  }
214
220
  export interface BulkDeployment {
215
- BulkDeploymentArn?: string;
216
- BulkDeploymentId?: string;
217
- CreatedAt?: string;
221
+ BulkDeploymentArn?: string | undefined;
222
+ BulkDeploymentId?: string | undefined;
223
+ CreatedAt?: string | undefined;
218
224
  }
219
225
  export interface BulkDeploymentMetrics {
220
- InvalidInputRecords?: number;
221
- RecordsProcessed?: number;
222
- RetryAttempts?: number;
226
+ InvalidInputRecords?: number | undefined;
227
+ RecordsProcessed?: number | undefined;
228
+ RetryAttempts?: number | undefined;
223
229
  }
224
230
  export declare const DeploymentType: {
225
231
  readonly ForceResetDeployment: "ForceResetDeployment";
@@ -230,14 +236,14 @@ export declare const DeploymentType: {
230
236
  export type DeploymentType =
231
237
  (typeof DeploymentType)[keyof typeof DeploymentType];
232
238
  export interface BulkDeploymentResult {
233
- CreatedAt?: string;
234
- DeploymentArn?: string;
235
- DeploymentId?: string;
236
- DeploymentStatus?: string;
237
- DeploymentType?: DeploymentType;
238
- ErrorDetails?: ErrorDetail[];
239
- ErrorMessage?: string;
240
- GroupArn?: string;
239
+ CreatedAt?: string | undefined;
240
+ DeploymentArn?: string | undefined;
241
+ DeploymentId?: string | undefined;
242
+ DeploymentStatus?: string | undefined;
243
+ DeploymentType?: DeploymentType | undefined;
244
+ ErrorDetails?: ErrorDetail[] | undefined;
245
+ ErrorMessage?: string | undefined;
246
+ GroupArn?: string | undefined;
241
247
  }
242
248
  export declare const BulkDeploymentStatus: {
243
249
  readonly Completed: "Completed";
@@ -256,246 +262,246 @@ export declare const ConfigurationSyncStatus: {
256
262
  export type ConfigurationSyncStatus =
257
263
  (typeof ConfigurationSyncStatus)[keyof typeof ConfigurationSyncStatus];
258
264
  export interface ConnectorDefinitionVersion {
259
- Connectors?: Connector[];
265
+ Connectors?: Connector[] | undefined;
260
266
  }
261
267
  export interface CoreDefinitionVersion {
262
- Cores?: Core[];
268
+ Cores?: Core[] | undefined;
263
269
  }
264
270
  export interface CreateConnectorDefinitionRequest {
265
- AmznClientToken?: string;
266
- InitialVersion?: ConnectorDefinitionVersion;
267
- Name?: string;
268
- tags?: Record<string, string>;
271
+ AmznClientToken?: string | undefined;
272
+ InitialVersion?: ConnectorDefinitionVersion | undefined;
273
+ Name?: string | undefined;
274
+ tags?: Record<string, string> | undefined;
269
275
  }
270
276
  export interface CreateConnectorDefinitionResponse {
271
- Arn?: string;
272
- CreationTimestamp?: string;
273
- Id?: string;
274
- LastUpdatedTimestamp?: string;
275
- LatestVersion?: string;
276
- LatestVersionArn?: string;
277
- Name?: string;
277
+ Arn?: string | undefined;
278
+ CreationTimestamp?: string | undefined;
279
+ Id?: string | undefined;
280
+ LastUpdatedTimestamp?: string | undefined;
281
+ LatestVersion?: string | undefined;
282
+ LatestVersionArn?: string | undefined;
283
+ Name?: string | undefined;
278
284
  }
279
285
  export interface CreateConnectorDefinitionVersionRequest {
280
- AmznClientToken?: string;
286
+ AmznClientToken?: string | undefined;
281
287
  ConnectorDefinitionId: string | undefined;
282
- Connectors?: Connector[];
288
+ Connectors?: Connector[] | undefined;
283
289
  }
284
290
  export interface CreateConnectorDefinitionVersionResponse {
285
- Arn?: string;
286
- CreationTimestamp?: string;
287
- Id?: string;
288
- Version?: string;
291
+ Arn?: string | undefined;
292
+ CreationTimestamp?: string | undefined;
293
+ Id?: string | undefined;
294
+ Version?: string | undefined;
289
295
  }
290
296
  export interface CreateCoreDefinitionRequest {
291
- AmznClientToken?: string;
292
- InitialVersion?: CoreDefinitionVersion;
293
- Name?: string;
294
- tags?: Record<string, string>;
297
+ AmznClientToken?: string | undefined;
298
+ InitialVersion?: CoreDefinitionVersion | undefined;
299
+ Name?: string | undefined;
300
+ tags?: Record<string, string> | undefined;
295
301
  }
296
302
  export interface CreateCoreDefinitionResponse {
297
- Arn?: string;
298
- CreationTimestamp?: string;
299
- Id?: string;
300
- LastUpdatedTimestamp?: string;
301
- LatestVersion?: string;
302
- LatestVersionArn?: string;
303
- Name?: string;
303
+ Arn?: string | undefined;
304
+ CreationTimestamp?: string | undefined;
305
+ Id?: string | undefined;
306
+ LastUpdatedTimestamp?: string | undefined;
307
+ LatestVersion?: string | undefined;
308
+ LatestVersionArn?: string | undefined;
309
+ Name?: string | undefined;
304
310
  }
305
311
  export interface CreateCoreDefinitionVersionRequest {
306
- AmznClientToken?: string;
312
+ AmznClientToken?: string | undefined;
307
313
  CoreDefinitionId: string | undefined;
308
- Cores?: Core[];
314
+ Cores?: Core[] | undefined;
309
315
  }
310
316
  export interface CreateCoreDefinitionVersionResponse {
311
- Arn?: string;
312
- CreationTimestamp?: string;
313
- Id?: string;
314
- Version?: string;
317
+ Arn?: string | undefined;
318
+ CreationTimestamp?: string | undefined;
319
+ Id?: string | undefined;
320
+ Version?: string | undefined;
315
321
  }
316
322
  export interface CreateDeploymentRequest {
317
- AmznClientToken?: string;
318
- DeploymentId?: string;
323
+ AmznClientToken?: string | undefined;
324
+ DeploymentId?: string | undefined;
319
325
  DeploymentType: DeploymentType | undefined;
320
326
  GroupId: string | undefined;
321
- GroupVersionId?: string;
327
+ GroupVersionId?: string | undefined;
322
328
  }
323
329
  export interface CreateDeploymentResponse {
324
- DeploymentArn?: string;
325
- DeploymentId?: string;
330
+ DeploymentArn?: string | undefined;
331
+ DeploymentId?: string | undefined;
326
332
  }
327
333
  export interface DeviceDefinitionVersion {
328
- Devices?: Device[];
334
+ Devices?: Device[] | undefined;
329
335
  }
330
336
  export interface CreateDeviceDefinitionRequest {
331
- AmznClientToken?: string;
332
- InitialVersion?: DeviceDefinitionVersion;
333
- Name?: string;
334
- tags?: Record<string, string>;
337
+ AmznClientToken?: string | undefined;
338
+ InitialVersion?: DeviceDefinitionVersion | undefined;
339
+ Name?: string | undefined;
340
+ tags?: Record<string, string> | undefined;
335
341
  }
336
342
  export interface CreateDeviceDefinitionResponse {
337
- Arn?: string;
338
- CreationTimestamp?: string;
339
- Id?: string;
340
- LastUpdatedTimestamp?: string;
341
- LatestVersion?: string;
342
- LatestVersionArn?: string;
343
- Name?: string;
343
+ Arn?: string | undefined;
344
+ CreationTimestamp?: string | undefined;
345
+ Id?: string | undefined;
346
+ LastUpdatedTimestamp?: string | undefined;
347
+ LatestVersion?: string | undefined;
348
+ LatestVersionArn?: string | undefined;
349
+ Name?: string | undefined;
344
350
  }
345
351
  export interface CreateDeviceDefinitionVersionRequest {
346
- AmznClientToken?: string;
352
+ AmznClientToken?: string | undefined;
347
353
  DeviceDefinitionId: string | undefined;
348
- Devices?: Device[];
354
+ Devices?: Device[] | undefined;
349
355
  }
350
356
  export interface CreateDeviceDefinitionVersionResponse {
351
- Arn?: string;
352
- CreationTimestamp?: string;
353
- Id?: string;
354
- Version?: string;
357
+ Arn?: string | undefined;
358
+ CreationTimestamp?: string | undefined;
359
+ Id?: string | undefined;
360
+ Version?: string | undefined;
355
361
  }
356
362
  export interface FunctionDefaultExecutionConfig {
357
- IsolationMode?: FunctionIsolationMode;
358
- RunAs?: FunctionRunAsConfig;
363
+ IsolationMode?: FunctionIsolationMode | undefined;
364
+ RunAs?: FunctionRunAsConfig | undefined;
359
365
  }
360
366
  export interface FunctionDefaultConfig {
361
- Execution?: FunctionDefaultExecutionConfig;
367
+ Execution?: FunctionDefaultExecutionConfig | undefined;
362
368
  }
363
369
  export interface FunctionDefinitionVersion {
364
- DefaultConfig?: FunctionDefaultConfig;
365
- Functions?: Function[];
370
+ DefaultConfig?: FunctionDefaultConfig | undefined;
371
+ Functions?: Function[] | undefined;
366
372
  }
367
373
  export interface CreateFunctionDefinitionRequest {
368
- AmznClientToken?: string;
369
- InitialVersion?: FunctionDefinitionVersion;
370
- Name?: string;
371
- tags?: Record<string, string>;
374
+ AmznClientToken?: string | undefined;
375
+ InitialVersion?: FunctionDefinitionVersion | undefined;
376
+ Name?: string | undefined;
377
+ tags?: Record<string, string> | undefined;
372
378
  }
373
379
  export interface CreateFunctionDefinitionResponse {
374
- Arn?: string;
375
- CreationTimestamp?: string;
376
- Id?: string;
377
- LastUpdatedTimestamp?: string;
378
- LatestVersion?: string;
379
- LatestVersionArn?: string;
380
- Name?: string;
380
+ Arn?: string | undefined;
381
+ CreationTimestamp?: string | undefined;
382
+ Id?: string | undefined;
383
+ LastUpdatedTimestamp?: string | undefined;
384
+ LatestVersion?: string | undefined;
385
+ LatestVersionArn?: string | undefined;
386
+ Name?: string | undefined;
381
387
  }
382
388
  export interface CreateFunctionDefinitionVersionRequest {
383
- AmznClientToken?: string;
384
- DefaultConfig?: FunctionDefaultConfig;
389
+ AmznClientToken?: string | undefined;
390
+ DefaultConfig?: FunctionDefaultConfig | undefined;
385
391
  FunctionDefinitionId: string | undefined;
386
- Functions?: Function[];
392
+ Functions?: Function[] | undefined;
387
393
  }
388
394
  export interface CreateFunctionDefinitionVersionResponse {
389
- Arn?: string;
390
- CreationTimestamp?: string;
391
- Id?: string;
392
- Version?: string;
395
+ Arn?: string | undefined;
396
+ CreationTimestamp?: string | undefined;
397
+ Id?: string | undefined;
398
+ Version?: string | undefined;
393
399
  }
394
400
  export interface GroupVersion {
395
- ConnectorDefinitionVersionArn?: string;
396
- CoreDefinitionVersionArn?: string;
397
- DeviceDefinitionVersionArn?: string;
398
- FunctionDefinitionVersionArn?: string;
399
- LoggerDefinitionVersionArn?: string;
400
- ResourceDefinitionVersionArn?: string;
401
- SubscriptionDefinitionVersionArn?: string;
401
+ ConnectorDefinitionVersionArn?: string | undefined;
402
+ CoreDefinitionVersionArn?: string | undefined;
403
+ DeviceDefinitionVersionArn?: string | undefined;
404
+ FunctionDefinitionVersionArn?: string | undefined;
405
+ LoggerDefinitionVersionArn?: string | undefined;
406
+ ResourceDefinitionVersionArn?: string | undefined;
407
+ SubscriptionDefinitionVersionArn?: string | undefined;
402
408
  }
403
409
  export interface CreateGroupRequest {
404
- AmznClientToken?: string;
405
- InitialVersion?: GroupVersion;
410
+ AmznClientToken?: string | undefined;
411
+ InitialVersion?: GroupVersion | undefined;
406
412
  Name: string | undefined;
407
- tags?: Record<string, string>;
413
+ tags?: Record<string, string> | undefined;
408
414
  }
409
415
  export interface CreateGroupResponse {
410
- Arn?: string;
411
- CreationTimestamp?: string;
412
- Id?: string;
413
- LastUpdatedTimestamp?: string;
414
- LatestVersion?: string;
415
- LatestVersionArn?: string;
416
- Name?: string;
416
+ Arn?: string | undefined;
417
+ CreationTimestamp?: string | undefined;
418
+ Id?: string | undefined;
419
+ LastUpdatedTimestamp?: string | undefined;
420
+ LatestVersion?: string | undefined;
421
+ LatestVersionArn?: string | undefined;
422
+ Name?: string | undefined;
417
423
  }
418
424
  export interface CreateGroupCertificateAuthorityRequest {
419
- AmznClientToken?: string;
425
+ AmznClientToken?: string | undefined;
420
426
  GroupId: string | undefined;
421
427
  }
422
428
  export interface CreateGroupCertificateAuthorityResponse {
423
- GroupCertificateAuthorityArn?: string;
429
+ GroupCertificateAuthorityArn?: string | undefined;
424
430
  }
425
431
  export interface CreateGroupVersionRequest {
426
- AmznClientToken?: string;
427
- ConnectorDefinitionVersionArn?: string;
428
- CoreDefinitionVersionArn?: string;
429
- DeviceDefinitionVersionArn?: string;
430
- FunctionDefinitionVersionArn?: string;
432
+ AmznClientToken?: string | undefined;
433
+ ConnectorDefinitionVersionArn?: string | undefined;
434
+ CoreDefinitionVersionArn?: string | undefined;
435
+ DeviceDefinitionVersionArn?: string | undefined;
436
+ FunctionDefinitionVersionArn?: string | undefined;
431
437
  GroupId: string | undefined;
432
- LoggerDefinitionVersionArn?: string;
433
- ResourceDefinitionVersionArn?: string;
434
- SubscriptionDefinitionVersionArn?: string;
438
+ LoggerDefinitionVersionArn?: string | undefined;
439
+ ResourceDefinitionVersionArn?: string | undefined;
440
+ SubscriptionDefinitionVersionArn?: string | undefined;
435
441
  }
436
442
  export interface CreateGroupVersionResponse {
437
- Arn?: string;
438
- CreationTimestamp?: string;
439
- Id?: string;
440
- Version?: string;
443
+ Arn?: string | undefined;
444
+ CreationTimestamp?: string | undefined;
445
+ Id?: string | undefined;
446
+ Version?: string | undefined;
441
447
  }
442
448
  export interface LoggerDefinitionVersion {
443
- Loggers?: Logger[];
449
+ Loggers?: Logger[] | undefined;
444
450
  }
445
451
  export interface CreateLoggerDefinitionRequest {
446
- AmznClientToken?: string;
447
- InitialVersion?: LoggerDefinitionVersion;
448
- Name?: string;
449
- tags?: Record<string, string>;
452
+ AmznClientToken?: string | undefined;
453
+ InitialVersion?: LoggerDefinitionVersion | undefined;
454
+ Name?: string | undefined;
455
+ tags?: Record<string, string> | undefined;
450
456
  }
451
457
  export interface CreateLoggerDefinitionResponse {
452
- Arn?: string;
453
- CreationTimestamp?: string;
454
- Id?: string;
455
- LastUpdatedTimestamp?: string;
456
- LatestVersion?: string;
457
- LatestVersionArn?: string;
458
- Name?: string;
458
+ Arn?: string | undefined;
459
+ CreationTimestamp?: string | undefined;
460
+ Id?: string | undefined;
461
+ LastUpdatedTimestamp?: string | undefined;
462
+ LatestVersion?: string | undefined;
463
+ LatestVersionArn?: string | undefined;
464
+ Name?: string | undefined;
459
465
  }
460
466
  export interface CreateLoggerDefinitionVersionRequest {
461
- AmznClientToken?: string;
467
+ AmznClientToken?: string | undefined;
462
468
  LoggerDefinitionId: string | undefined;
463
- Loggers?: Logger[];
469
+ Loggers?: Logger[] | undefined;
464
470
  }
465
471
  export interface CreateLoggerDefinitionVersionResponse {
466
- Arn?: string;
467
- CreationTimestamp?: string;
468
- Id?: string;
469
- Version?: string;
472
+ Arn?: string | undefined;
473
+ CreationTimestamp?: string | undefined;
474
+ Id?: string | undefined;
475
+ Version?: string | undefined;
470
476
  }
471
477
  export interface ResourceDefinitionVersion {
472
- Resources?: Resource[];
478
+ Resources?: Resource[] | undefined;
473
479
  }
474
480
  export interface CreateResourceDefinitionRequest {
475
- AmznClientToken?: string;
476
- InitialVersion?: ResourceDefinitionVersion;
477
- Name?: string;
478
- tags?: Record<string, string>;
481
+ AmznClientToken?: string | undefined;
482
+ InitialVersion?: ResourceDefinitionVersion | undefined;
483
+ Name?: string | undefined;
484
+ tags?: Record<string, string> | undefined;
479
485
  }
480
486
  export interface CreateResourceDefinitionResponse {
481
- Arn?: string;
482
- CreationTimestamp?: string;
483
- Id?: string;
484
- LastUpdatedTimestamp?: string;
485
- LatestVersion?: string;
486
- LatestVersionArn?: string;
487
- Name?: string;
487
+ Arn?: string | undefined;
488
+ CreationTimestamp?: string | undefined;
489
+ Id?: string | undefined;
490
+ LastUpdatedTimestamp?: string | undefined;
491
+ LatestVersion?: string | undefined;
492
+ LatestVersionArn?: string | undefined;
493
+ Name?: string | undefined;
488
494
  }
489
495
  export interface CreateResourceDefinitionVersionRequest {
490
- AmznClientToken?: string;
496
+ AmznClientToken?: string | undefined;
491
497
  ResourceDefinitionId: string | undefined;
492
- Resources?: Resource[];
498
+ Resources?: Resource[] | undefined;
493
499
  }
494
500
  export interface CreateResourceDefinitionVersionResponse {
495
- Arn?: string;
496
- CreationTimestamp?: string;
497
- Id?: string;
498
- Version?: string;
501
+ Arn?: string | undefined;
502
+ CreationTimestamp?: string | undefined;
503
+ Id?: string | undefined;
504
+ Version?: string | undefined;
499
505
  }
500
506
  export declare const SoftwareToUpdate: {
501
507
  readonly core: "core";
@@ -532,47 +538,47 @@ export declare const UpdateTargetsOperatingSystem: {
532
538
  export type UpdateTargetsOperatingSystem =
533
539
  (typeof UpdateTargetsOperatingSystem)[keyof typeof UpdateTargetsOperatingSystem];
534
540
  export interface CreateSoftwareUpdateJobRequest {
535
- AmznClientToken?: string;
541
+ AmznClientToken?: string | undefined;
536
542
  S3UrlSignerRole: string | undefined;
537
543
  SoftwareToUpdate: SoftwareToUpdate | undefined;
538
- UpdateAgentLogLevel?: UpdateAgentLogLevel;
544
+ UpdateAgentLogLevel?: UpdateAgentLogLevel | undefined;
539
545
  UpdateTargets: string[] | undefined;
540
546
  UpdateTargetsArchitecture: UpdateTargetsArchitecture | undefined;
541
547
  UpdateTargetsOperatingSystem: UpdateTargetsOperatingSystem | undefined;
542
548
  }
543
549
  export interface CreateSoftwareUpdateJobResponse {
544
- IotJobArn?: string;
545
- IotJobId?: string;
546
- PlatformSoftwareVersion?: string;
550
+ IotJobArn?: string | undefined;
551
+ IotJobId?: string | undefined;
552
+ PlatformSoftwareVersion?: string | undefined;
547
553
  }
548
554
  export interface SubscriptionDefinitionVersion {
549
- Subscriptions?: Subscription[];
555
+ Subscriptions?: Subscription[] | undefined;
550
556
  }
551
557
  export interface CreateSubscriptionDefinitionRequest {
552
- AmznClientToken?: string;
553
- InitialVersion?: SubscriptionDefinitionVersion;
554
- Name?: string;
555
- tags?: Record<string, string>;
558
+ AmznClientToken?: string | undefined;
559
+ InitialVersion?: SubscriptionDefinitionVersion | undefined;
560
+ Name?: string | undefined;
561
+ tags?: Record<string, string> | undefined;
556
562
  }
557
563
  export interface CreateSubscriptionDefinitionResponse {
558
- Arn?: string;
559
- CreationTimestamp?: string;
560
- Id?: string;
561
- LastUpdatedTimestamp?: string;
562
- LatestVersion?: string;
563
- LatestVersionArn?: string;
564
- Name?: string;
564
+ Arn?: string | undefined;
565
+ CreationTimestamp?: string | undefined;
566
+ Id?: string | undefined;
567
+ LastUpdatedTimestamp?: string | undefined;
568
+ LatestVersion?: string | undefined;
569
+ LatestVersionArn?: string | undefined;
570
+ Name?: string | undefined;
565
571
  }
566
572
  export interface CreateSubscriptionDefinitionVersionRequest {
567
- AmznClientToken?: string;
573
+ AmznClientToken?: string | undefined;
568
574
  SubscriptionDefinitionId: string | undefined;
569
- Subscriptions?: Subscription[];
575
+ Subscriptions?: Subscription[] | undefined;
570
576
  }
571
577
  export interface CreateSubscriptionDefinitionVersionResponse {
572
- Arn?: string;
573
- CreationTimestamp?: string;
574
- Id?: string;
575
- Version?: string;
578
+ Arn?: string | undefined;
579
+ CreationTimestamp?: string | undefined;
580
+ Id?: string | undefined;
581
+ Version?: string | undefined;
576
582
  }
577
583
  export interface DeleteConnectorDefinitionRequest {
578
584
  ConnectorDefinitionId: string | undefined;
@@ -607,281 +613,281 @@ export interface DeleteSubscriptionDefinitionRequest {
607
613
  }
608
614
  export interface DeleteSubscriptionDefinitionResponse {}
609
615
  export interface Deployment {
610
- CreatedAt?: string;
611
- DeploymentArn?: string;
612
- DeploymentId?: string;
613
- DeploymentType?: DeploymentType;
614
- GroupArn?: string;
616
+ CreatedAt?: string | undefined;
617
+ DeploymentArn?: string | undefined;
618
+ DeploymentId?: string | undefined;
619
+ DeploymentType?: DeploymentType | undefined;
620
+ GroupArn?: string | undefined;
615
621
  }
616
622
  export interface DisassociateRoleFromGroupRequest {
617
623
  GroupId: string | undefined;
618
624
  }
619
625
  export interface DisassociateRoleFromGroupResponse {
620
- DisassociatedAt?: string;
626
+ DisassociatedAt?: string | undefined;
621
627
  }
622
628
  export interface DisassociateServiceRoleFromAccountRequest {}
623
629
  export interface DisassociateServiceRoleFromAccountResponse {
624
- DisassociatedAt?: string;
630
+ DisassociatedAt?: string | undefined;
625
631
  }
626
632
  export interface GetAssociatedRoleRequest {
627
633
  GroupId: string | undefined;
628
634
  }
629
635
  export interface GetAssociatedRoleResponse {
630
- AssociatedAt?: string;
631
- RoleArn?: string;
636
+ AssociatedAt?: string | undefined;
637
+ RoleArn?: string | undefined;
632
638
  }
633
639
  export interface GetBulkDeploymentStatusRequest {
634
640
  BulkDeploymentId: string | undefined;
635
641
  }
636
642
  export interface GetBulkDeploymentStatusResponse {
637
- BulkDeploymentMetrics?: BulkDeploymentMetrics;
638
- BulkDeploymentStatus?: BulkDeploymentStatus;
639
- CreatedAt?: string;
640
- ErrorDetails?: ErrorDetail[];
641
- ErrorMessage?: string;
642
- tags?: Record<string, string>;
643
+ BulkDeploymentMetrics?: BulkDeploymentMetrics | undefined;
644
+ BulkDeploymentStatus?: BulkDeploymentStatus | undefined;
645
+ CreatedAt?: string | undefined;
646
+ ErrorDetails?: ErrorDetail[] | undefined;
647
+ ErrorMessage?: string | undefined;
648
+ tags?: Record<string, string> | undefined;
643
649
  }
644
650
  export interface GetConnectivityInfoRequest {
645
651
  ThingName: string | undefined;
646
652
  }
647
653
  export interface GetConnectivityInfoResponse {
648
- ConnectivityInfo?: ConnectivityInfo[];
649
- Message?: string;
654
+ ConnectivityInfo?: ConnectivityInfo[] | undefined;
655
+ Message?: string | undefined;
650
656
  }
651
657
  export interface GetConnectorDefinitionRequest {
652
658
  ConnectorDefinitionId: string | undefined;
653
659
  }
654
660
  export interface GetConnectorDefinitionResponse {
655
- Arn?: string;
656
- CreationTimestamp?: string;
657
- Id?: string;
658
- LastUpdatedTimestamp?: string;
659
- LatestVersion?: string;
660
- LatestVersionArn?: string;
661
- Name?: string;
662
- tags?: Record<string, string>;
661
+ Arn?: string | undefined;
662
+ CreationTimestamp?: string | undefined;
663
+ Id?: string | undefined;
664
+ LastUpdatedTimestamp?: string | undefined;
665
+ LatestVersion?: string | undefined;
666
+ LatestVersionArn?: string | undefined;
667
+ Name?: string | undefined;
668
+ tags?: Record<string, string> | undefined;
663
669
  }
664
670
  export interface GetConnectorDefinitionVersionRequest {
665
671
  ConnectorDefinitionId: string | undefined;
666
672
  ConnectorDefinitionVersionId: string | undefined;
667
- NextToken?: string;
673
+ NextToken?: string | undefined;
668
674
  }
669
675
  export interface GetConnectorDefinitionVersionResponse {
670
- Arn?: string;
671
- CreationTimestamp?: string;
672
- Definition?: ConnectorDefinitionVersion;
673
- Id?: string;
674
- NextToken?: string;
675
- Version?: string;
676
+ Arn?: string | undefined;
677
+ CreationTimestamp?: string | undefined;
678
+ Definition?: ConnectorDefinitionVersion | undefined;
679
+ Id?: string | undefined;
680
+ NextToken?: string | undefined;
681
+ Version?: string | undefined;
676
682
  }
677
683
  export interface GetCoreDefinitionRequest {
678
684
  CoreDefinitionId: string | undefined;
679
685
  }
680
686
  export interface GetCoreDefinitionResponse {
681
- Arn?: string;
682
- CreationTimestamp?: string;
683
- Id?: string;
684
- LastUpdatedTimestamp?: string;
685
- LatestVersion?: string;
686
- LatestVersionArn?: string;
687
- Name?: string;
688
- tags?: Record<string, string>;
687
+ Arn?: string | undefined;
688
+ CreationTimestamp?: string | undefined;
689
+ Id?: string | undefined;
690
+ LastUpdatedTimestamp?: string | undefined;
691
+ LatestVersion?: string | undefined;
692
+ LatestVersionArn?: string | undefined;
693
+ Name?: string | undefined;
694
+ tags?: Record<string, string> | undefined;
689
695
  }
690
696
  export interface GetCoreDefinitionVersionRequest {
691
697
  CoreDefinitionId: string | undefined;
692
698
  CoreDefinitionVersionId: string | undefined;
693
699
  }
694
700
  export interface GetCoreDefinitionVersionResponse {
695
- Arn?: string;
696
- CreationTimestamp?: string;
697
- Definition?: CoreDefinitionVersion;
698
- Id?: string;
699
- NextToken?: string;
700
- Version?: string;
701
+ Arn?: string | undefined;
702
+ CreationTimestamp?: string | undefined;
703
+ Definition?: CoreDefinitionVersion | undefined;
704
+ Id?: string | undefined;
705
+ NextToken?: string | undefined;
706
+ Version?: string | undefined;
701
707
  }
702
708
  export interface GetDeploymentStatusRequest {
703
709
  DeploymentId: string | undefined;
704
710
  GroupId: string | undefined;
705
711
  }
706
712
  export interface GetDeploymentStatusResponse {
707
- DeploymentStatus?: string;
708
- DeploymentType?: DeploymentType;
709
- ErrorDetails?: ErrorDetail[];
710
- ErrorMessage?: string;
711
- UpdatedAt?: string;
713
+ DeploymentStatus?: string | undefined;
714
+ DeploymentType?: DeploymentType | undefined;
715
+ ErrorDetails?: ErrorDetail[] | undefined;
716
+ ErrorMessage?: string | undefined;
717
+ UpdatedAt?: string | undefined;
712
718
  }
713
719
  export interface GetDeviceDefinitionRequest {
714
720
  DeviceDefinitionId: string | undefined;
715
721
  }
716
722
  export interface GetDeviceDefinitionResponse {
717
- Arn?: string;
718
- CreationTimestamp?: string;
719
- Id?: string;
720
- LastUpdatedTimestamp?: string;
721
- LatestVersion?: string;
722
- LatestVersionArn?: string;
723
- Name?: string;
724
- tags?: Record<string, string>;
723
+ Arn?: string | undefined;
724
+ CreationTimestamp?: string | undefined;
725
+ Id?: string | undefined;
726
+ LastUpdatedTimestamp?: string | undefined;
727
+ LatestVersion?: string | undefined;
728
+ LatestVersionArn?: string | undefined;
729
+ Name?: string | undefined;
730
+ tags?: Record<string, string> | undefined;
725
731
  }
726
732
  export interface GetDeviceDefinitionVersionRequest {
727
733
  DeviceDefinitionId: string | undefined;
728
734
  DeviceDefinitionVersionId: string | undefined;
729
- NextToken?: string;
735
+ NextToken?: string | undefined;
730
736
  }
731
737
  export interface GetDeviceDefinitionVersionResponse {
732
- Arn?: string;
733
- CreationTimestamp?: string;
734
- Definition?: DeviceDefinitionVersion;
735
- Id?: string;
736
- NextToken?: string;
737
- Version?: string;
738
+ Arn?: string | undefined;
739
+ CreationTimestamp?: string | undefined;
740
+ Definition?: DeviceDefinitionVersion | undefined;
741
+ Id?: string | undefined;
742
+ NextToken?: string | undefined;
743
+ Version?: string | undefined;
738
744
  }
739
745
  export interface GetFunctionDefinitionRequest {
740
746
  FunctionDefinitionId: string | undefined;
741
747
  }
742
748
  export interface GetFunctionDefinitionResponse {
743
- Arn?: string;
744
- CreationTimestamp?: string;
745
- Id?: string;
746
- LastUpdatedTimestamp?: string;
747
- LatestVersion?: string;
748
- LatestVersionArn?: string;
749
- Name?: string;
750
- tags?: Record<string, string>;
749
+ Arn?: string | undefined;
750
+ CreationTimestamp?: string | undefined;
751
+ Id?: string | undefined;
752
+ LastUpdatedTimestamp?: string | undefined;
753
+ LatestVersion?: string | undefined;
754
+ LatestVersionArn?: string | undefined;
755
+ Name?: string | undefined;
756
+ tags?: Record<string, string> | undefined;
751
757
  }
752
758
  export interface GetFunctionDefinitionVersionRequest {
753
759
  FunctionDefinitionId: string | undefined;
754
760
  FunctionDefinitionVersionId: string | undefined;
755
- NextToken?: string;
761
+ NextToken?: string | undefined;
756
762
  }
757
763
  export interface GetFunctionDefinitionVersionResponse {
758
- Arn?: string;
759
- CreationTimestamp?: string;
760
- Definition?: FunctionDefinitionVersion;
761
- Id?: string;
762
- NextToken?: string;
763
- Version?: string;
764
+ Arn?: string | undefined;
765
+ CreationTimestamp?: string | undefined;
766
+ Definition?: FunctionDefinitionVersion | undefined;
767
+ Id?: string | undefined;
768
+ NextToken?: string | undefined;
769
+ Version?: string | undefined;
764
770
  }
765
771
  export interface GetGroupRequest {
766
772
  GroupId: string | undefined;
767
773
  }
768
774
  export interface GetGroupResponse {
769
- Arn?: string;
770
- CreationTimestamp?: string;
771
- Id?: string;
772
- LastUpdatedTimestamp?: string;
773
- LatestVersion?: string;
774
- LatestVersionArn?: string;
775
- Name?: string;
776
- tags?: Record<string, string>;
775
+ Arn?: string | undefined;
776
+ CreationTimestamp?: string | undefined;
777
+ Id?: string | undefined;
778
+ LastUpdatedTimestamp?: string | undefined;
779
+ LatestVersion?: string | undefined;
780
+ LatestVersionArn?: string | undefined;
781
+ Name?: string | undefined;
782
+ tags?: Record<string, string> | undefined;
777
783
  }
778
784
  export interface GetGroupCertificateAuthorityRequest {
779
785
  CertificateAuthorityId: string | undefined;
780
786
  GroupId: string | undefined;
781
787
  }
782
788
  export interface GetGroupCertificateAuthorityResponse {
783
- GroupCertificateAuthorityArn?: string;
784
- GroupCertificateAuthorityId?: string;
785
- PemEncodedCertificate?: string;
789
+ GroupCertificateAuthorityArn?: string | undefined;
790
+ GroupCertificateAuthorityId?: string | undefined;
791
+ PemEncodedCertificate?: string | undefined;
786
792
  }
787
793
  export interface GetGroupCertificateConfigurationRequest {
788
794
  GroupId: string | undefined;
789
795
  }
790
796
  export interface GetGroupCertificateConfigurationResponse {
791
- CertificateAuthorityExpiryInMilliseconds?: string;
792
- CertificateExpiryInMilliseconds?: string;
793
- GroupId?: string;
797
+ CertificateAuthorityExpiryInMilliseconds?: string | undefined;
798
+ CertificateExpiryInMilliseconds?: string | undefined;
799
+ GroupId?: string | undefined;
794
800
  }
795
801
  export interface GetGroupVersionRequest {
796
802
  GroupId: string | undefined;
797
803
  GroupVersionId: string | undefined;
798
804
  }
799
805
  export interface GetGroupVersionResponse {
800
- Arn?: string;
801
- CreationTimestamp?: string;
802
- Definition?: GroupVersion;
803
- Id?: string;
804
- Version?: string;
806
+ Arn?: string | undefined;
807
+ CreationTimestamp?: string | undefined;
808
+ Definition?: GroupVersion | undefined;
809
+ Id?: string | undefined;
810
+ Version?: string | undefined;
805
811
  }
806
812
  export interface GetLoggerDefinitionRequest {
807
813
  LoggerDefinitionId: string | undefined;
808
814
  }
809
815
  export interface GetLoggerDefinitionResponse {
810
- Arn?: string;
811
- CreationTimestamp?: string;
812
- Id?: string;
813
- LastUpdatedTimestamp?: string;
814
- LatestVersion?: string;
815
- LatestVersionArn?: string;
816
- Name?: string;
817
- tags?: Record<string, string>;
816
+ Arn?: string | undefined;
817
+ CreationTimestamp?: string | undefined;
818
+ Id?: string | undefined;
819
+ LastUpdatedTimestamp?: string | undefined;
820
+ LatestVersion?: string | undefined;
821
+ LatestVersionArn?: string | undefined;
822
+ Name?: string | undefined;
823
+ tags?: Record<string, string> | undefined;
818
824
  }
819
825
  export interface GetLoggerDefinitionVersionRequest {
820
826
  LoggerDefinitionId: string | undefined;
821
827
  LoggerDefinitionVersionId: string | undefined;
822
- NextToken?: string;
828
+ NextToken?: string | undefined;
823
829
  }
824
830
  export interface GetLoggerDefinitionVersionResponse {
825
- Arn?: string;
826
- CreationTimestamp?: string;
827
- Definition?: LoggerDefinitionVersion;
828
- Id?: string;
829
- Version?: string;
831
+ Arn?: string | undefined;
832
+ CreationTimestamp?: string | undefined;
833
+ Definition?: LoggerDefinitionVersion | undefined;
834
+ Id?: string | undefined;
835
+ Version?: string | undefined;
830
836
  }
831
837
  export interface GetResourceDefinitionRequest {
832
838
  ResourceDefinitionId: string | undefined;
833
839
  }
834
840
  export interface GetResourceDefinitionResponse {
835
- Arn?: string;
836
- CreationTimestamp?: string;
837
- Id?: string;
838
- LastUpdatedTimestamp?: string;
839
- LatestVersion?: string;
840
- LatestVersionArn?: string;
841
- Name?: string;
842
- tags?: Record<string, string>;
841
+ Arn?: string | undefined;
842
+ CreationTimestamp?: string | undefined;
843
+ Id?: string | undefined;
844
+ LastUpdatedTimestamp?: string | undefined;
845
+ LatestVersion?: string | undefined;
846
+ LatestVersionArn?: string | undefined;
847
+ Name?: string | undefined;
848
+ tags?: Record<string, string> | undefined;
843
849
  }
844
850
  export interface GetResourceDefinitionVersionRequest {
845
851
  ResourceDefinitionId: string | undefined;
846
852
  ResourceDefinitionVersionId: string | undefined;
847
853
  }
848
854
  export interface GetResourceDefinitionVersionResponse {
849
- Arn?: string;
850
- CreationTimestamp?: string;
851
- Definition?: ResourceDefinitionVersion;
852
- Id?: string;
853
- Version?: string;
855
+ Arn?: string | undefined;
856
+ CreationTimestamp?: string | undefined;
857
+ Definition?: ResourceDefinitionVersion | undefined;
858
+ Id?: string | undefined;
859
+ Version?: string | undefined;
854
860
  }
855
861
  export interface GetServiceRoleForAccountRequest {}
856
862
  export interface GetServiceRoleForAccountResponse {
857
- AssociatedAt?: string;
858
- RoleArn?: string;
863
+ AssociatedAt?: string | undefined;
864
+ RoleArn?: string | undefined;
859
865
  }
860
866
  export interface GetSubscriptionDefinitionRequest {
861
867
  SubscriptionDefinitionId: string | undefined;
862
868
  }
863
869
  export interface GetSubscriptionDefinitionResponse {
864
- Arn?: string;
865
- CreationTimestamp?: string;
866
- Id?: string;
867
- LastUpdatedTimestamp?: string;
868
- LatestVersion?: string;
869
- LatestVersionArn?: string;
870
- Name?: string;
871
- tags?: Record<string, string>;
870
+ Arn?: string | undefined;
871
+ CreationTimestamp?: string | undefined;
872
+ Id?: string | undefined;
873
+ LastUpdatedTimestamp?: string | undefined;
874
+ LatestVersion?: string | undefined;
875
+ LatestVersionArn?: string | undefined;
876
+ Name?: string | undefined;
877
+ tags?: Record<string, string> | undefined;
872
878
  }
873
879
  export interface GetSubscriptionDefinitionVersionRequest {
874
- NextToken?: string;
880
+ NextToken?: string | undefined;
875
881
  SubscriptionDefinitionId: string | undefined;
876
882
  SubscriptionDefinitionVersionId: string | undefined;
877
883
  }
878
884
  export interface GetSubscriptionDefinitionVersionResponse {
879
- Arn?: string;
880
- CreationTimestamp?: string;
881
- Definition?: SubscriptionDefinitionVersion;
882
- Id?: string;
883
- NextToken?: string;
884
- Version?: string;
885
+ Arn?: string | undefined;
886
+ CreationTimestamp?: string | undefined;
887
+ Definition?: SubscriptionDefinitionVersion | undefined;
888
+ Id?: string | undefined;
889
+ NextToken?: string | undefined;
890
+ Version?: string | undefined;
885
891
  }
886
892
  export interface GetThingRuntimeConfigurationRequest {
887
893
  ThingName: string | undefined;
@@ -892,207 +898,209 @@ export declare const Telemetry: {
892
898
  };
893
899
  export type Telemetry = (typeof Telemetry)[keyof typeof Telemetry];
894
900
  export interface TelemetryConfiguration {
895
- ConfigurationSyncStatus?: ConfigurationSyncStatus;
901
+ ConfigurationSyncStatus?: ConfigurationSyncStatus | undefined;
896
902
  Telemetry: Telemetry | undefined;
897
903
  }
898
904
  export interface RuntimeConfiguration {
899
- TelemetryConfiguration?: TelemetryConfiguration;
905
+ TelemetryConfiguration?: TelemetryConfiguration | undefined;
900
906
  }
901
907
  export interface GetThingRuntimeConfigurationResponse {
902
- RuntimeConfiguration?: RuntimeConfiguration;
908
+ RuntimeConfiguration?: RuntimeConfiguration | undefined;
903
909
  }
904
910
  export interface ListBulkDeploymentDetailedReportsRequest {
905
911
  BulkDeploymentId: string | undefined;
906
- MaxResults?: string;
907
- NextToken?: string;
912
+ MaxResults?: string | undefined;
913
+ NextToken?: string | undefined;
908
914
  }
909
915
  export interface ListBulkDeploymentDetailedReportsResponse {
910
- Deployments?: BulkDeploymentResult[];
911
- NextToken?: string;
916
+ Deployments?: BulkDeploymentResult[] | undefined;
917
+ NextToken?: string | undefined;
912
918
  }
913
919
  export interface ListBulkDeploymentsRequest {
914
- MaxResults?: string;
915
- NextToken?: string;
920
+ MaxResults?: string | undefined;
921
+ NextToken?: string | undefined;
916
922
  }
917
923
  export interface ListBulkDeploymentsResponse {
918
- BulkDeployments?: BulkDeployment[];
919
- NextToken?: string;
924
+ BulkDeployments?: BulkDeployment[] | undefined;
925
+ NextToken?: string | undefined;
920
926
  }
921
927
  export interface ListConnectorDefinitionsRequest {
922
- MaxResults?: string;
923
- NextToken?: string;
928
+ MaxResults?: string | undefined;
929
+ NextToken?: string | undefined;
924
930
  }
925
931
  export interface ListConnectorDefinitionsResponse {
926
- Definitions?: DefinitionInformation[];
927
- NextToken?: string;
932
+ Definitions?: DefinitionInformation[] | undefined;
933
+ NextToken?: string | undefined;
928
934
  }
929
935
  export interface ListConnectorDefinitionVersionsRequest {
930
936
  ConnectorDefinitionId: string | undefined;
931
- MaxResults?: string;
932
- NextToken?: string;
937
+ MaxResults?: string | undefined;
938
+ NextToken?: string | undefined;
933
939
  }
934
940
  export interface ListConnectorDefinitionVersionsResponse {
935
- NextToken?: string;
936
- Versions?: VersionInformation[];
941
+ NextToken?: string | undefined;
942
+ Versions?: VersionInformation[] | undefined;
937
943
  }
938
944
  export interface ListCoreDefinitionsRequest {
939
- MaxResults?: string;
940
- NextToken?: string;
945
+ MaxResults?: string | undefined;
946
+ NextToken?: string | undefined;
941
947
  }
942
948
  export interface ListCoreDefinitionsResponse {
943
- Definitions?: DefinitionInformation[];
944
- NextToken?: string;
949
+ Definitions?: DefinitionInformation[] | undefined;
950
+ NextToken?: string | undefined;
945
951
  }
946
952
  export interface ListCoreDefinitionVersionsRequest {
947
953
  CoreDefinitionId: string | undefined;
948
- MaxResults?: string;
949
- NextToken?: string;
954
+ MaxResults?: string | undefined;
955
+ NextToken?: string | undefined;
950
956
  }
951
957
  export interface ListCoreDefinitionVersionsResponse {
952
- NextToken?: string;
953
- Versions?: VersionInformation[];
958
+ NextToken?: string | undefined;
959
+ Versions?: VersionInformation[] | undefined;
954
960
  }
955
961
  export interface ListDeploymentsRequest {
956
962
  GroupId: string | undefined;
957
- MaxResults?: string;
958
- NextToken?: string;
963
+ MaxResults?: string | undefined;
964
+ NextToken?: string | undefined;
959
965
  }
960
966
  export interface ListDeploymentsResponse {
961
- Deployments?: Deployment[];
962
- NextToken?: string;
967
+ Deployments?: Deployment[] | undefined;
968
+ NextToken?: string | undefined;
963
969
  }
964
970
  export interface ListDeviceDefinitionsRequest {
965
- MaxResults?: string;
966
- NextToken?: string;
971
+ MaxResults?: string | undefined;
972
+ NextToken?: string | undefined;
967
973
  }
968
974
  export interface ListDeviceDefinitionsResponse {
969
- Definitions?: DefinitionInformation[];
970
- NextToken?: string;
975
+ Definitions?: DefinitionInformation[] | undefined;
976
+ NextToken?: string | undefined;
971
977
  }
972
978
  export interface ListDeviceDefinitionVersionsRequest {
973
979
  DeviceDefinitionId: string | undefined;
974
- MaxResults?: string;
975
- NextToken?: string;
980
+ MaxResults?: string | undefined;
981
+ NextToken?: string | undefined;
976
982
  }
977
983
  export interface ListDeviceDefinitionVersionsResponse {
978
- NextToken?: string;
979
- Versions?: VersionInformation[];
984
+ NextToken?: string | undefined;
985
+ Versions?: VersionInformation[] | undefined;
980
986
  }
981
987
  export interface ListFunctionDefinitionsRequest {
982
- MaxResults?: string;
983
- NextToken?: string;
988
+ MaxResults?: string | undefined;
989
+ NextToken?: string | undefined;
984
990
  }
985
991
  export interface ListFunctionDefinitionsResponse {
986
- Definitions?: DefinitionInformation[];
987
- NextToken?: string;
992
+ Definitions?: DefinitionInformation[] | undefined;
993
+ NextToken?: string | undefined;
988
994
  }
989
995
  export interface ListFunctionDefinitionVersionsRequest {
990
996
  FunctionDefinitionId: string | undefined;
991
- MaxResults?: string;
992
- NextToken?: string;
997
+ MaxResults?: string | undefined;
998
+ NextToken?: string | undefined;
993
999
  }
994
1000
  export interface ListFunctionDefinitionVersionsResponse {
995
- NextToken?: string;
996
- Versions?: VersionInformation[];
1001
+ NextToken?: string | undefined;
1002
+ Versions?: VersionInformation[] | undefined;
997
1003
  }
998
1004
  export interface ListGroupCertificateAuthoritiesRequest {
999
1005
  GroupId: string | undefined;
1000
1006
  }
1001
1007
  export interface ListGroupCertificateAuthoritiesResponse {
1002
- GroupCertificateAuthorities?: GroupCertificateAuthorityProperties[];
1008
+ GroupCertificateAuthorities?:
1009
+ | GroupCertificateAuthorityProperties[]
1010
+ | undefined;
1003
1011
  }
1004
1012
  export interface ListGroupsRequest {
1005
- MaxResults?: string;
1006
- NextToken?: string;
1013
+ MaxResults?: string | undefined;
1014
+ NextToken?: string | undefined;
1007
1015
  }
1008
1016
  export interface ListGroupsResponse {
1009
- Groups?: GroupInformation[];
1010
- NextToken?: string;
1017
+ Groups?: GroupInformation[] | undefined;
1018
+ NextToken?: string | undefined;
1011
1019
  }
1012
1020
  export interface ListGroupVersionsRequest {
1013
1021
  GroupId: string | undefined;
1014
- MaxResults?: string;
1015
- NextToken?: string;
1022
+ MaxResults?: string | undefined;
1023
+ NextToken?: string | undefined;
1016
1024
  }
1017
1025
  export interface ListGroupVersionsResponse {
1018
- NextToken?: string;
1019
- Versions?: VersionInformation[];
1026
+ NextToken?: string | undefined;
1027
+ Versions?: VersionInformation[] | undefined;
1020
1028
  }
1021
1029
  export interface ListLoggerDefinitionsRequest {
1022
- MaxResults?: string;
1023
- NextToken?: string;
1030
+ MaxResults?: string | undefined;
1031
+ NextToken?: string | undefined;
1024
1032
  }
1025
1033
  export interface ListLoggerDefinitionsResponse {
1026
- Definitions?: DefinitionInformation[];
1027
- NextToken?: string;
1034
+ Definitions?: DefinitionInformation[] | undefined;
1035
+ NextToken?: string | undefined;
1028
1036
  }
1029
1037
  export interface ListLoggerDefinitionVersionsRequest {
1030
1038
  LoggerDefinitionId: string | undefined;
1031
- MaxResults?: string;
1032
- NextToken?: string;
1039
+ MaxResults?: string | undefined;
1040
+ NextToken?: string | undefined;
1033
1041
  }
1034
1042
  export interface ListLoggerDefinitionVersionsResponse {
1035
- NextToken?: string;
1036
- Versions?: VersionInformation[];
1043
+ NextToken?: string | undefined;
1044
+ Versions?: VersionInformation[] | undefined;
1037
1045
  }
1038
1046
  export interface ListResourceDefinitionsRequest {
1039
- MaxResults?: string;
1040
- NextToken?: string;
1047
+ MaxResults?: string | undefined;
1048
+ NextToken?: string | undefined;
1041
1049
  }
1042
1050
  export interface ListResourceDefinitionsResponse {
1043
- Definitions?: DefinitionInformation[];
1044
- NextToken?: string;
1051
+ Definitions?: DefinitionInformation[] | undefined;
1052
+ NextToken?: string | undefined;
1045
1053
  }
1046
1054
  export interface ListResourceDefinitionVersionsRequest {
1047
- MaxResults?: string;
1048
- NextToken?: string;
1055
+ MaxResults?: string | undefined;
1056
+ NextToken?: string | undefined;
1049
1057
  ResourceDefinitionId: string | undefined;
1050
1058
  }
1051
1059
  export interface ListResourceDefinitionVersionsResponse {
1052
- NextToken?: string;
1053
- Versions?: VersionInformation[];
1060
+ NextToken?: string | undefined;
1061
+ Versions?: VersionInformation[] | undefined;
1054
1062
  }
1055
1063
  export interface ListSubscriptionDefinitionsRequest {
1056
- MaxResults?: string;
1057
- NextToken?: string;
1064
+ MaxResults?: string | undefined;
1065
+ NextToken?: string | undefined;
1058
1066
  }
1059
1067
  export interface ListSubscriptionDefinitionsResponse {
1060
- Definitions?: DefinitionInformation[];
1061
- NextToken?: string;
1068
+ Definitions?: DefinitionInformation[] | undefined;
1069
+ NextToken?: string | undefined;
1062
1070
  }
1063
1071
  export interface ListSubscriptionDefinitionVersionsRequest {
1064
- MaxResults?: string;
1065
- NextToken?: string;
1072
+ MaxResults?: string | undefined;
1073
+ NextToken?: string | undefined;
1066
1074
  SubscriptionDefinitionId: string | undefined;
1067
1075
  }
1068
1076
  export interface ListSubscriptionDefinitionVersionsResponse {
1069
- NextToken?: string;
1070
- Versions?: VersionInformation[];
1077
+ NextToken?: string | undefined;
1078
+ Versions?: VersionInformation[] | undefined;
1071
1079
  }
1072
1080
  export interface ListTagsForResourceRequest {
1073
1081
  ResourceArn: string | undefined;
1074
1082
  }
1075
1083
  export interface ListTagsForResourceResponse {
1076
- tags?: Record<string, string>;
1084
+ tags?: Record<string, string> | undefined;
1077
1085
  }
1078
1086
  export interface ResetDeploymentsRequest {
1079
- AmznClientToken?: string;
1080
- Force?: boolean;
1087
+ AmznClientToken?: string | undefined;
1088
+ Force?: boolean | undefined;
1081
1089
  GroupId: string | undefined;
1082
1090
  }
1083
1091
  export interface ResetDeploymentsResponse {
1084
- DeploymentArn?: string;
1085
- DeploymentId?: string;
1092
+ DeploymentArn?: string | undefined;
1093
+ DeploymentId?: string | undefined;
1086
1094
  }
1087
1095
  export interface StartBulkDeploymentRequest {
1088
- AmznClientToken?: string;
1096
+ AmznClientToken?: string | undefined;
1089
1097
  ExecutionRoleArn: string | undefined;
1090
1098
  InputFileUri: string | undefined;
1091
- tags?: Record<string, string>;
1099
+ tags?: Record<string, string> | undefined;
1092
1100
  }
1093
1101
  export interface StartBulkDeploymentResponse {
1094
- BulkDeploymentArn?: string;
1095
- BulkDeploymentId?: string;
1102
+ BulkDeploymentArn?: string | undefined;
1103
+ BulkDeploymentId?: string | undefined;
1096
1104
  }
1097
1105
  export interface StopBulkDeploymentRequest {
1098
1106
  BulkDeploymentId: string | undefined;
@@ -1100,66 +1108,66 @@ export interface StopBulkDeploymentRequest {
1100
1108
  export interface StopBulkDeploymentResponse {}
1101
1109
  export interface TagResourceRequest {
1102
1110
  ResourceArn: string | undefined;
1103
- tags?: Record<string, string>;
1111
+ tags?: Record<string, string> | undefined;
1104
1112
  }
1105
1113
  export interface UntagResourceRequest {
1106
1114
  ResourceArn: string | undefined;
1107
1115
  TagKeys: string[] | undefined;
1108
1116
  }
1109
1117
  export interface UpdateConnectivityInfoRequest {
1110
- ConnectivityInfo?: ConnectivityInfo[];
1118
+ ConnectivityInfo?: ConnectivityInfo[] | undefined;
1111
1119
  ThingName: string | undefined;
1112
1120
  }
1113
1121
  export interface UpdateConnectivityInfoResponse {
1114
- Message?: string;
1115
- Version?: string;
1122
+ Message?: string | undefined;
1123
+ Version?: string | undefined;
1116
1124
  }
1117
1125
  export interface UpdateConnectorDefinitionRequest {
1118
1126
  ConnectorDefinitionId: string | undefined;
1119
- Name?: string;
1127
+ Name?: string | undefined;
1120
1128
  }
1121
1129
  export interface UpdateConnectorDefinitionResponse {}
1122
1130
  export interface UpdateCoreDefinitionRequest {
1123
1131
  CoreDefinitionId: string | undefined;
1124
- Name?: string;
1132
+ Name?: string | undefined;
1125
1133
  }
1126
1134
  export interface UpdateCoreDefinitionResponse {}
1127
1135
  export interface UpdateDeviceDefinitionRequest {
1128
1136
  DeviceDefinitionId: string | undefined;
1129
- Name?: string;
1137
+ Name?: string | undefined;
1130
1138
  }
1131
1139
  export interface UpdateDeviceDefinitionResponse {}
1132
1140
  export interface UpdateFunctionDefinitionRequest {
1133
1141
  FunctionDefinitionId: string | undefined;
1134
- Name?: string;
1142
+ Name?: string | undefined;
1135
1143
  }
1136
1144
  export interface UpdateFunctionDefinitionResponse {}
1137
1145
  export interface UpdateGroupRequest {
1138
1146
  GroupId: string | undefined;
1139
- Name?: string;
1147
+ Name?: string | undefined;
1140
1148
  }
1141
1149
  export interface UpdateGroupResponse {}
1142
1150
  export interface UpdateGroupCertificateConfigurationRequest {
1143
- CertificateExpiryInMilliseconds?: string;
1151
+ CertificateExpiryInMilliseconds?: string | undefined;
1144
1152
  GroupId: string | undefined;
1145
1153
  }
1146
1154
  export interface UpdateGroupCertificateConfigurationResponse {
1147
- CertificateAuthorityExpiryInMilliseconds?: string;
1148
- CertificateExpiryInMilliseconds?: string;
1149
- GroupId?: string;
1155
+ CertificateAuthorityExpiryInMilliseconds?: string | undefined;
1156
+ CertificateExpiryInMilliseconds?: string | undefined;
1157
+ GroupId?: string | undefined;
1150
1158
  }
1151
1159
  export interface UpdateLoggerDefinitionRequest {
1152
1160
  LoggerDefinitionId: string | undefined;
1153
- Name?: string;
1161
+ Name?: string | undefined;
1154
1162
  }
1155
1163
  export interface UpdateLoggerDefinitionResponse {}
1156
1164
  export interface UpdateResourceDefinitionRequest {
1157
- Name?: string;
1165
+ Name?: string | undefined;
1158
1166
  ResourceDefinitionId: string | undefined;
1159
1167
  }
1160
1168
  export interface UpdateResourceDefinitionResponse {}
1161
1169
  export interface UpdateSubscriptionDefinitionRequest {
1162
- Name?: string;
1170
+ Name?: string | undefined;
1163
1171
  SubscriptionDefinitionId: string | undefined;
1164
1172
  }
1165
1173
  export interface UpdateSubscriptionDefinitionResponse {}
@@ -1167,7 +1175,7 @@ export interface TelemetryConfigurationUpdate {
1167
1175
  Telemetry: Telemetry | undefined;
1168
1176
  }
1169
1177
  export interface UpdateThingRuntimeConfigurationRequest {
1170
- TelemetryConfiguration?: TelemetryConfigurationUpdate;
1178
+ TelemetryConfiguration?: TelemetryConfigurationUpdate | undefined;
1171
1179
  ThingName: string | undefined;
1172
1180
  }
1173
1181
  export interface UpdateThingRuntimeConfigurationResponse {}