@aws-sdk/client-greengrassv2 3.168.0 → 3.170.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.
Files changed (53) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/GreengrassV2.d.ts +550 -150
  3. package/dist-types/ts3.4/GreengrassV2Client.d.ts +304 -102
  4. package/dist-types/ts3.4/commands/AssociateServiceRoleToAccountCommand.d.ts +41 -17
  5. package/dist-types/ts3.4/commands/BatchAssociateClientDeviceWithCoreDeviceCommand.d.ts +41 -17
  6. package/dist-types/ts3.4/commands/BatchDisassociateClientDeviceFromCoreDeviceCommand.d.ts +41 -17
  7. package/dist-types/ts3.4/commands/CancelDeploymentCommand.d.ts +37 -17
  8. package/dist-types/ts3.4/commands/CreateComponentVersionCommand.d.ts +41 -17
  9. package/dist-types/ts3.4/commands/CreateDeploymentCommand.d.ts +37 -17
  10. package/dist-types/ts3.4/commands/DeleteComponentCommand.d.ts +32 -17
  11. package/dist-types/ts3.4/commands/DeleteCoreDeviceCommand.d.ts +32 -17
  12. package/dist-types/ts3.4/commands/DeleteDeploymentCommand.d.ts +32 -17
  13. package/dist-types/ts3.4/commands/DescribeComponentCommand.d.ts +38 -17
  14. package/dist-types/ts3.4/commands/DisassociateServiceRoleFromAccountCommand.d.ts +41 -17
  15. package/dist-types/ts3.4/commands/GetComponentCommand.d.ts +34 -17
  16. package/dist-types/ts3.4/commands/GetComponentVersionArtifactCommand.d.ts +41 -17
  17. package/dist-types/ts3.4/commands/GetConnectivityInfoCommand.d.ts +38 -17
  18. package/dist-types/ts3.4/commands/GetCoreDeviceCommand.d.ts +37 -17
  19. package/dist-types/ts3.4/commands/GetDeploymentCommand.d.ts +37 -17
  20. package/dist-types/ts3.4/commands/GetServiceRoleForAccountCommand.d.ts +41 -17
  21. package/dist-types/ts3.4/commands/ListClientDevicesAssociatedWithCoreDeviceCommand.d.ts +41 -17
  22. package/dist-types/ts3.4/commands/ListComponentVersionsCommand.d.ts +41 -17
  23. package/dist-types/ts3.4/commands/ListComponentsCommand.d.ts +37 -17
  24. package/dist-types/ts3.4/commands/ListCoreDevicesCommand.d.ts +37 -17
  25. package/dist-types/ts3.4/commands/ListDeploymentsCommand.d.ts +37 -17
  26. package/dist-types/ts3.4/commands/ListEffectiveDeploymentsCommand.d.ts +41 -17
  27. package/dist-types/ts3.4/commands/ListInstalledComponentsCommand.d.ts +41 -17
  28. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  29. package/dist-types/ts3.4/commands/ResolveComponentCandidatesCommand.d.ts +41 -17
  30. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  31. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  32. package/dist-types/ts3.4/commands/UpdateConnectivityInfoCommand.d.ts +41 -17
  33. package/dist-types/ts3.4/commands/index.d.ts +29 -29
  34. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  35. package/dist-types/ts3.4/index.d.ts +6 -6
  36. package/dist-types/ts3.4/models/GreengrassV2ServiceException.d.ts +8 -6
  37. package/dist-types/ts3.4/models/index.d.ts +1 -1
  38. package/dist-types/ts3.4/models/models_0.d.ts +1246 -1137
  39. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  40. package/dist-types/ts3.4/pagination/ListClientDevicesAssociatedWithCoreDevicePaginator.d.ts +11 -4
  41. package/dist-types/ts3.4/pagination/ListComponentVersionsPaginator.d.ts +11 -4
  42. package/dist-types/ts3.4/pagination/ListComponentsPaginator.d.ts +11 -4
  43. package/dist-types/ts3.4/pagination/ListCoreDevicesPaginator.d.ts +11 -4
  44. package/dist-types/ts3.4/pagination/ListDeploymentsPaginator.d.ts +11 -4
  45. package/dist-types/ts3.4/pagination/ListEffectiveDeploymentsPaginator.d.ts +11 -4
  46. package/dist-types/ts3.4/pagination/ListInstalledComponentsPaginator.d.ts +11 -4
  47. package/dist-types/ts3.4/pagination/index.d.ts +8 -8
  48. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +353 -89
  49. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  50. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  51. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  52. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  53. package/package.json +34 -34
