@aws-sdk/client-iot 3.301.0 → 3.306.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.
- package/dist-cjs/models/models_0.js +251 -293
- package/dist-cjs/models/models_1.js +139 -163
- package/dist-cjs/models/models_2.js +9 -11
- package/dist-es/models/models_0.js +251 -293
- package/dist-es/models/models_1.js +139 -163
- package/dist-es/models/models_2.js +9 -11
- package/dist-types/models/models_0.d.ts +461 -251
- package/dist-types/models/models_1.d.ts +259 -139
- package/dist-types/models/models_2.d.ts +19 -9
- package/dist-types/ts3.4/models/models_0.d.ts +322 -251
- package/dist-types/ts3.4/models/models_1.d.ts +179 -139
- package/dist-types/ts3.4/models/models_2.d.ts +12 -9
- package/package.json +34 -34
|
@@ -1,14 +1,17 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { IoTServiceException as __BaseException } from "./IoTServiceException";
|
|
3
|
-
export declare
|
|
4
|
-
CANCEL
|
|
5
|
-
}
|
|
6
|
-
export
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
3
|
+
export declare const AbortAction: {
|
|
4
|
+
readonly CANCEL: "CANCEL";
|
|
5
|
+
};
|
|
6
|
+
export type AbortAction = (typeof AbortAction)[keyof typeof AbortAction];
|
|
7
|
+
export declare const JobExecutionFailureType: {
|
|
8
|
+
readonly ALL: "ALL";
|
|
9
|
+
readonly FAILED: "FAILED";
|
|
10
|
+
readonly REJECTED: "REJECTED";
|
|
11
|
+
readonly TIMED_OUT: "TIMED_OUT";
|
|
12
|
+
};
|
|
13
|
+
export type JobExecutionFailureType =
|
|
14
|
+
(typeof JobExecutionFailureType)[keyof typeof JobExecutionFailureType];
|
|
12
15
|
export interface AbortCriteria {
|
|
13
16
|
failureType: JobExecutionFailureType | string | undefined;
|
|
14
17
|
action: AbortAction | string | undefined;
|
|
@@ -93,10 +96,11 @@ export interface CloudwatchMetricAction {
|
|
|
93
96
|
metricUnit: string | undefined;
|
|
94
97
|
metricTimestamp?: string;
|
|
95
98
|
}
|
|
96
|
-
export declare
|
|
97
|
-
NUMBER
|
|
98
|
-
STRING
|
|
99
|
-
}
|
|
99
|
+
export declare const DynamoKeyType: {
|
|
100
|
+
readonly NUMBER: "NUMBER";
|
|
101
|
+
readonly STRING: "STRING";
|
|
102
|
+
};
|
|
103
|
+
export type DynamoKeyType = (typeof DynamoKeyType)[keyof typeof DynamoKeyType];
|
|
100
104
|
export interface DynamoDBAction {
|
|
101
105
|
tableName: string | undefined;
|
|
102
106
|
roleArn: string | undefined;
|
|
@@ -282,16 +286,18 @@ export interface RepublishAction {
|
|
|
282
286
|
qos?: number;
|
|
283
287
|
headers?: MqttHeaders;
|
|
284
288
|
}
|
|
285
|
-
export declare
|
|
286
|
-
AuthenticatedRead
|
|
287
|
-
AwsExecRead
|
|
288
|
-
BucketOwnerFullControl
|
|
289
|
-
BucketOwnerRead
|
|
290
|
-
LogDeliveryWrite
|
|
291
|
-
Private
|
|
292
|
-
PublicRead
|
|
293
|
-
PublicReadWrite
|
|
294
|
-
}
|
|
289
|
+
export declare const CannedAccessControlList: {
|
|
290
|
+
readonly AuthenticatedRead: "authenticated-read";
|
|
291
|
+
readonly AwsExecRead: "aws-exec-read";
|
|
292
|
+
readonly BucketOwnerFullControl: "bucket-owner-full-control";
|
|
293
|
+
readonly BucketOwnerRead: "bucket-owner-read";
|
|
294
|
+
readonly LogDeliveryWrite: "log-delivery-write";
|
|
295
|
+
readonly Private: "private";
|
|
296
|
+
readonly PublicRead: "public-read";
|
|
297
|
+
readonly PublicReadWrite: "public-read-write";
|
|
298
|
+
};
|
|
299
|
+
export type CannedAccessControlList =
|
|
300
|
+
(typeof CannedAccessControlList)[keyof typeof CannedAccessControlList];
|
|
295
301
|
export interface S3Action {
|
|
296
302
|
roleArn: string | undefined;
|
|
297
303
|
bucketName: string | undefined;
|
|
@@ -302,10 +308,11 @@ export interface SalesforceAction {
|
|
|
302
308
|
token: string | undefined;
|
|
303
309
|
url: string | undefined;
|
|
304
310
|
}
|
|
305
|
-
export declare
|
|
306
|
-
JSON
|
|
307
|
-
RAW
|
|
308
|
-
}
|
|
311
|
+
export declare const MessageFormat: {
|
|
312
|
+
readonly JSON: "JSON";
|
|
313
|
+
readonly RAW: "RAW";
|
|
314
|
+
};
|
|
315
|
+
export type MessageFormat = (typeof MessageFormat)[keyof typeof MessageFormat];
|
|
309
316
|
export interface SnsAction {
|
|
310
317
|
targetArn: string | undefined;
|
|
311
318
|
roleArn: string | undefined;
|
|
@@ -361,29 +368,34 @@ export interface Action {
|
|
|
361
368
|
openSearch?: OpenSearchAction;
|
|
362
369
|
location?: LocationAction;
|
|
363
370
|
}
|
|
364
|
-
export declare
|
|
365
|
-
CONNECT
|
|
366
|
-
PUBLISH
|
|
367
|
-
RECEIVE
|
|
368
|
-
SUBSCRIBE
|
|
369
|
-
}
|
|
370
|
-
export
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
371
|
+
export declare const ActionType: {
|
|
372
|
+
readonly CONNECT: "CONNECT";
|
|
373
|
+
readonly PUBLISH: "PUBLISH";
|
|
374
|
+
readonly RECEIVE: "RECEIVE";
|
|
375
|
+
readonly SUBSCRIBE: "SUBSCRIBE";
|
|
376
|
+
};
|
|
377
|
+
export type ActionType = (typeof ActionType)[keyof typeof ActionType];
|
|
378
|
+
export declare const ComparisonOperator: {
|
|
379
|
+
readonly GREATER_THAN: "greater-than";
|
|
380
|
+
readonly GREATER_THAN_EQUALS: "greater-than-equals";
|
|
381
|
+
readonly IN_CIDR_SET: "in-cidr-set";
|
|
382
|
+
readonly IN_PORT_SET: "in-port-set";
|
|
383
|
+
readonly IN_SET: "in-set";
|
|
384
|
+
readonly LESS_THAN: "less-than";
|
|
385
|
+
readonly LESS_THAN_EQUALS: "less-than-equals";
|
|
386
|
+
readonly NOT_IN_CIDR_SET: "not-in-cidr-set";
|
|
387
|
+
readonly NOT_IN_PORT_SET: "not-in-port-set";
|
|
388
|
+
readonly NOT_IN_SET: "not-in-set";
|
|
389
|
+
};
|
|
390
|
+
export type ComparisonOperator =
|
|
391
|
+
(typeof ComparisonOperator)[keyof typeof ComparisonOperator];
|
|
392
|
+
export declare const ConfidenceLevel: {
|
|
393
|
+
readonly HIGH: "HIGH";
|
|
394
|
+
readonly LOW: "LOW";
|
|
395
|
+
readonly MEDIUM: "MEDIUM";
|
|
396
|
+
};
|
|
397
|
+
export type ConfidenceLevel =
|
|
398
|
+
(typeof ConfidenceLevel)[keyof typeof ConfidenceLevel];
|
|
387
399
|
export interface MachineLearningDetectionConfig {
|
|
388
400
|
confidenceLevel: ConfidenceLevel | string | undefined;
|
|
389
401
|
}
|
|
@@ -407,10 +419,12 @@ export interface BehaviorCriteria {
|
|
|
407
419
|
statisticalThreshold?: StatisticalThreshold;
|
|
408
420
|
mlDetectionConfig?: MachineLearningDetectionConfig;
|
|
409
421
|
}
|
|
410
|
-
export declare
|
|
411
|
-
IN
|
|
412
|
-
NOT_IN
|
|
413
|
-
}
|
|
422
|
+
export declare const DimensionValueOperator: {
|
|
423
|
+
readonly IN: "IN";
|
|
424
|
+
readonly NOT_IN: "NOT_IN";
|
|
425
|
+
};
|
|
426
|
+
export type DimensionValueOperator =
|
|
427
|
+
(typeof DimensionValueOperator)[keyof typeof DimensionValueOperator];
|
|
414
428
|
export interface MetricDimension {
|
|
415
429
|
dimensionName: string | undefined;
|
|
416
430
|
operator?: DimensionValueOperator | string;
|
|
@@ -422,12 +436,14 @@ export interface Behavior {
|
|
|
422
436
|
criteria?: BehaviorCriteria;
|
|
423
437
|
suppressAlerts?: boolean;
|
|
424
438
|
}
|
|
425
|
-
export declare
|
|
426
|
-
BENIGN_POSITIVE
|
|
427
|
-
FALSE_POSITIVE
|
|
428
|
-
TRUE_POSITIVE
|
|
429
|
-
UNKNOWN
|
|
430
|
-
}
|
|
439
|
+
export declare const VerificationState: {
|
|
440
|
+
readonly BENIGN_POSITIVE: "BENIGN_POSITIVE";
|
|
441
|
+
readonly FALSE_POSITIVE: "FALSE_POSITIVE";
|
|
442
|
+
readonly TRUE_POSITIVE: "TRUE_POSITIVE";
|
|
443
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
444
|
+
};
|
|
445
|
+
export type VerificationState =
|
|
446
|
+
(typeof VerificationState)[keyof typeof VerificationState];
|
|
431
447
|
export interface ViolationEventAdditionalInfo {
|
|
432
448
|
confidenceLevel?: ConfidenceLevel | string;
|
|
433
449
|
}
|
|
@@ -466,11 +482,13 @@ export interface AddThingToThingGroupRequest {
|
|
|
466
482
|
overrideDynamicGroups?: boolean;
|
|
467
483
|
}
|
|
468
484
|
export interface AddThingToThingGroupResponse {}
|
|
469
|
-
export declare
|
|
470
|
-
CARDINALITY
|
|
471
|
-
PERCENTILES
|
|
472
|
-
STATISTICS
|
|
473
|
-
}
|
|
485
|
+
export declare const AggregationTypeName: {
|
|
486
|
+
readonly CARDINALITY: "Cardinality";
|
|
487
|
+
readonly PERCENTILES: "Percentiles";
|
|
488
|
+
readonly STATISTICS: "Statistics";
|
|
489
|
+
};
|
|
490
|
+
export type AggregationTypeName =
|
|
491
|
+
(typeof AggregationTypeName)[keyof typeof AggregationTypeName];
|
|
474
492
|
export interface AggregationType {
|
|
475
493
|
name: AggregationTypeName | string | undefined;
|
|
476
494
|
values?: string[];
|
|
@@ -479,9 +497,11 @@ export interface AlertTarget {
|
|
|
479
497
|
alertTargetArn: string | undefined;
|
|
480
498
|
roleArn: string | undefined;
|
|
481
499
|
}
|
|
482
|
-
export declare
|
|
483
|
-
SNS
|
|
484
|
-
}
|
|
500
|
+
export declare const AlertTargetType: {
|
|
501
|
+
readonly SNS: "SNS";
|
|
502
|
+
};
|
|
503
|
+
export type AlertTargetType =
|
|
504
|
+
(typeof AlertTargetType)[keyof typeof AlertTargetType];
|
|
485
505
|
export interface Policy {
|
|
486
506
|
policyName?: string;
|
|
487
507
|
policyArn?: string;
|
|
@@ -539,14 +559,16 @@ export interface AttributePayload {
|
|
|
539
559
|
export interface AuditCheckConfiguration {
|
|
540
560
|
enabled?: boolean;
|
|
541
561
|
}
|
|
542
|
-
export declare
|
|
543
|
-
CANCELED
|
|
544
|
-
COMPLETED_COMPLIANT
|
|
545
|
-
COMPLETED_NON_COMPLIANT
|
|
546
|
-
FAILED
|
|
547
|
-
IN_PROGRESS
|
|
548
|
-
WAITING_FOR_DATA_COLLECTION
|
|
549
|
-
}
|
|
562
|
+
export declare const AuditCheckRunStatus: {
|
|
563
|
+
readonly CANCELED: "CANCELED";
|
|
564
|
+
readonly COMPLETED_COMPLIANT: "COMPLETED_COMPLIANT";
|
|
565
|
+
readonly COMPLETED_NON_COMPLIANT: "COMPLETED_NON_COMPLIANT";
|
|
566
|
+
readonly FAILED: "FAILED";
|
|
567
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
568
|
+
readonly WAITING_FOR_DATA_COLLECTION: "WAITING_FOR_DATA_COLLECTION";
|
|
569
|
+
};
|
|
570
|
+
export type AuditCheckRunStatus =
|
|
571
|
+
(typeof AuditCheckRunStatus)[keyof typeof AuditCheckRunStatus];
|
|
550
572
|
export interface AuditCheckDetails {
|
|
551
573
|
checkRunStatus?: AuditCheckRunStatus | string;
|
|
552
574
|
checkCompliant?: boolean;
|
|
@@ -577,17 +599,18 @@ export interface ResourceIdentifier {
|
|
|
577
599
|
issuerCertificateIdentifier?: IssuerCertificateIdentifier;
|
|
578
600
|
deviceCertificateArn?: string;
|
|
579
601
|
}
|
|
580
|
-
export declare
|
|
581
|
-
ACCOUNT_SETTINGS
|
|
582
|
-
CA_CERTIFICATE
|
|
583
|
-
CLIENT_ID
|
|
584
|
-
COGNITO_IDENTITY_POOL
|
|
585
|
-
DEVICE_CERTIFICATE
|
|
586
|
-
IAM_ROLE
|
|
587
|
-
IOT_POLICY
|
|
588
|
-
ISSUER_CERTIFICATE
|
|
589
|
-
ROLE_ALIAS
|
|
590
|
-
}
|
|
602
|
+
export declare const ResourceType: {
|
|
603
|
+
readonly ACCOUNT_SETTINGS: "ACCOUNT_SETTINGS";
|
|
604
|
+
readonly CA_CERTIFICATE: "CA_CERTIFICATE";
|
|
605
|
+
readonly CLIENT_ID: "CLIENT_ID";
|
|
606
|
+
readonly COGNITO_IDENTITY_POOL: "COGNITO_IDENTITY_POOL";
|
|
607
|
+
readonly DEVICE_CERTIFICATE: "DEVICE_CERTIFICATE";
|
|
608
|
+
readonly IAM_ROLE: "IAM_ROLE";
|
|
609
|
+
readonly IOT_POLICY: "IOT_POLICY";
|
|
610
|
+
readonly ISSUER_CERTIFICATE: "ISSUER_CERTIFICATE";
|
|
611
|
+
readonly ROLE_ALIAS: "ROLE_ALIAS";
|
|
612
|
+
};
|
|
613
|
+
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
591
614
|
export interface NonCompliantResource {
|
|
592
615
|
resourceType?: ResourceType | string;
|
|
593
616
|
resourceIdentifier?: ResourceIdentifier;
|
|
@@ -598,12 +621,14 @@ export interface RelatedResource {
|
|
|
598
621
|
resourceIdentifier?: ResourceIdentifier;
|
|
599
622
|
additionalInfo?: Record<string, string>;
|
|
600
623
|
}
|
|
601
|
-
export declare
|
|
602
|
-
CRITICAL
|
|
603
|
-
HIGH
|
|
604
|
-
LOW
|
|
605
|
-
MEDIUM
|
|
606
|
-
}
|
|
624
|
+
export declare const AuditFindingSeverity: {
|
|
625
|
+
readonly CRITICAL: "CRITICAL";
|
|
626
|
+
readonly HIGH: "HIGH";
|
|
627
|
+
readonly LOW: "LOW";
|
|
628
|
+
readonly MEDIUM: "MEDIUM";
|
|
629
|
+
};
|
|
630
|
+
export type AuditFindingSeverity =
|
|
631
|
+
(typeof AuditFindingSeverity)[keyof typeof AuditFindingSeverity];
|
|
607
632
|
export interface AuditFinding {
|
|
608
633
|
findingId?: string;
|
|
609
634
|
taskId?: string;
|
|
@@ -617,20 +642,24 @@ export interface AuditFinding {
|
|
|
617
642
|
reasonForNonComplianceCode?: string;
|
|
618
643
|
isSuppressed?: boolean;
|
|
619
644
|
}
|
|
620
|
-
export declare
|
|
621
|
-
BIWEEKLY
|
|
622
|
-
DAILY
|
|
623
|
-
MONTHLY
|
|
624
|
-
WEEKLY
|
|
625
|
-
}
|
|
626
|
-
export
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
645
|
+
export declare const AuditFrequency: {
|
|
646
|
+
readonly BIWEEKLY: "BIWEEKLY";
|
|
647
|
+
readonly DAILY: "DAILY";
|
|
648
|
+
readonly MONTHLY: "MONTHLY";
|
|
649
|
+
readonly WEEKLY: "WEEKLY";
|
|
650
|
+
};
|
|
651
|
+
export type AuditFrequency =
|
|
652
|
+
(typeof AuditFrequency)[keyof typeof AuditFrequency];
|
|
653
|
+
export declare const AuditMitigationActionsExecutionStatus: {
|
|
654
|
+
readonly CANCELED: "CANCELED";
|
|
655
|
+
readonly COMPLETED: "COMPLETED";
|
|
656
|
+
readonly FAILED: "FAILED";
|
|
657
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
658
|
+
readonly PENDING: "PENDING";
|
|
659
|
+
readonly SKIPPED: "SKIPPED";
|
|
660
|
+
};
|
|
661
|
+
export type AuditMitigationActionsExecutionStatus =
|
|
662
|
+
(typeof AuditMitigationActionsExecutionStatus)[keyof typeof AuditMitigationActionsExecutionStatus];
|
|
634
663
|
export interface AuditMitigationActionExecutionMetadata {
|
|
635
664
|
taskId?: string;
|
|
636
665
|
findingId?: string;
|
|
@@ -642,12 +671,14 @@ export interface AuditMitigationActionExecutionMetadata {
|
|
|
642
671
|
errorCode?: string;
|
|
643
672
|
message?: string;
|
|
644
673
|
}
|
|
645
|
-
export declare
|
|
646
|
-
CANCELED
|
|
647
|
-
COMPLETED
|
|
648
|
-
FAILED
|
|
649
|
-
IN_PROGRESS
|
|
650
|
-
}
|
|
674
|
+
export declare const AuditMitigationActionsTaskStatus: {
|
|
675
|
+
readonly CANCELED: "CANCELED";
|
|
676
|
+
readonly COMPLETED: "COMPLETED";
|
|
677
|
+
readonly FAILED: "FAILED";
|
|
678
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
679
|
+
};
|
|
680
|
+
export type AuditMitigationActionsTaskStatus =
|
|
681
|
+
(typeof AuditMitigationActionsTaskStatus)[keyof typeof AuditMitigationActionsTaskStatus];
|
|
651
682
|
export interface AuditMitigationActionsTaskMetadata {
|
|
652
683
|
taskId?: string;
|
|
653
684
|
startTime?: Date;
|
|
@@ -670,9 +701,11 @@ export interface AuditNotificationTarget {
|
|
|
670
701
|
roleArn?: string;
|
|
671
702
|
enabled?: boolean;
|
|
672
703
|
}
|
|
673
|
-
export declare
|
|
674
|
-
SNS
|
|
675
|
-
}
|
|
704
|
+
export declare const AuditNotificationType: {
|
|
705
|
+
readonly SNS: "SNS";
|
|
706
|
+
};
|
|
707
|
+
export type AuditNotificationType =
|
|
708
|
+
(typeof AuditNotificationType)[keyof typeof AuditNotificationType];
|
|
676
709
|
export interface AuditSuppression {
|
|
677
710
|
checkName: string | undefined;
|
|
678
711
|
resourceIdentifier: ResourceIdentifier | undefined;
|
|
@@ -680,26 +713,30 @@ export interface AuditSuppression {
|
|
|
680
713
|
suppressIndefinitely?: boolean;
|
|
681
714
|
description?: string;
|
|
682
715
|
}
|
|
683
|
-
export declare
|
|
684
|
-
CANCELED
|
|
685
|
-
COMPLETED
|
|
686
|
-
FAILED
|
|
687
|
-
IN_PROGRESS
|
|
688
|
-
}
|
|
689
|
-
export
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
716
|
+
export declare const AuditTaskStatus: {
|
|
717
|
+
readonly CANCELED: "CANCELED";
|
|
718
|
+
readonly COMPLETED: "COMPLETED";
|
|
719
|
+
readonly FAILED: "FAILED";
|
|
720
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
721
|
+
};
|
|
722
|
+
export type AuditTaskStatus =
|
|
723
|
+
(typeof AuditTaskStatus)[keyof typeof AuditTaskStatus];
|
|
724
|
+
export declare const AuditTaskType: {
|
|
725
|
+
readonly ON_DEMAND_AUDIT_TASK: "ON_DEMAND_AUDIT_TASK";
|
|
726
|
+
readonly SCHEDULED_AUDIT_TASK: "SCHEDULED_AUDIT_TASK";
|
|
727
|
+
};
|
|
728
|
+
export type AuditTaskType = (typeof AuditTaskType)[keyof typeof AuditTaskType];
|
|
693
729
|
export interface AuditTaskMetadata {
|
|
694
730
|
taskId?: string;
|
|
695
731
|
taskStatus?: AuditTaskStatus | string;
|
|
696
732
|
taskType?: AuditTaskType | string;
|
|
697
733
|
}
|
|
698
|
-
export declare
|
|
699
|
-
ALLOWED
|
|
700
|
-
EXPLICIT_DENY
|
|
701
|
-
IMPLICIT_DENY
|
|
702
|
-
}
|
|
734
|
+
export declare const AuthDecision: {
|
|
735
|
+
readonly ALLOWED: "ALLOWED";
|
|
736
|
+
readonly EXPLICIT_DENY: "EXPLICIT_DENY";
|
|
737
|
+
readonly IMPLICIT_DENY: "IMPLICIT_DENY";
|
|
738
|
+
};
|
|
739
|
+
export type AuthDecision = (typeof AuthDecision)[keyof typeof AuthDecision];
|
|
703
740
|
export interface AuthInfo {
|
|
704
741
|
actionType?: ActionType | string;
|
|
705
742
|
resources: string[] | undefined;
|
|
@@ -708,10 +745,12 @@ export interface AuthorizerConfig {
|
|
|
708
745
|
defaultAuthorizerName?: string;
|
|
709
746
|
allowAuthorizerOverride?: boolean;
|
|
710
747
|
}
|
|
711
|
-
export declare
|
|
712
|
-
ACTIVE
|
|
713
|
-
INACTIVE
|
|
714
|
-
}
|
|
748
|
+
export declare const AuthorizerStatus: {
|
|
749
|
+
readonly ACTIVE: "ACTIVE";
|
|
750
|
+
readonly INACTIVE: "INACTIVE";
|
|
751
|
+
};
|
|
752
|
+
export type AuthorizerStatus =
|
|
753
|
+
(typeof AuthorizerStatus)[keyof typeof AuthorizerStatus];
|
|
715
754
|
export interface AuthorizerDescription {
|
|
716
755
|
authorizerName?: string;
|
|
717
756
|
authorizerArn?: string;
|
|
@@ -745,10 +784,12 @@ export interface AuthResult {
|
|
|
745
784
|
authDecision?: AuthDecision | string;
|
|
746
785
|
missingContextValues?: string[];
|
|
747
786
|
}
|
|
748
|
-
export declare
|
|
749
|
-
DISABLE
|
|
750
|
-
ENABLE
|
|
751
|
-
}
|
|
787
|
+
export declare const AutoRegistrationStatus: {
|
|
788
|
+
readonly DISABLE: "DISABLE";
|
|
789
|
+
readonly ENABLE: "ENABLE";
|
|
790
|
+
};
|
|
791
|
+
export type AutoRegistrationStatus =
|
|
792
|
+
(typeof AutoRegistrationStatus)[keyof typeof AutoRegistrationStatus];
|
|
752
793
|
export interface CancelAuditMitigationActionsTaskRequest {
|
|
753
794
|
taskId: string | undefined;
|
|
754
795
|
}
|
|
@@ -871,12 +912,14 @@ export interface CreateCertificateFromCsrResponse {
|
|
|
871
912
|
certificateId?: string;
|
|
872
913
|
certificatePem?: string;
|
|
873
914
|
}
|
|
874
|
-
export declare
|
|
875
|
-
IP_ADDRESS_LIST
|
|
876
|
-
NUMBER
|
|
877
|
-
NUMBER_LIST
|
|
878
|
-
STRING_LIST
|
|
879
|
-
}
|
|
915
|
+
export declare const CustomMetricType: {
|
|
916
|
+
readonly IP_ADDRESS_LIST: "ip-address-list";
|
|
917
|
+
readonly NUMBER: "number";
|
|
918
|
+
readonly NUMBER_LIST: "number-list";
|
|
919
|
+
readonly STRING_LIST: "string-list";
|
|
920
|
+
};
|
|
921
|
+
export type CustomMetricType =
|
|
922
|
+
(typeof CustomMetricType)[keyof typeof CustomMetricType];
|
|
880
923
|
export interface CreateCustomMetricRequest {
|
|
881
924
|
metricName: string | undefined;
|
|
882
925
|
displayName?: string;
|
|
@@ -888,9 +931,10 @@ export interface CreateCustomMetricResponse {
|
|
|
888
931
|
metricName?: string;
|
|
889
932
|
metricArn?: string;
|
|
890
933
|
}
|
|
891
|
-
export declare
|
|
892
|
-
TOPIC_FILTER
|
|
893
|
-
}
|
|
934
|
+
export declare const DimensionType: {
|
|
935
|
+
readonly TOPIC_FILTER: "TOPIC_FILTER";
|
|
936
|
+
};
|
|
937
|
+
export type DimensionType = (typeof DimensionType)[keyof typeof DimensionType];
|
|
894
938
|
export interface CreateDimensionRequest {
|
|
895
939
|
name: string | undefined;
|
|
896
940
|
type: DimensionType | string | undefined;
|
|
@@ -909,11 +953,12 @@ export declare class CertificateValidationException extends __BaseException {
|
|
|
909
953
|
opts: __ExceptionOptionType<CertificateValidationException, __BaseException>
|
|
910
954
|
);
|
|
911
955
|
}
|
|
912
|
-
export declare
|
|
913
|
-
CREDENTIAL_PROVIDER
|
|
914
|
-
DATA
|
|
915
|
-
JOBS
|
|
916
|
-
}
|
|
956
|
+
export declare const ServiceType: {
|
|
957
|
+
readonly CREDENTIAL_PROVIDER: "CREDENTIAL_PROVIDER";
|
|
958
|
+
readonly DATA: "DATA";
|
|
959
|
+
readonly JOBS: "JOBS";
|
|
960
|
+
};
|
|
961
|
+
export type ServiceType = (typeof ServiceType)[keyof typeof ServiceType];
|
|
917
962
|
export interface CreateDomainConfigurationRequest {
|
|
918
963
|
domainConfigurationName: string | undefined;
|
|
919
964
|
domainName?: string;
|
|
@@ -954,35 +999,37 @@ export declare class InvalidQueryException extends __BaseException {
|
|
|
954
999
|
opts: __ExceptionOptionType<InvalidQueryException, __BaseException>
|
|
955
1000
|
);
|
|
956
1001
|
}
|
|
957
|
-
export declare
|
|
958
|
-
Bits
|
|
959
|
-
BitsSecond
|
|
960
|
-
Bytes
|
|
961
|
-
BytesSecond
|
|
962
|
-
Count
|
|
963
|
-
CountSecond
|
|
964
|
-
Gigabits
|
|
965
|
-
GigabitsSecond
|
|
966
|
-
Gigabytes
|
|
967
|
-
GigabytesSecond
|
|
968
|
-
Kilobits
|
|
969
|
-
KilobitsSecond
|
|
970
|
-
Kilobytes
|
|
971
|
-
KilobytesSecond
|
|
972
|
-
Megabits
|
|
973
|
-
MegabitsSecond
|
|
974
|
-
Megabytes
|
|
975
|
-
MegabytesSecond
|
|
976
|
-
Microseconds
|
|
977
|
-
Milliseconds
|
|
978
|
-
None
|
|
979
|
-
Percent
|
|
980
|
-
Seconds
|
|
981
|
-
Terabits
|
|
982
|
-
TerabitsSecond
|
|
983
|
-
Terabytes
|
|
984
|
-
TerabytesSecond
|
|
985
|
-
}
|
|
1002
|
+
export declare const FleetMetricUnit: {
|
|
1003
|
+
readonly Bits: "Bits";
|
|
1004
|
+
readonly BitsSecond: "Bits/Second";
|
|
1005
|
+
readonly Bytes: "Bytes";
|
|
1006
|
+
readonly BytesSecond: "Bytes/Second";
|
|
1007
|
+
readonly Count: "Count";
|
|
1008
|
+
readonly CountSecond: "Count/Second";
|
|
1009
|
+
readonly Gigabits: "Gigabits";
|
|
1010
|
+
readonly GigabitsSecond: "Gigabits/Second";
|
|
1011
|
+
readonly Gigabytes: "Gigabytes";
|
|
1012
|
+
readonly GigabytesSecond: "Gigabytes/Second";
|
|
1013
|
+
readonly Kilobits: "Kilobits";
|
|
1014
|
+
readonly KilobitsSecond: "Kilobits/Second";
|
|
1015
|
+
readonly Kilobytes: "Kilobytes";
|
|
1016
|
+
readonly KilobytesSecond: "Kilobytes/Second";
|
|
1017
|
+
readonly Megabits: "Megabits";
|
|
1018
|
+
readonly MegabitsSecond: "Megabits/Second";
|
|
1019
|
+
readonly Megabytes: "Megabytes";
|
|
1020
|
+
readonly MegabytesSecond: "Megabytes/Second";
|
|
1021
|
+
readonly Microseconds: "Microseconds";
|
|
1022
|
+
readonly Milliseconds: "Milliseconds";
|
|
1023
|
+
readonly None: "None";
|
|
1024
|
+
readonly Percent: "Percent";
|
|
1025
|
+
readonly Seconds: "Seconds";
|
|
1026
|
+
readonly Terabits: "Terabits";
|
|
1027
|
+
readonly TerabitsSecond: "Terabits/Second";
|
|
1028
|
+
readonly Terabytes: "Terabytes";
|
|
1029
|
+
readonly TerabytesSecond: "Terabytes/Second";
|
|
1030
|
+
};
|
|
1031
|
+
export type FleetMetricUnit =
|
|
1032
|
+
(typeof FleetMetricUnit)[keyof typeof FleetMetricUnit];
|
|
986
1033
|
export interface CreateFleetMetricRequest {
|
|
987
1034
|
metricName: string | undefined;
|
|
988
1035
|
queryString: string | undefined;
|
|
@@ -1013,11 +1060,13 @@ export declare class InvalidAggregationException extends __BaseException {
|
|
|
1013
1060
|
opts: __ExceptionOptionType<InvalidAggregationException, __BaseException>
|
|
1014
1061
|
);
|
|
1015
1062
|
}
|
|
1016
|
-
export declare
|
|
1017
|
-
ALL
|
|
1018
|
-
FAILED
|
|
1019
|
-
TIMED_OUT
|
|
1020
|
-
}
|
|
1063
|
+
export declare const RetryableFailureType: {
|
|
1064
|
+
readonly ALL: "ALL";
|
|
1065
|
+
readonly FAILED: "FAILED";
|
|
1066
|
+
readonly TIMED_OUT: "TIMED_OUT";
|
|
1067
|
+
};
|
|
1068
|
+
export type RetryableFailureType =
|
|
1069
|
+
(typeof RetryableFailureType)[keyof typeof RetryableFailureType];
|
|
1021
1070
|
export interface RetryCriteria {
|
|
1022
1071
|
failureType: RetryableFailureType | string | undefined;
|
|
1023
1072
|
numberOfRetries: number | undefined;
|
|
@@ -1042,11 +1091,13 @@ export interface PresignedUrlConfig {
|
|
|
1042
1091
|
roleArn?: string;
|
|
1043
1092
|
expiresInSec?: number;
|
|
1044
1093
|
}
|
|
1045
|
-
export declare
|
|
1046
|
-
CANCEL
|
|
1047
|
-
FORCE_CANCEL
|
|
1048
|
-
STOP_ROLLOUT
|
|
1049
|
-
}
|
|
1094
|
+
export declare const JobEndBehavior: {
|
|
1095
|
+
readonly CANCEL: "CANCEL";
|
|
1096
|
+
readonly FORCE_CANCEL: "FORCE_CANCEL";
|
|
1097
|
+
readonly STOP_ROLLOUT: "STOP_ROLLOUT";
|
|
1098
|
+
};
|
|
1099
|
+
export type JobEndBehavior =
|
|
1100
|
+
(typeof JobEndBehavior)[keyof typeof JobEndBehavior];
|
|
1050
1101
|
export interface MaintenanceWindow {
|
|
1051
1102
|
startTime: string | undefined;
|
|
1052
1103
|
durationInMinutes: number | undefined;
|
|
@@ -1057,10 +1108,12 @@ export interface SchedulingConfig {
|
|
|
1057
1108
|
endBehavior?: JobEndBehavior | string;
|
|
1058
1109
|
maintenanceWindows?: MaintenanceWindow[];
|
|
1059
1110
|
}
|
|
1060
|
-
export declare
|
|
1061
|
-
CONTINUOUS
|
|
1062
|
-
SNAPSHOT
|
|
1063
|
-
}
|
|
1111
|
+
export declare const TargetSelection: {
|
|
1112
|
+
readonly CONTINUOUS: "CONTINUOUS";
|
|
1113
|
+
readonly SNAPSHOT: "SNAPSHOT";
|
|
1114
|
+
};
|
|
1115
|
+
export type TargetSelection =
|
|
1116
|
+
(typeof TargetSelection)[keyof typeof TargetSelection];
|
|
1064
1117
|
export interface TimeoutConfig {
|
|
1065
1118
|
inProgressTimeoutInMinutes?: number;
|
|
1066
1119
|
}
|
|
@@ -1123,13 +1176,14 @@ export interface CreateKeysAndCertificateResponse {
|
|
|
1123
1176
|
certificatePem?: string;
|
|
1124
1177
|
keyPair?: KeyPair;
|
|
1125
1178
|
}
|
|
1126
|
-
export declare
|
|
1127
|
-
DEBUG
|
|
1128
|
-
DISABLED
|
|
1129
|
-
ERROR
|
|
1130
|
-
INFO
|
|
1131
|
-
WARN
|
|
1132
|
-
}
|
|
1179
|
+
export declare const LogLevel: {
|
|
1180
|
+
readonly DEBUG: "DEBUG";
|
|
1181
|
+
readonly DISABLED: "DISABLED";
|
|
1182
|
+
readonly ERROR: "ERROR";
|
|
1183
|
+
readonly INFO: "INFO";
|
|
1184
|
+
readonly WARN: "WARN";
|
|
1185
|
+
};
|
|
1186
|
+
export type LogLevel = (typeof LogLevel)[keyof typeof LogLevel];
|
|
1133
1187
|
export interface EnableIoTLoggingParams {
|
|
1134
1188
|
roleArnForLogging: string | undefined;
|
|
1135
1189
|
logLevel: LogLevel | string | undefined;
|
|
@@ -1137,21 +1191,27 @@ export interface EnableIoTLoggingParams {
|
|
|
1137
1191
|
export interface PublishFindingToSnsParams {
|
|
1138
1192
|
topicArn: string | undefined;
|
|
1139
1193
|
}
|
|
1140
|
-
export declare
|
|
1141
|
-
BLANK_POLICY
|
|
1142
|
-
}
|
|
1194
|
+
export declare const PolicyTemplateName: {
|
|
1195
|
+
readonly BLANK_POLICY: "BLANK_POLICY";
|
|
1196
|
+
};
|
|
1197
|
+
export type PolicyTemplateName =
|
|
1198
|
+
(typeof PolicyTemplateName)[keyof typeof PolicyTemplateName];
|
|
1143
1199
|
export interface ReplaceDefaultPolicyVersionParams {
|
|
1144
1200
|
templateName: PolicyTemplateName | string | undefined;
|
|
1145
1201
|
}
|
|
1146
|
-
export declare
|
|
1147
|
-
DEACTIVATE
|
|
1148
|
-
}
|
|
1202
|
+
export declare const CACertificateUpdateAction: {
|
|
1203
|
+
readonly DEACTIVATE: "DEACTIVATE";
|
|
1204
|
+
};
|
|
1205
|
+
export type CACertificateUpdateAction =
|
|
1206
|
+
(typeof CACertificateUpdateAction)[keyof typeof CACertificateUpdateAction];
|
|
1149
1207
|
export interface UpdateCACertificateParams {
|
|
1150
1208
|
action: CACertificateUpdateAction | string | undefined;
|
|
1151
1209
|
}
|
|
1152
|
-
export declare
|
|
1153
|
-
DEACTIVATE
|
|
1154
|
-
}
|
|
1210
|
+
export declare const DeviceCertificateUpdateAction: {
|
|
1211
|
+
readonly DEACTIVATE: "DEACTIVATE";
|
|
1212
|
+
};
|
|
1213
|
+
export type DeviceCertificateUpdateAction =
|
|
1214
|
+
(typeof DeviceCertificateUpdateAction)[keyof typeof DeviceCertificateUpdateAction];
|
|
1155
1215
|
export interface UpdateDeviceCertificateParams {
|
|
1156
1216
|
action: DeviceCertificateUpdateAction | string | undefined;
|
|
1157
1217
|
}
|
|
@@ -1173,15 +1233,19 @@ export interface CreateMitigationActionResponse {
|
|
|
1173
1233
|
actionArn?: string;
|
|
1174
1234
|
actionId?: string;
|
|
1175
1235
|
}
|
|
1176
|
-
export declare
|
|
1177
|
-
CANCEL
|
|
1178
|
-
}
|
|
1179
|
-
export
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1236
|
+
export declare const AwsJobAbortCriteriaAbortAction: {
|
|
1237
|
+
readonly CANCEL: "CANCEL";
|
|
1238
|
+
};
|
|
1239
|
+
export type AwsJobAbortCriteriaAbortAction =
|
|
1240
|
+
(typeof AwsJobAbortCriteriaAbortAction)[keyof typeof AwsJobAbortCriteriaAbortAction];
|
|
1241
|
+
export declare const AwsJobAbortCriteriaFailureType: {
|
|
1242
|
+
readonly ALL: "ALL";
|
|
1243
|
+
readonly FAILED: "FAILED";
|
|
1244
|
+
readonly REJECTED: "REJECTED";
|
|
1245
|
+
readonly TIMED_OUT: "TIMED_OUT";
|
|
1246
|
+
};
|
|
1247
|
+
export type AwsJobAbortCriteriaFailureType =
|
|
1248
|
+
(typeof AwsJobAbortCriteriaFailureType)[keyof typeof AwsJobAbortCriteriaFailureType];
|
|
1185
1249
|
export interface AwsJobAbortCriteria {
|
|
1186
1250
|
failureType: AwsJobAbortCriteriaFailureType | string | undefined;
|
|
1187
1251
|
action: AwsJobAbortCriteriaAbortAction | string | undefined;
|
|
@@ -1266,10 +1330,11 @@ export interface OTAUpdateFile {
|
|
|
1266
1330
|
codeSigning?: CodeSigning;
|
|
1267
1331
|
attributes?: Record<string, string>;
|
|
1268
1332
|
}
|
|
1269
|
-
export declare
|
|
1270
|
-
HTTP
|
|
1271
|
-
MQTT
|
|
1272
|
-
}
|
|
1333
|
+
export declare const Protocol: {
|
|
1334
|
+
readonly HTTP: "HTTP";
|
|
1335
|
+
readonly MQTT: "MQTT";
|
|
1336
|
+
};
|
|
1337
|
+
export type Protocol = (typeof Protocol)[keyof typeof Protocol];
|
|
1273
1338
|
export interface CreateOTAUpdateRequest {
|
|
1274
1339
|
otaUpdateId: string | undefined;
|
|
1275
1340
|
description?: string;
|
|
@@ -1285,12 +1350,14 @@ export interface CreateOTAUpdateRequest {
|
|
|
1285
1350
|
additionalParameters?: Record<string, string>;
|
|
1286
1351
|
tags?: Tag[];
|
|
1287
1352
|
}
|
|
1288
|
-
export declare
|
|
1289
|
-
CREATE_COMPLETE
|
|
1290
|
-
CREATE_FAILED
|
|
1291
|
-
CREATE_IN_PROGRESS
|
|
1292
|
-
CREATE_PENDING
|
|
1293
|
-
}
|
|
1353
|
+
export declare const OTAUpdateStatus: {
|
|
1354
|
+
readonly CREATE_COMPLETE: "CREATE_COMPLETE";
|
|
1355
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
1356
|
+
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
1357
|
+
readonly CREATE_PENDING: "CREATE_PENDING";
|
|
1358
|
+
};
|
|
1359
|
+
export type OTAUpdateStatus =
|
|
1360
|
+
(typeof OTAUpdateStatus)[keyof typeof OTAUpdateStatus];
|
|
1294
1361
|
export interface CreateOTAUpdateResponse {
|
|
1295
1362
|
otaUpdateId?: string;
|
|
1296
1363
|
awsIotJobId?: string;
|
|
@@ -1347,10 +1414,11 @@ export interface ProvisioningHook {
|
|
|
1347
1414
|
payloadVersion?: string;
|
|
1348
1415
|
targetArn: string | undefined;
|
|
1349
1416
|
}
|
|
1350
|
-
export declare
|
|
1351
|
-
FLEET_PROVISIONING
|
|
1352
|
-
JITP
|
|
1353
|
-
}
|
|
1417
|
+
export declare const TemplateType: {
|
|
1418
|
+
readonly FLEET_PROVISIONING: "FLEET_PROVISIONING";
|
|
1419
|
+
readonly JITP: "JITP";
|
|
1420
|
+
};
|
|
1421
|
+
export type TemplateType = (typeof TemplateType)[keyof typeof TemplateType];
|
|
1354
1422
|
export interface CreateProvisioningTemplateRequest {
|
|
1355
1423
|
templateName: string | undefined;
|
|
1356
1424
|
description?: string;
|
|
@@ -1387,15 +1455,16 @@ export interface CreateRoleAliasResponse {
|
|
|
1387
1455
|
roleAlias?: string;
|
|
1388
1456
|
roleAliasArn?: string;
|
|
1389
1457
|
}
|
|
1390
|
-
export declare
|
|
1391
|
-
FRI
|
|
1392
|
-
MON
|
|
1393
|
-
SAT
|
|
1394
|
-
SUN
|
|
1395
|
-
THU
|
|
1396
|
-
TUE
|
|
1397
|
-
WED
|
|
1398
|
-
}
|
|
1458
|
+
export declare const DayOfWeek: {
|
|
1459
|
+
readonly FRI: "FRI";
|
|
1460
|
+
readonly MON: "MON";
|
|
1461
|
+
readonly SAT: "SAT";
|
|
1462
|
+
readonly SUN: "SUN";
|
|
1463
|
+
readonly THU: "THU";
|
|
1464
|
+
readonly TUE: "TUE";
|
|
1465
|
+
readonly WED: "WED";
|
|
1466
|
+
};
|
|
1467
|
+
export type DayOfWeek = (typeof DayOfWeek)[keyof typeof DayOfWeek];
|
|
1399
1468
|
export interface CreateScheduledAuditRequest {
|
|
1400
1469
|
frequency: AuditFrequency | string | undefined;
|
|
1401
1470
|
dayOfMonth?: string;
|
|
@@ -1510,13 +1579,15 @@ export interface CreateTopicRuleDestinationRequest {
|
|
|
1510
1579
|
export interface HttpUrlDestinationProperties {
|
|
1511
1580
|
confirmationUrl?: string;
|
|
1512
1581
|
}
|
|
1513
|
-
export declare
|
|
1514
|
-
DELETING
|
|
1515
|
-
DISABLED
|
|
1516
|
-
ENABLED
|
|
1517
|
-
ERROR
|
|
1518
|
-
IN_PROGRESS
|
|
1519
|
-
}
|
|
1582
|
+
export declare const TopicRuleDestinationStatus: {
|
|
1583
|
+
readonly DELETING: "DELETING";
|
|
1584
|
+
readonly DISABLED: "DISABLED";
|
|
1585
|
+
readonly ENABLED: "ENABLED";
|
|
1586
|
+
readonly ERROR: "ERROR";
|
|
1587
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
1588
|
+
};
|
|
1589
|
+
export type TopicRuleDestinationStatus =
|
|
1590
|
+
(typeof TopicRuleDestinationStatus)[keyof typeof TopicRuleDestinationStatus];
|
|
1520
1591
|
export interface VpcDestinationProperties {
|
|
1521
1592
|
subnetIds?: string[];
|
|
1522
1593
|
securityGroups?: string[];
|