@aws-sdk/client-iot 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.
@@ -23,7 +23,7 @@ export interface AbortConfig {
23
23
  }
24
24
  export interface AcceptCertificateTransferRequest {
25
25
  certificateId: string | undefined;
26
- setAsActive?: boolean;
26
+ setAsActive?: boolean | undefined;
27
27
  }
28
28
  export declare class InternalFailureException extends __BaseException {
29
29
  readonly name: "InternalFailureException";
@@ -86,7 +86,7 @@ export interface CloudwatchAlarmAction {
86
86
  export interface CloudwatchLogsAction {
87
87
  roleArn: string | undefined;
88
88
  logGroupName: string | undefined;
89
- batchMode?: boolean;
89
+ batchMode?: boolean | undefined;
90
90
  }
91
91
  export interface CloudwatchMetricAction {
92
92
  roleArn: string | undefined;
@@ -94,7 +94,7 @@ export interface CloudwatchMetricAction {
94
94
  metricName: string | undefined;
95
95
  metricValue: string | undefined;
96
96
  metricUnit: string | undefined;
97
- metricTimestamp?: string;
97
+ metricTimestamp?: string | undefined;
98
98
  }
99
99
  export declare const DynamoKeyType: {
100
100
  readonly NUMBER: "NUMBER";
@@ -104,14 +104,14 @@ export type DynamoKeyType = (typeof DynamoKeyType)[keyof typeof DynamoKeyType];
104
104
  export interface DynamoDBAction {
105
105
  tableName: string | undefined;
106
106
  roleArn: string | undefined;
107
- operation?: string;
107
+ operation?: string | undefined;
108
108
  hashKeyField: string | undefined;
109
109
  hashKeyValue: string | undefined;
110
- hashKeyType?: DynamoKeyType;
111
- rangeKeyField?: string;
112
- rangeKeyValue?: string;
113
- rangeKeyType?: DynamoKeyType;
114
- payloadField?: string;
110
+ hashKeyType?: DynamoKeyType | undefined;
111
+ rangeKeyField?: string | undefined;
112
+ rangeKeyValue?: string | undefined;
113
+ rangeKeyType?: DynamoKeyType | undefined;
114
+ payloadField?: string | undefined;
115
115
  }
116
116
  export interface PutItemInput {
117
117
  tableName: string | undefined;
@@ -130,8 +130,8 @@ export interface ElasticsearchAction {
130
130
  export interface FirehoseAction {
131
131
  roleArn: string | undefined;
132
132
  deliveryStreamName: string | undefined;
133
- separator?: string;
134
- batchMode?: boolean;
133
+ separator?: string | undefined;
134
+ batchMode?: boolean | undefined;
135
135
  }
136
136
  export interface SigV4Authorization {
137
137
  signingRegion: string | undefined;
@@ -139,7 +139,7 @@ export interface SigV4Authorization {
139
139
  roleArn: string | undefined;
140
140
  }
141
141
  export interface HttpAuthorization {
142
- sigv4?: SigV4Authorization;
142
+ sigv4?: SigV4Authorization | undefined;
143
143
  }
144
144
  export interface HttpActionHeader {
145
145
  key: string | undefined;
@@ -147,25 +147,25 @@ export interface HttpActionHeader {
147
147
  }
148
148
  export interface HttpAction {
149
149
  url: string | undefined;
150
- confirmationUrl?: string;
151
- headers?: HttpActionHeader[];
152
- auth?: HttpAuthorization;
150
+ confirmationUrl?: string | undefined;
151
+ headers?: HttpActionHeader[] | undefined;
152
+ auth?: HttpAuthorization | undefined;
153
153
  }
154
154
  export interface IotAnalyticsAction {
155
- channelArn?: string;
156
- channelName?: string;
157
- batchMode?: boolean;
158
- roleArn?: string;
155
+ channelArn?: string | undefined;
156
+ channelName?: string | undefined;
157
+ batchMode?: boolean | undefined;
158
+ roleArn?: string | undefined;
159
159
  }
160
160
  export interface IotEventsAction {
161
161
  inputName: string | undefined;
162
- messageId?: string;
163
- batchMode?: boolean;
162
+ messageId?: string | undefined;
163
+ batchMode?: boolean | undefined;
164
164
  roleArn: string | undefined;
165
165
  }
166
166
  export interface AssetPropertyTimestamp {
167
167
  timeInSeconds: string | undefined;
168
- offsetInNanos?: string;
168
+ offsetInNanos?: string | undefined;
169
169
  }
170
170
  export type AssetPropertyVariant =
171
171
  | AssetPropertyVariant.BooleanValueMember
@@ -221,13 +221,13 @@ export declare namespace AssetPropertyVariant {
221
221
  export interface AssetPropertyValue {
222
222
  value: AssetPropertyVariant | undefined;
223
223
  timestamp: AssetPropertyTimestamp | undefined;
224
- quality?: string;
224
+ quality?: string | undefined;
225
225
  }
226
226
  export interface PutAssetPropertyValueEntry {
227
- entryId?: string;
228
- assetId?: string;
229
- propertyId?: string;
230
- propertyAlias?: string;
227
+ entryId?: string | undefined;
228
+ assetId?: string | undefined;
229
+ propertyId?: string | undefined;
230
+ propertyAlias?: string | undefined;
231
231
  propertyValues: AssetPropertyValue[] | undefined;
232
232
  }
233
233
  export interface IotSiteWiseAction {
@@ -241,28 +241,28 @@ export interface KafkaActionHeader {
241
241
  export interface KafkaAction {
242
242
  destinationArn: string | undefined;
243
243
  topic: string | undefined;
244
- key?: string;
245
- partition?: string;
244
+ key?: string | undefined;
245
+ partition?: string | undefined;
246
246
  clientProperties: Record<string, string> | undefined;
247
- headers?: KafkaActionHeader[];
247
+ headers?: KafkaActionHeader[] | undefined;
248
248
  }
249
249
  export interface KinesisAction {
250
250
  roleArn: string | undefined;
251
251
  streamName: string | undefined;
252
- partitionKey?: string;
252
+ partitionKey?: string | undefined;
253
253
  }
254
254
  export interface LambdaAction {
255
255
  functionArn: string | undefined;
256
256
  }
257
257
  export interface LocationTimestamp {
258
258
  value: string | undefined;
259
- unit?: string;
259
+ unit?: string | undefined;
260
260
  }
261
261
  export interface LocationAction {
262
262
  roleArn: string | undefined;
263
263
  trackerName: string | undefined;
264
264
  deviceId: string | undefined;
265
- timestamp?: LocationTimestamp;
265
+ timestamp?: LocationTimestamp | undefined;
266
266
  latitude: string | undefined;
267
267
  longitude: string | undefined;
268
268
  }
@@ -278,18 +278,18 @@ export interface UserProperty {
278
278
  value: string | undefined;
279
279
  }
280
280
  export interface MqttHeaders {
281
- payloadFormatIndicator?: string;
282
- contentType?: string;
283
- responseTopic?: string;
284
- correlationData?: string;
285
- messageExpiry?: string;
286
- userProperties?: UserProperty[];
281
+ payloadFormatIndicator?: string | undefined;
282
+ contentType?: string | undefined;
283
+ responseTopic?: string | undefined;
284
+ correlationData?: string | undefined;
285
+ messageExpiry?: string | undefined;
286
+ userProperties?: UserProperty[] | undefined;
287
287
  }
288
288
  export interface RepublishAction {
289
289
  roleArn: string | undefined;
290
290
  topic: string | undefined;
291
- qos?: number;
292
- headers?: MqttHeaders;
291
+ qos?: number | undefined;
292
+ headers?: MqttHeaders | undefined;
293
293
  }
294
294
  export declare const CannedAccessControlList: {
295
295
  readonly AuthenticatedRead: "authenticated-read";
@@ -307,7 +307,7 @@ export interface S3Action {
307
307
  roleArn: string | undefined;
308
308
  bucketName: string | undefined;
309
309
  key: string | undefined;
310
- cannedAcl?: CannedAccessControlList;
310
+ cannedAcl?: CannedAccessControlList | undefined;
311
311
  }
312
312
  export interface SalesforceAction {
313
313
  token: string | undefined;
@@ -321,15 +321,15 @@ export type MessageFormat = (typeof MessageFormat)[keyof typeof MessageFormat];
321
321
  export interface SnsAction {
322
322
  targetArn: string | undefined;
323
323
  roleArn: string | undefined;
324
- messageFormat?: MessageFormat;
324
+ messageFormat?: MessageFormat | undefined;
325
325
  }
326
326
  export interface SqsAction {
327
327
  roleArn: string | undefined;
328
328
  queueUrl: string | undefined;
329
- useBase64?: boolean;
329
+ useBase64?: boolean | undefined;
330
330
  }
331
331
  export interface StepFunctionsAction {
332
- executionNamePrefix?: string;
332
+ executionNamePrefix?: string | undefined;
333
333
  stateMachineName: string | undefined;
334
334
  roleArn: string | undefined;
335
335
  }
@@ -346,32 +346,32 @@ export interface TimestreamAction {
346
346
  databaseName: string | undefined;
347
347
  tableName: string | undefined;
348
348
  dimensions: TimestreamDimension[] | undefined;
349
- timestamp?: TimestreamTimestamp;
349
+ timestamp?: TimestreamTimestamp | undefined;
350
350
  }
351
351
  export interface Action {
352
- dynamoDB?: DynamoDBAction;
353
- dynamoDBv2?: DynamoDBv2Action;
354
- lambda?: LambdaAction;
355
- sns?: SnsAction;
356
- sqs?: SqsAction;
357
- kinesis?: KinesisAction;
358
- republish?: RepublishAction;
359
- s3?: S3Action;
360
- firehose?: FirehoseAction;
361
- cloudwatchMetric?: CloudwatchMetricAction;
362
- cloudwatchAlarm?: CloudwatchAlarmAction;
363
- cloudwatchLogs?: CloudwatchLogsAction;
364
- elasticsearch?: ElasticsearchAction;
365
- salesforce?: SalesforceAction;
366
- iotAnalytics?: IotAnalyticsAction;
367
- iotEvents?: IotEventsAction;
368
- iotSiteWise?: IotSiteWiseAction;
369
- stepFunctions?: StepFunctionsAction;
370
- timestream?: TimestreamAction;
371
- http?: HttpAction;
372
- kafka?: KafkaAction;
373
- openSearch?: OpenSearchAction;
374
- location?: LocationAction;
352
+ dynamoDB?: DynamoDBAction | undefined;
353
+ dynamoDBv2?: DynamoDBv2Action | undefined;
354
+ lambda?: LambdaAction | undefined;
355
+ sns?: SnsAction | undefined;
356
+ sqs?: SqsAction | undefined;
357
+ kinesis?: KinesisAction | undefined;
358
+ republish?: RepublishAction | undefined;
359
+ s3?: S3Action | undefined;
360
+ firehose?: FirehoseAction | undefined;
361
+ cloudwatchMetric?: CloudwatchMetricAction | undefined;
362
+ cloudwatchAlarm?: CloudwatchAlarmAction | undefined;
363
+ cloudwatchLogs?: CloudwatchLogsAction | undefined;
364
+ elasticsearch?: ElasticsearchAction | undefined;
365
+ salesforce?: SalesforceAction | undefined;
366
+ iotAnalytics?: IotAnalyticsAction | undefined;
367
+ iotEvents?: IotEventsAction | undefined;
368
+ iotSiteWise?: IotSiteWiseAction | undefined;
369
+ stepFunctions?: StepFunctionsAction | undefined;
370
+ timestream?: TimestreamAction | undefined;
371
+ http?: HttpAction | undefined;
372
+ kafka?: KafkaAction | undefined;
373
+ openSearch?: OpenSearchAction | undefined;
374
+ location?: LocationAction | undefined;
375
375
  }
376
376
  export declare const ActionType: {
377
377
  readonly CONNECT: "CONNECT";
@@ -405,24 +405,24 @@ export interface MachineLearningDetectionConfig {
405
405
  confidenceLevel: ConfidenceLevel | undefined;
406
406
  }
407
407
  export interface StatisticalThreshold {
408
- statistic?: string;
408
+ statistic?: string | undefined;
409
409
  }
410
410
  export interface MetricValue {
411
- count?: number;
412
- cidrs?: string[];
413
- ports?: number[];
414
- number?: number;
415
- numbers?: number[];
416
- strings?: string[];
411
+ count?: number | undefined;
412
+ cidrs?: string[] | undefined;
413
+ ports?: number[] | undefined;
414
+ number?: number | undefined;
415
+ numbers?: number[] | undefined;
416
+ strings?: string[] | undefined;
417
417
  }
418
418
  export interface BehaviorCriteria {
419
- comparisonOperator?: ComparisonOperator;
420
- value?: MetricValue;
421
- durationSeconds?: number;
422
- consecutiveDatapointsToAlarm?: number;
423
- consecutiveDatapointsToClear?: number;
424
- statisticalThreshold?: StatisticalThreshold;
425
- mlDetectionConfig?: MachineLearningDetectionConfig;
419
+ comparisonOperator?: ComparisonOperator | undefined;
420
+ value?: MetricValue | undefined;
421
+ durationSeconds?: number | undefined;
422
+ consecutiveDatapointsToAlarm?: number | undefined;
423
+ consecutiveDatapointsToClear?: number | undefined;
424
+ statisticalThreshold?: StatisticalThreshold | undefined;
425
+ mlDetectionConfig?: MachineLearningDetectionConfig | undefined;
426
426
  }
427
427
  export declare const DimensionValueOperator: {
428
428
  readonly IN: "IN";
@@ -432,15 +432,15 @@ export type DimensionValueOperator =
432
432
  (typeof DimensionValueOperator)[keyof typeof DimensionValueOperator];
433
433
  export interface MetricDimension {
434
434
  dimensionName: string | undefined;
435
- operator?: DimensionValueOperator;
435
+ operator?: DimensionValueOperator | undefined;
436
436
  }
437
437
  export interface Behavior {
438
438
  name: string | undefined;
439
- metric?: string;
440
- metricDimension?: MetricDimension;
441
- criteria?: BehaviorCriteria;
442
- suppressAlerts?: boolean;
443
- exportMetric?: boolean;
439
+ metric?: string | undefined;
440
+ metricDimension?: MetricDimension | undefined;
441
+ criteria?: BehaviorCriteria | undefined;
442
+ suppressAlerts?: boolean | undefined;
443
+ exportMetric?: boolean | undefined;
444
444
  }
445
445
  export declare const VerificationState: {
446
446
  readonly BENIGN_POSITIVE: "BENIGN_POSITIVE";
@@ -451,42 +451,42 @@ export declare const VerificationState: {
451
451
  export type VerificationState =
452
452
  (typeof VerificationState)[keyof typeof VerificationState];
453
453
  export interface ViolationEventAdditionalInfo {
454
- confidenceLevel?: ConfidenceLevel;
454
+ confidenceLevel?: ConfidenceLevel | undefined;
455
455
  }
456
456
  export interface ActiveViolation {
457
- violationId?: string;
458
- thingName?: string;
459
- securityProfileName?: string;
460
- behavior?: Behavior;
461
- lastViolationValue?: MetricValue;
462
- violationEventAdditionalInfo?: ViolationEventAdditionalInfo;
463
- verificationState?: VerificationState;
464
- verificationStateDescription?: string;
465
- lastViolationTime?: Date;
466
- violationStartTime?: Date;
457
+ violationId?: string | undefined;
458
+ thingName?: string | undefined;
459
+ securityProfileName?: string | undefined;
460
+ behavior?: Behavior | undefined;
461
+ lastViolationValue?: MetricValue | undefined;
462
+ violationEventAdditionalInfo?: ViolationEventAdditionalInfo | undefined;
463
+ verificationState?: VerificationState | undefined;
464
+ verificationStateDescription?: string | undefined;
465
+ lastViolationTime?: Date | undefined;
466
+ violationStartTime?: Date | undefined;
467
467
  }
468
468
  export interface MetricToRetain {
469
469
  metric: string | undefined;
470
- metricDimension?: MetricDimension;
471
- exportMetric?: boolean;
470
+ metricDimension?: MetricDimension | undefined;
471
+ exportMetric?: boolean | undefined;
472
472
  }
473
473
  export interface AddThingsToThingGroupParams {
474
474
  thingGroupNames: string[] | undefined;
475
- overrideDynamicGroups?: boolean;
475
+ overrideDynamicGroups?: boolean | undefined;
476
476
  }
477
477
  export interface AddThingToBillingGroupRequest {
478
- billingGroupName?: string;
479
- billingGroupArn?: string;
480
- thingName?: string;
481
- thingArn?: string;
478
+ billingGroupName?: string | undefined;
479
+ billingGroupArn?: string | undefined;
480
+ thingName?: string | undefined;
481
+ thingArn?: string | undefined;
482
482
  }
483
483
  export interface AddThingToBillingGroupResponse {}
484
484
  export interface AddThingToThingGroupRequest {
485
- thingGroupName?: string;
486
- thingGroupArn?: string;
487
- thingName?: string;
488
- thingArn?: string;
489
- overrideDynamicGroups?: boolean;
485
+ thingGroupName?: string | undefined;
486
+ thingGroupArn?: string | undefined;
487
+ thingName?: string | undefined;
488
+ thingArn?: string | undefined;
489
+ overrideDynamicGroups?: boolean | undefined;
490
490
  }
491
491
  export interface AddThingToThingGroupResponse {}
492
492
  export declare const AggregationTypeName: {
@@ -498,7 +498,7 @@ export type AggregationTypeName =
498
498
  (typeof AggregationTypeName)[keyof typeof AggregationTypeName];
499
499
  export interface AggregationType {
500
500
  name: AggregationTypeName | undefined;
501
- values?: string[];
501
+ values?: string[] | undefined;
502
502
  }
503
503
  export interface AlertTarget {
504
504
  alertTargetArn: string | undefined;
@@ -510,11 +510,11 @@ export declare const AlertTargetType: {
510
510
  export type AlertTargetType =
511
511
  (typeof AlertTargetType)[keyof typeof AlertTargetType];
512
512
  export interface Policy {
513
- policyName?: string;
514
- policyArn?: string;
513
+ policyName?: string | undefined;
514
+ policyArn?: string | undefined;
515
515
  }
516
516
  export interface Allowed {
517
- policies?: Policy[];
517
+ policies?: Policy[] | undefined;
518
518
  }
519
519
  export declare const ApplicationProtocol: {
520
520
  readonly DEFAULT: "DEFAULT";
@@ -525,18 +525,18 @@ export declare const ApplicationProtocol: {
525
525
  export type ApplicationProtocol =
526
526
  (typeof ApplicationProtocol)[keyof typeof ApplicationProtocol];
527
527
  export interface S3Location {
528
- bucket?: string;
529
- key?: string;
530
- version?: string;
528
+ bucket?: string | undefined;
529
+ key?: string | undefined;
530
+ version?: string | undefined;
531
531
  }
532
532
  export interface Sbom {
533
- s3Location?: S3Location;
533
+ s3Location?: S3Location | undefined;
534
534
  }
535
535
  export interface AssociateSbomWithPackageVersionRequest {
536
536
  packageName: string | undefined;
537
537
  versionName: string | undefined;
538
538
  sbom: Sbom | undefined;
539
- clientToken?: string;
539
+ clientToken?: string | undefined;
540
540
  }
541
541
  export declare const SbomValidationStatus: {
542
542
  readonly FAILED: "FAILED";
@@ -546,15 +546,15 @@ export declare const SbomValidationStatus: {
546
546
  export type SbomValidationStatus =
547
547
  (typeof SbomValidationStatus)[keyof typeof SbomValidationStatus];
548
548
  export interface AssociateSbomWithPackageVersionResponse {
549
- packageName?: string;
550
- versionName?: string;
551
- sbom?: Sbom;
552
- sbomValidationStatus?: SbomValidationStatus;
549
+ packageName?: string | undefined;
550
+ versionName?: string | undefined;
551
+ sbom?: Sbom | undefined;
552
+ sbomValidationStatus?: SbomValidationStatus | undefined;
553
553
  }
554
554
  export declare class ConflictException extends __BaseException {
555
555
  readonly name: "ConflictException";
556
556
  readonly $fault: "client";
557
- resourceId?: string;
557
+ resourceId?: string | undefined;
558
558
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
559
559
  }
560
560
  export declare class InternalServerException extends __BaseException {
@@ -581,13 +581,13 @@ export declare class ValidationException extends __BaseException {
581
581
  export interface AssociateTargetsWithJobRequest {
582
582
  targets: string[] | undefined;
583
583
  jobId: string | undefined;
584
- comment?: string;
585
- namespaceId?: string;
584
+ comment?: string | undefined;
585
+ namespaceId?: string | undefined;
586
586
  }
587
587
  export interface AssociateTargetsWithJobResponse {
588
- jobArn?: string;
589
- jobId?: string;
590
- description?: string;
588
+ jobArn?: string | undefined;
589
+ jobId?: string | undefined;
590
+ description?: string | undefined;
591
591
  }
592
592
  export declare class LimitExceededException extends __BaseException {
593
593
  readonly name: "LimitExceededException";
@@ -622,11 +622,11 @@ export interface AttachThingPrincipalRequest {
622
622
  }
623
623
  export interface AttachThingPrincipalResponse {}
624
624
  export interface AttributePayload {
625
- attributes?: Record<string, string>;
626
- merge?: boolean;
625
+ attributes?: Record<string, string> | undefined;
626
+ merge?: boolean | undefined;
627
627
  }
628
628
  export interface AuditCheckConfiguration {
629
- enabled?: boolean;
629
+ enabled?: boolean | undefined;
630
630
  }
631
631
  export declare const AuditCheckRunStatus: {
632
632
  readonly CANCELED: "CANCELED";
@@ -639,34 +639,34 @@ export declare const AuditCheckRunStatus: {
639
639
  export type AuditCheckRunStatus =
640
640
  (typeof AuditCheckRunStatus)[keyof typeof AuditCheckRunStatus];
641
641
  export interface AuditCheckDetails {
642
- checkRunStatus?: AuditCheckRunStatus;
643
- checkCompliant?: boolean;
644
- totalResourcesCount?: number;
645
- nonCompliantResourcesCount?: number;
646
- suppressedNonCompliantResourcesCount?: number;
647
- errorCode?: string;
648
- message?: string;
642
+ checkRunStatus?: AuditCheckRunStatus | undefined;
643
+ checkCompliant?: boolean | undefined;
644
+ totalResourcesCount?: number | undefined;
645
+ nonCompliantResourcesCount?: number | undefined;
646
+ suppressedNonCompliantResourcesCount?: number | undefined;
647
+ errorCode?: string | undefined;
648
+ message?: string | undefined;
649
649
  }
650
650
  export interface IssuerCertificateIdentifier {
651
- issuerCertificateSubject?: string;
652
- issuerId?: string;
653
- issuerCertificateSerialNumber?: string;
651
+ issuerCertificateSubject?: string | undefined;
652
+ issuerId?: string | undefined;
653
+ issuerCertificateSerialNumber?: string | undefined;
654
654
  }
655
655
  export interface PolicyVersionIdentifier {
656
- policyName?: string;
657
- policyVersionId?: string;
656
+ policyName?: string | undefined;
657
+ policyVersionId?: string | undefined;
658
658
  }
659
659
  export interface ResourceIdentifier {
660
- deviceCertificateId?: string;
661
- caCertificateId?: string;
662
- cognitoIdentityPoolId?: string;
663
- clientId?: string;
664
- policyVersionIdentifier?: PolicyVersionIdentifier;
665
- account?: string;
666
- iamRoleArn?: string;
667
- roleAliasArn?: string;
668
- issuerCertificateIdentifier?: IssuerCertificateIdentifier;
669
- deviceCertificateArn?: string;
660
+ deviceCertificateId?: string | undefined;
661
+ caCertificateId?: string | undefined;
662
+ cognitoIdentityPoolId?: string | undefined;
663
+ clientId?: string | undefined;
664
+ policyVersionIdentifier?: PolicyVersionIdentifier | undefined;
665
+ account?: string | undefined;
666
+ iamRoleArn?: string | undefined;
667
+ roleAliasArn?: string | undefined;
668
+ issuerCertificateIdentifier?: IssuerCertificateIdentifier | undefined;
669
+ deviceCertificateArn?: string | undefined;
670
670
  }
671
671
  export declare const ResourceType: {
672
672
  readonly ACCOUNT_SETTINGS: "ACCOUNT_SETTINGS";
@@ -681,14 +681,14 @@ export declare const ResourceType: {
681
681
  };
682
682
  export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
683
683
  export interface NonCompliantResource {
684
- resourceType?: ResourceType;
685
- resourceIdentifier?: ResourceIdentifier;
686
- additionalInfo?: Record<string, string>;
684
+ resourceType?: ResourceType | undefined;
685
+ resourceIdentifier?: ResourceIdentifier | undefined;
686
+ additionalInfo?: Record<string, string> | undefined;
687
687
  }
688
688
  export interface RelatedResource {
689
- resourceType?: ResourceType;
690
- resourceIdentifier?: ResourceIdentifier;
691
- additionalInfo?: Record<string, string>;
689
+ resourceType?: ResourceType | undefined;
690
+ resourceIdentifier?: ResourceIdentifier | undefined;
691
+ additionalInfo?: Record<string, string> | undefined;
692
692
  }
693
693
  export declare const AuditFindingSeverity: {
694
694
  readonly CRITICAL: "CRITICAL";
@@ -699,17 +699,17 @@ export declare const AuditFindingSeverity: {
699
699
  export type AuditFindingSeverity =
700
700
  (typeof AuditFindingSeverity)[keyof typeof AuditFindingSeverity];
701
701
  export interface AuditFinding {
702
- findingId?: string;
703
- taskId?: string;
704
- checkName?: string;
705
- taskStartTime?: Date;
706
- findingTime?: Date;
707
- severity?: AuditFindingSeverity;
708
- nonCompliantResource?: NonCompliantResource;
709
- relatedResources?: RelatedResource[];
710
- reasonForNonCompliance?: string;
711
- reasonForNonComplianceCode?: string;
712
- isSuppressed?: boolean;
702
+ findingId?: string | undefined;
703
+ taskId?: string | undefined;
704
+ checkName?: string | undefined;
705
+ taskStartTime?: Date | undefined;
706
+ findingTime?: Date | undefined;
707
+ severity?: AuditFindingSeverity | undefined;
708
+ nonCompliantResource?: NonCompliantResource | undefined;
709
+ relatedResources?: RelatedResource[] | undefined;
710
+ reasonForNonCompliance?: string | undefined;
711
+ reasonForNonComplianceCode?: string | undefined;
712
+ isSuppressed?: boolean | undefined;
713
713
  }
714
714
  export declare const AuditFrequency: {
715
715
  readonly BIWEEKLY: "BIWEEKLY";
@@ -730,15 +730,15 @@ export declare const AuditMitigationActionsExecutionStatus: {
730
730
  export type AuditMitigationActionsExecutionStatus =
731
731
  (typeof AuditMitigationActionsExecutionStatus)[keyof typeof AuditMitigationActionsExecutionStatus];
732
732
  export interface AuditMitigationActionExecutionMetadata {
733
- taskId?: string;
734
- findingId?: string;
735
- actionName?: string;
736
- actionId?: string;
737
- status?: AuditMitigationActionsExecutionStatus;
738
- startTime?: Date;
739
- endTime?: Date;
740
- errorCode?: string;
741
- message?: string;
733
+ taskId?: string | undefined;
734
+ findingId?: string | undefined;
735
+ actionName?: string | undefined;
736
+ actionId?: string | undefined;
737
+ status?: AuditMitigationActionsExecutionStatus | undefined;
738
+ startTime?: Date | undefined;
739
+ endTime?: Date | undefined;
740
+ errorCode?: string | undefined;
741
+ message?: string | undefined;
742
742
  }
743
743
  export declare const AuditMitigationActionsTaskStatus: {
744
744
  readonly CANCELED: "CANCELED";
@@ -749,26 +749,26 @@ export declare const AuditMitigationActionsTaskStatus: {
749
749
  export type AuditMitigationActionsTaskStatus =
750
750
  (typeof AuditMitigationActionsTaskStatus)[keyof typeof AuditMitigationActionsTaskStatus];
751
751
  export interface AuditMitigationActionsTaskMetadata {
752
- taskId?: string;
753
- startTime?: Date;
754
- taskStatus?: AuditMitigationActionsTaskStatus;
752
+ taskId?: string | undefined;
753
+ startTime?: Date | undefined;
754
+ taskStatus?: AuditMitigationActionsTaskStatus | undefined;
755
755
  }
756
756
  export interface TaskStatisticsForAuditCheck {
757
- totalFindingsCount?: number;
758
- failedFindingsCount?: number;
759
- succeededFindingsCount?: number;
760
- skippedFindingsCount?: number;
761
- canceledFindingsCount?: number;
757
+ totalFindingsCount?: number | undefined;
758
+ failedFindingsCount?: number | undefined;
759
+ succeededFindingsCount?: number | undefined;
760
+ skippedFindingsCount?: number | undefined;
761
+ canceledFindingsCount?: number | undefined;
762
762
  }
763
763
  export interface AuditMitigationActionsTaskTarget {
764
- auditTaskId?: string;
765
- findingIds?: string[];
766
- auditCheckToReasonCodeFilter?: Record<string, string[]>;
764
+ auditTaskId?: string | undefined;
765
+ findingIds?: string[] | undefined;
766
+ auditCheckToReasonCodeFilter?: Record<string, string[]> | undefined;
767
767
  }
768
768
  export interface AuditNotificationTarget {
769
- targetArn?: string;
770
- roleArn?: string;
771
- enabled?: boolean;
769
+ targetArn?: string | undefined;
770
+ roleArn?: string | undefined;
771
+ enabled?: boolean | undefined;
772
772
  }
773
773
  export declare const AuditNotificationType: {
774
774
  readonly SNS: "SNS";
@@ -778,9 +778,9 @@ export type AuditNotificationType =
778
778
  export interface AuditSuppression {
779
779
  checkName: string | undefined;
780
780
  resourceIdentifier: ResourceIdentifier | undefined;
781
- expirationDate?: Date;
782
- suppressIndefinitely?: boolean;
783
- description?: string;
781
+ expirationDate?: Date | undefined;
782
+ suppressIndefinitely?: boolean | undefined;
783
+ description?: string | undefined;
784
784
  }
785
785
  export declare const AuditTaskStatus: {
786
786
  readonly CANCELED: "CANCELED";
@@ -796,9 +796,9 @@ export declare const AuditTaskType: {
796
796
  };
797
797
  export type AuditTaskType = (typeof AuditTaskType)[keyof typeof AuditTaskType];
798
798
  export interface AuditTaskMetadata {
799
- taskId?: string;
800
- taskStatus?: AuditTaskStatus;
801
- taskType?: AuditTaskType;
799
+ taskId?: string | undefined;
800
+ taskStatus?: AuditTaskStatus | undefined;
801
+ taskType?: AuditTaskType | undefined;
802
802
  }
803
803
  export declare const AuthDecision: {
804
804
  readonly ALLOWED: "ALLOWED";
@@ -816,12 +816,12 @@ export declare const AuthenticationType: {
816
816
  export type AuthenticationType =
817
817
  (typeof AuthenticationType)[keyof typeof AuthenticationType];
818
818
  export interface AuthInfo {
819
- actionType?: ActionType;
819
+ actionType?: ActionType | undefined;
820
820
  resources: string[] | undefined;
821
821
  }
822
822
  export interface AuthorizerConfig {
823
- defaultAuthorizerName?: string;
824
- allowAuthorizerOverride?: boolean;
823
+ defaultAuthorizerName?: string | undefined;
824
+ allowAuthorizerOverride?: boolean | undefined;
825
825
  }
826
826
  export declare const AuthorizerStatus: {
827
827
  readonly ACTIVE: "ACTIVE";
@@ -830,37 +830,37 @@ export declare const AuthorizerStatus: {
830
830
  export type AuthorizerStatus =
831
831
  (typeof AuthorizerStatus)[keyof typeof AuthorizerStatus];
832
832
  export interface AuthorizerDescription {
833
- authorizerName?: string;
834
- authorizerArn?: string;
835
- authorizerFunctionArn?: string;
836
- tokenKeyName?: string;
837
- tokenSigningPublicKeys?: Record<string, string>;
838
- status?: AuthorizerStatus;
839
- creationDate?: Date;
840
- lastModifiedDate?: Date;
841
- signingDisabled?: boolean;
842
- enableCachingForHttp?: boolean;
833
+ authorizerName?: string | undefined;
834
+ authorizerArn?: string | undefined;
835
+ authorizerFunctionArn?: string | undefined;
836
+ tokenKeyName?: string | undefined;
837
+ tokenSigningPublicKeys?: Record<string, string> | undefined;
838
+ status?: AuthorizerStatus | undefined;
839
+ creationDate?: Date | undefined;
840
+ lastModifiedDate?: Date | undefined;
841
+ signingDisabled?: boolean | undefined;
842
+ enableCachingForHttp?: boolean | undefined;
843
843
  }
844
844
  export interface AuthorizerSummary {
845
- authorizerName?: string;
846
- authorizerArn?: string;
845
+ authorizerName?: string | undefined;
846
+ authorizerArn?: string | undefined;
847
847
  }
848
848
  export interface ExplicitDeny {
849
- policies?: Policy[];
849
+ policies?: Policy[] | undefined;
850
850
  }
851
851
  export interface ImplicitDeny {
852
- policies?: Policy[];
852
+ policies?: Policy[] | undefined;
853
853
  }
854
854
  export interface Denied {
855
- implicitDeny?: ImplicitDeny;
856
- explicitDeny?: ExplicitDeny;
855
+ implicitDeny?: ImplicitDeny | undefined;
856
+ explicitDeny?: ExplicitDeny | undefined;
857
857
  }
858
858
  export interface AuthResult {
859
- authInfo?: AuthInfo;
860
- allowed?: Allowed;
861
- denied?: Denied;
862
- authDecision?: AuthDecision;
863
- missingContextValues?: string[];
859
+ authInfo?: AuthInfo | undefined;
860
+ allowed?: Allowed | undefined;
861
+ denied?: Denied | undefined;
862
+ authDecision?: AuthDecision | undefined;
863
+ missingContextValues?: string[] | undefined;
864
864
  }
865
865
  export declare const AutoRegistrationStatus: {
866
866
  readonly DISABLE: "DISABLE";
@@ -885,21 +885,21 @@ export interface CancelDetectMitigationActionsTaskRequest {
885
885
  export interface CancelDetectMitigationActionsTaskResponse {}
886
886
  export interface CancelJobRequest {
887
887
  jobId: string | undefined;
888
- reasonCode?: string;
889
- comment?: string;
890
- force?: boolean;
888
+ reasonCode?: string | undefined;
889
+ comment?: string | undefined;
890
+ force?: boolean | undefined;
891
891
  }
892
892
  export interface CancelJobResponse {
893
- jobArn?: string;
894
- jobId?: string;
895
- description?: string;
893
+ jobArn?: string | undefined;
894
+ jobId?: string | undefined;
895
+ description?: string | undefined;
896
896
  }
897
897
  export interface CancelJobExecutionRequest {
898
898
  jobId: string | undefined;
899
899
  thingName: string | undefined;
900
- force?: boolean;
901
- expectedVersion?: number;
902
- statusDetails?: Record<string, string>;
900
+ force?: boolean | undefined;
901
+ expectedVersion?: number | undefined;
902
+ statusDetails?: Record<string, string> | undefined;
903
903
  }
904
904
  export declare class InvalidStateTransitionException extends __BaseException {
905
905
  readonly name: "InvalidStateTransitionException";
@@ -935,60 +935,60 @@ export declare class InternalException extends __BaseException {
935
935
  export interface CreateAuditSuppressionRequest {
936
936
  checkName: string | undefined;
937
937
  resourceIdentifier: ResourceIdentifier | undefined;
938
- expirationDate?: Date;
939
- suppressIndefinitely?: boolean;
940
- description?: string;
941
- clientRequestToken?: string;
938
+ expirationDate?: Date | undefined;
939
+ suppressIndefinitely?: boolean | undefined;
940
+ description?: string | undefined;
941
+ clientRequestToken?: string | undefined;
942
942
  }
943
943
  export interface CreateAuditSuppressionResponse {}
944
944
  export declare class ResourceAlreadyExistsException extends __BaseException {
945
945
  readonly name: "ResourceAlreadyExistsException";
946
946
  readonly $fault: "client";
947
- resourceId?: string;
948
- resourceArn?: string;
947
+ resourceId?: string | undefined;
948
+ resourceArn?: string | undefined;
949
949
  constructor(
950
950
  opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>
951
951
  );
952
952
  }
953
953
  export interface Tag {
954
954
  Key: string | undefined;
955
- Value?: string;
955
+ Value?: string | undefined;
956
956
  }
957
957
  export interface CreateAuthorizerRequest {
958
958
  authorizerName: string | undefined;
959
959
  authorizerFunctionArn: string | undefined;
960
- tokenKeyName?: string;
961
- tokenSigningPublicKeys?: Record<string, string>;
962
- status?: AuthorizerStatus;
963
- tags?: Tag[];
964
- signingDisabled?: boolean;
965
- enableCachingForHttp?: boolean;
960
+ tokenKeyName?: string | undefined;
961
+ tokenSigningPublicKeys?: Record<string, string> | undefined;
962
+ status?: AuthorizerStatus | undefined;
963
+ tags?: Tag[] | undefined;
964
+ signingDisabled?: boolean | undefined;
965
+ enableCachingForHttp?: boolean | undefined;
966
966
  }
967
967
  export interface CreateAuthorizerResponse {
968
- authorizerName?: string;
969
- authorizerArn?: string;
968
+ authorizerName?: string | undefined;
969
+ authorizerArn?: string | undefined;
970
970
  }
971
971
  export interface BillingGroupProperties {
972
- billingGroupDescription?: string;
972
+ billingGroupDescription?: string | undefined;
973
973
  }
974
974
  export interface CreateBillingGroupRequest {
975
975
  billingGroupName: string | undefined;
976
- billingGroupProperties?: BillingGroupProperties;
977
- tags?: Tag[];
976
+ billingGroupProperties?: BillingGroupProperties | undefined;
977
+ tags?: Tag[] | undefined;
978
978
  }
979
979
  export interface CreateBillingGroupResponse {
980
- billingGroupName?: string;
981
- billingGroupArn?: string;
982
- billingGroupId?: string;
980
+ billingGroupName?: string | undefined;
981
+ billingGroupArn?: string | undefined;
982
+ billingGroupId?: string | undefined;
983
983
  }
984
984
  export interface CreateCertificateFromCsrRequest {
985
985
  certificateSigningRequest: string | undefined;
986
- setAsActive?: boolean;
986
+ setAsActive?: boolean | undefined;
987
987
  }
988
988
  export interface CreateCertificateFromCsrResponse {
989
- certificateArn?: string;
990
- certificateId?: string;
991
- certificatePem?: string;
989
+ certificateArn?: string | undefined;
990
+ certificateId?: string | undefined;
991
+ certificatePem?: string | undefined;
992
992
  }
993
993
  export declare const CertificateProviderOperation: {
994
994
  readonly CreateCertificateFromCsr: "CreateCertificateFromCsr";
@@ -999,12 +999,12 @@ export interface CreateCertificateProviderRequest {
999
999
  certificateProviderName: string | undefined;
1000
1000
  lambdaFunctionArn: string | undefined;
1001
1001
  accountDefaultForOperations: CertificateProviderOperation[] | undefined;
1002
- clientToken?: string;
1003
- tags?: Tag[];
1002
+ clientToken?: string | undefined;
1003
+ tags?: Tag[] | undefined;
1004
1004
  }
1005
1005
  export interface CreateCertificateProviderResponse {
1006
- certificateProviderName?: string;
1007
- certificateProviderArn?: string;
1006
+ certificateProviderName?: string | undefined;
1007
+ certificateProviderArn?: string | undefined;
1008
1008
  }
1009
1009
  export declare const CustomMetricType: {
1010
1010
  readonly IP_ADDRESS_LIST: "ip-address-list";
@@ -1016,14 +1016,14 @@ export type CustomMetricType =
1016
1016
  (typeof CustomMetricType)[keyof typeof CustomMetricType];
1017
1017
  export interface CreateCustomMetricRequest {
1018
1018
  metricName: string | undefined;
1019
- displayName?: string;
1019
+ displayName?: string | undefined;
1020
1020
  metricType: CustomMetricType | undefined;
1021
- tags?: Tag[];
1022
- clientRequestToken?: string;
1021
+ tags?: Tag[] | undefined;
1022
+ clientRequestToken?: string | undefined;
1023
1023
  }
1024
1024
  export interface CreateCustomMetricResponse {
1025
- metricName?: string;
1026
- metricArn?: string;
1025
+ metricName?: string | undefined;
1026
+ metricArn?: string | undefined;
1027
1027
  }
1028
1028
  export declare const DimensionType: {
1029
1029
  readonly TOPIC_FILTER: "TOPIC_FILTER";
@@ -1033,12 +1033,12 @@ export interface CreateDimensionRequest {
1033
1033
  name: string | undefined;
1034
1034
  type: DimensionType | undefined;
1035
1035
  stringValues: string[] | undefined;
1036
- tags?: Tag[];
1037
- clientRequestToken?: string;
1036
+ tags?: Tag[] | undefined;
1037
+ clientRequestToken?: string | undefined;
1038
1038
  }
1039
1039
  export interface CreateDimensionResponse {
1040
- name?: string;
1041
- arn?: string;
1040
+ name?: string | undefined;
1041
+ arn?: string | undefined;
1042
1042
  }
1043
1043
  export declare class CertificateValidationException extends __BaseException {
1044
1044
  readonly name: "CertificateValidationException";
@@ -1048,10 +1048,10 @@ export declare class CertificateValidationException extends __BaseException {
1048
1048
  );
1049
1049
  }
1050
1050
  export interface ClientCertificateConfig {
1051
- clientCertificateCallbackArn?: string;
1051
+ clientCertificateCallbackArn?: string | undefined;
1052
1052
  }
1053
1053
  export interface ServerCertificateConfig {
1054
- enableOCSPCheck?: boolean;
1054
+ enableOCSPCheck?: boolean | undefined;
1055
1055
  }
1056
1056
  export declare const ServiceType: {
1057
1057
  readonly CREDENTIAL_PROVIDER: "CREDENTIAL_PROVIDER";
@@ -1060,45 +1060,45 @@ export declare const ServiceType: {
1060
1060
  };
1061
1061
  export type ServiceType = (typeof ServiceType)[keyof typeof ServiceType];
1062
1062
  export interface TlsConfig {
1063
- securityPolicy?: string;
1063
+ securityPolicy?: string | undefined;
1064
1064
  }
1065
1065
  export interface CreateDomainConfigurationRequest {
1066
1066
  domainConfigurationName: string | undefined;
1067
- domainName?: string;
1068
- serverCertificateArns?: string[];
1069
- validationCertificateArn?: string;
1070
- authorizerConfig?: AuthorizerConfig;
1071
- serviceType?: ServiceType;
1072
- tags?: Tag[];
1073
- tlsConfig?: TlsConfig;
1074
- serverCertificateConfig?: ServerCertificateConfig;
1075
- authenticationType?: AuthenticationType;
1076
- applicationProtocol?: ApplicationProtocol;
1077
- clientCertificateConfig?: ClientCertificateConfig;
1067
+ domainName?: string | undefined;
1068
+ serverCertificateArns?: string[] | undefined;
1069
+ validationCertificateArn?: string | undefined;
1070
+ authorizerConfig?: AuthorizerConfig | undefined;
1071
+ serviceType?: ServiceType | undefined;
1072
+ tags?: Tag[] | undefined;
1073
+ tlsConfig?: TlsConfig | undefined;
1074
+ serverCertificateConfig?: ServerCertificateConfig | undefined;
1075
+ authenticationType?: AuthenticationType | undefined;
1076
+ applicationProtocol?: ApplicationProtocol | undefined;
1077
+ clientCertificateConfig?: ClientCertificateConfig | undefined;
1078
1078
  }
1079
1079
  export interface CreateDomainConfigurationResponse {
1080
- domainConfigurationName?: string;
1081
- domainConfigurationArn?: string;
1080
+ domainConfigurationName?: string | undefined;
1081
+ domainConfigurationArn?: string | undefined;
1082
1082
  }
1083
1083
  export interface ThingGroupProperties {
1084
- thingGroupDescription?: string;
1085
- attributePayload?: AttributePayload;
1084
+ thingGroupDescription?: string | undefined;
1085
+ attributePayload?: AttributePayload | undefined;
1086
1086
  }
1087
1087
  export interface CreateDynamicThingGroupRequest {
1088
1088
  thingGroupName: string | undefined;
1089
- thingGroupProperties?: ThingGroupProperties;
1090
- indexName?: string;
1089
+ thingGroupProperties?: ThingGroupProperties | undefined;
1090
+ indexName?: string | undefined;
1091
1091
  queryString: string | undefined;
1092
- queryVersion?: string;
1093
- tags?: Tag[];
1092
+ queryVersion?: string | undefined;
1093
+ tags?: Tag[] | undefined;
1094
1094
  }
1095
1095
  export interface CreateDynamicThingGroupResponse {
1096
- thingGroupName?: string;
1097
- thingGroupArn?: string;
1098
- thingGroupId?: string;
1099
- indexName?: string;
1100
- queryString?: string;
1101
- queryVersion?: string;
1096
+ thingGroupName?: string | undefined;
1097
+ thingGroupArn?: string | undefined;
1098
+ thingGroupId?: string | undefined;
1099
+ indexName?: string | undefined;
1100
+ queryString?: string | undefined;
1101
+ queryVersion?: string | undefined;
1102
1102
  }
1103
1103
  export declare class InvalidQueryException extends __BaseException {
1104
1104
  readonly name: "InvalidQueryException";
@@ -1144,15 +1144,15 @@ export interface CreateFleetMetricRequest {
1144
1144
  aggregationType: AggregationType | undefined;
1145
1145
  period: number | undefined;
1146
1146
  aggregationField: string | undefined;
1147
- description?: string;
1148
- queryVersion?: string;
1149
- indexName?: string;
1150
- unit?: FleetMetricUnit;
1151
- tags?: Tag[];
1147
+ description?: string | undefined;
1148
+ queryVersion?: string | undefined;
1149
+ indexName?: string | undefined;
1150
+ unit?: FleetMetricUnit | undefined;
1151
+ tags?: Tag[] | undefined;
1152
1152
  }
1153
1153
  export interface CreateFleetMetricResponse {
1154
- metricName?: string;
1155
- metricArn?: string;
1154
+ metricName?: string | undefined;
1155
+ metricArn?: string | undefined;
1156
1156
  }
1157
1157
  export declare class IndexNotReadyException extends __BaseException {
1158
1158
  readonly name: "IndexNotReadyException";
@@ -1183,8 +1183,8 @@ export interface JobExecutionsRetryConfig {
1183
1183
  criteriaList: RetryCriteria[] | undefined;
1184
1184
  }
1185
1185
  export interface RateIncreaseCriteria {
1186
- numberOfNotifiedThings?: number;
1187
- numberOfSucceededThings?: number;
1186
+ numberOfNotifiedThings?: number | undefined;
1187
+ numberOfSucceededThings?: number | undefined;
1188
1188
  }
1189
1189
  export interface ExponentialRolloutRate {
1190
1190
  baseRatePerMinute: number | undefined;
@@ -1192,12 +1192,12 @@ export interface ExponentialRolloutRate {
1192
1192
  rateIncreaseCriteria: RateIncreaseCriteria | undefined;
1193
1193
  }
1194
1194
  export interface JobExecutionsRolloutConfig {
1195
- maximumPerMinute?: number;
1196
- exponentialRate?: ExponentialRolloutRate;
1195
+ maximumPerMinute?: number | undefined;
1196
+ exponentialRate?: ExponentialRolloutRate | undefined;
1197
1197
  }
1198
1198
  export interface PresignedUrlConfig {
1199
- roleArn?: string;
1200
- expiresInSec?: number;
1199
+ roleArn?: string | undefined;
1200
+ expiresInSec?: number | undefined;
1201
1201
  }
1202
1202
  export declare const JobEndBehavior: {
1203
1203
  readonly CANCEL: "CANCEL";
@@ -1211,10 +1211,10 @@ export interface MaintenanceWindow {
1211
1211
  durationInMinutes: number | undefined;
1212
1212
  }
1213
1213
  export interface SchedulingConfig {
1214
- startTime?: string;
1215
- endTime?: string;
1216
- endBehavior?: JobEndBehavior;
1217
- maintenanceWindows?: MaintenanceWindow[];
1214
+ startTime?: string | undefined;
1215
+ endTime?: string | undefined;
1216
+ endBehavior?: JobEndBehavior | undefined;
1217
+ maintenanceWindows?: MaintenanceWindow[] | undefined;
1218
1218
  }
1219
1219
  export declare const TargetSelection: {
1220
1220
  readonly CONTINUOUS: "CONTINUOUS";
@@ -1223,63 +1223,63 @@ export declare const TargetSelection: {
1223
1223
  export type TargetSelection =
1224
1224
  (typeof TargetSelection)[keyof typeof TargetSelection];
1225
1225
  export interface TimeoutConfig {
1226
- inProgressTimeoutInMinutes?: number;
1226
+ inProgressTimeoutInMinutes?: number | undefined;
1227
1227
  }
1228
1228
  export interface CreateJobRequest {
1229
1229
  jobId: string | undefined;
1230
1230
  targets: string[] | undefined;
1231
- documentSource?: string;
1232
- document?: string;
1233
- description?: string;
1234
- presignedUrlConfig?: PresignedUrlConfig;
1235
- targetSelection?: TargetSelection;
1236
- jobExecutionsRolloutConfig?: JobExecutionsRolloutConfig;
1237
- abortConfig?: AbortConfig;
1238
- timeoutConfig?: TimeoutConfig;
1239
- tags?: Tag[];
1240
- namespaceId?: string;
1241
- jobTemplateArn?: string;
1242
- jobExecutionsRetryConfig?: JobExecutionsRetryConfig;
1243
- documentParameters?: Record<string, string>;
1244
- schedulingConfig?: SchedulingConfig;
1245
- destinationPackageVersions?: string[];
1231
+ documentSource?: string | undefined;
1232
+ document?: string | undefined;
1233
+ description?: string | undefined;
1234
+ presignedUrlConfig?: PresignedUrlConfig | undefined;
1235
+ targetSelection?: TargetSelection | undefined;
1236
+ jobExecutionsRolloutConfig?: JobExecutionsRolloutConfig | undefined;
1237
+ abortConfig?: AbortConfig | undefined;
1238
+ timeoutConfig?: TimeoutConfig | undefined;
1239
+ tags?: Tag[] | undefined;
1240
+ namespaceId?: string | undefined;
1241
+ jobTemplateArn?: string | undefined;
1242
+ jobExecutionsRetryConfig?: JobExecutionsRetryConfig | undefined;
1243
+ documentParameters?: Record<string, string> | undefined;
1244
+ schedulingConfig?: SchedulingConfig | undefined;
1245
+ destinationPackageVersions?: string[] | undefined;
1246
1246
  }
1247
1247
  export interface CreateJobResponse {
1248
- jobArn?: string;
1249
- jobId?: string;
1250
- description?: string;
1248
+ jobArn?: string | undefined;
1249
+ jobId?: string | undefined;
1250
+ description?: string | undefined;
1251
1251
  }
1252
1252
  export interface CreateJobTemplateRequest {
1253
1253
  jobTemplateId: string | undefined;
1254
- jobArn?: string;
1255
- documentSource?: string;
1256
- document?: string;
1254
+ jobArn?: string | undefined;
1255
+ documentSource?: string | undefined;
1256
+ document?: string | undefined;
1257
1257
  description: string | undefined;
1258
- presignedUrlConfig?: PresignedUrlConfig;
1259
- jobExecutionsRolloutConfig?: JobExecutionsRolloutConfig;
1260
- abortConfig?: AbortConfig;
1261
- timeoutConfig?: TimeoutConfig;
1262
- tags?: Tag[];
1263
- jobExecutionsRetryConfig?: JobExecutionsRetryConfig;
1264
- maintenanceWindows?: MaintenanceWindow[];
1265
- destinationPackageVersions?: string[];
1258
+ presignedUrlConfig?: PresignedUrlConfig | undefined;
1259
+ jobExecutionsRolloutConfig?: JobExecutionsRolloutConfig | undefined;
1260
+ abortConfig?: AbortConfig | undefined;
1261
+ timeoutConfig?: TimeoutConfig | undefined;
1262
+ tags?: Tag[] | undefined;
1263
+ jobExecutionsRetryConfig?: JobExecutionsRetryConfig | undefined;
1264
+ maintenanceWindows?: MaintenanceWindow[] | undefined;
1265
+ destinationPackageVersions?: string[] | undefined;
1266
1266
  }
1267
1267
  export interface CreateJobTemplateResponse {
1268
- jobTemplateArn?: string;
1269
- jobTemplateId?: string;
1268
+ jobTemplateArn?: string | undefined;
1269
+ jobTemplateId?: string | undefined;
1270
1270
  }
1271
1271
  export interface CreateKeysAndCertificateRequest {
1272
- setAsActive?: boolean;
1272
+ setAsActive?: boolean | undefined;
1273
1273
  }
1274
1274
  export interface KeyPair {
1275
- PublicKey?: string;
1276
- PrivateKey?: string;
1275
+ PublicKey?: string | undefined;
1276
+ PrivateKey?: string | undefined;
1277
1277
  }
1278
1278
  export interface CreateKeysAndCertificateResponse {
1279
- certificateArn?: string;
1280
- certificateId?: string;
1281
- certificatePem?: string;
1282
- keyPair?: KeyPair;
1279
+ certificateArn?: string | undefined;
1280
+ certificateId?: string | undefined;
1281
+ certificatePem?: string | undefined;
1282
+ keyPair?: KeyPair | undefined;
1283
1283
  }
1284
1284
  export declare const LogLevel: {
1285
1285
  readonly DEBUG: "DEBUG";
@@ -1321,22 +1321,24 @@ export interface UpdateDeviceCertificateParams {
1321
1321
  action: DeviceCertificateUpdateAction | undefined;
1322
1322
  }
1323
1323
  export interface MitigationActionParams {
1324
- updateDeviceCertificateParams?: UpdateDeviceCertificateParams;
1325
- updateCACertificateParams?: UpdateCACertificateParams;
1326
- addThingsToThingGroupParams?: AddThingsToThingGroupParams;
1327
- replaceDefaultPolicyVersionParams?: ReplaceDefaultPolicyVersionParams;
1328
- enableIoTLoggingParams?: EnableIoTLoggingParams;
1329
- publishFindingToSnsParams?: PublishFindingToSnsParams;
1324
+ updateDeviceCertificateParams?: UpdateDeviceCertificateParams | undefined;
1325
+ updateCACertificateParams?: UpdateCACertificateParams | undefined;
1326
+ addThingsToThingGroupParams?: AddThingsToThingGroupParams | undefined;
1327
+ replaceDefaultPolicyVersionParams?:
1328
+ | ReplaceDefaultPolicyVersionParams
1329
+ | undefined;
1330
+ enableIoTLoggingParams?: EnableIoTLoggingParams | undefined;
1331
+ publishFindingToSnsParams?: PublishFindingToSnsParams | undefined;
1330
1332
  }
1331
1333
  export interface CreateMitigationActionRequest {
1332
1334
  actionName: string | undefined;
1333
1335
  roleArn: string | undefined;
1334
1336
  actionParams: MitigationActionParams | undefined;
1335
- tags?: Tag[];
1337
+ tags?: Tag[] | undefined;
1336
1338
  }
1337
1339
  export interface CreateMitigationActionResponse {
1338
- actionArn?: string;
1339
- actionId?: string;
1340
+ actionArn?: string | undefined;
1341
+ actionId?: string | undefined;
1340
1342
  }
1341
1343
  export declare const AwsJobAbortCriteriaAbortAction: {
1342
1344
  readonly CANCEL: "CANCEL";
@@ -1361,8 +1363,8 @@ export interface AwsJobAbortConfig {
1361
1363
  abortCriteriaList: AwsJobAbortCriteria[] | undefined;
1362
1364
  }
1363
1365
  export interface AwsJobRateIncreaseCriteria {
1364
- numberOfNotifiedThings?: number;
1365
- numberOfSucceededThings?: number;
1366
+ numberOfNotifiedThings?: number | undefined;
1367
+ numberOfSucceededThings?: number | undefined;
1366
1368
  }
1367
1369
  export interface AwsJobExponentialRolloutRate {
1368
1370
  baseRatePerMinute: number | undefined;
@@ -1370,65 +1372,65 @@ export interface AwsJobExponentialRolloutRate {
1370
1372
  rateIncreaseCriteria: AwsJobRateIncreaseCriteria | undefined;
1371
1373
  }
1372
1374
  export interface AwsJobExecutionsRolloutConfig {
1373
- maximumPerMinute?: number;
1374
- exponentialRate?: AwsJobExponentialRolloutRate;
1375
+ maximumPerMinute?: number | undefined;
1376
+ exponentialRate?: AwsJobExponentialRolloutRate | undefined;
1375
1377
  }
1376
1378
  export interface AwsJobPresignedUrlConfig {
1377
- expiresInSec?: number;
1379
+ expiresInSec?: number | undefined;
1378
1380
  }
1379
1381
  export interface AwsJobTimeoutConfig {
1380
- inProgressTimeoutInMinutes?: number;
1382
+ inProgressTimeoutInMinutes?: number | undefined;
1381
1383
  }
1382
1384
  export interface CodeSigningCertificateChain {
1383
- certificateName?: string;
1384
- inlineDocument?: string;
1385
+ certificateName?: string | undefined;
1386
+ inlineDocument?: string | undefined;
1385
1387
  }
1386
1388
  export interface CodeSigningSignature {
1387
- inlineDocument?: Uint8Array;
1389
+ inlineDocument?: Uint8Array | undefined;
1388
1390
  }
1389
1391
  export interface CustomCodeSigning {
1390
- signature?: CodeSigningSignature;
1391
- certificateChain?: CodeSigningCertificateChain;
1392
- hashAlgorithm?: string;
1393
- signatureAlgorithm?: string;
1392
+ signature?: CodeSigningSignature | undefined;
1393
+ certificateChain?: CodeSigningCertificateChain | undefined;
1394
+ hashAlgorithm?: string | undefined;
1395
+ signatureAlgorithm?: string | undefined;
1394
1396
  }
1395
1397
  export interface S3Destination {
1396
- bucket?: string;
1397
- prefix?: string;
1398
+ bucket?: string | undefined;
1399
+ prefix?: string | undefined;
1398
1400
  }
1399
1401
  export interface Destination {
1400
- s3Destination?: S3Destination;
1402
+ s3Destination?: S3Destination | undefined;
1401
1403
  }
1402
1404
  export interface SigningProfileParameter {
1403
- certificateArn?: string;
1404
- platform?: string;
1405
- certificatePathOnDevice?: string;
1405
+ certificateArn?: string | undefined;
1406
+ platform?: string | undefined;
1407
+ certificatePathOnDevice?: string | undefined;
1406
1408
  }
1407
1409
  export interface StartSigningJobParameter {
1408
- signingProfileParameter?: SigningProfileParameter;
1409
- signingProfileName?: string;
1410
- destination?: Destination;
1410
+ signingProfileParameter?: SigningProfileParameter | undefined;
1411
+ signingProfileName?: string | undefined;
1412
+ destination?: Destination | undefined;
1411
1413
  }
1412
1414
  export interface CodeSigning {
1413
- awsSignerJobId?: string;
1414
- startSigningJobParameter?: StartSigningJobParameter;
1415
- customCodeSigning?: CustomCodeSigning;
1415
+ awsSignerJobId?: string | undefined;
1416
+ startSigningJobParameter?: StartSigningJobParameter | undefined;
1417
+ customCodeSigning?: CustomCodeSigning | undefined;
1416
1418
  }
1417
1419
  export interface _Stream {
1418
- streamId?: string;
1419
- fileId?: number;
1420
+ streamId?: string | undefined;
1421
+ fileId?: number | undefined;
1420
1422
  }
1421
1423
  export interface FileLocation {
1422
- stream?: _Stream;
1423
- s3Location?: S3Location;
1424
+ stream?: _Stream | undefined;
1425
+ s3Location?: S3Location | undefined;
1424
1426
  }
1425
1427
  export interface OTAUpdateFile {
1426
- fileName?: string;
1427
- fileType?: number;
1428
- fileVersion?: string;
1429
- fileLocation?: FileLocation;
1430
- codeSigning?: CodeSigning;
1431
- attributes?: Record<string, string>;
1428
+ fileName?: string | undefined;
1429
+ fileType?: number | undefined;
1430
+ fileVersion?: string | undefined;
1431
+ fileLocation?: FileLocation | undefined;
1432
+ codeSigning?: CodeSigning | undefined;
1433
+ attributes?: Record<string, string> | undefined;
1432
1434
  }
1433
1435
  export declare const Protocol: {
1434
1436
  readonly HTTP: "HTTP";
@@ -1437,18 +1439,18 @@ export declare const Protocol: {
1437
1439
  export type Protocol = (typeof Protocol)[keyof typeof Protocol];
1438
1440
  export interface CreateOTAUpdateRequest {
1439
1441
  otaUpdateId: string | undefined;
1440
- description?: string;
1442
+ description?: string | undefined;
1441
1443
  targets: string[] | undefined;
1442
- protocols?: Protocol[];
1443
- targetSelection?: TargetSelection;
1444
- awsJobExecutionsRolloutConfig?: AwsJobExecutionsRolloutConfig;
1445
- awsJobPresignedUrlConfig?: AwsJobPresignedUrlConfig;
1446
- awsJobAbortConfig?: AwsJobAbortConfig;
1447
- awsJobTimeoutConfig?: AwsJobTimeoutConfig;
1444
+ protocols?: Protocol[] | undefined;
1445
+ targetSelection?: TargetSelection | undefined;
1446
+ awsJobExecutionsRolloutConfig?: AwsJobExecutionsRolloutConfig | undefined;
1447
+ awsJobPresignedUrlConfig?: AwsJobPresignedUrlConfig | undefined;
1448
+ awsJobAbortConfig?: AwsJobAbortConfig | undefined;
1449
+ awsJobTimeoutConfig?: AwsJobTimeoutConfig | undefined;
1448
1450
  files: OTAUpdateFile[] | undefined;
1449
1451
  roleArn: string | undefined;
1450
- additionalParameters?: Record<string, string>;
1451
- tags?: Tag[];
1452
+ additionalParameters?: Record<string, string> | undefined;
1453
+ tags?: Tag[] | undefined;
1452
1454
  }
1453
1455
  export declare const OTAUpdateStatus: {
1454
1456
  readonly CREATE_COMPLETE: "CREATE_COMPLETE";
@@ -1461,35 +1463,35 @@ export declare const OTAUpdateStatus: {
1461
1463
  export type OTAUpdateStatus =
1462
1464
  (typeof OTAUpdateStatus)[keyof typeof OTAUpdateStatus];
1463
1465
  export interface CreateOTAUpdateResponse {
1464
- otaUpdateId?: string;
1465
- awsIotJobId?: string;
1466
- otaUpdateArn?: string;
1467
- awsIotJobArn?: string;
1468
- otaUpdateStatus?: OTAUpdateStatus;
1466
+ otaUpdateId?: string | undefined;
1467
+ awsIotJobId?: string | undefined;
1468
+ otaUpdateArn?: string | undefined;
1469
+ awsIotJobArn?: string | undefined;
1470
+ otaUpdateStatus?: OTAUpdateStatus | undefined;
1469
1471
  }
1470
1472
  export interface CreatePackageRequest {
1471
1473
  packageName: string | undefined;
1472
- description?: string;
1473
- tags?: Record<string, string>;
1474
- clientToken?: string;
1474
+ description?: string | undefined;
1475
+ tags?: Record<string, string> | undefined;
1476
+ clientToken?: string | undefined;
1475
1477
  }
1476
1478
  export interface CreatePackageResponse {
1477
- packageName?: string;
1478
- packageArn?: string;
1479
- description?: string;
1479
+ packageName?: string | undefined;
1480
+ packageArn?: string | undefined;
1481
+ description?: string | undefined;
1480
1482
  }
1481
1483
  export interface PackageVersionArtifact {
1482
- s3Location?: S3Location;
1484
+ s3Location?: S3Location | undefined;
1483
1485
  }
1484
1486
  export interface CreatePackageVersionRequest {
1485
1487
  packageName: string | undefined;
1486
1488
  versionName: string | undefined;
1487
- description?: string;
1488
- attributes?: Record<string, string>;
1489
- artifact?: PackageVersionArtifact;
1490
- recipe?: string;
1491
- tags?: Record<string, string>;
1492
- clientToken?: string;
1489
+ description?: string | undefined;
1490
+ attributes?: Record<string, string> | undefined;
1491
+ artifact?: PackageVersionArtifact | undefined;
1492
+ recipe?: string | undefined;
1493
+ tags?: Record<string, string> | undefined;
1494
+ clientToken?: string | undefined;
1493
1495
  }
1494
1496
  export declare const PackageVersionStatus: {
1495
1497
  readonly DEPRECATED: "DEPRECATED";
@@ -1499,24 +1501,24 @@ export declare const PackageVersionStatus: {
1499
1501
  export type PackageVersionStatus =
1500
1502
  (typeof PackageVersionStatus)[keyof typeof PackageVersionStatus];
1501
1503
  export interface CreatePackageVersionResponse {
1502
- packageVersionArn?: string;
1503
- packageName?: string;
1504
- versionName?: string;
1505
- description?: string;
1506
- attributes?: Record<string, string>;
1507
- status?: PackageVersionStatus;
1508
- errorReason?: string;
1504
+ packageVersionArn?: string | undefined;
1505
+ packageName?: string | undefined;
1506
+ versionName?: string | undefined;
1507
+ description?: string | undefined;
1508
+ attributes?: Record<string, string> | undefined;
1509
+ status?: PackageVersionStatus | undefined;
1510
+ errorReason?: string | undefined;
1509
1511
  }
1510
1512
  export interface CreatePolicyRequest {
1511
1513
  policyName: string | undefined;
1512
1514
  policyDocument: string | undefined;
1513
- tags?: Tag[];
1515
+ tags?: Tag[] | undefined;
1514
1516
  }
1515
1517
  export interface CreatePolicyResponse {
1516
- policyName?: string;
1517
- policyArn?: string;
1518
- policyDocument?: string;
1519
- policyVersionId?: string;
1518
+ policyName?: string | undefined;
1519
+ policyArn?: string | undefined;
1520
+ policyDocument?: string | undefined;
1521
+ policyVersionId?: string | undefined;
1520
1522
  }
1521
1523
  export declare class MalformedPolicyException extends __BaseException {
1522
1524
  readonly name: "MalformedPolicyException";
@@ -1528,13 +1530,13 @@ export declare class MalformedPolicyException extends __BaseException {
1528
1530
  export interface CreatePolicyVersionRequest {
1529
1531
  policyName: string | undefined;
1530
1532
  policyDocument: string | undefined;
1531
- setAsDefault?: boolean;
1533
+ setAsDefault?: boolean | undefined;
1532
1534
  }
1533
1535
  export interface CreatePolicyVersionResponse {
1534
- policyArn?: string;
1535
- policyDocument?: string;
1536
- policyVersionId?: string;
1537
- isDefaultVersion?: boolean;
1536
+ policyArn?: string | undefined;
1537
+ policyDocument?: string | undefined;
1538
+ policyVersionId?: string | undefined;
1539
+ isDefaultVersion?: boolean | undefined;
1538
1540
  }
1539
1541
  export declare class VersionsLimitExceededException extends __BaseException {
1540
1542
  readonly name: "VersionsLimitExceededException";
@@ -1547,13 +1549,13 @@ export interface CreateProvisioningClaimRequest {
1547
1549
  templateName: string | undefined;
1548
1550
  }
1549
1551
  export interface CreateProvisioningClaimResponse {
1550
- certificateId?: string;
1551
- certificatePem?: string;
1552
- keyPair?: KeyPair;
1553
- expiration?: Date;
1552
+ certificateId?: string | undefined;
1553
+ certificatePem?: string | undefined;
1554
+ keyPair?: KeyPair | undefined;
1555
+ expiration?: Date | undefined;
1554
1556
  }
1555
1557
  export interface ProvisioningHook {
1556
- payloadVersion?: string;
1558
+ payloadVersion?: string | undefined;
1557
1559
  targetArn: string | undefined;
1558
1560
  }
1559
1561
  export declare const TemplateType: {
@@ -1563,39 +1565,39 @@ export declare const TemplateType: {
1563
1565
  export type TemplateType = (typeof TemplateType)[keyof typeof TemplateType];
1564
1566
  export interface CreateProvisioningTemplateRequest {
1565
1567
  templateName: string | undefined;
1566
- description?: string;
1568
+ description?: string | undefined;
1567
1569
  templateBody: string | undefined;
1568
- enabled?: boolean;
1570
+ enabled?: boolean | undefined;
1569
1571
  provisioningRoleArn: string | undefined;
1570
- preProvisioningHook?: ProvisioningHook;
1571
- tags?: Tag[];
1572
- type?: TemplateType;
1572
+ preProvisioningHook?: ProvisioningHook | undefined;
1573
+ tags?: Tag[] | undefined;
1574
+ type?: TemplateType | undefined;
1573
1575
  }
1574
1576
  export interface CreateProvisioningTemplateResponse {
1575
- templateArn?: string;
1576
- templateName?: string;
1577
- defaultVersionId?: number;
1577
+ templateArn?: string | undefined;
1578
+ templateName?: string | undefined;
1579
+ defaultVersionId?: number | undefined;
1578
1580
  }
1579
1581
  export interface CreateProvisioningTemplateVersionRequest {
1580
1582
  templateName: string | undefined;
1581
1583
  templateBody: string | undefined;
1582
- setAsDefault?: boolean;
1584
+ setAsDefault?: boolean | undefined;
1583
1585
  }
1584
1586
  export interface CreateProvisioningTemplateVersionResponse {
1585
- templateArn?: string;
1586
- templateName?: string;
1587
- versionId?: number;
1588
- isDefaultVersion?: boolean;
1587
+ templateArn?: string | undefined;
1588
+ templateName?: string | undefined;
1589
+ versionId?: number | undefined;
1590
+ isDefaultVersion?: boolean | undefined;
1589
1591
  }
1590
1592
  export interface CreateRoleAliasRequest {
1591
1593
  roleAlias: string | undefined;
1592
1594
  roleArn: string | undefined;
1593
- credentialDurationSeconds?: number;
1594
- tags?: Tag[];
1595
+ credentialDurationSeconds?: number | undefined;
1596
+ tags?: Tag[] | undefined;
1595
1597
  }
1596
1598
  export interface CreateRoleAliasResponse {
1597
- roleAlias?: string;
1598
- roleAliasArn?: string;
1599
+ roleAlias?: string | undefined;
1600
+ roleAliasArn?: string | undefined;
1599
1601
  }
1600
1602
  export declare const DayOfWeek: {
1601
1603
  readonly FRI: "FRI";
@@ -1609,14 +1611,14 @@ export declare const DayOfWeek: {
1609
1611
  export type DayOfWeek = (typeof DayOfWeek)[keyof typeof DayOfWeek];
1610
1612
  export interface CreateScheduledAuditRequest {
1611
1613
  frequency: AuditFrequency | undefined;
1612
- dayOfMonth?: string;
1613
- dayOfWeek?: DayOfWeek;
1614
+ dayOfMonth?: string | undefined;
1615
+ dayOfWeek?: DayOfWeek | undefined;
1614
1616
  targetCheckNames: string[] | undefined;
1615
1617
  scheduledAuditName: string | undefined;
1616
- tags?: Tag[];
1618
+ tags?: Tag[] | undefined;
1617
1619
  }
1618
1620
  export interface CreateScheduledAuditResponse {
1619
- scheduledAuditArn?: string;
1621
+ scheduledAuditArn?: string | undefined;
1620
1622
  }
1621
1623
  export interface MetricsExportConfig {
1622
1624
  mqttTopic: string | undefined;
@@ -1624,83 +1626,83 @@ export interface MetricsExportConfig {
1624
1626
  }
1625
1627
  export interface CreateSecurityProfileRequest {
1626
1628
  securityProfileName: string | undefined;
1627
- securityProfileDescription?: string;
1628
- behaviors?: Behavior[];
1629
- alertTargets?: Partial<Record<AlertTargetType, AlertTarget>>;
1630
- additionalMetricsToRetain?: string[];
1631
- additionalMetricsToRetainV2?: MetricToRetain[];
1632
- tags?: Tag[];
1633
- metricsExportConfig?: MetricsExportConfig;
1629
+ securityProfileDescription?: string | undefined;
1630
+ behaviors?: Behavior[] | undefined;
1631
+ alertTargets?: Partial<Record<AlertTargetType, AlertTarget>> | undefined;
1632
+ additionalMetricsToRetain?: string[] | undefined;
1633
+ additionalMetricsToRetainV2?: MetricToRetain[] | undefined;
1634
+ tags?: Tag[] | undefined;
1635
+ metricsExportConfig?: MetricsExportConfig | undefined;
1634
1636
  }
1635
1637
  export interface CreateSecurityProfileResponse {
1636
- securityProfileName?: string;
1637
- securityProfileArn?: string;
1638
+ securityProfileName?: string | undefined;
1639
+ securityProfileArn?: string | undefined;
1638
1640
  }
1639
1641
  export interface StreamFile {
1640
- fileId?: number;
1641
- s3Location?: S3Location;
1642
+ fileId?: number | undefined;
1643
+ s3Location?: S3Location | undefined;
1642
1644
  }
1643
1645
  export interface CreateStreamRequest {
1644
1646
  streamId: string | undefined;
1645
- description?: string;
1647
+ description?: string | undefined;
1646
1648
  files: StreamFile[] | undefined;
1647
1649
  roleArn: string | undefined;
1648
- tags?: Tag[];
1650
+ tags?: Tag[] | undefined;
1649
1651
  }
1650
1652
  export interface CreateStreamResponse {
1651
- streamId?: string;
1652
- streamArn?: string;
1653
- description?: string;
1654
- streamVersion?: number;
1653
+ streamId?: string | undefined;
1654
+ streamArn?: string | undefined;
1655
+ description?: string | undefined;
1656
+ streamVersion?: number | undefined;
1655
1657
  }
1656
1658
  export interface CreateThingRequest {
1657
1659
  thingName: string | undefined;
1658
- thingTypeName?: string;
1659
- attributePayload?: AttributePayload;
1660
- billingGroupName?: string;
1660
+ thingTypeName?: string | undefined;
1661
+ attributePayload?: AttributePayload | undefined;
1662
+ billingGroupName?: string | undefined;
1661
1663
  }
1662
1664
  export interface CreateThingResponse {
1663
- thingName?: string;
1664
- thingArn?: string;
1665
- thingId?: string;
1665
+ thingName?: string | undefined;
1666
+ thingArn?: string | undefined;
1667
+ thingId?: string | undefined;
1666
1668
  }
1667
1669
  export interface CreateThingGroupRequest {
1668
1670
  thingGroupName: string | undefined;
1669
- parentGroupName?: string;
1670
- thingGroupProperties?: ThingGroupProperties;
1671
- tags?: Tag[];
1671
+ parentGroupName?: string | undefined;
1672
+ thingGroupProperties?: ThingGroupProperties | undefined;
1673
+ tags?: Tag[] | undefined;
1672
1674
  }
1673
1675
  export interface CreateThingGroupResponse {
1674
- thingGroupName?: string;
1675
- thingGroupArn?: string;
1676
- thingGroupId?: string;
1676
+ thingGroupName?: string | undefined;
1677
+ thingGroupArn?: string | undefined;
1678
+ thingGroupId?: string | undefined;
1677
1679
  }
1678
1680
  export interface ThingTypeProperties {
1679
- thingTypeDescription?: string;
1680
- searchableAttributes?: string[];
1681
+ thingTypeDescription?: string | undefined;
1682
+ searchableAttributes?: string[] | undefined;
1681
1683
  }
1682
1684
  export interface CreateThingTypeRequest {
1683
1685
  thingTypeName: string | undefined;
1684
- thingTypeProperties?: ThingTypeProperties;
1685
- tags?: Tag[];
1686
+ thingTypeProperties?: ThingTypeProperties | undefined;
1687
+ tags?: Tag[] | undefined;
1686
1688
  }
1687
1689
  export interface CreateThingTypeResponse {
1688
- thingTypeName?: string;
1689
- thingTypeArn?: string;
1690
- thingTypeId?: string;
1690
+ thingTypeName?: string | undefined;
1691
+ thingTypeArn?: string | undefined;
1692
+ thingTypeId?: string | undefined;
1691
1693
  }
1692
1694
  export interface TopicRulePayload {
1693
1695
  sql: string | undefined;
1694
- description?: string;
1696
+ description?: string | undefined;
1695
1697
  actions: Action[] | undefined;
1696
- ruleDisabled?: boolean;
1697
- awsIotSqlVersion?: string;
1698
- errorAction?: Action;
1698
+ ruleDisabled?: boolean | undefined;
1699
+ awsIotSqlVersion?: string | undefined;
1700
+ errorAction?: Action | undefined;
1699
1701
  }
1700
1702
  export interface CreateTopicRuleRequest {
1701
1703
  ruleName: string | undefined;
1702
1704
  topicRulePayload: TopicRulePayload | undefined;
1703
- tags?: string;
1705
+ tags?: string | undefined;
1704
1706
  }
1705
1707
  export declare class SqlParseException extends __BaseException {
1706
1708
  readonly name: "SqlParseException";
@@ -1712,19 +1714,19 @@ export interface HttpUrlDestinationConfiguration {
1712
1714
  }
1713
1715
  export interface VpcDestinationConfiguration {
1714
1716
  subnetIds: string[] | undefined;
1715
- securityGroups?: string[];
1717
+ securityGroups?: string[] | undefined;
1716
1718
  vpcId: string | undefined;
1717
1719
  roleArn: string | undefined;
1718
1720
  }
1719
1721
  export interface TopicRuleDestinationConfiguration {
1720
- httpUrlConfiguration?: HttpUrlDestinationConfiguration;
1721
- vpcConfiguration?: VpcDestinationConfiguration;
1722
+ httpUrlConfiguration?: HttpUrlDestinationConfiguration | undefined;
1723
+ vpcConfiguration?: VpcDestinationConfiguration | undefined;
1722
1724
  }
1723
1725
  export interface CreateTopicRuleDestinationRequest {
1724
1726
  destinationConfiguration: TopicRuleDestinationConfiguration | undefined;
1725
1727
  }
1726
1728
  export interface HttpUrlDestinationProperties {
1727
- confirmationUrl?: string;
1729
+ confirmationUrl?: string | undefined;
1728
1730
  }
1729
1731
  export declare const TopicRuleDestinationStatus: {
1730
1732
  readonly DELETING: "DELETING";
@@ -1736,25 +1738,25 @@ export declare const TopicRuleDestinationStatus: {
1736
1738
  export type TopicRuleDestinationStatus =
1737
1739
  (typeof TopicRuleDestinationStatus)[keyof typeof TopicRuleDestinationStatus];
1738
1740
  export interface VpcDestinationProperties {
1739
- subnetIds?: string[];
1740
- securityGroups?: string[];
1741
- vpcId?: string;
1742
- roleArn?: string;
1741
+ subnetIds?: string[] | undefined;
1742
+ securityGroups?: string[] | undefined;
1743
+ vpcId?: string | undefined;
1744
+ roleArn?: string | undefined;
1743
1745
  }
1744
1746
  export interface TopicRuleDestination {
1745
- arn?: string;
1746
- status?: TopicRuleDestinationStatus;
1747
- createdAt?: Date;
1748
- lastUpdatedAt?: Date;
1749
- statusReason?: string;
1750
- httpUrlProperties?: HttpUrlDestinationProperties;
1751
- vpcProperties?: VpcDestinationProperties;
1747
+ arn?: string | undefined;
1748
+ status?: TopicRuleDestinationStatus | undefined;
1749
+ createdAt?: Date | undefined;
1750
+ lastUpdatedAt?: Date | undefined;
1751
+ statusReason?: string | undefined;
1752
+ httpUrlProperties?: HttpUrlDestinationProperties | undefined;
1753
+ vpcProperties?: VpcDestinationProperties | undefined;
1752
1754
  }
1753
1755
  export interface CreateTopicRuleDestinationResponse {
1754
- topicRuleDestination?: TopicRuleDestination;
1756
+ topicRuleDestination?: TopicRuleDestination | undefined;
1755
1757
  }
1756
1758
  export interface DeleteAccountAuditConfigurationRequest {
1757
- deleteScheduledAudits?: boolean;
1759
+ deleteScheduledAudits?: boolean | undefined;
1758
1760
  }
1759
1761
  export interface DeleteAccountAuditConfigurationResponse {}
1760
1762
  export interface DeleteAuditSuppressionRequest {