@@ -1,1137 +1,1246 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
- import { GreengrassV2ServiceException as __BaseException } from "./GreengrassV2ServiceException";
3
-
4
- export declare class AccessDeniedException extends __BaseException {
5
- readonly name: "AccessDeniedException";
6
- readonly $fault: "client";
7
-
8
- constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
9
- }
10
-
11
- export interface AssociateClientDeviceWithCoreDeviceEntry {
12
-
13
- thingName: string | undefined;
14
- }
15
-
16
- export interface AssociateClientDeviceWithCoreDeviceErrorEntry {
17
-
18
- thingName?: string;
19
-
20
- code?: string;
21
-
22
- message?: string;
23
- }
24
-
25
- export interface AssociatedClientDevice {
26
-
27
- thingName?: string;
28
-
29
- associationTimestamp?: Date;
30
- }
31
- export interface AssociateServiceRoleToAccountRequest {
32
-
33
- roleArn: string | undefined;
34
- }
35
- export interface AssociateServiceRoleToAccountResponse {
36
-
37
- associatedAt?: string;
38
- }
39
-
40
- export declare class InternalServerException extends __BaseException {
41
- readonly name: "InternalServerException";
42
- readonly $fault: "server";
43
-
44
- retryAfterSeconds?: number;
45
-
46
- constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
47
- }
48
-
49
- export interface ValidationExceptionField {
50
-
51
- name: string | undefined;
52
-
53
- message: string | undefined;
54
- }
55
- export declare enum ValidationExceptionReason {
56
- CANNOT_PARSE = "CANNOT_PARSE",
57
- FIELD_VALIDATION_FAILED = "FIELD_VALIDATION_FAILED",
58
- OTHER = "OTHER",
59
- UNKNOWN_OPERATION = "UNKNOWN_OPERATION"
60
- }
61
-
62
- export declare class ValidationException extends __BaseException {
63
- readonly name: "ValidationException";
64
- readonly $fault: "client";
65
-
66
- reason?: ValidationExceptionReason | string;
67
-
68
- fields?: ValidationExceptionField[];
69
-
70
- constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
71
- }
72
- export interface BatchAssociateClientDeviceWithCoreDeviceRequest {
73
-
74
- entries?: AssociateClientDeviceWithCoreDeviceEntry[];
75
-
76
- coreDeviceThingName: string | undefined;
77
- }
78
- export interface BatchAssociateClientDeviceWithCoreDeviceResponse {
79
-
80
- errorEntries?: AssociateClientDeviceWithCoreDeviceErrorEntry[];
81
- }
82
-
83
- export declare class ResourceNotFoundException extends __BaseException {
84
- readonly name: "ResourceNotFoundException";
85
- readonly $fault: "client";
86
-
87
- resourceId: string | undefined;
88
-
89
- resourceType: string | undefined;
90
-
91
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
92
- }
93
-
94
- export declare class ThrottlingException extends __BaseException {
95
- readonly name: "ThrottlingException";
96
- readonly $fault: "client";
97
-
98
- quotaCode?: string;
99
-
100
- serviceCode?: string;
101
-
102
- retryAfterSeconds?: number;
103
-
104
- constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
105
- }
106
-
107
- export interface DisassociateClientDeviceFromCoreDeviceEntry {
108
-
109
- thingName: string | undefined;
110
- }
111
- export interface BatchDisassociateClientDeviceFromCoreDeviceRequest {
112
-
113
- entries?: DisassociateClientDeviceFromCoreDeviceEntry[];
114
-
115
- coreDeviceThingName: string | undefined;
116
- }
117
-
118
- export interface DisassociateClientDeviceFromCoreDeviceErrorEntry {
119
-
120
- thingName?: string;
121
-
122
- code?: string;
123
-
124
- message?: string;
125
- }
126
- export interface BatchDisassociateClientDeviceFromCoreDeviceResponse {
127
-
128
- errorEntries?: DisassociateClientDeviceFromCoreDeviceErrorEntry[];
129
- }
130
- export interface CancelDeploymentRequest {
131
-
132
- deploymentId: string | undefined;
133
- }
134
- export interface CancelDeploymentResponse {
135
-
136
- message?: string;
137
- }
138
-
139
- export declare class ConflictException extends __BaseException {
140
- readonly name: "ConflictException";
141
- readonly $fault: "client";
142
-
143
- resourceId: string | undefined;
144
-
145
- resourceType: string | undefined;
146
-
147
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
148
- }
149
- export declare enum CloudComponentState {
150
- DEPLOYABLE = "DEPLOYABLE",
151
- DEPRECATED = "DEPRECATED",
152
- FAILED = "FAILED",
153
- INITIATED = "INITIATED",
154
- REQUESTED = "REQUESTED"
155
- }
156
- export declare enum VendorGuidance {
157
- ACTIVE = "ACTIVE",
158
- DELETED = "DELETED",
159
- DISCONTINUED = "DISCONTINUED"
160
- }
161
-
162
- export interface CloudComponentStatus {
163
-
164
- componentState?: CloudComponentState | string;
165
-
166
- message?: string;
167
-
168
- errors?: Record<string, string>;
169
-
170
- vendorGuidance?: VendorGuidance | string;
171
-
172
- vendorGuidanceMessage?: string;
173
- }
174
-
175
- export interface ComponentPlatform {
176
-
177
- name?: string;
178
-
179
- attributes?: Record<string, string>;
180
- }
181
-
182
- export interface ComponentLatestVersion {
183
-
184
- arn?: string;
185
-
186
- componentVersion?: string;
187
-
188
- creationTimestamp?: Date;
189
-
190
- description?: string;
191
-
192
- publisher?: string;
193
-
194
- platforms?: ComponentPlatform[];
195
- }
196
-
197
- export interface Component {
198
-
199
- arn?: string;
200
-
201
- componentName?: string;
202
-
203
- latestVersion?: ComponentLatestVersion;
204
- }
205
-
206
- export interface ComponentCandidate {
207
-
208
- componentName?: string;
209
-
210
- componentVersion?: string;
211
-
212
- versionRequirements?: Record<string, string>;
213
- }
214
-
215
- export interface ComponentConfigurationUpdate {
216
-
217
- merge?: string;
218
-
219
- reset?: string[];
220
- }
221
- export declare enum ComponentDependencyType {
222
- HARD = "HARD",
223
- SOFT = "SOFT"
224
- }
225
-
226
- export interface ComponentDependencyRequirement {
227
-
228
- versionRequirement?: string;
229
-
230
- dependencyType?: ComponentDependencyType | string;
231
- }
232
-
233
- export interface SystemResourceLimits {
234
-
235
- memory?: number;
236
-
237
- cpus?: number;
238
- }
239
-
240
- export interface ComponentRunWith {
241
-
242
- posixUser?: string;
243
-
244
- systemResourceLimits?: SystemResourceLimits;
245
-
246
- windowsUser?: string;
247
- }
248
-
249
- export interface ComponentDeploymentSpecification {
250
-
251
- componentVersion?: string;
252
-
253
- configurationUpdate?: ComponentConfigurationUpdate;
254
-
255
- runWith?: ComponentRunWith;
256
- }
257
-
258
- export interface ComponentVersionListItem {
259
-
260
- componentName?: string;
261
-
262
- componentVersion?: string;
263
-
264
- arn?: string;
265
- }
266
- export declare enum ComponentVisibilityScope {
267
- PRIVATE = "PRIVATE",
268
- PUBLIC = "PUBLIC"
269
- }
270
-
271
- export interface ConnectivityInfo {
272
-
273
- id?: string;
274
-
275
- hostAddress?: string;
276
-
277
- portNumber?: number;
278
-
279
- metadata?: string;
280
- }
281
- export declare enum CoreDeviceStatus {
282
- HEALTHY = "HEALTHY",
283
- UNHEALTHY = "UNHEALTHY"
284
- }
285
-
286
- export interface CoreDevice {
287
-
288
- coreDeviceThingName?: string;
289
-
290
- status?: CoreDeviceStatus | string;
291
-
292
- lastStatusUpdateTimestamp?: Date;
293
- }
294
- export declare enum LambdaEventSourceType {
295
- IOT_CORE = "IOT_CORE",
296
- PUB_SUB = "PUB_SUB"
297
- }
298
-
299
- export interface LambdaEventSource {
300
-
301
- topic: string | undefined;
302
-
303
- type: LambdaEventSourceType | string | undefined;
304
- }
305
- export declare enum LambdaInputPayloadEncodingType {
306
- BINARY = "binary",
307
- JSON = "json"
308
- }
309
- export declare enum LambdaFilesystemPermission {
310
- RO = "ro",
311
- RW = "rw"
312
- }
313
-
314
- export interface LambdaDeviceMount {
315
-
316
- path: string | undefined;
317
-
318
- permission?: LambdaFilesystemPermission | string;
319
-
320
- addGroupOwner?: boolean;
321
- }
322
-
323
- export interface LambdaVolumeMount {
324
-
325
- sourcePath: string | undefined;
326
-
327
- destinationPath: string | undefined;
328
-
329
- permission?: LambdaFilesystemPermission | string;
330
-
331
- addGroupOwner?: boolean;
332
- }
333
-
334
- export interface LambdaContainerParams {
335
-
336
- memorySizeInKB?: number;
337
-
338
- mountROSysfs?: boolean;
339
-
340
- volumes?: LambdaVolumeMount[];
341
-
342
- devices?: LambdaDeviceMount[];
343
- }
344
- export declare enum LambdaIsolationMode {
345
- GREENGRASS_CONTAINER = "GreengrassContainer",
346
- NO_CONTAINER = "NoContainer"
347
- }
348
-
349
- export interface LambdaLinuxProcessParams {
350
-
351
- isolationMode?: LambdaIsolationMode | string;
352
-
353
- containerParams?: LambdaContainerParams;
354
- }
355
-
356
- export interface LambdaExecutionParameters {
357
-
358
- eventSources?: LambdaEventSource[];
359
-
360
- maxQueueSize?: number;
361
-
362
- maxInstancesCount?: number;
363
-
364
- maxIdleTimeInSeconds?: number;
365
-
366
- timeoutInSeconds?: number;
367
-
368
- statusTimeoutInSeconds?: number;
369
-
370
- pinned?: boolean;
371
-
372
- inputPayloadEncodingType?: LambdaInputPayloadEncodingType | string;
373
-
374
- execArgs?: string[];
375
-
376
- environmentVariables?: Record<string, string>;
377
-
378
- linuxProcessParams?: LambdaLinuxProcessParams;
379
- }
380
-
381
- export interface LambdaFunctionRecipeSource {
382
-
383
- lambdaArn: string | undefined;
384
-
385
- componentName?: string;
386
-
387
- componentVersion?: string;
388
-
389
- componentPlatforms?: ComponentPlatform[];
390
-
391
- componentDependencies?: Record<string, ComponentDependencyRequirement>;
392
-
393
- componentLambdaParameters?: LambdaExecutionParameters;
394
- }
395
- export interface CreateComponentVersionRequest {
396
-
397
- inlineRecipe?: Uint8Array;
398
-
399
- lambdaFunction?: LambdaFunctionRecipeSource;
400
-
401
- tags?: Record<string, string>;
402
-
403
- clientToken?: string;
404
- }
405
- export interface CreateComponentVersionResponse {
406
-
407
- arn?: string;
408
-
409
- componentName: string | undefined;
410
-
411
- componentVersion: string | undefined;
412
-
413
- creationTimestamp: Date | undefined;
414
-
415
- status: CloudComponentStatus | undefined;
416
- }
417
-
418
- export declare class RequestAlreadyInProgressException extends __BaseException {
419
- readonly name: "RequestAlreadyInProgressException";
420
- readonly $fault: "client";
421
-
422
- constructor(opts: __ExceptionOptionType<RequestAlreadyInProgressException, __BaseException>);
423
- }
424
-
425
- export declare class ServiceQuotaExceededException extends __BaseException {
426
- readonly name: "ServiceQuotaExceededException";
427
- readonly $fault: "client";
428
-
429
- resourceId?: string;
430
-
431
- resourceType?: string;
432
-
433
- quotaCode: string | undefined;
434
-
435
- serviceCode: string | undefined;
436
-
437
- constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
438
- }
439
- export declare enum DeploymentComponentUpdatePolicyAction {
440
- NOTIFY_COMPONENTS = "NOTIFY_COMPONENTS",
441
- SKIP_NOTIFY_COMPONENTS = "SKIP_NOTIFY_COMPONENTS"
442
- }
443
-
444
- export interface DeploymentComponentUpdatePolicy {
445
-
446
- timeoutInSeconds?: number;
447
-
448
- action?: DeploymentComponentUpdatePolicyAction | string;
449
- }
450
-
451
- export interface DeploymentConfigurationValidationPolicy {
452
-
453
- timeoutInSeconds?: number;
454
- }
455
- export declare enum DeploymentFailureHandlingPolicy {
456
- DO_NOTHING = "DO_NOTHING",
457
- ROLLBACK = "ROLLBACK"
458
- }
459
-
460
- export interface DeploymentPolicies {
461
-
462
- failureHandlingPolicy?: DeploymentFailureHandlingPolicy | string;
463
-
464
- componentUpdatePolicy?: DeploymentComponentUpdatePolicy;
465
-
466
- configurationValidationPolicy?: DeploymentConfigurationValidationPolicy;
467
- }
468
- export declare enum IoTJobAbortAction {
469
- CANCEL = "CANCEL"
470
- }
471
- export declare enum IoTJobExecutionFailureType {
472
- ALL = "ALL",
473
- FAILED = "FAILED",
474
- REJECTED = "REJECTED",
475
- TIMED_OUT = "TIMED_OUT"
476
- }
477
-
478
- export interface IoTJobAbortCriteria {
479
-
480
- failureType: IoTJobExecutionFailureType | string | undefined;
481
-
482
- action: IoTJobAbortAction | string | undefined;
483
-
484
- thresholdPercentage: number | undefined;
485
-
486
- minNumberOfExecutedThings: number | undefined;
487
- }
488
-
489
- export interface IoTJobAbortConfig {
490
-
491
- criteriaList: IoTJobAbortCriteria[] | undefined;
492
- }
493
-
494
- export interface IoTJobRateIncreaseCriteria {
495
-
496
- numberOfNotifiedThings?: number;
497
-
498
- numberOfSucceededThings?: number;
499
- }
500
-
501
- export interface IoTJobExponentialRolloutRate {
502
-
503
- baseRatePerMinute: number | undefined;
504
-
505
- incrementFactor: number | undefined;
506
-
507
- rateIncreaseCriteria: IoTJobRateIncreaseCriteria | undefined;
508
- }
509
-
510
- export interface IoTJobExecutionsRolloutConfig {
511
-
512
- exponentialRate?: IoTJobExponentialRolloutRate;
513
-
514
- maximumPerMinute?: number;
515
- }
516
-
517
- export interface IoTJobTimeoutConfig {
518
-
519
- inProgressTimeoutInMinutes?: number;
520
- }
521
-
522
- export interface DeploymentIoTJobConfiguration {
523
-
524
- jobExecutionsRolloutConfig?: IoTJobExecutionsRolloutConfig;
525
-
526
- abortConfig?: IoTJobAbortConfig;
527
-
528
- timeoutConfig?: IoTJobTimeoutConfig;
529
- }
530
- export interface CreateDeploymentRequest {
531
-
532
- targetArn: string | undefined;
533
-
534
- deploymentName?: string;
535
-
536
- components?: Record<string, ComponentDeploymentSpecification>;
537
-
538
- iotJobConfiguration?: DeploymentIoTJobConfiguration;
539
-
540
- deploymentPolicies?: DeploymentPolicies;
541
-
542
- tags?: Record<string, string>;
543
-
544
- clientToken?: string;
545
- }
546
- export interface CreateDeploymentResponse {
547
-
548
- deploymentId?: string;
549
-
550
- iotJobId?: string;
551
-
552
- iotJobArn?: string;
553
- }
554
- export interface DeleteComponentRequest {
555
-
556
- arn: string | undefined;
557
- }
558
- export interface DeleteCoreDeviceRequest {
559
-
560
- coreDeviceThingName: string | undefined;
561
- }
562
- export interface DeleteDeploymentRequest {
563
-
564
- deploymentId: string | undefined;
565
- }
566
- export declare enum DeploymentStatus {
567
- ACTIVE = "ACTIVE",
568
- CANCELED = "CANCELED",
569
- COMPLETED = "COMPLETED",
570
- FAILED = "FAILED",
571
- INACTIVE = "INACTIVE"
572
- }
573
-
574
- export interface Deployment {
575
-
576
- targetArn?: string;
577
-
578
- revisionId?: string;
579
-
580
- deploymentId?: string;
581
-
582
- deploymentName?: string;
583
-
584
- creationTimestamp?: Date;
585
-
586
- deploymentStatus?: DeploymentStatus | string;
587
-
588
- isLatestForTarget?: boolean;
589
- }
590
- export declare enum DeploymentHistoryFilter {
591
- ALL = "ALL",
592
- LATEST_ONLY = "LATEST_ONLY"
593
- }
594
- export interface DescribeComponentRequest {
595
-
596
- arn: string | undefined;
597
- }
598
- export interface DescribeComponentResponse {
599
-
600
- arn?: string;
601
-
602
- componentName?: string;
603
-
604
- componentVersion?: string;
605
-
606
- creationTimestamp?: Date;
607
-
608
- publisher?: string;
609
-
610
- description?: string;
611
-
612
- status?: CloudComponentStatus;
613
-
614
- platforms?: ComponentPlatform[];
615
-
616
- tags?: Record<string, string>;
617
- }
618
- export interface DisassociateServiceRoleFromAccountRequest {
619
- }
620
- export interface DisassociateServiceRoleFromAccountResponse {
621
-
622
- disassociatedAt?: string;
623
- }
624
- export declare enum EffectiveDeploymentExecutionStatus {
625
- CANCELED = "CANCELED",
626
- COMPLETED = "COMPLETED",
627
- FAILED = "FAILED",
628
- IN_PROGRESS = "IN_PROGRESS",
629
- QUEUED = "QUEUED",
630
- REJECTED = "REJECTED",
631
- TIMED_OUT = "TIMED_OUT"
632
- }
633
-
634
- export interface EffectiveDeployment {
635
-
636
- deploymentId: string | undefined;
637
-
638
- deploymentName: string | undefined;
639
-
640
- iotJobId?: string;
641
-
642
- iotJobArn?: string;
643
-
644
- description?: string;
645
-
646
- targetArn: string | undefined;
647
-
648
- coreDeviceExecutionStatus: EffectiveDeploymentExecutionStatus | string | undefined;
649
-
650
- reason?: string;
651
-
652
- creationTimestamp: Date | undefined;
653
-
654
- modifiedTimestamp: Date | undefined;
655
- }
656
- export declare enum RecipeOutputFormat {
657
- JSON = "JSON",
658
- YAML = "YAML"
659
- }
660
- export interface GetComponentRequest {
661
-
662
- recipeOutputFormat?: RecipeOutputFormat | string;
663
-
664
- arn: string | undefined;
665
- }
666
- export interface GetComponentResponse {
667
-
668
- recipeOutputFormat: RecipeOutputFormat | string | undefined;
669
-
670
- recipe: Uint8Array | undefined;
671
-
672
- tags?: Record<string, string>;
673
- }
674
- export interface GetComponentVersionArtifactRequest {
675
-
676
- arn: string | undefined;
677
-
678
- artifactName: string | undefined;
679
- }
680
- export interface GetComponentVersionArtifactResponse {
681
-
682
- preSignedUrl: string | undefined;
683
- }
684
- export interface GetConnectivityInfoRequest {
685
-
686
- thingName: string | undefined;
687
- }
688
- export interface GetConnectivityInfoResponse {
689
-
690
- connectivityInfo?: ConnectivityInfo[];
691
-
692
- message?: string;
693
- }
694
- export interface GetCoreDeviceRequest {
695
-
696
- coreDeviceThingName: string | undefined;
697
- }
698
- export interface GetCoreDeviceResponse {
699
-
700
- coreDeviceThingName?: string;
701
-
702
- coreVersion?: string;
703
-
704
- platform?: string;
705
-
706
- architecture?: string;
707
-
708
- status?: CoreDeviceStatus | string;
709
-
710
- lastStatusUpdateTimestamp?: Date;
711
-
712
- tags?: Record<string, string>;
713
- }
714
- export interface GetDeploymentRequest {
715
-
716
- deploymentId: string | undefined;
717
- }
718
- export interface GetDeploymentResponse {
719
-
720
- targetArn?: string;
721
-
722
- revisionId?: string;
723
-
724
- deploymentId?: string;
725
-
726
- deploymentName?: string;
727
-
728
- deploymentStatus?: DeploymentStatus | string;
729
-
730
- iotJobId?: string;
731
-
732
- iotJobArn?: string;
733
-
734
- components?: Record<string, ComponentDeploymentSpecification>;
735
-
736
- deploymentPolicies?: DeploymentPolicies;
737
-
738
- iotJobConfiguration?: DeploymentIoTJobConfiguration;
739
-
740
- creationTimestamp?: Date;
741
-
742
- isLatestForTarget?: boolean;
743
-
744
- tags?: Record<string, string>;
745
- }
746
- export interface GetServiceRoleForAccountRequest {
747
- }
748
- export interface GetServiceRoleForAccountResponse {
749
-
750
- associatedAt?: string;
751
-
752
- roleArn?: string;
753
- }
754
- export interface ListClientDevicesAssociatedWithCoreDeviceRequest {
755
-
756
- coreDeviceThingName: string | undefined;
757
-
758
- maxResults?: number;
759
-
760
- nextToken?: string;
761
- }
762
- export interface ListClientDevicesAssociatedWithCoreDeviceResponse {
763
-
764
- associatedClientDevices?: AssociatedClientDevice[];
765
-
766
- nextToken?: string;
767
- }
768
- export interface ListComponentsRequest {
769
-
770
- scope?: ComponentVisibilityScope | string;
771
-
772
- maxResults?: number;
773
-
774
- nextToken?: string;
775
- }
776
- export interface ListComponentsResponse {
777
-
778
- components?: Component[];
779
-
780
- nextToken?: string;
781
- }
782
- export interface ListComponentVersionsRequest {
783
-
784
- arn: string | undefined;
785
-
786
- maxResults?: number;
787
-
788
- nextToken?: string;
789
- }
790
- export interface ListComponentVersionsResponse {
791
-
792
- componentVersions?: ComponentVersionListItem[];
793
-
794
- nextToken?: string;
795
- }
796
- export interface ListCoreDevicesRequest {
797
-
798
- thingGroupArn?: string;
799
-
800
- status?: CoreDeviceStatus | string;
801
-
802
- maxResults?: number;
803
-
804
- nextToken?: string;
805
- }
806
- export interface ListCoreDevicesResponse {
807
-
808
- coreDevices?: CoreDevice[];
809
-
810
- nextToken?: string;
811
- }
812
- export interface ListDeploymentsRequest {
813
-
814
- targetArn?: string;
815
-
816
- historyFilter?: DeploymentHistoryFilter | string;
817
-
818
- maxResults?: number;
819
-
820
- nextToken?: string;
821
- }
822
- export interface ListDeploymentsResponse {
823
-
824
- deployments?: Deployment[];
825
-
826
- nextToken?: string;
827
- }
828
- export interface ListEffectiveDeploymentsRequest {
829
-
830
- coreDeviceThingName: string | undefined;
831
-
832
- maxResults?: number;
833
-
834
- nextToken?: string;
835
- }
836
- export interface ListEffectiveDeploymentsResponse {
837
-
838
- effectiveDeployments?: EffectiveDeployment[];
839
-
840
- nextToken?: string;
841
- }
842
- export declare enum InstalledComponentTopologyFilter {
843
- ALL = "ALL",
844
- ROOT = "ROOT"
845
- }
846
- export interface ListInstalledComponentsRequest {
847
-
848
- coreDeviceThingName: string | undefined;
849
-
850
- maxResults?: number;
851
-
852
- nextToken?: string;
853
-
854
- topologyFilter?: InstalledComponentTopologyFilter | string;
855
- }
856
- export declare enum InstalledComponentLifecycleState {
857
- BROKEN = "BROKEN",
858
- ERRORED = "ERRORED",
859
- FINISHED = "FINISHED",
860
- INSTALLED = "INSTALLED",
861
- NEW = "NEW",
862
- RUNNING = "RUNNING",
863
- STARTING = "STARTING",
864
- STOPPING = "STOPPING"
865
- }
866
-
867
- export interface InstalledComponent {
868
-
869
- componentName?: string;
870
-
871
- componentVersion?: string;
872
-
873
- lifecycleState?: InstalledComponentLifecycleState | string;
874
-
875
- lifecycleStateDetails?: string;
876
-
877
- isRoot?: boolean;
878
-
879
- lastStatusChangeTimestamp?: Date;
880
- }
881
- export interface ListInstalledComponentsResponse {
882
-
883
- installedComponents?: InstalledComponent[];
884
-
885
- nextToken?: string;
886
- }
887
- export interface ListTagsForResourceRequest {
888
-
889
- resourceArn: string | undefined;
890
- }
891
- export interface ListTagsForResourceResponse {
892
-
893
- tags?: Record<string, string>;
894
- }
895
- export interface ResolveComponentCandidatesRequest {
896
-
897
- platform?: ComponentPlatform;
898
-
899
- componentCandidates?: ComponentCandidate[];
900
- }
901
-
902
- export interface ResolvedComponentVersion {
903
-
904
- arn?: string;
905
-
906
- componentName?: string;
907
-
908
- componentVersion?: string;
909
-
910
- recipe?: Uint8Array;
911
-
912
- vendorGuidance?: VendorGuidance | string;
913
-
914
- message?: string;
915
- }
916
- export interface ResolveComponentCandidatesResponse {
917
-
918
- resolvedComponentVersions?: ResolvedComponentVersion[];
919
- }
920
- export interface TagResourceRequest {
921
-
922
- resourceArn: string | undefined;
923
-
924
- tags: Record<string, string> | undefined;
925
- }
926
- export interface TagResourceResponse {
927
- }
928
- export interface UntagResourceRequest {
929
-
930
- resourceArn: string | undefined;
931
-
932
- tagKeys: string[] | undefined;
933
- }
934
- export interface UntagResourceResponse {
935
- }
936
- export interface UpdateConnectivityInfoRequest {
937
-
938
- thingName: string | undefined;
939
-
940
- connectivityInfo: ConnectivityInfo[] | undefined;
941
- }
942
- export interface UpdateConnectivityInfoResponse {
943
-
944
- version?: string;
945
-
946
- message?: string;
947
- }
948
-
949
- export declare const AssociateClientDeviceWithCoreDeviceEntryFilterSensitiveLog: (obj: AssociateClientDeviceWithCoreDeviceEntry) => any;
950
-
951
- export declare const AssociateClientDeviceWithCoreDeviceErrorEntryFilterSensitiveLog: (obj: AssociateClientDeviceWithCoreDeviceErrorEntry) => any;
952
-
953
- export declare const AssociatedClientDeviceFilterSensitiveLog: (obj: AssociatedClientDevice) => any;
954
-
955
- export declare const AssociateServiceRoleToAccountRequestFilterSensitiveLog: (obj: AssociateServiceRoleToAccountRequest) => any;
956
-
957
- export declare const AssociateServiceRoleToAccountResponseFilterSensitiveLog: (obj: AssociateServiceRoleToAccountResponse) => any;
958
-
959
- export declare const ValidationExceptionFieldFilterSensitiveLog: (obj: ValidationExceptionField) => any;
960
-
961
- export declare const BatchAssociateClientDeviceWithCoreDeviceRequestFilterSensitiveLog: (obj: BatchAssociateClientDeviceWithCoreDeviceRequest) => any;
962
-
963
- export declare const BatchAssociateClientDeviceWithCoreDeviceResponseFilterSensitiveLog: (obj: BatchAssociateClientDeviceWithCoreDeviceResponse) => any;
964
-
965
- export declare const DisassociateClientDeviceFromCoreDeviceEntryFilterSensitiveLog: (obj: DisassociateClientDeviceFromCoreDeviceEntry) => any;
966
-
967
- export declare const BatchDisassociateClientDeviceFromCoreDeviceRequestFilterSensitiveLog: (obj: BatchDisassociateClientDeviceFromCoreDeviceRequest) => any;
968
-
969
- export declare const DisassociateClientDeviceFromCoreDeviceErrorEntryFilterSensitiveLog: (obj: DisassociateClientDeviceFromCoreDeviceErrorEntry) => any;
970
-
971
- export declare const BatchDisassociateClientDeviceFromCoreDeviceResponseFilterSensitiveLog: (obj: BatchDisassociateClientDeviceFromCoreDeviceResponse) => any;
972
-
973
- export declare const CancelDeploymentRequestFilterSensitiveLog: (obj: CancelDeploymentRequest) => any;
974
-
975
- export declare const CancelDeploymentResponseFilterSensitiveLog: (obj: CancelDeploymentResponse) => any;
976
-
977
- export declare const CloudComponentStatusFilterSensitiveLog: (obj: CloudComponentStatus) => any;
978
-
979
- export declare const ComponentPlatformFilterSensitiveLog: (obj: ComponentPlatform) => any;
980
-
981
- export declare const ComponentLatestVersionFilterSensitiveLog: (obj: ComponentLatestVersion) => any;
982
-
983
- export declare const ComponentFilterSensitiveLog: (obj: Component) => any;
984
-
985
- export declare const ComponentCandidateFilterSensitiveLog: (obj: ComponentCandidate) => any;
986
-
987
- export declare const ComponentConfigurationUpdateFilterSensitiveLog: (obj: ComponentConfigurationUpdate) => any;
988
-
989
- export declare const ComponentDependencyRequirementFilterSensitiveLog: (obj: ComponentDependencyRequirement) => any;
990
-
991
- export declare const SystemResourceLimitsFilterSensitiveLog: (obj: SystemResourceLimits) => any;
992
-
993
- export declare const ComponentRunWithFilterSensitiveLog: (obj: ComponentRunWith) => any;
994
-
995
- export declare const ComponentDeploymentSpecificationFilterSensitiveLog: (obj: ComponentDeploymentSpecification) => any;
996
-
997
- export declare const ComponentVersionListItemFilterSensitiveLog: (obj: ComponentVersionListItem) => any;
998
-
999
- export declare const ConnectivityInfoFilterSensitiveLog: (obj: ConnectivityInfo) => any;
1000
-
1001
- export declare const CoreDeviceFilterSensitiveLog: (obj: CoreDevice) => any;
1002
-
1003
- export declare const LambdaEventSourceFilterSensitiveLog: (obj: LambdaEventSource) => any;
1004
-
1005
- export declare const LambdaDeviceMountFilterSensitiveLog: (obj: LambdaDeviceMount) => any;
1006
-
1007
- export declare const LambdaVolumeMountFilterSensitiveLog: (obj: LambdaVolumeMount) => any;
1008
-
1009
- export declare const LambdaContainerParamsFilterSensitiveLog: (obj: LambdaContainerParams) => any;
1010
-
1011
- export declare const LambdaLinuxProcessParamsFilterSensitiveLog: (obj: LambdaLinuxProcessParams) => any;
1012
-
1013
- export declare const LambdaExecutionParametersFilterSensitiveLog: (obj: LambdaExecutionParameters) => any;
1014
-
1015
- export declare const LambdaFunctionRecipeSourceFilterSensitiveLog: (obj: LambdaFunctionRecipeSource) => any;
1016
-
1017
- export declare const CreateComponentVersionRequestFilterSensitiveLog: (obj: CreateComponentVersionRequest) => any;
1018
-
1019
- export declare const CreateComponentVersionResponseFilterSensitiveLog: (obj: CreateComponentVersionResponse) => any;
1020
-
1021
- export declare const DeploymentComponentUpdatePolicyFilterSensitiveLog: (obj: DeploymentComponentUpdatePolicy) => any;
1022
-
1023
- export declare const DeploymentConfigurationValidationPolicyFilterSensitiveLog: (obj: DeploymentConfigurationValidationPolicy) => any;
1024
-
1025
- export declare const DeploymentPoliciesFilterSensitiveLog: (obj: DeploymentPolicies) => any;
1026
-
1027
- export declare const IoTJobAbortCriteriaFilterSensitiveLog: (obj: IoTJobAbortCriteria) => any;
1028
-
1029
- export declare const IoTJobAbortConfigFilterSensitiveLog: (obj: IoTJobAbortConfig) => any;
1030
-
1031
- export declare const IoTJobRateIncreaseCriteriaFilterSensitiveLog: (obj: IoTJobRateIncreaseCriteria) => any;
1032
-
1033
- export declare const IoTJobExponentialRolloutRateFilterSensitiveLog: (obj: IoTJobExponentialRolloutRate) => any;
1034
-
1035
- export declare const IoTJobExecutionsRolloutConfigFilterSensitiveLog: (obj: IoTJobExecutionsRolloutConfig) => any;
1036
-
1037
- export declare const IoTJobTimeoutConfigFilterSensitiveLog: (obj: IoTJobTimeoutConfig) => any;
1038
-
1039
- export declare const DeploymentIoTJobConfigurationFilterSensitiveLog: (obj: DeploymentIoTJobConfiguration) => any;
1040
-
1041
- export declare const CreateDeploymentRequestFilterSensitiveLog: (obj: CreateDeploymentRequest) => any;
1042
-
1043
- export declare const CreateDeploymentResponseFilterSensitiveLog: (obj: CreateDeploymentResponse) => any;
1044
-
1045
- export declare const DeleteComponentRequestFilterSensitiveLog: (obj: DeleteComponentRequest) => any;
1046
-
1047
- export declare const DeleteCoreDeviceRequestFilterSensitiveLog: (obj: DeleteCoreDeviceRequest) => any;
1048
-
1049
- export declare const DeleteDeploymentRequestFilterSensitiveLog: (obj: DeleteDeploymentRequest) => any;
1050
-
1051
- export declare const DeploymentFilterSensitiveLog: (obj: Deployment) => any;
1052
-
1053
- export declare const DescribeComponentRequestFilterSensitiveLog: (obj: DescribeComponentRequest) => any;
1054
-
1055
- export declare const DescribeComponentResponseFilterSensitiveLog: (obj: DescribeComponentResponse) => any;
1056
-
1057
- export declare const DisassociateServiceRoleFromAccountRequestFilterSensitiveLog: (obj: DisassociateServiceRoleFromAccountRequest) => any;
1058
-
1059
- export declare const DisassociateServiceRoleFromAccountResponseFilterSensitiveLog: (obj: DisassociateServiceRoleFromAccountResponse) => any;
1060
-
1061
- export declare const EffectiveDeploymentFilterSensitiveLog: (obj: EffectiveDeployment) => any;
1062
-
1063
- export declare const GetComponentRequestFilterSensitiveLog: (obj: GetComponentRequest) => any;
1064
-
1065
- export declare const GetComponentResponseFilterSensitiveLog: (obj: GetComponentResponse) => any;
1066
-
1067
- export declare const GetComponentVersionArtifactRequestFilterSensitiveLog: (obj: GetComponentVersionArtifactRequest) => any;
1068
-
1069
- export declare const GetComponentVersionArtifactResponseFilterSensitiveLog: (obj: GetComponentVersionArtifactResponse) => any;
1070
-
1071
- export declare const GetConnectivityInfoRequestFilterSensitiveLog: (obj: GetConnectivityInfoRequest) => any;
1072
-
1073
- export declare const GetConnectivityInfoResponseFilterSensitiveLog: (obj: GetConnectivityInfoResponse) => any;
1074
-
1075
- export declare const GetCoreDeviceRequestFilterSensitiveLog: (obj: GetCoreDeviceRequest) => any;
1076
-
1077
- export declare const GetCoreDeviceResponseFilterSensitiveLog: (obj: GetCoreDeviceResponse) => any;
1078
-
1079
- export declare const GetDeploymentRequestFilterSensitiveLog: (obj: GetDeploymentRequest) => any;
1080
-
1081
- export declare const GetDeploymentResponseFilterSensitiveLog: (obj: GetDeploymentResponse) => any;
1082
-
1083
- export declare const GetServiceRoleForAccountRequestFilterSensitiveLog: (obj: GetServiceRoleForAccountRequest) => any;
1084
-
1085
- export declare const GetServiceRoleForAccountResponseFilterSensitiveLog: (obj: GetServiceRoleForAccountResponse) => any;
1086
-
1087
- export declare const ListClientDevicesAssociatedWithCoreDeviceRequestFilterSensitiveLog: (obj: ListClientDevicesAssociatedWithCoreDeviceRequest) => any;
1088
-
1089
- export declare const ListClientDevicesAssociatedWithCoreDeviceResponseFilterSensitiveLog: (obj: ListClientDevicesAssociatedWithCoreDeviceResponse) => any;
1090
-
1091
- export declare const ListComponentsRequestFilterSensitiveLog: (obj: ListComponentsRequest) => any;
1092
-
1093
- export declare const ListComponentsResponseFilterSensitiveLog: (obj: ListComponentsResponse) => any;
1094
-
1095
- export declare const ListComponentVersionsRequestFilterSensitiveLog: (obj: ListComponentVersionsRequest) => any;
1096
-
1097
- export declare const ListComponentVersionsResponseFilterSensitiveLog: (obj: ListComponentVersionsResponse) => any;
1098
-
1099
- export declare const ListCoreDevicesRequestFilterSensitiveLog: (obj: ListCoreDevicesRequest) => any;
1100
-
1101
- export declare const ListCoreDevicesResponseFilterSensitiveLog: (obj: ListCoreDevicesResponse) => any;
1102
-
1103
- export declare const ListDeploymentsRequestFilterSensitiveLog: (obj: ListDeploymentsRequest) => any;
1104
-
1105
- export declare const ListDeploymentsResponseFilterSensitiveLog: (obj: ListDeploymentsResponse) => any;
1106
-
1107
- export declare const ListEffectiveDeploymentsRequestFilterSensitiveLog: (obj: ListEffectiveDeploymentsRequest) => any;
1108
-
1109
- export declare const ListEffectiveDeploymentsResponseFilterSensitiveLog: (obj: ListEffectiveDeploymentsResponse) => any;
1110
-
1111
- export declare const ListInstalledComponentsRequestFilterSensitiveLog: (obj: ListInstalledComponentsRequest) => any;
1112
-
1113
- export declare const InstalledComponentFilterSensitiveLog: (obj: InstalledComponent) => any;
1114
-
1115
- export declare const ListInstalledComponentsResponseFilterSensitiveLog: (obj: ListInstalledComponentsResponse) => any;
1116
-
1117
- export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
1118
-
1119
- export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
1120
-
1121
- export declare const ResolveComponentCandidatesRequestFilterSensitiveLog: (obj: ResolveComponentCandidatesRequest) => any;
1122
-
1123
- export declare const ResolvedComponentVersionFilterSensitiveLog: (obj: ResolvedComponentVersion) => any;
1124
-
1125
- export declare const ResolveComponentCandidatesResponseFilterSensitiveLog: (obj: ResolveComponentCandidatesResponse) => any;
1126
-
1127
- export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
1128
-
1129
- export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
1130
-
1131
- export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
1132
-
1133
- export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
1134
-
1135
- export declare const UpdateConnectivityInfoRequestFilterSensitiveLog: (obj: UpdateConnectivityInfoRequest) => any;
1136
-
1137
- export declare const UpdateConnectivityInfoResponseFilterSensitiveLog: (obj: UpdateConnectivityInfoResponse) => any;
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { GreengrassV2ServiceException as __BaseException } from "./GreengrassV2ServiceException";
3
+
4
+ export declare class AccessDeniedException extends __BaseException {
5
+ readonly name: "AccessDeniedException";
6
+ readonly $fault: "client";
7
+
8
+ constructor(
9
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
10
+ );
11
+ }
12
+
13
+ export interface AssociateClientDeviceWithCoreDeviceEntry {
14
+ thingName: string | undefined;
15
+ }
16
+
17
+ export interface AssociateClientDeviceWithCoreDeviceErrorEntry {
18
+ thingName?: string;
19
+
20
+ code?: string;
21
+
22
+ message?: string;
23
+ }
24
+
25
+ export interface AssociatedClientDevice {
26
+ thingName?: string;
27
+
28
+ associationTimestamp?: Date;
29
+ }
30
+ export interface AssociateServiceRoleToAccountRequest {
31
+ roleArn: string | undefined;
32
+ }
33
+ export interface AssociateServiceRoleToAccountResponse {
34
+ associatedAt?: string;
35
+ }
36
+
37
+ export declare class InternalServerException extends __BaseException {
38
+ readonly name: "InternalServerException";
39
+ readonly $fault: "server";
40
+
41
+ retryAfterSeconds?: number;
42
+
43
+ constructor(
44
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
45
+ );
46
+ }
47
+
48
+ export interface ValidationExceptionField {
49
+ name: string | undefined;
50
+
51
+ message: string | undefined;
52
+ }
53
+ export declare enum ValidationExceptionReason {
54
+ CANNOT_PARSE = "CANNOT_PARSE",
55
+ FIELD_VALIDATION_FAILED = "FIELD_VALIDATION_FAILED",
56
+ OTHER = "OTHER",
57
+ UNKNOWN_OPERATION = "UNKNOWN_OPERATION",
58
+ }
59
+
60
+ export declare class ValidationException extends __BaseException {
61
+ readonly name: "ValidationException";
62
+ readonly $fault: "client";
63
+
64
+ reason?: ValidationExceptionReason | string;
65
+
66
+ fields?: ValidationExceptionField[];
67
+
68
+ constructor(
69
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
70
+ );
71
+ }
72
+ export interface BatchAssociateClientDeviceWithCoreDeviceRequest {
73
+ entries?: AssociateClientDeviceWithCoreDeviceEntry[];
74
+
75
+ coreDeviceThingName: string | undefined;
76
+ }
77
+ export interface BatchAssociateClientDeviceWithCoreDeviceResponse {
78
+ errorEntries?: AssociateClientDeviceWithCoreDeviceErrorEntry[];
79
+ }
80
+
81
+ export declare class ResourceNotFoundException extends __BaseException {
82
+ readonly name: "ResourceNotFoundException";
83
+ readonly $fault: "client";
84
+
85
+ resourceId: string | undefined;
86
+
87
+ resourceType: string | undefined;
88
+
89
+ constructor(
90
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
91
+ );
92
+ }
93
+
94
+ export declare class ThrottlingException extends __BaseException {
95
+ readonly name: "ThrottlingException";
96
+ readonly $fault: "client";
97
+
98
+ quotaCode?: string;
99
+
100
+ serviceCode?: string;
101
+
102
+ retryAfterSeconds?: number;
103
+
104
+ constructor(
105
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
106
+ );
107
+ }
108
+
109
+ export interface DisassociateClientDeviceFromCoreDeviceEntry {
110
+ thingName: string | undefined;
111
+ }
112
+ export interface BatchDisassociateClientDeviceFromCoreDeviceRequest {
113
+ entries?: DisassociateClientDeviceFromCoreDeviceEntry[];
114
+
115
+ coreDeviceThingName: string | undefined;
116
+ }
117
+
118
+ export interface DisassociateClientDeviceFromCoreDeviceErrorEntry {
119
+ thingName?: string;
120
+
121
+ code?: string;
122
+
123
+ message?: string;
124
+ }
125
+ export interface BatchDisassociateClientDeviceFromCoreDeviceResponse {
126
+ errorEntries?: DisassociateClientDeviceFromCoreDeviceErrorEntry[];
127
+ }
128
+ export interface CancelDeploymentRequest {
129
+ deploymentId: string | undefined;
130
+ }
131
+ export interface CancelDeploymentResponse {
132
+ message?: string;
133
+ }
134
+
135
+ export declare class ConflictException extends __BaseException {
136
+ readonly name: "ConflictException";
137
+ readonly $fault: "client";
138
+
139
+ resourceId: string | undefined;
140
+
141
+ resourceType: string | undefined;
142
+
143
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
144
+ }
145
+ export declare enum CloudComponentState {
146
+ DEPLOYABLE = "DEPLOYABLE",
147
+ DEPRECATED = "DEPRECATED",
148
+ FAILED = "FAILED",
149
+ INITIATED = "INITIATED",
150
+ REQUESTED = "REQUESTED",
151
+ }
152
+ export declare enum VendorGuidance {
153
+ ACTIVE = "ACTIVE",
154
+ DELETED = "DELETED",
155
+ DISCONTINUED = "DISCONTINUED",
156
+ }
157
+
158
+ export interface CloudComponentStatus {
159
+ componentState?: CloudComponentState | string;
160
+
161
+ message?: string;
162
+
163
+ errors?: Record<string, string>;
164
+
165
+ vendorGuidance?: VendorGuidance | string;
166
+
167
+ vendorGuidanceMessage?: string;
168
+ }
169
+
170
+ export interface ComponentPlatform {
171
+ name?: string;
172
+
173
+ attributes?: Record<string, string>;
174
+ }
175
+
176
+ export interface ComponentLatestVersion {
177
+ arn?: string;
178
+
179
+ componentVersion?: string;
180
+
181
+ creationTimestamp?: Date;
182
+
183
+ description?: string;
184
+
185
+ publisher?: string;
186
+
187
+ platforms?: ComponentPlatform[];
188
+ }
189
+
190
+ export interface Component {
191
+ arn?: string;
192
+
193
+ componentName?: string;
194
+
195
+ latestVersion?: ComponentLatestVersion;
196
+ }
197
+
198
+ export interface ComponentCandidate {
199
+ componentName?: string;
200
+
201
+ componentVersion?: string;
202
+
203
+ versionRequirements?: Record<string, string>;
204
+ }
205
+
206
+ export interface ComponentConfigurationUpdate {
207
+ merge?: string;
208
+
209
+ reset?: string[];
210
+ }
211
+ export declare enum ComponentDependencyType {
212
+ HARD = "HARD",
213
+ SOFT = "SOFT",
214
+ }
215
+
216
+ export interface ComponentDependencyRequirement {
217
+ versionRequirement?: string;
218
+
219
+ dependencyType?: ComponentDependencyType | string;
220
+ }
221
+
222
+ export interface SystemResourceLimits {
223
+ memory?: number;
224
+
225
+ cpus?: number;
226
+ }
227
+
228
+ export interface ComponentRunWith {
229
+ posixUser?: string;
230
+
231
+ systemResourceLimits?: SystemResourceLimits;
232
+
233
+ windowsUser?: string;
234
+ }
235
+
236
+ export interface ComponentDeploymentSpecification {
237
+ componentVersion?: string;
238
+
239
+ configurationUpdate?: ComponentConfigurationUpdate;
240
+
241
+ runWith?: ComponentRunWith;
242
+ }
243
+
244
+ export interface ComponentVersionListItem {
245
+ componentName?: string;
246
+
247
+ componentVersion?: string;
248
+
249
+ arn?: string;
250
+ }
251
+ export declare enum ComponentVisibilityScope {
252
+ PRIVATE = "PRIVATE",
253
+ PUBLIC = "PUBLIC",
254
+ }
255
+
256
+ export interface ConnectivityInfo {
257
+ id?: string;
258
+
259
+ hostAddress?: string;
260
+
261
+ portNumber?: number;
262
+
263
+ metadata?: string;
264
+ }
265
+ export declare enum CoreDeviceStatus {
266
+ HEALTHY = "HEALTHY",
267
+ UNHEALTHY = "UNHEALTHY",
268
+ }
269
+
270
+ export interface CoreDevice {
271
+ coreDeviceThingName?: string;
272
+
273
+ status?: CoreDeviceStatus | string;
274
+
275
+ lastStatusUpdateTimestamp?: Date;
276
+ }
277
+ export declare enum LambdaEventSourceType {
278
+ IOT_CORE = "IOT_CORE",
279
+ PUB_SUB = "PUB_SUB",
280
+ }
281
+
282
+ export interface LambdaEventSource {
283
+ topic: string | undefined;
284
+
285
+ type: LambdaEventSourceType | string | undefined;
286
+ }
287
+ export declare enum LambdaInputPayloadEncodingType {
288
+ BINARY = "binary",
289
+ JSON = "json",
290
+ }
291
+ export declare enum LambdaFilesystemPermission {
292
+ RO = "ro",
293
+ RW = "rw",
294
+ }
295
+
296
+ export interface LambdaDeviceMount {
297
+ path: string | undefined;
298
+
299
+ permission?: LambdaFilesystemPermission | string;
300
+
301
+ addGroupOwner?: boolean;
302
+ }
303
+
304
+ export interface LambdaVolumeMount {
305
+ sourcePath: string | undefined;
306
+
307
+ destinationPath: string | undefined;
308
+
309
+ permission?: LambdaFilesystemPermission | string;
310
+
311
+ addGroupOwner?: boolean;
312
+ }
313
+
314
+ export interface LambdaContainerParams {
315
+ memorySizeInKB?: number;
316
+
317
+ mountROSysfs?: boolean;
318
+
319
+ volumes?: LambdaVolumeMount[];
320
+
321
+ devices?: LambdaDeviceMount[];
322
+ }
323
+ export declare enum LambdaIsolationMode {
324
+ GREENGRASS_CONTAINER = "GreengrassContainer",
325
+ NO_CONTAINER = "NoContainer",
326
+ }
327
+
328
+ export interface LambdaLinuxProcessParams {
329
+ isolationMode?: LambdaIsolationMode | string;
330
+
331
+ containerParams?: LambdaContainerParams;
332
+ }
333
+
334
+ export interface LambdaExecutionParameters {
335
+ eventSources?: LambdaEventSource[];
336
+
337
+ maxQueueSize?: number;
338
+
339
+ maxInstancesCount?: number;
340
+
341
+ maxIdleTimeInSeconds?: number;
342
+
343
+ timeoutInSeconds?: number;
344
+
345
+ statusTimeoutInSeconds?: number;
346
+
347
+ pinned?: boolean;
348
+
349
+ inputPayloadEncodingType?: LambdaInputPayloadEncodingType | string;
350
+
351
+ execArgs?: string[];
352
+
353
+ environmentVariables?: Record<string, string>;
354
+
355
+ linuxProcessParams?: LambdaLinuxProcessParams;
356
+ }
357
+
358
+ export interface LambdaFunctionRecipeSource {
359
+ lambdaArn: string | undefined;
360
+
361
+ componentName?: string;
362
+
363
+ componentVersion?: string;
364
+
365
+ componentPlatforms?: ComponentPlatform[];
366
+
367
+ componentDependencies?: Record<string, ComponentDependencyRequirement>;
368
+
369
+ componentLambdaParameters?: LambdaExecutionParameters;
370
+ }
371
+ export interface CreateComponentVersionRequest {
372
+ inlineRecipe?: Uint8Array;
373
+
374
+ lambdaFunction?: LambdaFunctionRecipeSource;
375
+
376
+ tags?: Record<string, string>;
377
+
378
+ clientToken?: string;
379
+ }
380
+ export interface CreateComponentVersionResponse {
381
+ arn?: string;
382
+
383
+ componentName: string | undefined;
384
+
385
+ componentVersion: string | undefined;
386
+
387
+ creationTimestamp: Date | undefined;
388
+
389
+ status: CloudComponentStatus | undefined;
390
+ }
391
+
392
+ export declare class RequestAlreadyInProgressException extends __BaseException {
393
+ readonly name: "RequestAlreadyInProgressException";
394
+ readonly $fault: "client";
395
+
396
+ constructor(
397
+ opts: __ExceptionOptionType<
398
+ RequestAlreadyInProgressException,
399
+ __BaseException
400
+ >
401
+ );
402
+ }
403
+
404
+ export declare class ServiceQuotaExceededException extends __BaseException {
405
+ readonly name: "ServiceQuotaExceededException";
406
+ readonly $fault: "client";
407
+
408
+ resourceId?: string;
409
+
410
+ resourceType?: string;
411
+
412
+ quotaCode: string | undefined;
413
+
414
+ serviceCode: string | undefined;
415
+
416
+ constructor(
417
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
418
+ );
419
+ }
420
+ export declare enum DeploymentComponentUpdatePolicyAction {
421
+ NOTIFY_COMPONENTS = "NOTIFY_COMPONENTS",
422
+ SKIP_NOTIFY_COMPONENTS = "SKIP_NOTIFY_COMPONENTS",
423
+ }
424
+
425
+ export interface DeploymentComponentUpdatePolicy {
426
+ timeoutInSeconds?: number;
427
+
428
+ action?: DeploymentComponentUpdatePolicyAction | string;
429
+ }
430
+
431
+ export interface DeploymentConfigurationValidationPolicy {
432
+ timeoutInSeconds?: number;
433
+ }
434
+ export declare enum DeploymentFailureHandlingPolicy {
435
+ DO_NOTHING = "DO_NOTHING",
436
+ ROLLBACK = "ROLLBACK",
437
+ }
438
+
439
+ export interface DeploymentPolicies {
440
+ failureHandlingPolicy?: DeploymentFailureHandlingPolicy | string;
441
+
442
+ componentUpdatePolicy?: DeploymentComponentUpdatePolicy;
443
+
444
+ configurationValidationPolicy?: DeploymentConfigurationValidationPolicy;
445
+ }
446
+ export declare enum IoTJobAbortAction {
447
+ CANCEL = "CANCEL",
448
+ }
449
+ export declare enum IoTJobExecutionFailureType {
450
+ ALL = "ALL",
451
+ FAILED = "FAILED",
452
+ REJECTED = "REJECTED",
453
+ TIMED_OUT = "TIMED_OUT",
454
+ }
455
+
456
+ export interface IoTJobAbortCriteria {
457
+ failureType: IoTJobExecutionFailureType | string | undefined;
458
+
459
+ action: IoTJobAbortAction | string | undefined;
460
+
461
+ thresholdPercentage: number | undefined;
462
+
463
+ minNumberOfExecutedThings: number | undefined;
464
+ }
465
+
466
+ export interface IoTJobAbortConfig {
467
+ criteriaList: IoTJobAbortCriteria[] | undefined;
468
+ }
469
+
470
+ export interface IoTJobRateIncreaseCriteria {
471
+ numberOfNotifiedThings?: number;
472
+
473
+ numberOfSucceededThings?: number;
474
+ }
475
+
476
+ export interface IoTJobExponentialRolloutRate {
477
+ baseRatePerMinute: number | undefined;
478
+
479
+ incrementFactor: number | undefined;
480
+
481
+ rateIncreaseCriteria: IoTJobRateIncreaseCriteria | undefined;
482
+ }
483
+
484
+ export interface IoTJobExecutionsRolloutConfig {
485
+ exponentialRate?: IoTJobExponentialRolloutRate;
486
+
487
+ maximumPerMinute?: number;
488
+ }
489
+
490
+ export interface IoTJobTimeoutConfig {
491
+ inProgressTimeoutInMinutes?: number;
492
+ }
493
+
494
+ export interface DeploymentIoTJobConfiguration {
495
+ jobExecutionsRolloutConfig?: IoTJobExecutionsRolloutConfig;
496
+
497
+ abortConfig?: IoTJobAbortConfig;
498
+
499
+ timeoutConfig?: IoTJobTimeoutConfig;
500
+ }
501
+ export interface CreateDeploymentRequest {
502
+ targetArn: string | undefined;
503
+
504
+ deploymentName?: string;
505
+
506
+ components?: Record<string, ComponentDeploymentSpecification>;
507
+
508
+ iotJobConfiguration?: DeploymentIoTJobConfiguration;
509
+
510
+ deploymentPolicies?: DeploymentPolicies;
511
+
512
+ tags?: Record<string, string>;
513
+
514
+ clientToken?: string;
515
+ }
516
+ export interface CreateDeploymentResponse {
517
+ deploymentId?: string;
518
+
519
+ iotJobId?: string;
520
+
521
+ iotJobArn?: string;
522
+ }
523
+ export interface DeleteComponentRequest {
524
+ arn: string | undefined;
525
+ }
526
+ export interface DeleteCoreDeviceRequest {
527
+ coreDeviceThingName: string | undefined;
528
+ }
529
+ export interface DeleteDeploymentRequest {
530
+ deploymentId: string | undefined;
531
+ }
532
+ export declare enum DeploymentStatus {
533
+ ACTIVE = "ACTIVE",
534
+ CANCELED = "CANCELED",
535
+ COMPLETED = "COMPLETED",
536
+ FAILED = "FAILED",
537
+ INACTIVE = "INACTIVE",
538
+ }
539
+
540
+ export interface Deployment {
541
+ targetArn?: string;
542
+
543
+ revisionId?: string;
544
+
545
+ deploymentId?: string;
546
+
547
+ deploymentName?: string;
548
+
549
+ creationTimestamp?: Date;
550
+
551
+ deploymentStatus?: DeploymentStatus | string;
552
+
553
+ isLatestForTarget?: boolean;
554
+ }
555
+ export declare enum DeploymentHistoryFilter {
556
+ ALL = "ALL",
557
+ LATEST_ONLY = "LATEST_ONLY",
558
+ }
559
+ export interface DescribeComponentRequest {
560
+ arn: string | undefined;
561
+ }
562
+ export interface DescribeComponentResponse {
563
+ arn?: string;
564
+
565
+ componentName?: string;
566
+
567
+ componentVersion?: string;
568
+
569
+ creationTimestamp?: Date;
570
+
571
+ publisher?: string;
572
+
573
+ description?: string;
574
+
575
+ status?: CloudComponentStatus;
576
+
577
+ platforms?: ComponentPlatform[];
578
+
579
+ tags?: Record<string, string>;
580
+ }
581
+ export interface DisassociateServiceRoleFromAccountRequest {}
582
+ export interface DisassociateServiceRoleFromAccountResponse {
583
+ disassociatedAt?: string;
584
+ }
585
+ export declare enum EffectiveDeploymentExecutionStatus {
586
+ CANCELED = "CANCELED",
587
+ COMPLETED = "COMPLETED",
588
+ FAILED = "FAILED",
589
+ IN_PROGRESS = "IN_PROGRESS",
590
+ QUEUED = "QUEUED",
591
+ REJECTED = "REJECTED",
592
+ TIMED_OUT = "TIMED_OUT",
593
+ }
594
+
595
+ export interface EffectiveDeployment {
596
+ deploymentId: string | undefined;
597
+
598
+ deploymentName: string | undefined;
599
+
600
+ iotJobId?: string;
601
+
602
+ iotJobArn?: string;
603
+
604
+ description?: string;
605
+
606
+ targetArn: string | undefined;
607
+
608
+ coreDeviceExecutionStatus:
609
+ | EffectiveDeploymentExecutionStatus
610
+ | string
611
+ | undefined;
612
+
613
+ reason?: string;
614
+
615
+ creationTimestamp: Date | undefined;
616
+
617
+ modifiedTimestamp: Date | undefined;
618
+ }
619
+ export declare enum RecipeOutputFormat {
620
+ JSON = "JSON",
621
+ YAML = "YAML",
622
+ }
623
+ export interface GetComponentRequest {
624
+ recipeOutputFormat?: RecipeOutputFormat | string;
625
+
626
+ arn: string | undefined;
627
+ }
628
+ export interface GetComponentResponse {
629
+ recipeOutputFormat: RecipeOutputFormat | string | undefined;
630
+
631
+ recipe: Uint8Array | undefined;
632
+
633
+ tags?: Record<string, string>;
634
+ }
635
+ export interface GetComponentVersionArtifactRequest {
636
+ arn: string | undefined;
637
+
638
+ artifactName: string | undefined;
639
+ }
640
+ export interface GetComponentVersionArtifactResponse {
641
+ preSignedUrl: string | undefined;
642
+ }
643
+ export interface GetConnectivityInfoRequest {
644
+ thingName: string | undefined;
645
+ }
646
+ export interface GetConnectivityInfoResponse {
647
+ connectivityInfo?: ConnectivityInfo[];
648
+
649
+ message?: string;
650
+ }
651
+ export interface GetCoreDeviceRequest {
652
+ coreDeviceThingName: string | undefined;
653
+ }
654
+ export interface GetCoreDeviceResponse {
655
+ coreDeviceThingName?: string;
656
+
657
+ coreVersion?: string;
658
+
659
+ platform?: string;
660
+
661
+ architecture?: string;
662
+
663
+ status?: CoreDeviceStatus | string;
664
+
665
+ lastStatusUpdateTimestamp?: Date;
666
+
667
+ tags?: Record<string, string>;
668
+ }
669
+ export interface GetDeploymentRequest {
670
+ deploymentId: string | undefined;
671
+ }
672
+ export interface GetDeploymentResponse {
673
+ targetArn?: string;
674
+
675
+ revisionId?: string;
676
+
677
+ deploymentId?: string;
678
+
679
+ deploymentName?: string;
680
+
681
+ deploymentStatus?: DeploymentStatus | string;
682
+
683
+ iotJobId?: string;
684
+
685
+ iotJobArn?: string;
686
+
687
+ components?: Record<string, ComponentDeploymentSpecification>;
688
+
689
+ deploymentPolicies?: DeploymentPolicies;
690
+
691
+ iotJobConfiguration?: DeploymentIoTJobConfiguration;
692
+
693
+ creationTimestamp?: Date;
694
+
695
+ isLatestForTarget?: boolean;
696
+
697
+ tags?: Record<string, string>;
698
+ }
699
+ export interface GetServiceRoleForAccountRequest {}
700
+ export interface GetServiceRoleForAccountResponse {
701
+ associatedAt?: string;
702
+
703
+ roleArn?: string;
704
+ }
705
+ export interface ListClientDevicesAssociatedWithCoreDeviceRequest {
706
+ coreDeviceThingName: string | undefined;
707
+
708
+ maxResults?: number;
709
+
710
+ nextToken?: string;
711
+ }
712
+ export interface ListClientDevicesAssociatedWithCoreDeviceResponse {
713
+ associatedClientDevices?: AssociatedClientDevice[];
714
+
715
+ nextToken?: string;
716
+ }
717
+ export interface ListComponentsRequest {
718
+ scope?: ComponentVisibilityScope | string;
719
+
720
+ maxResults?: number;
721
+
722
+ nextToken?: string;
723
+ }
724
+ export interface ListComponentsResponse {
725
+ components?: Component[];
726
+
727
+ nextToken?: string;
728
+ }
729
+ export interface ListComponentVersionsRequest {
730
+ arn: string | undefined;
731
+
732
+ maxResults?: number;
733
+
734
+ nextToken?: string;
735
+ }
736
+ export interface ListComponentVersionsResponse {
737
+ componentVersions?: ComponentVersionListItem[];
738
+
739
+ nextToken?: string;
740
+ }
741
+ export interface ListCoreDevicesRequest {
742
+ thingGroupArn?: string;
743
+
744
+ status?: CoreDeviceStatus | string;
745
+
746
+ maxResults?: number;
747
+
748
+ nextToken?: string;
749
+ }
750
+ export interface ListCoreDevicesResponse {
751
+ coreDevices?: CoreDevice[];
752
+
753
+ nextToken?: string;
754
+ }
755
+ export interface ListDeploymentsRequest {
756
+ targetArn?: string;
757
+
758
+ historyFilter?: DeploymentHistoryFilter | string;
759
+
760
+ maxResults?: number;
761
+
762
+ nextToken?: string;
763
+ }
764
+ export interface ListDeploymentsResponse {
765
+ deployments?: Deployment[];
766
+
767
+ nextToken?: string;
768
+ }
769
+ export interface ListEffectiveDeploymentsRequest {
770
+ coreDeviceThingName: string | undefined;
771
+
772
+ maxResults?: number;
773
+
774
+ nextToken?: string;
775
+ }
776
+ export interface ListEffectiveDeploymentsResponse {
777
+ effectiveDeployments?: EffectiveDeployment[];
778
+
779
+ nextToken?: string;
780
+ }
781
+ export declare enum InstalledComponentTopologyFilter {
782
+ ALL = "ALL",
783
+ ROOT = "ROOT",
784
+ }
785
+ export interface ListInstalledComponentsRequest {
786
+ coreDeviceThingName: string | undefined;
787
+
788
+ maxResults?: number;
789
+
790
+ nextToken?: string;
791
+
792
+ topologyFilter?: InstalledComponentTopologyFilter | string;
793
+ }
794
+ export declare enum InstalledComponentLifecycleState {
795
+ BROKEN = "BROKEN",
796
+ ERRORED = "ERRORED",
797
+ FINISHED = "FINISHED",
798
+ INSTALLED = "INSTALLED",
799
+ NEW = "NEW",
800
+ RUNNING = "RUNNING",
801
+ STARTING = "STARTING",
802
+ STOPPING = "STOPPING",
803
+ }
804
+
805
+ export interface InstalledComponent {
806
+ componentName?: string;
807
+
808
+ componentVersion?: string;
809
+
810
+ lifecycleState?: InstalledComponentLifecycleState | string;
811
+
812
+ lifecycleStateDetails?: string;
813
+
814
+ isRoot?: boolean;
815
+
816
+ lastStatusChangeTimestamp?: Date;
817
+ }
818
+ export interface ListInstalledComponentsResponse {
819
+ installedComponents?: InstalledComponent[];
820
+
821
+ nextToken?: string;
822
+ }
823
+ export interface ListTagsForResourceRequest {
824
+ resourceArn: string | undefined;
825
+ }
826
+ export interface ListTagsForResourceResponse {
827
+ tags?: Record<string, string>;
828
+ }
829
+ export interface ResolveComponentCandidatesRequest {
830
+ platform?: ComponentPlatform;
831
+
832
+ componentCandidates?: ComponentCandidate[];
833
+ }
834
+
835
+ export interface ResolvedComponentVersion {
836
+ arn?: string;
837
+
838
+ componentName?: string;
839
+
840
+ componentVersion?: string;
841
+
842
+ recipe?: Uint8Array;
843
+
844
+ vendorGuidance?: VendorGuidance | string;
845
+
846
+ message?: string;
847
+ }
848
+ export interface ResolveComponentCandidatesResponse {
849
+ resolvedComponentVersions?: ResolvedComponentVersion[];
850
+ }
851
+ export interface TagResourceRequest {
852
+ resourceArn: string | undefined;
853
+
854
+ tags: Record<string, string> | undefined;
855
+ }
856
+ export interface TagResourceResponse {}
857
+ export interface UntagResourceRequest {
858
+ resourceArn: string | undefined;
859
+
860
+ tagKeys: string[] | undefined;
861
+ }
862
+ export interface UntagResourceResponse {}
863
+ export interface UpdateConnectivityInfoRequest {
864
+ thingName: string | undefined;
865
+
866
+ connectivityInfo: ConnectivityInfo[] | undefined;
867
+ }
868
+ export interface UpdateConnectivityInfoResponse {
869
+ version?: string;
870
+
871
+ message?: string;
872
+ }
873
+
874
+ export declare const AssociateClientDeviceWithCoreDeviceEntryFilterSensitiveLog: (
875
+ obj: AssociateClientDeviceWithCoreDeviceEntry
876
+ ) => any;
877
+
878
+ export declare const AssociateClientDeviceWithCoreDeviceErrorEntryFilterSensitiveLog: (
879
+ obj: AssociateClientDeviceWithCoreDeviceErrorEntry
880
+ ) => any;
881
+
882
+ export declare const AssociatedClientDeviceFilterSensitiveLog: (
883
+ obj: AssociatedClientDevice
884
+ ) => any;
885
+
886
+ export declare const AssociateServiceRoleToAccountRequestFilterSensitiveLog: (
887
+ obj: AssociateServiceRoleToAccountRequest
888
+ ) => any;
889
+
890
+ export declare const AssociateServiceRoleToAccountResponseFilterSensitiveLog: (
891
+ obj: AssociateServiceRoleToAccountResponse
892
+ ) => any;
893
+
894
+ export declare const ValidationExceptionFieldFilterSensitiveLog: (
895
+ obj: ValidationExceptionField
896
+ ) => any;
897
+
898
+ export declare const BatchAssociateClientDeviceWithCoreDeviceRequestFilterSensitiveLog: (
899
+ obj: BatchAssociateClientDeviceWithCoreDeviceRequest
900
+ ) => any;
901
+
902
+ export declare const BatchAssociateClientDeviceWithCoreDeviceResponseFilterSensitiveLog: (
903
+ obj: BatchAssociateClientDeviceWithCoreDeviceResponse
904
+ ) => any;
905
+
906
+ export declare const DisassociateClientDeviceFromCoreDeviceEntryFilterSensitiveLog: (
907
+ obj: DisassociateClientDeviceFromCoreDeviceEntry
908
+ ) => any;
909
+
910
+ export declare const BatchDisassociateClientDeviceFromCoreDeviceRequestFilterSensitiveLog: (
911
+ obj: BatchDisassociateClientDeviceFromCoreDeviceRequest
912
+ ) => any;
913
+
914
+ export declare const DisassociateClientDeviceFromCoreDeviceErrorEntryFilterSensitiveLog: (
915
+ obj: DisassociateClientDeviceFromCoreDeviceErrorEntry
916
+ ) => any;
917
+
918
+ export declare const BatchDisassociateClientDeviceFromCoreDeviceResponseFilterSensitiveLog: (
919
+ obj: BatchDisassociateClientDeviceFromCoreDeviceResponse
920
+ ) => any;
921
+
922
+ export declare const CancelDeploymentRequestFilterSensitiveLog: (
923
+ obj: CancelDeploymentRequest
924
+ ) => any;
925
+
926
+ export declare const CancelDeploymentResponseFilterSensitiveLog: (
927
+ obj: CancelDeploymentResponse
928
+ ) => any;
929
+
930
+ export declare const CloudComponentStatusFilterSensitiveLog: (
931
+ obj: CloudComponentStatus
932
+ ) => any;
933
+
934
+ export declare const ComponentPlatformFilterSensitiveLog: (
935
+ obj: ComponentPlatform
936
+ ) => any;
937
+
938
+ export declare const ComponentLatestVersionFilterSensitiveLog: (
939
+ obj: ComponentLatestVersion
940
+ ) => any;
941
+
942
+ export declare const ComponentFilterSensitiveLog: (obj: Component) => any;
943
+
944
+ export declare const ComponentCandidateFilterSensitiveLog: (
945
+ obj: ComponentCandidate
946
+ ) => any;
947
+
948
+ export declare const ComponentConfigurationUpdateFilterSensitiveLog: (
949
+ obj: ComponentConfigurationUpdate
950
+ ) => any;
951
+
952
+ export declare const ComponentDependencyRequirementFilterSensitiveLog: (
953
+ obj: ComponentDependencyRequirement
954
+ ) => any;
955
+
956
+ export declare const SystemResourceLimitsFilterSensitiveLog: (
957
+ obj: SystemResourceLimits
958
+ ) => any;
959
+
960
+ export declare const ComponentRunWithFilterSensitiveLog: (
961
+ obj: ComponentRunWith
962
+ ) => any;
963
+
964
+ export declare const ComponentDeploymentSpecificationFilterSensitiveLog: (
965
+ obj: ComponentDeploymentSpecification
966
+ ) => any;
967
+
968
+ export declare const ComponentVersionListItemFilterSensitiveLog: (
969
+ obj: ComponentVersionListItem
970
+ ) => any;
971
+
972
+ export declare const ConnectivityInfoFilterSensitiveLog: (
973
+ obj: ConnectivityInfo
974
+ ) => any;
975
+
976
+ export declare const CoreDeviceFilterSensitiveLog: (obj: CoreDevice) => any;
977
+
978
+ export declare const LambdaEventSourceFilterSensitiveLog: (
979
+ obj: LambdaEventSource
980
+ ) => any;
981
+
982
+ export declare const LambdaDeviceMountFilterSensitiveLog: (
983
+ obj: LambdaDeviceMount
984
+ ) => any;
985
+
986
+ export declare const LambdaVolumeMountFilterSensitiveLog: (
987
+ obj: LambdaVolumeMount
988
+ ) => any;
989
+
990
+ export declare const LambdaContainerParamsFilterSensitiveLog: (
991
+ obj: LambdaContainerParams
992
+ ) => any;
993
+
994
+ export declare const LambdaLinuxProcessParamsFilterSensitiveLog: (
995
+ obj: LambdaLinuxProcessParams
996
+ ) => any;
997
+
998
+ export declare const LambdaExecutionParametersFilterSensitiveLog: (
999
+ obj: LambdaExecutionParameters
1000
+ ) => any;
1001
+
1002
+ export declare const LambdaFunctionRecipeSourceFilterSensitiveLog: (
1003
+ obj: LambdaFunctionRecipeSource
1004
+ ) => any;
1005
+
1006
+ export declare const CreateComponentVersionRequestFilterSensitiveLog: (
1007
+ obj: CreateComponentVersionRequest
1008
+ ) => any;
1009
+
1010
+ export declare const CreateComponentVersionResponseFilterSensitiveLog: (
1011
+ obj: CreateComponentVersionResponse
1012
+ ) => any;
1013
+
1014
+ export declare const DeploymentComponentUpdatePolicyFilterSensitiveLog: (
1015
+ obj: DeploymentComponentUpdatePolicy
1016
+ ) => any;
1017
+
1018
+ export declare const DeploymentConfigurationValidationPolicyFilterSensitiveLog: (
1019
+ obj: DeploymentConfigurationValidationPolicy
1020
+ ) => any;
1021
+
1022
+ export declare const DeploymentPoliciesFilterSensitiveLog: (
1023
+ obj: DeploymentPolicies
1024
+ ) => any;
1025
+
1026
+ export declare const IoTJobAbortCriteriaFilterSensitiveLog: (
1027
+ obj: IoTJobAbortCriteria
1028
+ ) => any;
1029
+
1030
+ export declare const IoTJobAbortConfigFilterSensitiveLog: (
1031
+ obj: IoTJobAbortConfig
1032
+ ) => any;
1033
+
1034
+ export declare const IoTJobRateIncreaseCriteriaFilterSensitiveLog: (
1035
+ obj: IoTJobRateIncreaseCriteria
1036
+ ) => any;
1037
+
1038
+ export declare const IoTJobExponentialRolloutRateFilterSensitiveLog: (
1039
+ obj: IoTJobExponentialRolloutRate
1040
+ ) => any;
1041
+
1042
+ export declare const IoTJobExecutionsRolloutConfigFilterSensitiveLog: (
1043
+ obj: IoTJobExecutionsRolloutConfig
1044
+ ) => any;
1045
+
1046
+ export declare const IoTJobTimeoutConfigFilterSensitiveLog: (
1047
+ obj: IoTJobTimeoutConfig
1048
+ ) => any;
1049
+
1050
+ export declare const DeploymentIoTJobConfigurationFilterSensitiveLog: (
1051
+ obj: DeploymentIoTJobConfiguration
1052
+ ) => any;
1053
+
1054
+ export declare const CreateDeploymentRequestFilterSensitiveLog: (
1055
+ obj: CreateDeploymentRequest
1056
+ ) => any;
1057
+
1058
+ export declare const CreateDeploymentResponseFilterSensitiveLog: (
1059
+ obj: CreateDeploymentResponse
1060
+ ) => any;
1061
+
1062
+ export declare const DeleteComponentRequestFilterSensitiveLog: (
1063
+ obj: DeleteComponentRequest
1064
+ ) => any;
1065
+
1066
+ export declare const DeleteCoreDeviceRequestFilterSensitiveLog: (
1067
+ obj: DeleteCoreDeviceRequest
1068
+ ) => any;
1069
+
1070
+ export declare const DeleteDeploymentRequestFilterSensitiveLog: (
1071
+ obj: DeleteDeploymentRequest
1072
+ ) => any;
1073
+
1074
+ export declare const DeploymentFilterSensitiveLog: (obj: Deployment) => any;
1075
+
1076
+ export declare const DescribeComponentRequestFilterSensitiveLog: (
1077
+ obj: DescribeComponentRequest
1078
+ ) => any;
1079
+
1080
+ export declare const DescribeComponentResponseFilterSensitiveLog: (
1081
+ obj: DescribeComponentResponse
1082
+ ) => any;
1083
+
1084
+ export declare const DisassociateServiceRoleFromAccountRequestFilterSensitiveLog: (
1085
+ obj: DisassociateServiceRoleFromAccountRequest
1086
+ ) => any;
1087
+
1088
+ export declare const DisassociateServiceRoleFromAccountResponseFilterSensitiveLog: (
1089
+ obj: DisassociateServiceRoleFromAccountResponse
1090
+ ) => any;
1091
+
1092
+ export declare const EffectiveDeploymentFilterSensitiveLog: (
1093
+ obj: EffectiveDeployment
1094
+ ) => any;
1095
+
1096
+ export declare const GetComponentRequestFilterSensitiveLog: (
1097
+ obj: GetComponentRequest
1098
+ ) => any;
1099
+
1100
+ export declare const GetComponentResponseFilterSensitiveLog: (
1101
+ obj: GetComponentResponse
1102
+ ) => any;
1103
+
1104
+ export declare const GetComponentVersionArtifactRequestFilterSensitiveLog: (
1105
+ obj: GetComponentVersionArtifactRequest
1106
+ ) => any;
1107
+
1108
+ export declare const GetComponentVersionArtifactResponseFilterSensitiveLog: (
1109
+ obj: GetComponentVersionArtifactResponse
1110
+ ) => any;
1111
+
1112
+ export declare const GetConnectivityInfoRequestFilterSensitiveLog: (
1113
+ obj: GetConnectivityInfoRequest
1114
+ ) => any;
1115
+
1116
+ export declare const GetConnectivityInfoResponseFilterSensitiveLog: (
1117
+ obj: GetConnectivityInfoResponse
1118
+ ) => any;
1119
+
1120
+ export declare const GetCoreDeviceRequestFilterSensitiveLog: (
1121
+ obj: GetCoreDeviceRequest
1122
+ ) => any;
1123
+
1124
+ export declare const GetCoreDeviceResponseFilterSensitiveLog: (
1125
+ obj: GetCoreDeviceResponse
1126
+ ) => any;
1127
+
1128
+ export declare const GetDeploymentRequestFilterSensitiveLog: (
1129
+ obj: GetDeploymentRequest
1130
+ ) => any;
1131
+
1132
+ export declare const GetDeploymentResponseFilterSensitiveLog: (
1133
+ obj: GetDeploymentResponse
1134
+ ) => any;
1135
+
1136
+ export declare const GetServiceRoleForAccountRequestFilterSensitiveLog: (
1137
+ obj: GetServiceRoleForAccountRequest
1138
+ ) => any;
1139
+
1140
+ export declare const GetServiceRoleForAccountResponseFilterSensitiveLog: (
1141
+ obj: GetServiceRoleForAccountResponse
1142
+ ) => any;
1143
+
1144
+ export declare const ListClientDevicesAssociatedWithCoreDeviceRequestFilterSensitiveLog: (
1145
+ obj: ListClientDevicesAssociatedWithCoreDeviceRequest
1146
+ ) => any;
1147
+
1148
+ export declare const ListClientDevicesAssociatedWithCoreDeviceResponseFilterSensitiveLog: (
1149
+ obj: ListClientDevicesAssociatedWithCoreDeviceResponse
1150
+ ) => any;
1151
+
1152
+ export declare const ListComponentsRequestFilterSensitiveLog: (
1153
+ obj: ListComponentsRequest
1154
+ ) => any;
1155
+
1156
+ export declare const ListComponentsResponseFilterSensitiveLog: (
1157
+ obj: ListComponentsResponse
1158
+ ) => any;
1159
+
1160
+ export declare const ListComponentVersionsRequestFilterSensitiveLog: (
1161
+ obj: ListComponentVersionsRequest
1162
+ ) => any;
1163
+
1164
+ export declare const ListComponentVersionsResponseFilterSensitiveLog: (
1165
+ obj: ListComponentVersionsResponse
1166
+ ) => any;
1167
+
1168
+ export declare const ListCoreDevicesRequestFilterSensitiveLog: (
1169
+ obj: ListCoreDevicesRequest
1170
+ ) => any;
1171
+
1172
+ export declare const ListCoreDevicesResponseFilterSensitiveLog: (
1173
+ obj: ListCoreDevicesResponse
1174
+ ) => any;
1175
+
1176
+ export declare const ListDeploymentsRequestFilterSensitiveLog: (
1177
+ obj: ListDeploymentsRequest
1178
+ ) => any;
1179
+
1180
+ export declare const ListDeploymentsResponseFilterSensitiveLog: (
1181
+ obj: ListDeploymentsResponse
1182
+ ) => any;
1183
+
1184
+ export declare const ListEffectiveDeploymentsRequestFilterSensitiveLog: (
1185
+ obj: ListEffectiveDeploymentsRequest
1186
+ ) => any;
1187
+
1188
+ export declare const ListEffectiveDeploymentsResponseFilterSensitiveLog: (
1189
+ obj: ListEffectiveDeploymentsResponse
1190
+ ) => any;
1191
+
1192
+ export declare const ListInstalledComponentsRequestFilterSensitiveLog: (
1193
+ obj: ListInstalledComponentsRequest
1194
+ ) => any;
1195
+
1196
+ export declare const InstalledComponentFilterSensitiveLog: (
1197
+ obj: InstalledComponent
1198
+ ) => any;
1199
+
1200
+ export declare const ListInstalledComponentsResponseFilterSensitiveLog: (
1201
+ obj: ListInstalledComponentsResponse
1202
+ ) => any;
1203
+
1204
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (
1205
+ obj: ListTagsForResourceRequest
1206
+ ) => any;
1207
+
1208
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (
1209
+ obj: ListTagsForResourceResponse
1210
+ ) => any;
1211
+
1212
+ export declare const ResolveComponentCandidatesRequestFilterSensitiveLog: (
1213
+ obj: ResolveComponentCandidatesRequest
1214
+ ) => any;
1215
+
1216
+ export declare const ResolvedComponentVersionFilterSensitiveLog: (
1217
+ obj: ResolvedComponentVersion
1218
+ ) => any;
1219
+
1220
+ export declare const ResolveComponentCandidatesResponseFilterSensitiveLog: (
1221
+ obj: ResolveComponentCandidatesResponse
1222
+ ) => any;
1223
+
1224
+ export declare const TagResourceRequestFilterSensitiveLog: (
1225
+ obj: TagResourceRequest
1226
+ ) => any;
1227
+
1228
+ export declare const TagResourceResponseFilterSensitiveLog: (
1229
+ obj: TagResourceResponse
1230
+ ) => any;
1231
+
1232
+ export declare const UntagResourceRequestFilterSensitiveLog: (
1233
+ obj: UntagResourceRequest
1234
+ ) => any;
1235
+
1236
+ export declare const UntagResourceResponseFilterSensitiveLog: (
1237
+ obj: UntagResourceResponse
1238
+ ) => any;
1239
+
1240
+ export declare const UpdateConnectivityInfoRequestFilterSensitiveLog: (
1241
+ obj: UpdateConnectivityInfoRequest
1242
+ ) => any;
1243
+
1244
+ export declare const UpdateConnectivityInfoResponseFilterSensitiveLog: (
1245
+ obj: UpdateConnectivityInfoResponse
1246
+ ) => any;