@aws-sdk/client-greengrassv2 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.
@@ -11,24 +11,24 @@ export interface AssociateClientDeviceWithCoreDeviceEntry {
11
11
  thingName: string | undefined;
12
12
  }
13
13
  export interface AssociateClientDeviceWithCoreDeviceErrorEntry {
14
- thingName?: string;
15
- code?: string;
16
- message?: string;
14
+ thingName?: string | undefined;
15
+ code?: string | undefined;
16
+ message?: string | undefined;
17
17
  }
18
18
  export interface AssociatedClientDevice {
19
- thingName?: string;
20
- associationTimestamp?: Date;
19
+ thingName?: string | undefined;
20
+ associationTimestamp?: Date | undefined;
21
21
  }
22
22
  export interface AssociateServiceRoleToAccountRequest {
23
23
  roleArn: string | undefined;
24
24
  }
25
25
  export interface AssociateServiceRoleToAccountResponse {
26
- associatedAt?: string;
26
+ associatedAt?: string | undefined;
27
27
  }
28
28
  export declare class InternalServerException extends __BaseException {
29
29
  readonly name: "InternalServerException";
30
30
  readonly $fault: "server";
31
- retryAfterSeconds?: number;
31
+ retryAfterSeconds?: number | undefined;
32
32
  constructor(
33
33
  opts: __ExceptionOptionType<InternalServerException, __BaseException>
34
34
  );
@@ -48,18 +48,18 @@ export type ValidationExceptionReason =
48
48
  export declare class ValidationException extends __BaseException {
49
49
  readonly name: "ValidationException";
50
50
  readonly $fault: "client";
51
- reason?: ValidationExceptionReason;
52
- fields?: ValidationExceptionField[];
51
+ reason?: ValidationExceptionReason | undefined;
52
+ fields?: ValidationExceptionField[] | undefined;
53
53
  constructor(
54
54
  opts: __ExceptionOptionType<ValidationException, __BaseException>
55
55
  );
56
56
  }
57
57
  export interface BatchAssociateClientDeviceWithCoreDeviceRequest {
58
- entries?: AssociateClientDeviceWithCoreDeviceEntry[];
58
+ entries?: AssociateClientDeviceWithCoreDeviceEntry[] | undefined;
59
59
  coreDeviceThingName: string | undefined;
60
60
  }
61
61
  export interface BatchAssociateClientDeviceWithCoreDeviceResponse {
62
- errorEntries?: AssociateClientDeviceWithCoreDeviceErrorEntry[];
62
+ errorEntries?: AssociateClientDeviceWithCoreDeviceErrorEntry[] | undefined;
63
63
  }
64
64
  export declare class ResourceNotFoundException extends __BaseException {
65
65
  readonly name: "ResourceNotFoundException";
@@ -73,9 +73,9 @@ export declare class ResourceNotFoundException extends __BaseException {
73
73
  export declare class ThrottlingException extends __BaseException {
74
74
  readonly name: "ThrottlingException";
75
75
  readonly $fault: "client";
76
- quotaCode?: string;
77
- serviceCode?: string;
78
- retryAfterSeconds?: number;
76
+ quotaCode?: string | undefined;
77
+ serviceCode?: string | undefined;
78
+ retryAfterSeconds?: number | undefined;
79
79
  constructor(
80
80
  opts: __ExceptionOptionType<ThrottlingException, __BaseException>
81
81
  );
@@ -84,22 +84,22 @@ export interface DisassociateClientDeviceFromCoreDeviceEntry {
84
84
  thingName: string | undefined;
85
85
  }
86
86
  export interface BatchDisassociateClientDeviceFromCoreDeviceRequest {
87
- entries?: DisassociateClientDeviceFromCoreDeviceEntry[];
87
+ entries?: DisassociateClientDeviceFromCoreDeviceEntry[] | undefined;
88
88
  coreDeviceThingName: string | undefined;
89
89
  }
90
90
  export interface DisassociateClientDeviceFromCoreDeviceErrorEntry {
91
- thingName?: string;
92
- code?: string;
93
- message?: string;
91
+ thingName?: string | undefined;
92
+ code?: string | undefined;
93
+ message?: string | undefined;
94
94
  }
95
95
  export interface BatchDisassociateClientDeviceFromCoreDeviceResponse {
96
- errorEntries?: DisassociateClientDeviceFromCoreDeviceErrorEntry[];
96
+ errorEntries?: DisassociateClientDeviceFromCoreDeviceErrorEntry[] | undefined;
97
97
  }
98
98
  export interface CancelDeploymentRequest {
99
99
  deploymentId: string | undefined;
100
100
  }
101
101
  export interface CancelDeploymentResponse {
102
- message?: string;
102
+ message?: string | undefined;
103
103
  }
104
104
  export declare class ConflictException extends __BaseException {
105
105
  readonly name: "ConflictException";
@@ -125,37 +125,37 @@ export declare const VendorGuidance: {
125
125
  export type VendorGuidance =
126
126
  (typeof VendorGuidance)[keyof typeof VendorGuidance];
127
127
  export interface CloudComponentStatus {
128
- componentState?: CloudComponentState;
129
- message?: string;
130
- errors?: Record<string, string>;
131
- vendorGuidance?: VendorGuidance;
132
- vendorGuidanceMessage?: string;
128
+ componentState?: CloudComponentState | undefined;
129
+ message?: string | undefined;
130
+ errors?: Record<string, string> | undefined;
131
+ vendorGuidance?: VendorGuidance | undefined;
132
+ vendorGuidanceMessage?: string | undefined;
133
133
  }
134
134
  export interface ComponentPlatform {
135
- name?: string;
136
- attributes?: Record<string, string>;
135
+ name?: string | undefined;
136
+ attributes?: Record<string, string> | undefined;
137
137
  }
138
138
  export interface ComponentLatestVersion {
139
- arn?: string;
140
- componentVersion?: string;
141
- creationTimestamp?: Date;
142
- description?: string;
143
- publisher?: string;
144
- platforms?: ComponentPlatform[];
139
+ arn?: string | undefined;
140
+ componentVersion?: string | undefined;
141
+ creationTimestamp?: Date | undefined;
142
+ description?: string | undefined;
143
+ publisher?: string | undefined;
144
+ platforms?: ComponentPlatform[] | undefined;
145
145
  }
146
146
  export interface Component {
147
- arn?: string;
148
- componentName?: string;
149
- latestVersion?: ComponentLatestVersion;
147
+ arn?: string | undefined;
148
+ componentName?: string | undefined;
149
+ latestVersion?: ComponentLatestVersion | undefined;
150
150
  }
151
151
  export interface ComponentCandidate {
152
- componentName?: string;
153
- componentVersion?: string;
154
- versionRequirements?: Record<string, string>;
152
+ componentName?: string | undefined;
153
+ componentVersion?: string | undefined;
154
+ versionRequirements?: Record<string, string> | undefined;
155
155
  }
156
156
  export interface ComponentConfigurationUpdate {
157
- merge?: string;
158
- reset?: string[];
157
+ merge?: string | undefined;
158
+ reset?: string[] | undefined;
159
159
  }
160
160
  export declare const ComponentDependencyType: {
161
161
  readonly HARD: "HARD";
@@ -164,27 +164,27 @@ export declare const ComponentDependencyType: {
164
164
  export type ComponentDependencyType =
165
165
  (typeof ComponentDependencyType)[keyof typeof ComponentDependencyType];
166
166
  export interface ComponentDependencyRequirement {
167
- versionRequirement?: string;
168
- dependencyType?: ComponentDependencyType;
167
+ versionRequirement?: string | undefined;
168
+ dependencyType?: ComponentDependencyType | undefined;
169
169
  }
170
170
  export interface SystemResourceLimits {
171
- memory?: number;
172
- cpus?: number;
171
+ memory?: number | undefined;
172
+ cpus?: number | undefined;
173
173
  }
174
174
  export interface ComponentRunWith {
175
- posixUser?: string;
176
- systemResourceLimits?: SystemResourceLimits;
177
- windowsUser?: string;
175
+ posixUser?: string | undefined;
176
+ systemResourceLimits?: SystemResourceLimits | undefined;
177
+ windowsUser?: string | undefined;
178
178
  }
179
179
  export interface ComponentDeploymentSpecification {
180
180
  componentVersion: string | undefined;
181
- configurationUpdate?: ComponentConfigurationUpdate;
182
- runWith?: ComponentRunWith;
181
+ configurationUpdate?: ComponentConfigurationUpdate | undefined;
182
+ runWith?: ComponentRunWith | undefined;
183
183
  }
184
184
  export interface ComponentVersionListItem {
185
- componentName?: string;
186
- componentVersion?: string;
187
- arn?: string;
185
+ componentName?: string | undefined;
186
+ componentVersion?: string | undefined;
187
+ arn?: string | undefined;
188
188
  }
189
189
  export declare const ComponentVisibilityScope: {
190
190
  readonly PRIVATE: "PRIVATE";
@@ -193,10 +193,10 @@ export declare const ComponentVisibilityScope: {
193
193
  export type ComponentVisibilityScope =
194
194
  (typeof ComponentVisibilityScope)[keyof typeof ComponentVisibilityScope];
195
195
  export interface ConnectivityInfo {
196
- id?: string;
197
- hostAddress?: string;
198
- portNumber?: number;
199
- metadata?: string;
196
+ id?: string | undefined;
197
+ hostAddress?: string | undefined;
198
+ portNumber?: number | undefined;
199
+ metadata?: string | undefined;
200
200
  }
201
201
  export declare const CoreDeviceStatus: {
202
202
  readonly HEALTHY: "HEALTHY";
@@ -205,9 +205,9 @@ export declare const CoreDeviceStatus: {
205
205
  export type CoreDeviceStatus =
206
206
  (typeof CoreDeviceStatus)[keyof typeof CoreDeviceStatus];
207
207
  export interface CoreDevice {
208
- coreDeviceThingName?: string;
209
- status?: CoreDeviceStatus;
210
- lastStatusUpdateTimestamp?: Date;
208
+ coreDeviceThingName?: string | undefined;
209
+ status?: CoreDeviceStatus | undefined;
210
+ lastStatusUpdateTimestamp?: Date | undefined;
211
211
  }
212
212
  export declare const LambdaEventSourceType: {
213
213
  readonly IOT_CORE: "IOT_CORE";
@@ -233,20 +233,20 @@ export type LambdaFilesystemPermission =
233
233
  (typeof LambdaFilesystemPermission)[keyof typeof LambdaFilesystemPermission];
234
234
  export interface LambdaDeviceMount {
235
235
  path: string | undefined;
236
- permission?: LambdaFilesystemPermission;
237
- addGroupOwner?: boolean;
236
+ permission?: LambdaFilesystemPermission | undefined;
237
+ addGroupOwner?: boolean | undefined;
238
238
  }
239
239
  export interface LambdaVolumeMount {
240
240
  sourcePath: string | undefined;
241
241
  destinationPath: string | undefined;
242
- permission?: LambdaFilesystemPermission;
243
- addGroupOwner?: boolean;
242
+ permission?: LambdaFilesystemPermission | undefined;
243
+ addGroupOwner?: boolean | undefined;
244
244
  }
245
245
  export interface LambdaContainerParams {
246
- memorySizeInKB?: number;
247
- mountROSysfs?: boolean;
248
- volumes?: LambdaVolumeMount[];
249
- devices?: LambdaDeviceMount[];
246
+ memorySizeInKB?: number | undefined;
247
+ mountROSysfs?: boolean | undefined;
248
+ volumes?: LambdaVolumeMount[] | undefined;
249
+ devices?: LambdaDeviceMount[] | undefined;
250
250
  }
251
251
  export declare const LambdaIsolationMode: {
252
252
  readonly GREENGRASS_CONTAINER: "GreengrassContainer";
@@ -255,38 +255,40 @@ export declare const LambdaIsolationMode: {
255
255
  export type LambdaIsolationMode =
256
256
  (typeof LambdaIsolationMode)[keyof typeof LambdaIsolationMode];
257
257
  export interface LambdaLinuxProcessParams {
258
- isolationMode?: LambdaIsolationMode;
259
- containerParams?: LambdaContainerParams;
258
+ isolationMode?: LambdaIsolationMode | undefined;
259
+ containerParams?: LambdaContainerParams | undefined;
260
260
  }
261
261
  export interface LambdaExecutionParameters {
262
- eventSources?: LambdaEventSource[];
263
- maxQueueSize?: number;
264
- maxInstancesCount?: number;
265
- maxIdleTimeInSeconds?: number;
266
- timeoutInSeconds?: number;
267
- statusTimeoutInSeconds?: number;
268
- pinned?: boolean;
269
- inputPayloadEncodingType?: LambdaInputPayloadEncodingType;
270
- execArgs?: string[];
271
- environmentVariables?: Record<string, string>;
272
- linuxProcessParams?: LambdaLinuxProcessParams;
262
+ eventSources?: LambdaEventSource[] | undefined;
263
+ maxQueueSize?: number | undefined;
264
+ maxInstancesCount?: number | undefined;
265
+ maxIdleTimeInSeconds?: number | undefined;
266
+ timeoutInSeconds?: number | undefined;
267
+ statusTimeoutInSeconds?: number | undefined;
268
+ pinned?: boolean | undefined;
269
+ inputPayloadEncodingType?: LambdaInputPayloadEncodingType | undefined;
270
+ execArgs?: string[] | undefined;
271
+ environmentVariables?: Record<string, string> | undefined;
272
+ linuxProcessParams?: LambdaLinuxProcessParams | undefined;
273
273
  }
274
274
  export interface LambdaFunctionRecipeSource {
275
275
  lambdaArn: string | undefined;
276
- componentName?: string;
277
- componentVersion?: string;
278
- componentPlatforms?: ComponentPlatform[];
279
- componentDependencies?: Record<string, ComponentDependencyRequirement>;
280
- componentLambdaParameters?: LambdaExecutionParameters;
276
+ componentName?: string | undefined;
277
+ componentVersion?: string | undefined;
278
+ componentPlatforms?: ComponentPlatform[] | undefined;
279
+ componentDependencies?:
280
+ | Record<string, ComponentDependencyRequirement>
281
+ | undefined;
282
+ componentLambdaParameters?: LambdaExecutionParameters | undefined;
281
283
  }
282
284
  export interface CreateComponentVersionRequest {
283
- inlineRecipe?: Uint8Array;
284
- lambdaFunction?: LambdaFunctionRecipeSource;
285
- tags?: Record<string, string>;
286
- clientToken?: string;
285
+ inlineRecipe?: Uint8Array | undefined;
286
+ lambdaFunction?: LambdaFunctionRecipeSource | undefined;
287
+ tags?: Record<string, string> | undefined;
288
+ clientToken?: string | undefined;
287
289
  }
288
290
  export interface CreateComponentVersionResponse {
289
- arn?: string;
291
+ arn?: string | undefined;
290
292
  componentName: string | undefined;
291
293
  componentVersion: string | undefined;
292
294
  creationTimestamp: Date | undefined;
@@ -305,8 +307,8 @@ export declare class RequestAlreadyInProgressException extends __BaseException {
305
307
  export declare class ServiceQuotaExceededException extends __BaseException {
306
308
  readonly name: "ServiceQuotaExceededException";
307
309
  readonly $fault: "client";
308
- resourceId?: string;
309
- resourceType?: string;
310
+ resourceId?: string | undefined;
311
+ resourceType?: string | undefined;
310
312
  quotaCode: string | undefined;
311
313
  serviceCode: string | undefined;
312
314
  constructor(
@@ -320,11 +322,11 @@ export declare const DeploymentComponentUpdatePolicyAction: {
320
322
  export type DeploymentComponentUpdatePolicyAction =
321
323
  (typeof DeploymentComponentUpdatePolicyAction)[keyof typeof DeploymentComponentUpdatePolicyAction];
322
324
  export interface DeploymentComponentUpdatePolicy {
323
- timeoutInSeconds?: number;
324
- action?: DeploymentComponentUpdatePolicyAction;
325
+ timeoutInSeconds?: number | undefined;
326
+ action?: DeploymentComponentUpdatePolicyAction | undefined;
325
327
  }
326
328
  export interface DeploymentConfigurationValidationPolicy {
327
- timeoutInSeconds?: number;
329
+ timeoutInSeconds?: number | undefined;
328
330
  }
329
331
  export declare const DeploymentFailureHandlingPolicy: {
330
332
  readonly DO_NOTHING: "DO_NOTHING";
@@ -333,9 +335,11 @@ export declare const DeploymentFailureHandlingPolicy: {
333
335
  export type DeploymentFailureHandlingPolicy =
334
336
  (typeof DeploymentFailureHandlingPolicy)[keyof typeof DeploymentFailureHandlingPolicy];
335
337
  export interface DeploymentPolicies {
336
- failureHandlingPolicy?: DeploymentFailureHandlingPolicy;
337
- componentUpdatePolicy?: DeploymentComponentUpdatePolicy;
338
- configurationValidationPolicy?: DeploymentConfigurationValidationPolicy;
338
+ failureHandlingPolicy?: DeploymentFailureHandlingPolicy | undefined;
339
+ componentUpdatePolicy?: DeploymentComponentUpdatePolicy | undefined;
340
+ configurationValidationPolicy?:
341
+ | DeploymentConfigurationValidationPolicy
342
+ | undefined;
339
343
  }
340
344
  export declare const IoTJobAbortAction: {
341
345
  readonly CANCEL: "CANCEL";
@@ -360,8 +364,8 @@ export interface IoTJobAbortConfig {
360
364
  criteriaList: IoTJobAbortCriteria[] | undefined;
361
365
  }
362
366
  export interface IoTJobRateIncreaseCriteria {
363
- numberOfNotifiedThings?: number;
364
- numberOfSucceededThings?: number;
367
+ numberOfNotifiedThings?: number | undefined;
368
+ numberOfSucceededThings?: number | undefined;
365
369
  }
366
370
  export interface IoTJobExponentialRolloutRate {
367
371
  baseRatePerMinute: number | undefined;
@@ -369,31 +373,31 @@ export interface IoTJobExponentialRolloutRate {
369
373
  rateIncreaseCriteria: IoTJobRateIncreaseCriteria | undefined;
370
374
  }
371
375
  export interface IoTJobExecutionsRolloutConfig {
372
- exponentialRate?: IoTJobExponentialRolloutRate;
373
- maximumPerMinute?: number;
376
+ exponentialRate?: IoTJobExponentialRolloutRate | undefined;
377
+ maximumPerMinute?: number | undefined;
374
378
  }
375
379
  export interface IoTJobTimeoutConfig {
376
- inProgressTimeoutInMinutes?: number;
380
+ inProgressTimeoutInMinutes?: number | undefined;
377
381
  }
378
382
  export interface DeploymentIoTJobConfiguration {
379
- jobExecutionsRolloutConfig?: IoTJobExecutionsRolloutConfig;
380
- abortConfig?: IoTJobAbortConfig;
381
- timeoutConfig?: IoTJobTimeoutConfig;
383
+ jobExecutionsRolloutConfig?: IoTJobExecutionsRolloutConfig | undefined;
384
+ abortConfig?: IoTJobAbortConfig | undefined;
385
+ timeoutConfig?: IoTJobTimeoutConfig | undefined;
382
386
  }
383
387
  export interface CreateDeploymentRequest {
384
388
  targetArn: string | undefined;
385
- deploymentName?: string;
386
- components?: Record<string, ComponentDeploymentSpecification>;
387
- iotJobConfiguration?: DeploymentIoTJobConfiguration;
388
- deploymentPolicies?: DeploymentPolicies;
389
- parentTargetArn?: string;
390
- tags?: Record<string, string>;
391
- clientToken?: string;
389
+ deploymentName?: string | undefined;
390
+ components?: Record<string, ComponentDeploymentSpecification> | undefined;
391
+ iotJobConfiguration?: DeploymentIoTJobConfiguration | undefined;
392
+ deploymentPolicies?: DeploymentPolicies | undefined;
393
+ parentTargetArn?: string | undefined;
394
+ tags?: Record<string, string> | undefined;
395
+ clientToken?: string | undefined;
392
396
  }
393
397
  export interface CreateDeploymentResponse {
394
- deploymentId?: string;
395
- iotJobId?: string;
396
- iotJobArn?: string;
398
+ deploymentId?: string | undefined;
399
+ iotJobId?: string | undefined;
400
+ iotJobArn?: string | undefined;
397
401
  }
398
402
  export interface DeleteComponentRequest {
399
403
  arn: string | undefined;
@@ -414,14 +418,14 @@ export declare const DeploymentStatus: {
414
418
  export type DeploymentStatus =
415
419
  (typeof DeploymentStatus)[keyof typeof DeploymentStatus];
416
420
  export interface Deployment {
417
- targetArn?: string;
418
- revisionId?: string;
419
- deploymentId?: string;
420
- deploymentName?: string;
421
- creationTimestamp?: Date;
422
- deploymentStatus?: DeploymentStatus;
423
- isLatestForTarget?: boolean;
424
- parentTargetArn?: string;
421
+ targetArn?: string | undefined;
422
+ revisionId?: string | undefined;
423
+ deploymentId?: string | undefined;
424
+ deploymentName?: string | undefined;
425
+ creationTimestamp?: Date | undefined;
426
+ deploymentStatus?: DeploymentStatus | undefined;
427
+ isLatestForTarget?: boolean | undefined;
428
+ parentTargetArn?: string | undefined;
425
429
  }
426
430
  export declare const DeploymentHistoryFilter: {
427
431
  readonly ALL: "ALL";
@@ -433,19 +437,19 @@ export interface DescribeComponentRequest {
433
437
  arn: string | undefined;
434
438
  }
435
439
  export interface DescribeComponentResponse {
436
- arn?: string;
437
- componentName?: string;
438
- componentVersion?: string;
439
- creationTimestamp?: Date;
440
- publisher?: string;
441
- description?: string;
442
- status?: CloudComponentStatus;
443
- platforms?: ComponentPlatform[];
444
- tags?: Record<string, string>;
440
+ arn?: string | undefined;
441
+ componentName?: string | undefined;
442
+ componentVersion?: string | undefined;
443
+ creationTimestamp?: Date | undefined;
444
+ publisher?: string | undefined;
445
+ description?: string | undefined;
446
+ status?: CloudComponentStatus | undefined;
447
+ platforms?: ComponentPlatform[] | undefined;
448
+ tags?: Record<string, string> | undefined;
445
449
  }
446
450
  export interface DisassociateServiceRoleFromAccountRequest {}
447
451
  export interface DisassociateServiceRoleFromAccountResponse {
448
- disassociatedAt?: string;
452
+ disassociatedAt?: string | undefined;
449
453
  }
450
454
  export declare const EffectiveDeploymentExecutionStatus: {
451
455
  readonly CANCELED: "CANCELED";
@@ -460,21 +464,21 @@ export declare const EffectiveDeploymentExecutionStatus: {
460
464
  export type EffectiveDeploymentExecutionStatus =
461
465
  (typeof EffectiveDeploymentExecutionStatus)[keyof typeof EffectiveDeploymentExecutionStatus];
462
466
  export interface EffectiveDeploymentStatusDetails {
463
- errorStack?: string[];
464
- errorTypes?: string[];
467
+ errorStack?: string[] | undefined;
468
+ errorTypes?: string[] | undefined;
465
469
  }
466
470
  export interface EffectiveDeployment {
467
471
  deploymentId: string | undefined;
468
472
  deploymentName: string | undefined;
469
- iotJobId?: string;
470
- iotJobArn?: string;
471
- description?: string;
473
+ iotJobId?: string | undefined;
474
+ iotJobArn?: string | undefined;
475
+ description?: string | undefined;
472
476
  targetArn: string | undefined;
473
477
  coreDeviceExecutionStatus: EffectiveDeploymentExecutionStatus | undefined;
474
- reason?: string;
478
+ reason?: string | undefined;
475
479
  creationTimestamp: Date | undefined;
476
480
  modifiedTimestamp: Date | undefined;
477
- statusDetails?: EffectiveDeploymentStatusDetails;
481
+ statusDetails?: EffectiveDeploymentStatusDetails | undefined;
478
482
  }
479
483
  export declare const RecipeOutputFormat: {
480
484
  readonly JSON: "JSON";
@@ -483,13 +487,13 @@ export declare const RecipeOutputFormat: {
483
487
  export type RecipeOutputFormat =
484
488
  (typeof RecipeOutputFormat)[keyof typeof RecipeOutputFormat];
485
489
  export interface GetComponentRequest {
486
- recipeOutputFormat?: RecipeOutputFormat;
490
+ recipeOutputFormat?: RecipeOutputFormat | undefined;
487
491
  arn: string | undefined;
488
492
  }
489
493
  export interface GetComponentResponse {
490
494
  recipeOutputFormat: RecipeOutputFormat | undefined;
491
495
  recipe: Uint8Array | undefined;
492
- tags?: Record<string, string>;
496
+ tags?: Record<string, string> | undefined;
493
497
  }
494
498
  export declare const IotEndpointType: {
495
499
  readonly fips: "fips";
@@ -506,8 +510,8 @@ export type S3EndpointType =
506
510
  export interface GetComponentVersionArtifactRequest {
507
511
  arn: string | undefined;
508
512
  artifactName: string | undefined;
509
- s3EndpointType?: S3EndpointType;
510
- iotEndpointType?: IotEndpointType;
513
+ s3EndpointType?: S3EndpointType | undefined;
514
+ iotEndpointType?: IotEndpointType | undefined;
511
515
  }
512
516
  export interface GetComponentVersionArtifactResponse {
513
517
  preSignedUrl: string | undefined;
@@ -516,101 +520,101 @@ export interface GetConnectivityInfoRequest {
516
520
  thingName: string | undefined;
517
521
  }
518
522
  export interface GetConnectivityInfoResponse {
519
- connectivityInfo?: ConnectivityInfo[];
520
- message?: string;
523
+ connectivityInfo?: ConnectivityInfo[] | undefined;
524
+ message?: string | undefined;
521
525
  }
522
526
  export interface GetCoreDeviceRequest {
523
527
  coreDeviceThingName: string | undefined;
524
528
  }
525
529
  export interface GetCoreDeviceResponse {
526
- coreDeviceThingName?: string;
527
- coreVersion?: string;
528
- platform?: string;
529
- architecture?: string;
530
- status?: CoreDeviceStatus;
531
- lastStatusUpdateTimestamp?: Date;
532
- tags?: Record<string, string>;
530
+ coreDeviceThingName?: string | undefined;
531
+ coreVersion?: string | undefined;
532
+ platform?: string | undefined;
533
+ architecture?: string | undefined;
534
+ status?: CoreDeviceStatus | undefined;
535
+ lastStatusUpdateTimestamp?: Date | undefined;
536
+ tags?: Record<string, string> | undefined;
533
537
  }
534
538
  export interface GetDeploymentRequest {
535
539
  deploymentId: string | undefined;
536
540
  }
537
541
  export interface GetDeploymentResponse {
538
- targetArn?: string;
539
- revisionId?: string;
540
- deploymentId?: string;
541
- deploymentName?: string;
542
- deploymentStatus?: DeploymentStatus;
543
- iotJobId?: string;
544
- iotJobArn?: string;
545
- components?: Record<string, ComponentDeploymentSpecification>;
546
- deploymentPolicies?: DeploymentPolicies;
547
- iotJobConfiguration?: DeploymentIoTJobConfiguration;
548
- creationTimestamp?: Date;
549
- isLatestForTarget?: boolean;
550
- parentTargetArn?: string;
551
- tags?: Record<string, string>;
542
+ targetArn?: string | undefined;
543
+ revisionId?: string | undefined;
544
+ deploymentId?: string | undefined;
545
+ deploymentName?: string | undefined;
546
+ deploymentStatus?: DeploymentStatus | undefined;
547
+ iotJobId?: string | undefined;
548
+ iotJobArn?: string | undefined;
549
+ components?: Record<string, ComponentDeploymentSpecification> | undefined;
550
+ deploymentPolicies?: DeploymentPolicies | undefined;
551
+ iotJobConfiguration?: DeploymentIoTJobConfiguration | undefined;
552
+ creationTimestamp?: Date | undefined;
553
+ isLatestForTarget?: boolean | undefined;
554
+ parentTargetArn?: string | undefined;
555
+ tags?: Record<string, string> | undefined;
552
556
  }
553
557
  export interface GetServiceRoleForAccountRequest {}
554
558
  export interface GetServiceRoleForAccountResponse {
555
- associatedAt?: string;
556
- roleArn?: string;
559
+ associatedAt?: string | undefined;
560
+ roleArn?: string | undefined;
557
561
  }
558
562
  export interface ListClientDevicesAssociatedWithCoreDeviceRequest {
559
563
  coreDeviceThingName: string | undefined;
560
- maxResults?: number;
561
- nextToken?: string;
564
+ maxResults?: number | undefined;
565
+ nextToken?: string | undefined;
562
566
  }
563
567
  export interface ListClientDevicesAssociatedWithCoreDeviceResponse {
564
- associatedClientDevices?: AssociatedClientDevice[];
565
- nextToken?: string;
568
+ associatedClientDevices?: AssociatedClientDevice[] | undefined;
569
+ nextToken?: string | undefined;
566
570
  }
567
571
  export interface ListComponentsRequest {
568
- scope?: ComponentVisibilityScope;
569
- maxResults?: number;
570
- nextToken?: string;
572
+ scope?: ComponentVisibilityScope | undefined;
573
+ maxResults?: number | undefined;
574
+ nextToken?: string | undefined;
571
575
  }
572
576
  export interface ListComponentsResponse {
573
- components?: Component[];
574
- nextToken?: string;
577
+ components?: Component[] | undefined;
578
+ nextToken?: string | undefined;
575
579
  }
576
580
  export interface ListComponentVersionsRequest {
577
581
  arn: string | undefined;
578
- maxResults?: number;
579
- nextToken?: string;
582
+ maxResults?: number | undefined;
583
+ nextToken?: string | undefined;
580
584
  }
581
585
  export interface ListComponentVersionsResponse {
582
- componentVersions?: ComponentVersionListItem[];
583
- nextToken?: string;
586
+ componentVersions?: ComponentVersionListItem[] | undefined;
587
+ nextToken?: string | undefined;
584
588
  }
585
589
  export interface ListCoreDevicesRequest {
586
- thingGroupArn?: string;
587
- status?: CoreDeviceStatus;
588
- maxResults?: number;
589
- nextToken?: string;
590
+ thingGroupArn?: string | undefined;
591
+ status?: CoreDeviceStatus | undefined;
592
+ maxResults?: number | undefined;
593
+ nextToken?: string | undefined;
590
594
  }
591
595
  export interface ListCoreDevicesResponse {
592
- coreDevices?: CoreDevice[];
593
- nextToken?: string;
596
+ coreDevices?: CoreDevice[] | undefined;
597
+ nextToken?: string | undefined;
594
598
  }
595
599
  export interface ListDeploymentsRequest {
596
- targetArn?: string;
597
- historyFilter?: DeploymentHistoryFilter;
598
- parentTargetArn?: string;
599
- maxResults?: number;
600
- nextToken?: string;
600
+ targetArn?: string | undefined;
601
+ historyFilter?: DeploymentHistoryFilter | undefined;
602
+ parentTargetArn?: string | undefined;
603
+ maxResults?: number | undefined;
604
+ nextToken?: string | undefined;
601
605
  }
602
606
  export interface ListDeploymentsResponse {
603
- deployments?: Deployment[];
604
- nextToken?: string;
607
+ deployments?: Deployment[] | undefined;
608
+ nextToken?: string | undefined;
605
609
  }
606
610
  export interface ListEffectiveDeploymentsRequest {
607
611
  coreDeviceThingName: string | undefined;
608
- maxResults?: number;
609
- nextToken?: string;
612
+ maxResults?: number | undefined;
613
+ nextToken?: string | undefined;
610
614
  }
611
615
  export interface ListEffectiveDeploymentsResponse {
612
- effectiveDeployments?: EffectiveDeployment[];
613
- nextToken?: string;
616
+ effectiveDeployments?: EffectiveDeployment[] | undefined;
617
+ nextToken?: string | undefined;
614
618
  }
615
619
  export declare const InstalledComponentTopologyFilter: {
616
620
  readonly ALL: "ALL";
@@ -620,9 +624,9 @@ export type InstalledComponentTopologyFilter =
620
624
  (typeof InstalledComponentTopologyFilter)[keyof typeof InstalledComponentTopologyFilter];
621
625
  export interface ListInstalledComponentsRequest {
622
626
  coreDeviceThingName: string | undefined;
623
- maxResults?: number;
624
- nextToken?: string;
625
- topologyFilter?: InstalledComponentTopologyFilter;
627
+ maxResults?: number | undefined;
628
+ nextToken?: string | undefined;
629
+ topologyFilter?: InstalledComponentTopologyFilter | undefined;
626
630
  }
627
631
  export declare const InstalledComponentLifecycleState: {
628
632
  readonly BROKEN: "BROKEN";
@@ -637,40 +641,40 @@ export declare const InstalledComponentLifecycleState: {
637
641
  export type InstalledComponentLifecycleState =
638
642
  (typeof InstalledComponentLifecycleState)[keyof typeof InstalledComponentLifecycleState];
639
643
  export interface InstalledComponent {
640
- componentName?: string;
641
- componentVersion?: string;
642
- lifecycleState?: InstalledComponentLifecycleState;
643
- lifecycleStateDetails?: string;
644
- isRoot?: boolean;
645
- lastStatusChangeTimestamp?: Date;
646
- lastReportedTimestamp?: Date;
647
- lastInstallationSource?: string;
648
- lifecycleStatusCodes?: string[];
644
+ componentName?: string | undefined;
645
+ componentVersion?: string | undefined;
646
+ lifecycleState?: InstalledComponentLifecycleState | undefined;
647
+ lifecycleStateDetails?: string | undefined;
648
+ isRoot?: boolean | undefined;
649
+ lastStatusChangeTimestamp?: Date | undefined;
650
+ lastReportedTimestamp?: Date | undefined;
651
+ lastInstallationSource?: string | undefined;
652
+ lifecycleStatusCodes?: string[] | undefined;
649
653
  }
650
654
  export interface ListInstalledComponentsResponse {
651
- installedComponents?: InstalledComponent[];
652
- nextToken?: string;
655
+ installedComponents?: InstalledComponent[] | undefined;
656
+ nextToken?: string | undefined;
653
657
  }
654
658
  export interface ListTagsForResourceRequest {
655
659
  resourceArn: string | undefined;
656
660
  }
657
661
  export interface ListTagsForResourceResponse {
658
- tags?: Record<string, string>;
662
+ tags?: Record<string, string> | undefined;
659
663
  }
660
664
  export interface ResolveComponentCandidatesRequest {
661
- platform?: ComponentPlatform;
662
- componentCandidates?: ComponentCandidate[];
665
+ platform?: ComponentPlatform | undefined;
666
+ componentCandidates?: ComponentCandidate[] | undefined;
663
667
  }
664
668
  export interface ResolvedComponentVersion {
665
- arn?: string;
666
- componentName?: string;
667
- componentVersion?: string;
668
- recipe?: Uint8Array;
669
- vendorGuidance?: VendorGuidance;
670
- message?: string;
669
+ arn?: string | undefined;
670
+ componentName?: string | undefined;
671
+ componentVersion?: string | undefined;
672
+ recipe?: Uint8Array | undefined;
673
+ vendorGuidance?: VendorGuidance | undefined;
674
+ message?: string | undefined;
671
675
  }
672
676
  export interface ResolveComponentCandidatesResponse {
673
- resolvedComponentVersions?: ResolvedComponentVersion[];
677
+ resolvedComponentVersions?: ResolvedComponentVersion[] | undefined;
674
678
  }
675
679
  export interface TagResourceRequest {
676
680
  resourceArn: string | undefined;
@@ -687,6 +691,6 @@ export interface UpdateConnectivityInfoRequest {
687
691
  connectivityInfo: ConnectivityInfo[] | undefined;
688
692
  }
689
693
  export interface UpdateConnectivityInfoResponse {
690
- version?: string;
691
- message?: string;
694
+ version?: string | undefined;
695
+ message?: string | undefined;
692
696
  }