@aws-sdk/client-iot 3.687.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.
- package/dist-types/models/models_0.d.ts +529 -529
- package/dist-types/models/models_1.d.ts +685 -685
- package/dist-types/models/models_2.d.ts +498 -498
- package/dist-types/ts3.4/models/models_0.d.ts +531 -529
- package/dist-types/ts3.4/models/models_1.d.ts +689 -687
- package/dist-types/ts3.4/models/models_2.d.ts +502 -500
- package/package.json +7 -7
|
@@ -79,7 +79,7 @@ export interface AcceptCertificateTransferRequest {
|
|
|
79
79
|
* <p>Specifies whether the certificate is active.</p>
|
|
80
80
|
* @public
|
|
81
81
|
*/
|
|
82
|
-
setAsActive?: boolean;
|
|
82
|
+
setAsActive?: boolean | undefined;
|
|
83
83
|
}
|
|
84
84
|
/**
|
|
85
85
|
* <p>An unexpected error has occurred.</p>
|
|
@@ -213,7 +213,7 @@ export interface CloudwatchLogsAction {
|
|
|
213
213
|
* <i>(default)</i>.</p>
|
|
214
214
|
* @public
|
|
215
215
|
*/
|
|
216
|
-
batchMode?: boolean;
|
|
216
|
+
batchMode?: boolean | undefined;
|
|
217
217
|
}
|
|
218
218
|
/**
|
|
219
219
|
* <p>Describes an action that captures a CloudWatch metric.</p>
|
|
@@ -250,7 +250,7 @@ export interface CloudwatchMetricAction {
|
|
|
250
250
|
* <p>An optional <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/DeveloperGuide/cloudwatch_concepts.html#about_timestamp">Unix timestamp</a>.</p>
|
|
251
251
|
* @public
|
|
252
252
|
*/
|
|
253
|
-
metricTimestamp?: string;
|
|
253
|
+
metricTimestamp?: string | undefined;
|
|
254
254
|
}
|
|
255
255
|
/**
|
|
256
256
|
* @public
|
|
@@ -300,7 +300,7 @@ export interface DynamoDBAction {
|
|
|
300
300
|
* <code>INSERT</code>, <code>UPDATE</code>, or <code>DELETE</code>.</p>
|
|
301
301
|
* @public
|
|
302
302
|
*/
|
|
303
|
-
operation?: string;
|
|
303
|
+
operation?: string | undefined;
|
|
304
304
|
/**
|
|
305
305
|
* <p>The hash key name.</p>
|
|
306
306
|
* @public
|
|
@@ -315,27 +315,27 @@ export interface DynamoDBAction {
|
|
|
315
315
|
* <p>The hash key type. Valid values are "STRING" or "NUMBER"</p>
|
|
316
316
|
* @public
|
|
317
317
|
*/
|
|
318
|
-
hashKeyType?: DynamoKeyType;
|
|
318
|
+
hashKeyType?: DynamoKeyType | undefined;
|
|
319
319
|
/**
|
|
320
320
|
* <p>The range key name.</p>
|
|
321
321
|
* @public
|
|
322
322
|
*/
|
|
323
|
-
rangeKeyField?: string;
|
|
323
|
+
rangeKeyField?: string | undefined;
|
|
324
324
|
/**
|
|
325
325
|
* <p>The range key value.</p>
|
|
326
326
|
* @public
|
|
327
327
|
*/
|
|
328
|
-
rangeKeyValue?: string;
|
|
328
|
+
rangeKeyValue?: string | undefined;
|
|
329
329
|
/**
|
|
330
330
|
* <p>The range key type. Valid values are "STRING" or "NUMBER"</p>
|
|
331
331
|
* @public
|
|
332
332
|
*/
|
|
333
|
-
rangeKeyType?: DynamoKeyType;
|
|
333
|
+
rangeKeyType?: DynamoKeyType | undefined;
|
|
334
334
|
/**
|
|
335
335
|
* <p>The action payload. This name can be customized.</p>
|
|
336
336
|
* @public
|
|
337
337
|
*/
|
|
338
|
-
payloadField?: string;
|
|
338
|
+
payloadField?: string | undefined;
|
|
339
339
|
}
|
|
340
340
|
/**
|
|
341
341
|
* <p>The input for the DynamoActionVS action that specifies the DynamoDB table to which
|
|
@@ -432,7 +432,7 @@ export interface FirehoseAction {
|
|
|
432
432
|
* (comma).</p>
|
|
433
433
|
* @public
|
|
434
434
|
*/
|
|
435
|
-
separator?: string;
|
|
435
|
+
separator?: string | undefined;
|
|
436
436
|
/**
|
|
437
437
|
* <p>Whether to deliver the Kinesis Data Firehose stream as a batch by using <a href="https://docs.aws.amazon.com/firehose/latest/APIReference/API_PutRecordBatch.html">
|
|
438
438
|
* <code>PutRecordBatch</code>
|
|
@@ -445,7 +445,7 @@ export interface FirehoseAction {
|
|
|
445
445
|
* than 500 records.</p>
|
|
446
446
|
* @public
|
|
447
447
|
*/
|
|
448
|
-
batchMode?: boolean;
|
|
448
|
+
batchMode?: boolean | undefined;
|
|
449
449
|
}
|
|
450
450
|
/**
|
|
451
451
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html">Signature Version 4 signing process</a>.</p>
|
|
@@ -478,7 +478,7 @@ export interface HttpAuthorization {
|
|
|
478
478
|
* Version 4 Signing Process</a>.</p>
|
|
479
479
|
* @public
|
|
480
480
|
*/
|
|
481
|
-
sigv4?: SigV4Authorization;
|
|
481
|
+
sigv4?: SigV4Authorization | undefined;
|
|
482
482
|
}
|
|
483
483
|
/**
|
|
484
484
|
* <p>The HTTP action header.</p>
|
|
@@ -517,17 +517,17 @@ export interface HttpAction {
|
|
|
517
517
|
* URL.</p>
|
|
518
518
|
* @public
|
|
519
519
|
*/
|
|
520
|
-
confirmationUrl?: string;
|
|
520
|
+
confirmationUrl?: string | undefined;
|
|
521
521
|
/**
|
|
522
522
|
* <p>The HTTP headers to send with the message data.</p>
|
|
523
523
|
* @public
|
|
524
524
|
*/
|
|
525
|
-
headers?: HttpActionHeader[];
|
|
525
|
+
headers?: HttpActionHeader[] | undefined;
|
|
526
526
|
/**
|
|
527
527
|
* <p>The authentication method to use when sending data to an HTTPS endpoint.</p>
|
|
528
528
|
* @public
|
|
529
529
|
*/
|
|
530
|
-
auth?: HttpAuthorization;
|
|
530
|
+
auth?: HttpAuthorization | undefined;
|
|
531
531
|
}
|
|
532
532
|
/**
|
|
533
533
|
* <p>Sends message data to an IoT Analytics channel.</p>
|
|
@@ -539,12 +539,12 @@ export interface IotAnalyticsAction {
|
|
|
539
539
|
* sent.</p>
|
|
540
540
|
* @public
|
|
541
541
|
*/
|
|
542
|
-
channelArn?: string;
|
|
542
|
+
channelArn?: string | undefined;
|
|
543
543
|
/**
|
|
544
544
|
* <p>The name of the IoT Analytics channel to which message data will be sent.</p>
|
|
545
545
|
* @public
|
|
546
546
|
*/
|
|
547
|
-
channelName?: string;
|
|
547
|
+
channelName?: string | undefined;
|
|
548
548
|
/**
|
|
549
549
|
* <p>Whether to process the action as a batch. The default value is
|
|
550
550
|
* <code>false</code>.</p>
|
|
@@ -555,13 +555,13 @@ export interface IotAnalyticsAction {
|
|
|
555
555
|
* than 100 messages.</p>
|
|
556
556
|
* @public
|
|
557
557
|
*/
|
|
558
|
-
batchMode?: boolean;
|
|
558
|
+
batchMode?: boolean | undefined;
|
|
559
559
|
/**
|
|
560
560
|
* <p>The ARN of the role which has a policy that grants IoT Analytics permission to send
|
|
561
561
|
* message data via IoT Analytics (iotanalytics:BatchPutMessage).</p>
|
|
562
562
|
* @public
|
|
563
563
|
*/
|
|
564
|
-
roleArn?: string;
|
|
564
|
+
roleArn?: string | undefined;
|
|
565
565
|
}
|
|
566
566
|
/**
|
|
567
567
|
* <p>Sends an input to an IoT Events detector.</p>
|
|
@@ -581,7 +581,7 @@ export interface IotEventsAction {
|
|
|
581
581
|
* <code>messageId</code> will be processed by an IoT Events detector.</p>
|
|
582
582
|
* @public
|
|
583
583
|
*/
|
|
584
|
-
messageId?: string;
|
|
584
|
+
messageId?: string | undefined;
|
|
585
585
|
/**
|
|
586
586
|
* <p>Whether to process the event actions as a batch. The default value is
|
|
587
587
|
* <code>false</code>.</p>
|
|
@@ -595,7 +595,7 @@ export interface IotEventsAction {
|
|
|
595
595
|
* than 10 messages.</p>
|
|
596
596
|
* @public
|
|
597
597
|
*/
|
|
598
|
-
batchMode?: boolean;
|
|
598
|
+
batchMode?: boolean | undefined;
|
|
599
599
|
/**
|
|
600
600
|
* <p>The ARN of the role that grants IoT permission to send an input to an IoT
|
|
601
601
|
* Events detector. ("Action":"iotevents:BatchPutMessage").</p>
|
|
@@ -619,7 +619,7 @@ export interface AssetPropertyTimestamp {
|
|
|
619
619
|
* templates.</p>
|
|
620
620
|
* @public
|
|
621
621
|
*/
|
|
622
|
-
offsetInNanos?: string;
|
|
622
|
+
offsetInNanos?: string | undefined;
|
|
623
623
|
}
|
|
624
624
|
/**
|
|
625
625
|
* <p>Contains an asset property value (of a single type).</p>
|
|
@@ -716,7 +716,7 @@ export interface AssetPropertyValue {
|
|
|
716
716
|
* templates. Must be <code>GOOD</code>, <code>BAD</code>, or <code>UNCERTAIN</code>.</p>
|
|
717
717
|
* @public
|
|
718
718
|
*/
|
|
719
|
-
quality?: string;
|
|
719
|
+
quality?: string | undefined;
|
|
720
720
|
}
|
|
721
721
|
/**
|
|
722
722
|
* <p>An asset property value entry containing the following information.</p>
|
|
@@ -729,28 +729,28 @@ export interface PutAssetPropertyValueEntry {
|
|
|
729
729
|
* UUID.</p>
|
|
730
730
|
* @public
|
|
731
731
|
*/
|
|
732
|
-
entryId?: string;
|
|
732
|
+
entryId?: string | undefined;
|
|
733
733
|
/**
|
|
734
734
|
* <p>The ID of the IoT SiteWise asset. You must specify either a <code>propertyAlias</code>
|
|
735
735
|
* or both an <code>aliasId</code> and a <code>propertyId</code>. Accepts substitution
|
|
736
736
|
* templates.</p>
|
|
737
737
|
* @public
|
|
738
738
|
*/
|
|
739
|
-
assetId?: string;
|
|
739
|
+
assetId?: string | undefined;
|
|
740
740
|
/**
|
|
741
741
|
* <p>The ID of the asset's property. You must specify either a <code>propertyAlias</code> or
|
|
742
742
|
* both an <code>aliasId</code> and a <code>propertyId</code>. Accepts substitution
|
|
743
743
|
* templates.</p>
|
|
744
744
|
* @public
|
|
745
745
|
*/
|
|
746
|
-
propertyId?: string;
|
|
746
|
+
propertyId?: string | undefined;
|
|
747
747
|
/**
|
|
748
748
|
* <p>The name of the property alias associated with your asset property. You must specify
|
|
749
749
|
* either a <code>propertyAlias</code> or both an <code>aliasId</code> and a
|
|
750
750
|
* <code>propertyId</code>. Accepts substitution templates.</p>
|
|
751
751
|
* @public
|
|
752
752
|
*/
|
|
753
|
-
propertyAlias?: string;
|
|
753
|
+
propertyAlias?: string | undefined;
|
|
754
754
|
/**
|
|
755
755
|
* <p>A list of property values to insert that each contain timestamp, quality, and value (TQV)
|
|
756
756
|
* information.</p>
|
|
@@ -815,12 +815,12 @@ export interface KafkaAction {
|
|
|
815
815
|
* <p>The Kafka message key.</p>
|
|
816
816
|
* @public
|
|
817
817
|
*/
|
|
818
|
-
key?: string;
|
|
818
|
+
key?: string | undefined;
|
|
819
819
|
/**
|
|
820
820
|
* <p>The Kafka message partition.</p>
|
|
821
821
|
* @public
|
|
822
822
|
*/
|
|
823
|
-
partition?: string;
|
|
823
|
+
partition?: string | undefined;
|
|
824
824
|
/**
|
|
825
825
|
* <p>Properties of the Apache Kafka producer client.</p>
|
|
826
826
|
* @public
|
|
@@ -830,7 +830,7 @@ export interface KafkaAction {
|
|
|
830
830
|
* <p>The list of Kafka headers that you specify.</p>
|
|
831
831
|
* @public
|
|
832
832
|
*/
|
|
833
|
-
headers?: KafkaActionHeader[];
|
|
833
|
+
headers?: KafkaActionHeader[] | undefined;
|
|
834
834
|
}
|
|
835
835
|
/**
|
|
836
836
|
* <p>Describes an action to write data to an Amazon Kinesis stream.</p>
|
|
@@ -851,7 +851,7 @@ export interface KinesisAction {
|
|
|
851
851
|
* <p>The partition key.</p>
|
|
852
852
|
* @public
|
|
853
853
|
*/
|
|
854
|
-
partitionKey?: string;
|
|
854
|
+
partitionKey?: string | undefined;
|
|
855
855
|
}
|
|
856
856
|
/**
|
|
857
857
|
* <p>Describes an action to invoke a Lambda function.</p>
|
|
@@ -883,7 +883,7 @@ export interface LocationTimestamp {
|
|
|
883
883
|
* <code>MILLISECONDS</code>.</p>
|
|
884
884
|
* @public
|
|
885
885
|
*/
|
|
886
|
-
unit?: string;
|
|
886
|
+
unit?: string | undefined;
|
|
887
887
|
}
|
|
888
888
|
/**
|
|
889
889
|
* <p>The Amazon Location rule action sends device location updates from
|
|
@@ -911,7 +911,7 @@ export interface LocationAction {
|
|
|
911
911
|
* the time the MQTT message was processed.</p>
|
|
912
912
|
* @public
|
|
913
913
|
*/
|
|
914
|
-
timestamp?: LocationTimestamp;
|
|
914
|
+
timestamp?: LocationTimestamp | undefined;
|
|
915
915
|
/**
|
|
916
916
|
* <p>A string that evaluates to a double value that represents the
|
|
917
917
|
* latitude of the device's location.</p>
|
|
@@ -991,7 +991,7 @@ export interface MqttHeaders {
|
|
|
991
991
|
* templates</a>.</p>
|
|
992
992
|
* @public
|
|
993
993
|
*/
|
|
994
|
-
payloadFormatIndicator?: string;
|
|
994
|
+
payloadFormatIndicator?: string | undefined;
|
|
995
995
|
/**
|
|
996
996
|
* <p>A UTF-8 encoded string that describes the content of the publishing message.</p>
|
|
997
997
|
* <p>For more information, see <a href="https://docs.oasis-open.org/mqtt/mqtt/v5.0/os/mqtt-v5.0-os.html#_Toc3901118">
|
|
@@ -1000,7 +1000,7 @@ export interface MqttHeaders {
|
|
|
1000
1000
|
* templates</a>.</p>
|
|
1001
1001
|
* @public
|
|
1002
1002
|
*/
|
|
1003
|
-
contentType?: string;
|
|
1003
|
+
contentType?: string | undefined;
|
|
1004
1004
|
/**
|
|
1005
1005
|
* <p>A UTF-8 encoded string that's used as the topic name for a response message. The response topic is used to describe
|
|
1006
1006
|
* the topic which the receiver should publish to as part of the request-response flow. The topic must not contain wildcard
|
|
@@ -1011,7 +1011,7 @@ export interface MqttHeaders {
|
|
|
1011
1011
|
* templates</a>.</p>
|
|
1012
1012
|
* @public
|
|
1013
1013
|
*/
|
|
1014
|
-
responseTopic?: string;
|
|
1014
|
+
responseTopic?: string | undefined;
|
|
1015
1015
|
/**
|
|
1016
1016
|
* <p>The base64-encoded binary data used by the sender of the request message to identify which request the response message is
|
|
1017
1017
|
* for when it's received.</p>
|
|
@@ -1026,7 +1026,7 @@ export interface MqttHeaders {
|
|
|
1026
1026
|
* templates</a>.</p>
|
|
1027
1027
|
* @public
|
|
1028
1028
|
*/
|
|
1029
|
-
correlationData?: string;
|
|
1029
|
+
correlationData?: string | undefined;
|
|
1030
1030
|
/**
|
|
1031
1031
|
* <p>A user-defined integer value that will persist a message at the message broker for a
|
|
1032
1032
|
* specified amount of time to ensure that the message will expire if it's no longer relevant to
|
|
@@ -1037,12 +1037,12 @@ export interface MqttHeaders {
|
|
|
1037
1037
|
* templates</a>.</p>
|
|
1038
1038
|
* @public
|
|
1039
1039
|
*/
|
|
1040
|
-
messageExpiry?: string;
|
|
1040
|
+
messageExpiry?: string | undefined;
|
|
1041
1041
|
/**
|
|
1042
1042
|
* <p>An array of key-value pairs that you define in the MQTT5 header.</p>
|
|
1043
1043
|
* @public
|
|
1044
1044
|
*/
|
|
1045
|
-
userProperties?: UserProperty[];
|
|
1045
|
+
userProperties?: UserProperty[] | undefined;
|
|
1046
1046
|
}
|
|
1047
1047
|
/**
|
|
1048
1048
|
* <p>Describes an action to republish to another topic.</p>
|
|
@@ -1064,13 +1064,13 @@ export interface RepublishAction {
|
|
|
1064
1064
|
* is 0.</p>
|
|
1065
1065
|
* @public
|
|
1066
1066
|
*/
|
|
1067
|
-
qos?: number;
|
|
1067
|
+
qos?: number | undefined;
|
|
1068
1068
|
/**
|
|
1069
1069
|
* <p>MQTT Version 5.0 headers information. For more information, see <a href="https://docs.aws.amazon.com/iot/latest/developerguide/mqtt.html">
|
|
1070
1070
|
* MQTT</a> from the Amazon Web Services IoT Core Developer Guide.</p>
|
|
1071
1071
|
* @public
|
|
1072
1072
|
*/
|
|
1073
|
-
headers?: MqttHeaders;
|
|
1073
|
+
headers?: MqttHeaders | undefined;
|
|
1074
1074
|
}
|
|
1075
1075
|
/**
|
|
1076
1076
|
* @public
|
|
@@ -1115,7 +1115,7 @@ export interface S3Action {
|
|
|
1115
1115
|
* key. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/acl-overview.html#canned-acl">S3 canned ACLs</a>.</p>
|
|
1116
1116
|
* @public
|
|
1117
1117
|
*/
|
|
1118
|
-
cannedAcl?: CannedAccessControlList;
|
|
1118
|
+
cannedAcl?: CannedAccessControlList | undefined;
|
|
1119
1119
|
}
|
|
1120
1120
|
/**
|
|
1121
1121
|
* <p>Describes an action to write a message to a Salesforce IoT Cloud Input
|
|
@@ -1171,7 +1171,7 @@ export interface SnsAction {
|
|
|
1171
1171
|
* be extracted. To read more about SNS message formats, see <a href="https://docs.aws.amazon.com/sns/latest/dg/json-formats.html">https://docs.aws.amazon.com/sns/latest/dg/json-formats.html</a> refer to their official documentation.</p>
|
|
1172
1172
|
* @public
|
|
1173
1173
|
*/
|
|
1174
|
-
messageFormat?: MessageFormat;
|
|
1174
|
+
messageFormat?: MessageFormat | undefined;
|
|
1175
1175
|
}
|
|
1176
1176
|
/**
|
|
1177
1177
|
* <p>Describes an action to publish data to an Amazon SQS queue.</p>
|
|
@@ -1192,7 +1192,7 @@ export interface SqsAction {
|
|
|
1192
1192
|
* <p>Specifies whether to use Base64 encoding.</p>
|
|
1193
1193
|
* @public
|
|
1194
1194
|
*/
|
|
1195
|
-
useBase64?: boolean;
|
|
1195
|
+
useBase64?: boolean | undefined;
|
|
1196
1196
|
}
|
|
1197
1197
|
/**
|
|
1198
1198
|
* <p>Starts execution of a Step Functions state machine.</p>
|
|
@@ -1205,7 +1205,7 @@ export interface StepFunctionsAction {
|
|
|
1205
1205
|
* machine execution if one is not provided.</p>
|
|
1206
1206
|
* @public
|
|
1207
1207
|
*/
|
|
1208
|
-
executionNamePrefix?: string;
|
|
1208
|
+
executionNamePrefix?: string | undefined;
|
|
1209
1209
|
/**
|
|
1210
1210
|
* <p>The name of the Step Functions state machine whose execution will be started.</p>
|
|
1211
1211
|
* @public
|
|
@@ -1300,7 +1300,7 @@ export interface TimestreamAction {
|
|
|
1300
1300
|
* processed the rule. </p>
|
|
1301
1301
|
* @public
|
|
1302
1302
|
*/
|
|
1303
|
-
timestamp?: TimestreamTimestamp;
|
|
1303
|
+
timestamp?: TimestreamTimestamp | undefined;
|
|
1304
1304
|
}
|
|
1305
1305
|
/**
|
|
1306
1306
|
* <p>Describes the actions associated with a rule.</p>
|
|
@@ -1311,64 +1311,64 @@ export interface Action {
|
|
|
1311
1311
|
* <p>Write to a DynamoDB table.</p>
|
|
1312
1312
|
* @public
|
|
1313
1313
|
*/
|
|
1314
|
-
dynamoDB?: DynamoDBAction;
|
|
1314
|
+
dynamoDB?: DynamoDBAction | undefined;
|
|
1315
1315
|
/**
|
|
1316
1316
|
* <p>Write to a DynamoDB table. This is a new version of the DynamoDB action. It allows
|
|
1317
1317
|
* you to write each attribute in an MQTT message payload into a separate DynamoDB
|
|
1318
1318
|
* column.</p>
|
|
1319
1319
|
* @public
|
|
1320
1320
|
*/
|
|
1321
|
-
dynamoDBv2?: DynamoDBv2Action;
|
|
1321
|
+
dynamoDBv2?: DynamoDBv2Action | undefined;
|
|
1322
1322
|
/**
|
|
1323
1323
|
* <p>Invoke a Lambda function.</p>
|
|
1324
1324
|
* @public
|
|
1325
1325
|
*/
|
|
1326
|
-
lambda?: LambdaAction;
|
|
1326
|
+
lambda?: LambdaAction | undefined;
|
|
1327
1327
|
/**
|
|
1328
1328
|
* <p>Publish to an Amazon SNS topic.</p>
|
|
1329
1329
|
* @public
|
|
1330
1330
|
*/
|
|
1331
|
-
sns?: SnsAction;
|
|
1331
|
+
sns?: SnsAction | undefined;
|
|
1332
1332
|
/**
|
|
1333
1333
|
* <p>Publish to an Amazon SQS queue.</p>
|
|
1334
1334
|
* @public
|
|
1335
1335
|
*/
|
|
1336
|
-
sqs?: SqsAction;
|
|
1336
|
+
sqs?: SqsAction | undefined;
|
|
1337
1337
|
/**
|
|
1338
1338
|
* <p>Write data to an Amazon Kinesis stream.</p>
|
|
1339
1339
|
* @public
|
|
1340
1340
|
*/
|
|
1341
|
-
kinesis?: KinesisAction;
|
|
1341
|
+
kinesis?: KinesisAction | undefined;
|
|
1342
1342
|
/**
|
|
1343
1343
|
* <p>Publish to another MQTT topic.</p>
|
|
1344
1344
|
* @public
|
|
1345
1345
|
*/
|
|
1346
|
-
republish?: RepublishAction;
|
|
1346
|
+
republish?: RepublishAction | undefined;
|
|
1347
1347
|
/**
|
|
1348
1348
|
* <p>Write to an Amazon S3 bucket.</p>
|
|
1349
1349
|
* @public
|
|
1350
1350
|
*/
|
|
1351
|
-
s3?: S3Action;
|
|
1351
|
+
s3?: S3Action | undefined;
|
|
1352
1352
|
/**
|
|
1353
1353
|
* <p>Write to an Amazon Kinesis Firehose stream.</p>
|
|
1354
1354
|
* @public
|
|
1355
1355
|
*/
|
|
1356
|
-
firehose?: FirehoseAction;
|
|
1356
|
+
firehose?: FirehoseAction | undefined;
|
|
1357
1357
|
/**
|
|
1358
1358
|
* <p>Capture a CloudWatch metric.</p>
|
|
1359
1359
|
* @public
|
|
1360
1360
|
*/
|
|
1361
|
-
cloudwatchMetric?: CloudwatchMetricAction;
|
|
1361
|
+
cloudwatchMetric?: CloudwatchMetricAction | undefined;
|
|
1362
1362
|
/**
|
|
1363
1363
|
* <p>Change the state of a CloudWatch alarm.</p>
|
|
1364
1364
|
* @public
|
|
1365
1365
|
*/
|
|
1366
|
-
cloudwatchAlarm?: CloudwatchAlarmAction;
|
|
1366
|
+
cloudwatchAlarm?: CloudwatchAlarmAction | undefined;
|
|
1367
1367
|
/**
|
|
1368
1368
|
* <p>Send data to CloudWatch Logs.</p>
|
|
1369
1369
|
* @public
|
|
1370
1370
|
*/
|
|
1371
|
-
cloudwatchLogs?: CloudwatchLogsAction;
|
|
1371
|
+
cloudwatchLogs?: CloudwatchLogsAction | undefined;
|
|
1372
1372
|
/**
|
|
1373
1373
|
* <p>Write data to an Amazon OpenSearch Service domain.</p>
|
|
1374
1374
|
* <note>
|
|
@@ -1379,61 +1379,61 @@ export interface Action {
|
|
|
1379
1379
|
* </note>
|
|
1380
1380
|
* @public
|
|
1381
1381
|
*/
|
|
1382
|
-
elasticsearch?: ElasticsearchAction;
|
|
1382
|
+
elasticsearch?: ElasticsearchAction | undefined;
|
|
1383
1383
|
/**
|
|
1384
1384
|
* <p>Send a message to a Salesforce IoT Cloud Input Stream.</p>
|
|
1385
1385
|
* @public
|
|
1386
1386
|
*/
|
|
1387
|
-
salesforce?: SalesforceAction;
|
|
1387
|
+
salesforce?: SalesforceAction | undefined;
|
|
1388
1388
|
/**
|
|
1389
1389
|
* <p>Sends message data to an IoT Analytics channel.</p>
|
|
1390
1390
|
* @public
|
|
1391
1391
|
*/
|
|
1392
|
-
iotAnalytics?: IotAnalyticsAction;
|
|
1392
|
+
iotAnalytics?: IotAnalyticsAction | undefined;
|
|
1393
1393
|
/**
|
|
1394
1394
|
* <p>Sends an input to an IoT Events detector.</p>
|
|
1395
1395
|
* @public
|
|
1396
1396
|
*/
|
|
1397
|
-
iotEvents?: IotEventsAction;
|
|
1397
|
+
iotEvents?: IotEventsAction | undefined;
|
|
1398
1398
|
/**
|
|
1399
1399
|
* <p>Sends data from the MQTT message that triggered the rule to IoT SiteWise asset
|
|
1400
1400
|
* properties.</p>
|
|
1401
1401
|
* @public
|
|
1402
1402
|
*/
|
|
1403
|
-
iotSiteWise?: IotSiteWiseAction;
|
|
1403
|
+
iotSiteWise?: IotSiteWiseAction | undefined;
|
|
1404
1404
|
/**
|
|
1405
1405
|
* <p>Starts execution of a Step Functions state machine.</p>
|
|
1406
1406
|
* @public
|
|
1407
1407
|
*/
|
|
1408
|
-
stepFunctions?: StepFunctionsAction;
|
|
1408
|
+
stepFunctions?: StepFunctionsAction | undefined;
|
|
1409
1409
|
/**
|
|
1410
1410
|
* <p>The Timestream rule action writes attributes (measures) from an MQTT message
|
|
1411
1411
|
* into an Amazon Timestream table. For more information, see the <a href="https://docs.aws.amazon.com/iot/latest/developerguide/timestream-rule-action.html">Timestream</a>
|
|
1412
1412
|
* topic rule action documentation.</p>
|
|
1413
1413
|
* @public
|
|
1414
1414
|
*/
|
|
1415
|
-
timestream?: TimestreamAction;
|
|
1415
|
+
timestream?: TimestreamAction | undefined;
|
|
1416
1416
|
/**
|
|
1417
1417
|
* <p>Send data to an HTTPS endpoint.</p>
|
|
1418
1418
|
* @public
|
|
1419
1419
|
*/
|
|
1420
|
-
http?: HttpAction;
|
|
1420
|
+
http?: HttpAction | undefined;
|
|
1421
1421
|
/**
|
|
1422
1422
|
* <p>Send messages to an Amazon Managed Streaming for Apache Kafka (Amazon MSK) or self-managed Apache Kafka cluster.</p>
|
|
1423
1423
|
* @public
|
|
1424
1424
|
*/
|
|
1425
|
-
kafka?: KafkaAction;
|
|
1425
|
+
kafka?: KafkaAction | undefined;
|
|
1426
1426
|
/**
|
|
1427
1427
|
* <p>Write data to an Amazon OpenSearch Service domain.</p>
|
|
1428
1428
|
* @public
|
|
1429
1429
|
*/
|
|
1430
|
-
openSearch?: OpenSearchAction;
|
|
1430
|
+
openSearch?: OpenSearchAction | undefined;
|
|
1431
1431
|
/**
|
|
1432
1432
|
* <p>The Amazon Location Service rule action sends device location updates from
|
|
1433
1433
|
* an MQTT message to an Amazon Location tracker resource.</p>
|
|
1434
1434
|
* @public
|
|
1435
1435
|
*/
|
|
1436
|
-
location?: LocationAction;
|
|
1436
|
+
location?: LocationAction | undefined;
|
|
1437
1437
|
}
|
|
1438
1438
|
/**
|
|
1439
1439
|
* @public
|
|
@@ -1515,7 +1515,7 @@ export interface StatisticalThreshold {
|
|
|
1515
1515
|
* occurs.</p>
|
|
1516
1516
|
* @public
|
|
1517
1517
|
*/
|
|
1518
|
-
statistic?: string;
|
|
1518
|
+
statistic?: string | undefined;
|
|
1519
1519
|
}
|
|
1520
1520
|
/**
|
|
1521
1521
|
* <p>The value to be compared with the <code>metric</code>.</p>
|
|
@@ -1527,40 +1527,40 @@ export interface MetricValue {
|
|
|
1527
1527
|
* to specify that numeric value to be compared with the <code>metric</code>.</p>
|
|
1528
1528
|
* @public
|
|
1529
1529
|
*/
|
|
1530
|
-
count?: number;
|
|
1530
|
+
count?: number | undefined;
|
|
1531
1531
|
/**
|
|
1532
1532
|
* <p>If the <code>comparisonOperator</code> calls for a set of CIDRs, use this
|
|
1533
1533
|
* to specify that set to be compared with the <code>metric</code>.</p>
|
|
1534
1534
|
* @public
|
|
1535
1535
|
*/
|
|
1536
|
-
cidrs?: string[];
|
|
1536
|
+
cidrs?: string[] | undefined;
|
|
1537
1537
|
/**
|
|
1538
1538
|
* <p>If the <code>comparisonOperator</code> calls for a set of ports, use this
|
|
1539
1539
|
* to specify that set to be compared with the <code>metric</code>.</p>
|
|
1540
1540
|
* @public
|
|
1541
1541
|
*/
|
|
1542
|
-
ports?: number[];
|
|
1542
|
+
ports?: number[] | undefined;
|
|
1543
1543
|
/**
|
|
1544
1544
|
* <p>
|
|
1545
1545
|
* The numeral value of a metric.
|
|
1546
1546
|
* </p>
|
|
1547
1547
|
* @public
|
|
1548
1548
|
*/
|
|
1549
|
-
number?: number;
|
|
1549
|
+
number?: number | undefined;
|
|
1550
1550
|
/**
|
|
1551
1551
|
* <p>
|
|
1552
1552
|
* The numeral values of a metric.
|
|
1553
1553
|
* </p>
|
|
1554
1554
|
* @public
|
|
1555
1555
|
*/
|
|
1556
|
-
numbers?: number[];
|
|
1556
|
+
numbers?: number[] | undefined;
|
|
1557
1557
|
/**
|
|
1558
1558
|
* <p>
|
|
1559
1559
|
* The string values of a metric.
|
|
1560
1560
|
* </p>
|
|
1561
1561
|
* @public
|
|
1562
1562
|
*/
|
|
1563
|
-
strings?: string[];
|
|
1563
|
+
strings?: string[] | undefined;
|
|
1564
1564
|
}
|
|
1565
1565
|
/**
|
|
1566
1566
|
* <p>The criteria by which the behavior is determined to be normal.</p>
|
|
@@ -1594,12 +1594,12 @@ export interface BehaviorCriteria {
|
|
|
1594
1594
|
* </ul>
|
|
1595
1595
|
* @public
|
|
1596
1596
|
*/
|
|
1597
|
-
comparisonOperator?: ComparisonOperator;
|
|
1597
|
+
comparisonOperator?: ComparisonOperator | undefined;
|
|
1598
1598
|
/**
|
|
1599
1599
|
* <p>The value to be compared with the <code>metric</code>.</p>
|
|
1600
1600
|
* @public
|
|
1601
1601
|
*/
|
|
1602
|
-
value?: MetricValue;
|
|
1602
|
+
value?: MetricValue | undefined;
|
|
1603
1603
|
/**
|
|
1604
1604
|
* <p>Use this to specify the time duration over which the behavior is evaluated, for those criteria that
|
|
1605
1605
|
* have a time dimension (for example, <code>NUM_MESSAGES_SENT</code>). For a
|
|
@@ -1609,34 +1609,34 @@ export interface BehaviorCriteria {
|
|
|
1609
1609
|
* being given a percentile rank. Cannot be used with list-based metric datatypes.</p>
|
|
1610
1610
|
* @public
|
|
1611
1611
|
*/
|
|
1612
|
-
durationSeconds?: number;
|
|
1612
|
+
durationSeconds?: number | undefined;
|
|
1613
1613
|
/**
|
|
1614
1614
|
* <p>If a device is in violation of the behavior for the specified number of consecutive
|
|
1615
1615
|
* datapoints, an alarm occurs. If not specified, the default is 1.</p>
|
|
1616
1616
|
* @public
|
|
1617
1617
|
*/
|
|
1618
|
-
consecutiveDatapointsToAlarm?: number;
|
|
1618
|
+
consecutiveDatapointsToAlarm?: number | undefined;
|
|
1619
1619
|
/**
|
|
1620
1620
|
* <p>If an alarm has occurred and the offending device is no longer in violation of the behavior
|
|
1621
1621
|
* for the specified number of consecutive datapoints, the alarm is cleared. If not specified,
|
|
1622
1622
|
* the default is 1.</p>
|
|
1623
1623
|
* @public
|
|
1624
1624
|
*/
|
|
1625
|
-
consecutiveDatapointsToClear?: number;
|
|
1625
|
+
consecutiveDatapointsToClear?: number | undefined;
|
|
1626
1626
|
/**
|
|
1627
1627
|
* <p>A statistical ranking (percentile)that
|
|
1628
1628
|
* indicates a threshold value by which a behavior is determined to be in compliance or in
|
|
1629
1629
|
* violation of the behavior.</p>
|
|
1630
1630
|
* @public
|
|
1631
1631
|
*/
|
|
1632
|
-
statisticalThreshold?: StatisticalThreshold;
|
|
1632
|
+
statisticalThreshold?: StatisticalThreshold | undefined;
|
|
1633
1633
|
/**
|
|
1634
1634
|
* <p>
|
|
1635
1635
|
* The configuration of an ML Detect
|
|
1636
1636
|
* </p>
|
|
1637
1637
|
* @public
|
|
1638
1638
|
*/
|
|
1639
|
-
mlDetectionConfig?: MachineLearningDetectionConfig;
|
|
1639
|
+
mlDetectionConfig?: MachineLearningDetectionConfig | undefined;
|
|
1640
1640
|
}
|
|
1641
1641
|
/**
|
|
1642
1642
|
* @public
|
|
@@ -1664,7 +1664,7 @@ export interface MetricDimension {
|
|
|
1664
1664
|
* <p>Defines how the <code>dimensionValues</code> of a dimension are interpreted. For example, for dimension type TOPIC_FILTER, the <code>IN</code> operator, a message will be counted only if its topic matches one of the topic filters. With <code>NOT_IN</code> operator, a message will be counted only if it doesn't match any of the topic filters. The operator is optional: if it's not provided (is <code>null</code>), it will be interpreted as <code>IN</code>.</p>
|
|
1665
1665
|
* @public
|
|
1666
1666
|
*/
|
|
1667
|
-
operator?: DimensionValueOperator;
|
|
1667
|
+
operator?: DimensionValueOperator | undefined;
|
|
1668
1668
|
}
|
|
1669
1669
|
/**
|
|
1670
1670
|
* <p>A Device Defender security profile behavior.</p>
|
|
@@ -1681,13 +1681,13 @@ export interface Behavior {
|
|
|
1681
1681
|
* <p>What is measured by the behavior.</p>
|
|
1682
1682
|
* @public
|
|
1683
1683
|
*/
|
|
1684
|
-
metric?: string;
|
|
1684
|
+
metric?: string | undefined;
|
|
1685
1685
|
/**
|
|
1686
1686
|
* <p>The dimension for a metric in your behavior. For example, using a
|
|
1687
1687
|
* <code>TOPIC_FILTER</code> dimension, you can narrow down the scope of the metric to only MQTT topics where the name matches the pattern specified in the dimension. This can't be used with custom metrics.</p>
|
|
1688
1688
|
* @public
|
|
1689
1689
|
*/
|
|
1690
|
-
metricDimension?: MetricDimension;
|
|
1690
|
+
metricDimension?: MetricDimension | undefined;
|
|
1691
1691
|
/**
|
|
1692
1692
|
* <p>The criteria that determine if a device is behaving normally in regard to the <code>metric</code>.</p>
|
|
1693
1693
|
* <note>
|
|
@@ -1695,19 +1695,19 @@ export interface Behavior {
|
|
|
1695
1695
|
* </note>
|
|
1696
1696
|
* @public
|
|
1697
1697
|
*/
|
|
1698
|
-
criteria?: BehaviorCriteria;
|
|
1698
|
+
criteria?: BehaviorCriteria | undefined;
|
|
1699
1699
|
/**
|
|
1700
1700
|
* <p>
|
|
1701
1701
|
* Suppresses alerts.
|
|
1702
1702
|
* </p>
|
|
1703
1703
|
* @public
|
|
1704
1704
|
*/
|
|
1705
|
-
suppressAlerts?: boolean;
|
|
1705
|
+
suppressAlerts?: boolean | undefined;
|
|
1706
1706
|
/**
|
|
1707
1707
|
* <p>Value indicates exporting metrics related to the behavior when it is true.</p>
|
|
1708
1708
|
* @public
|
|
1709
1709
|
*/
|
|
1710
|
-
exportMetric?: boolean;
|
|
1710
|
+
exportMetric?: boolean | undefined;
|
|
1711
1711
|
}
|
|
1712
1712
|
/**
|
|
1713
1713
|
* @public
|
|
@@ -1736,7 +1736,7 @@ export interface ViolationEventAdditionalInfo {
|
|
|
1736
1736
|
* </p>
|
|
1737
1737
|
* @public
|
|
1738
1738
|
*/
|
|
1739
|
-
confidenceLevel?: ConfidenceLevel;
|
|
1739
|
+
confidenceLevel?: ConfidenceLevel | undefined;
|
|
1740
1740
|
}
|
|
1741
1741
|
/**
|
|
1742
1742
|
* <p>Information about an active Device Defender security profile behavior violation.</p>
|
|
@@ -1747,54 +1747,54 @@ export interface ActiveViolation {
|
|
|
1747
1747
|
* <p>The ID of the active violation.</p>
|
|
1748
1748
|
* @public
|
|
1749
1749
|
*/
|
|
1750
|
-
violationId?: string;
|
|
1750
|
+
violationId?: string | undefined;
|
|
1751
1751
|
/**
|
|
1752
1752
|
* <p>The name of the thing responsible for the active violation.</p>
|
|
1753
1753
|
* @public
|
|
1754
1754
|
*/
|
|
1755
|
-
thingName?: string;
|
|
1755
|
+
thingName?: string | undefined;
|
|
1756
1756
|
/**
|
|
1757
1757
|
* <p>The security profile with the behavior is in violation.</p>
|
|
1758
1758
|
* @public
|
|
1759
1759
|
*/
|
|
1760
|
-
securityProfileName?: string;
|
|
1760
|
+
securityProfileName?: string | undefined;
|
|
1761
1761
|
/**
|
|
1762
1762
|
* <p>The behavior that is being violated.</p>
|
|
1763
1763
|
* @public
|
|
1764
1764
|
*/
|
|
1765
|
-
behavior?: Behavior;
|
|
1765
|
+
behavior?: Behavior | undefined;
|
|
1766
1766
|
/**
|
|
1767
1767
|
* <p>The value of the metric (the measurement) that caused the most recent violation.</p>
|
|
1768
1768
|
* @public
|
|
1769
1769
|
*/
|
|
1770
|
-
lastViolationValue?: MetricValue;
|
|
1770
|
+
lastViolationValue?: MetricValue | undefined;
|
|
1771
1771
|
/**
|
|
1772
1772
|
* <p>
|
|
1773
1773
|
* The details of a violation event.
|
|
1774
1774
|
* </p>
|
|
1775
1775
|
* @public
|
|
1776
1776
|
*/
|
|
1777
|
-
violationEventAdditionalInfo?: ViolationEventAdditionalInfo;
|
|
1777
|
+
violationEventAdditionalInfo?: ViolationEventAdditionalInfo | undefined;
|
|
1778
1778
|
/**
|
|
1779
1779
|
* <p>The verification state of the violation (detect alarm).</p>
|
|
1780
1780
|
* @public
|
|
1781
1781
|
*/
|
|
1782
|
-
verificationState?: VerificationState;
|
|
1782
|
+
verificationState?: VerificationState | undefined;
|
|
1783
1783
|
/**
|
|
1784
1784
|
* <p>The description of the verification state of the violation.</p>
|
|
1785
1785
|
* @public
|
|
1786
1786
|
*/
|
|
1787
|
-
verificationStateDescription?: string;
|
|
1787
|
+
verificationStateDescription?: string | undefined;
|
|
1788
1788
|
/**
|
|
1789
1789
|
* <p>The time the most recent violation occurred.</p>
|
|
1790
1790
|
* @public
|
|
1791
1791
|
*/
|
|
1792
|
-
lastViolationTime?: Date;
|
|
1792
|
+
lastViolationTime?: Date | undefined;
|
|
1793
1793
|
/**
|
|
1794
1794
|
* <p>The time the violation started.</p>
|
|
1795
1795
|
* @public
|
|
1796
1796
|
*/
|
|
1797
|
-
violationStartTime?: Date;
|
|
1797
|
+
violationStartTime?: Date | undefined;
|
|
1798
1798
|
}
|
|
1799
1799
|
/**
|
|
1800
1800
|
* <p>The metric you want to retain. Dimensions are optional.</p>
|
|
@@ -1810,12 +1810,12 @@ export interface MetricToRetain {
|
|
|
1810
1810
|
* <p>The dimension of a metric. This can't be used with custom metrics.</p>
|
|
1811
1811
|
* @public
|
|
1812
1812
|
*/
|
|
1813
|
-
metricDimension?: MetricDimension;
|
|
1813
|
+
metricDimension?: MetricDimension | undefined;
|
|
1814
1814
|
/**
|
|
1815
1815
|
* <p>The value indicates exporting metrics related to the <code>MetricToRetain </code> when it's true.</p>
|
|
1816
1816
|
* @public
|
|
1817
1817
|
*/
|
|
1818
|
-
exportMetric?: boolean;
|
|
1818
|
+
exportMetric?: boolean | undefined;
|
|
1819
1819
|
}
|
|
1820
1820
|
/**
|
|
1821
1821
|
* <p>Parameters used when defining a mitigation action that move a set of things to a thing group.</p>
|
|
@@ -1831,7 +1831,7 @@ export interface AddThingsToThingGroupParams {
|
|
|
1831
1831
|
* <p>Specifies if this mitigation action can move the things that triggered the mitigation action even if they are part of one or more dynamic thing groups.</p>
|
|
1832
1832
|
* @public
|
|
1833
1833
|
*/
|
|
1834
|
-
overrideDynamicGroups?: boolean;
|
|
1834
|
+
overrideDynamicGroups?: boolean | undefined;
|
|
1835
1835
|
}
|
|
1836
1836
|
/**
|
|
1837
1837
|
* @public
|
|
@@ -1844,22 +1844,22 @@ export interface AddThingToBillingGroupRequest {
|
|
|
1844
1844
|
* </note>
|
|
1845
1845
|
* @public
|
|
1846
1846
|
*/
|
|
1847
|
-
billingGroupName?: string;
|
|
1847
|
+
billingGroupName?: string | undefined;
|
|
1848
1848
|
/**
|
|
1849
1849
|
* <p>The ARN of the billing group.</p>
|
|
1850
1850
|
* @public
|
|
1851
1851
|
*/
|
|
1852
|
-
billingGroupArn?: string;
|
|
1852
|
+
billingGroupArn?: string | undefined;
|
|
1853
1853
|
/**
|
|
1854
1854
|
* <p>The name of the thing to be added to the billing group.</p>
|
|
1855
1855
|
* @public
|
|
1856
1856
|
*/
|
|
1857
|
-
thingName?: string;
|
|
1857
|
+
thingName?: string | undefined;
|
|
1858
1858
|
/**
|
|
1859
1859
|
* <p>The ARN of the thing to be added to the billing group.</p>
|
|
1860
1860
|
* @public
|
|
1861
1861
|
*/
|
|
1862
|
-
thingArn?: string;
|
|
1862
|
+
thingArn?: string | undefined;
|
|
1863
1863
|
}
|
|
1864
1864
|
/**
|
|
1865
1865
|
* @public
|
|
@@ -1874,22 +1874,22 @@ export interface AddThingToThingGroupRequest {
|
|
|
1874
1874
|
* <p>The name of the group to which you are adding a thing.</p>
|
|
1875
1875
|
* @public
|
|
1876
1876
|
*/
|
|
1877
|
-
thingGroupName?: string;
|
|
1877
|
+
thingGroupName?: string | undefined;
|
|
1878
1878
|
/**
|
|
1879
1879
|
* <p>The ARN of the group to which you are adding a thing.</p>
|
|
1880
1880
|
* @public
|
|
1881
1881
|
*/
|
|
1882
|
-
thingGroupArn?: string;
|
|
1882
|
+
thingGroupArn?: string | undefined;
|
|
1883
1883
|
/**
|
|
1884
1884
|
* <p>The name of the thing to add to a group.</p>
|
|
1885
1885
|
* @public
|
|
1886
1886
|
*/
|
|
1887
|
-
thingName?: string;
|
|
1887
|
+
thingName?: string | undefined;
|
|
1888
1888
|
/**
|
|
1889
1889
|
* <p>The ARN of the thing to add to a group.</p>
|
|
1890
1890
|
* @public
|
|
1891
1891
|
*/
|
|
1892
|
-
thingArn?: string;
|
|
1892
|
+
thingArn?: string | undefined;
|
|
1893
1893
|
/**
|
|
1894
1894
|
* <p>Override dynamic thing groups with static thing groups when 10-group limit is
|
|
1895
1895
|
* reached. If a thing belongs to 10 thing groups, and one or more of those groups are
|
|
@@ -1897,7 +1897,7 @@ export interface AddThingToThingGroupRequest {
|
|
|
1897
1897
|
* dynamic group.</p>
|
|
1898
1898
|
* @public
|
|
1899
1899
|
*/
|
|
1900
|
-
overrideDynamicGroups?: boolean;
|
|
1900
|
+
overrideDynamicGroups?: boolean | undefined;
|
|
1901
1901
|
}
|
|
1902
1902
|
/**
|
|
1903
1903
|
* @public
|
|
@@ -1931,7 +1931,7 @@ export interface AggregationType {
|
|
|
1931
1931
|
* <p>A list of the values of aggregation types.</p>
|
|
1932
1932
|
* @public
|
|
1933
1933
|
*/
|
|
1934
|
-
values?: string[];
|
|
1934
|
+
values?: string[] | undefined;
|
|
1935
1935
|
}
|
|
1936
1936
|
/**
|
|
1937
1937
|
* <p>A structure containing the alert target ARN and the role ARN.</p>
|
|
@@ -1970,12 +1970,12 @@ export interface Policy {
|
|
|
1970
1970
|
* <p>The policy name.</p>
|
|
1971
1971
|
* @public
|
|
1972
1972
|
*/
|
|
1973
|
-
policyName?: string;
|
|
1973
|
+
policyName?: string | undefined;
|
|
1974
1974
|
/**
|
|
1975
1975
|
* <p>The policy ARN.</p>
|
|
1976
1976
|
* @public
|
|
1977
1977
|
*/
|
|
1978
|
-
policyArn?: string;
|
|
1978
|
+
policyArn?: string | undefined;
|
|
1979
1979
|
}
|
|
1980
1980
|
/**
|
|
1981
1981
|
* <p>Contains information that allowed the authorization.</p>
|
|
@@ -1986,7 +1986,7 @@ export interface Allowed {
|
|
|
1986
1986
|
* <p>A list of policies that allowed the authentication.</p>
|
|
1987
1987
|
* @public
|
|
1988
1988
|
*/
|
|
1989
|
-
policies?: Policy[];
|
|
1989
|
+
policies?: Policy[] | undefined;
|
|
1990
1990
|
}
|
|
1991
1991
|
/**
|
|
1992
1992
|
* @public
|
|
@@ -2011,17 +2011,17 @@ export interface S3Location {
|
|
|
2011
2011
|
* <p>The S3 bucket.</p>
|
|
2012
2012
|
* @public
|
|
2013
2013
|
*/
|
|
2014
|
-
bucket?: string;
|
|
2014
|
+
bucket?: string | undefined;
|
|
2015
2015
|
/**
|
|
2016
2016
|
* <p>The S3 key.</p>
|
|
2017
2017
|
* @public
|
|
2018
2018
|
*/
|
|
2019
|
-
key?: string;
|
|
2019
|
+
key?: string | undefined;
|
|
2020
2020
|
/**
|
|
2021
2021
|
* <p>The S3 bucket version.</p>
|
|
2022
2022
|
* @public
|
|
2023
2023
|
*/
|
|
2024
|
-
version?: string;
|
|
2024
|
+
version?: string | undefined;
|
|
2025
2025
|
}
|
|
2026
2026
|
/**
|
|
2027
2027
|
* <p>A specific software bill of matrerials associated with a software
|
|
@@ -2033,7 +2033,7 @@ export interface Sbom {
|
|
|
2033
2033
|
* <p>The S3 location.</p>
|
|
2034
2034
|
* @public
|
|
2035
2035
|
*/
|
|
2036
|
-
s3Location?: S3Location;
|
|
2036
|
+
s3Location?: S3Location | undefined;
|
|
2037
2037
|
}
|
|
2038
2038
|
/**
|
|
2039
2039
|
* @public
|
|
@@ -2059,7 +2059,7 @@ export interface AssociateSbomWithPackageVersionRequest {
|
|
|
2059
2059
|
* <p>A unique case-sensitive identifier that you can provide to ensure the idempotency of the request. Don't reuse this client token if a new idempotent request is required.</p>
|
|
2060
2060
|
* @public
|
|
2061
2061
|
*/
|
|
2062
|
-
clientToken?: string;
|
|
2062
|
+
clientToken?: string | undefined;
|
|
2063
2063
|
}
|
|
2064
2064
|
/**
|
|
2065
2065
|
* @public
|
|
@@ -2082,23 +2082,23 @@ export interface AssociateSbomWithPackageVersionResponse {
|
|
|
2082
2082
|
* <p>The name of the new software package.</p>
|
|
2083
2083
|
* @public
|
|
2084
2084
|
*/
|
|
2085
|
-
packageName?: string;
|
|
2085
|
+
packageName?: string | undefined;
|
|
2086
2086
|
/**
|
|
2087
2087
|
* <p>The name of the new package version.</p>
|
|
2088
2088
|
* @public
|
|
2089
2089
|
*/
|
|
2090
|
-
versionName?: string;
|
|
2090
|
+
versionName?: string | undefined;
|
|
2091
2091
|
/**
|
|
2092
2092
|
* <p>A specific software bill of matrerials associated with a software
|
|
2093
2093
|
* package version.</p>
|
|
2094
2094
|
* @public
|
|
2095
2095
|
*/
|
|
2096
|
-
sbom?: Sbom;
|
|
2096
|
+
sbom?: Sbom | undefined;
|
|
2097
2097
|
/**
|
|
2098
2098
|
* <p>The status of the initial validation for the software bill of materials against the Software Package Data Exchange (SPDX) and CycloneDX industry standard formats.</p>
|
|
2099
2099
|
* @public
|
|
2100
2100
|
*/
|
|
2101
|
-
sbomValidationStatus?: SbomValidationStatus;
|
|
2101
|
+
sbomValidationStatus?: SbomValidationStatus | undefined;
|
|
2102
2102
|
}
|
|
2103
2103
|
/**
|
|
2104
2104
|
* <p>A resource with the same name already exists.</p>
|
|
@@ -2111,7 +2111,7 @@ export declare class ConflictException extends __BaseException {
|
|
|
2111
2111
|
* <p>A resource with the same name already exists.</p>
|
|
2112
2112
|
* @public
|
|
2113
2113
|
*/
|
|
2114
|
-
resourceId?: string;
|
|
2114
|
+
resourceId?: string | undefined;
|
|
2115
2115
|
/**
|
|
2116
2116
|
* @internal
|
|
2117
2117
|
*/
|
|
@@ -2172,7 +2172,7 @@ export interface AssociateTargetsWithJobRequest {
|
|
|
2172
2172
|
* <p>An optional comment string describing why the job was associated with the targets.</p>
|
|
2173
2173
|
* @public
|
|
2174
2174
|
*/
|
|
2175
|
-
comment?: string;
|
|
2175
|
+
comment?: string | undefined;
|
|
2176
2176
|
/**
|
|
2177
2177
|
* <p>The namespace used to indicate that a job is a customer-managed job.</p>
|
|
2178
2178
|
* <p>When you specify a value for this parameter, Amazon Web Services IoT Core sends jobs notifications to MQTT topics that
|
|
@@ -2188,7 +2188,7 @@ export interface AssociateTargetsWithJobRequest {
|
|
|
2188
2188
|
* </note>
|
|
2189
2189
|
* @public
|
|
2190
2190
|
*/
|
|
2191
|
-
namespaceId?: string;
|
|
2191
|
+
namespaceId?: string | undefined;
|
|
2192
2192
|
}
|
|
2193
2193
|
/**
|
|
2194
2194
|
* @public
|
|
@@ -2198,17 +2198,17 @@ export interface AssociateTargetsWithJobResponse {
|
|
|
2198
2198
|
* <p>An ARN identifying the job.</p>
|
|
2199
2199
|
* @public
|
|
2200
2200
|
*/
|
|
2201
|
-
jobArn?: string;
|
|
2201
|
+
jobArn?: string | undefined;
|
|
2202
2202
|
/**
|
|
2203
2203
|
* <p>The unique identifier you assigned to this job when it was created.</p>
|
|
2204
2204
|
* @public
|
|
2205
2205
|
*/
|
|
2206
|
-
jobId?: string;
|
|
2206
|
+
jobId?: string | undefined;
|
|
2207
2207
|
/**
|
|
2208
2208
|
* <p>A short text description of the job.</p>
|
|
2209
2209
|
* @public
|
|
2210
2210
|
*/
|
|
2211
|
-
description?: string;
|
|
2211
|
+
description?: string | undefined;
|
|
2212
2212
|
}
|
|
2213
2213
|
/**
|
|
2214
2214
|
* <p>A limit has been exceeded.</p>
|
|
@@ -2323,7 +2323,7 @@ export interface AttributePayload {
|
|
|
2323
2323
|
* </p>
|
|
2324
2324
|
* @public
|
|
2325
2325
|
*/
|
|
2326
|
-
attributes?: Record<string, string
|
|
2326
|
+
attributes?: Record<string, string> | undefined;
|
|
2327
2327
|
/**
|
|
2328
2328
|
* <p>Specifies whether the list of attributes provided in the <code>AttributePayload</code> is merged with
|
|
2329
2329
|
* the attributes stored in the registry, instead of overwriting them.</p>
|
|
@@ -2333,7 +2333,7 @@ export interface AttributePayload {
|
|
|
2333
2333
|
* </note>
|
|
2334
2334
|
* @public
|
|
2335
2335
|
*/
|
|
2336
|
-
merge?: boolean;
|
|
2336
|
+
merge?: boolean | undefined;
|
|
2337
2337
|
}
|
|
2338
2338
|
/**
|
|
2339
2339
|
* <p>Which audit checks are enabled and disabled for this account.</p>
|
|
@@ -2344,7 +2344,7 @@ export interface AuditCheckConfiguration {
|
|
|
2344
2344
|
* <p>True if this audit check is enabled for this account.</p>
|
|
2345
2345
|
* @public
|
|
2346
2346
|
*/
|
|
2347
|
-
enabled?: boolean;
|
|
2347
|
+
enabled?: boolean | undefined;
|
|
2348
2348
|
}
|
|
2349
2349
|
/**
|
|
2350
2350
|
* @public
|
|
@@ -2372,40 +2372,40 @@ export interface AuditCheckDetails {
|
|
|
2372
2372
|
* "CANCELED", "COMPLETED_COMPLIANT", "COMPLETED_NON_COMPLIANT", or "FAILED".</p>
|
|
2373
2373
|
* @public
|
|
2374
2374
|
*/
|
|
2375
|
-
checkRunStatus?: AuditCheckRunStatus;
|
|
2375
|
+
checkRunStatus?: AuditCheckRunStatus | undefined;
|
|
2376
2376
|
/**
|
|
2377
2377
|
* <p>True if the check is complete and found all resources compliant.</p>
|
|
2378
2378
|
* @public
|
|
2379
2379
|
*/
|
|
2380
|
-
checkCompliant?: boolean;
|
|
2380
|
+
checkCompliant?: boolean | undefined;
|
|
2381
2381
|
/**
|
|
2382
2382
|
* <p>The number of resources on which the check was performed.</p>
|
|
2383
2383
|
* @public
|
|
2384
2384
|
*/
|
|
2385
|
-
totalResourcesCount?: number;
|
|
2385
|
+
totalResourcesCount?: number | undefined;
|
|
2386
2386
|
/**
|
|
2387
2387
|
* <p>The number of resources that were found noncompliant during the check.</p>
|
|
2388
2388
|
* @public
|
|
2389
2389
|
*/
|
|
2390
|
-
nonCompliantResourcesCount?: number;
|
|
2390
|
+
nonCompliantResourcesCount?: number | undefined;
|
|
2391
2391
|
/**
|
|
2392
2392
|
* <p>
|
|
2393
2393
|
* Describes how many of the non-compliant resources created during the evaluation of an audit check were marked as suppressed.
|
|
2394
2394
|
* </p>
|
|
2395
2395
|
* @public
|
|
2396
2396
|
*/
|
|
2397
|
-
suppressedNonCompliantResourcesCount?: number;
|
|
2397
|
+
suppressedNonCompliantResourcesCount?: number | undefined;
|
|
2398
2398
|
/**
|
|
2399
2399
|
* <p>The code of any error encountered when this check is performed during this audit.
|
|
2400
2400
|
* One of "INSUFFICIENT_PERMISSIONS" or "AUDIT_CHECK_DISABLED".</p>
|
|
2401
2401
|
* @public
|
|
2402
2402
|
*/
|
|
2403
|
-
errorCode?: string;
|
|
2403
|
+
errorCode?: string | undefined;
|
|
2404
2404
|
/**
|
|
2405
2405
|
* <p>The message associated with any error encountered when this check is performed during this audit.</p>
|
|
2406
2406
|
* @public
|
|
2407
2407
|
*/
|
|
2408
|
-
message?: string;
|
|
2408
|
+
message?: string | undefined;
|
|
2409
2409
|
}
|
|
2410
2410
|
/**
|
|
2411
2411
|
* <p>The certificate issuer indentifier.</p>
|
|
@@ -2416,17 +2416,17 @@ export interface IssuerCertificateIdentifier {
|
|
|
2416
2416
|
* <p>The subject of the issuer certificate.</p>
|
|
2417
2417
|
* @public
|
|
2418
2418
|
*/
|
|
2419
|
-
issuerCertificateSubject?: string;
|
|
2419
|
+
issuerCertificateSubject?: string | undefined;
|
|
2420
2420
|
/**
|
|
2421
2421
|
* <p>The issuer ID.</p>
|
|
2422
2422
|
* @public
|
|
2423
2423
|
*/
|
|
2424
|
-
issuerId?: string;
|
|
2424
|
+
issuerId?: string | undefined;
|
|
2425
2425
|
/**
|
|
2426
2426
|
* <p>The issuer certificate serial number.</p>
|
|
2427
2427
|
* @public
|
|
2428
2428
|
*/
|
|
2429
|
-
issuerCertificateSerialNumber?: string;
|
|
2429
|
+
issuerCertificateSerialNumber?: string | undefined;
|
|
2430
2430
|
}
|
|
2431
2431
|
/**
|
|
2432
2432
|
* <p>Information about the version of the policy associated with the resource.</p>
|
|
@@ -2437,12 +2437,12 @@ export interface PolicyVersionIdentifier {
|
|
|
2437
2437
|
* <p>The name of the policy.</p>
|
|
2438
2438
|
* @public
|
|
2439
2439
|
*/
|
|
2440
|
-
policyName?: string;
|
|
2440
|
+
policyName?: string | undefined;
|
|
2441
2441
|
/**
|
|
2442
2442
|
* <p>The ID of the version of the policy associated with the resource.</p>
|
|
2443
2443
|
* @public
|
|
2444
2444
|
*/
|
|
2445
|
-
policyVersionId?: string;
|
|
2445
|
+
policyVersionId?: string | undefined;
|
|
2446
2446
|
}
|
|
2447
2447
|
/**
|
|
2448
2448
|
* <p>Information that identifies the noncompliant resource.</p>
|
|
@@ -2453,52 +2453,52 @@ export interface ResourceIdentifier {
|
|
|
2453
2453
|
* <p>The ID of the certificate attached to the resource.</p>
|
|
2454
2454
|
* @public
|
|
2455
2455
|
*/
|
|
2456
|
-
deviceCertificateId?: string;
|
|
2456
|
+
deviceCertificateId?: string | undefined;
|
|
2457
2457
|
/**
|
|
2458
2458
|
* <p>The ID of the CA certificate used to authorize the certificate.</p>
|
|
2459
2459
|
* @public
|
|
2460
2460
|
*/
|
|
2461
|
-
caCertificateId?: string;
|
|
2461
|
+
caCertificateId?: string | undefined;
|
|
2462
2462
|
/**
|
|
2463
2463
|
* <p>The ID of the Amazon Cognito identity pool.</p>
|
|
2464
2464
|
* @public
|
|
2465
2465
|
*/
|
|
2466
|
-
cognitoIdentityPoolId?: string;
|
|
2466
|
+
cognitoIdentityPoolId?: string | undefined;
|
|
2467
2467
|
/**
|
|
2468
2468
|
* <p>The client ID.</p>
|
|
2469
2469
|
* @public
|
|
2470
2470
|
*/
|
|
2471
|
-
clientId?: string;
|
|
2471
|
+
clientId?: string | undefined;
|
|
2472
2472
|
/**
|
|
2473
2473
|
* <p>The version of the policy associated with the resource.</p>
|
|
2474
2474
|
* @public
|
|
2475
2475
|
*/
|
|
2476
|
-
policyVersionIdentifier?: PolicyVersionIdentifier;
|
|
2476
|
+
policyVersionIdentifier?: PolicyVersionIdentifier | undefined;
|
|
2477
2477
|
/**
|
|
2478
2478
|
* <p>The account with which the resource is associated.</p>
|
|
2479
2479
|
* @public
|
|
2480
2480
|
*/
|
|
2481
|
-
account?: string;
|
|
2481
|
+
account?: string | undefined;
|
|
2482
2482
|
/**
|
|
2483
2483
|
* <p>The ARN of the IAM role that has overly permissive actions.</p>
|
|
2484
2484
|
* @public
|
|
2485
2485
|
*/
|
|
2486
|
-
iamRoleArn?: string;
|
|
2486
|
+
iamRoleArn?: string | undefined;
|
|
2487
2487
|
/**
|
|
2488
2488
|
* <p>The ARN of the role alias that has overly permissive actions.</p>
|
|
2489
2489
|
* @public
|
|
2490
2490
|
*/
|
|
2491
|
-
roleAliasArn?: string;
|
|
2491
|
+
roleAliasArn?: string | undefined;
|
|
2492
2492
|
/**
|
|
2493
2493
|
* <p>The issuer certificate identifier.</p>
|
|
2494
2494
|
* @public
|
|
2495
2495
|
*/
|
|
2496
|
-
issuerCertificateIdentifier?: IssuerCertificateIdentifier;
|
|
2496
|
+
issuerCertificateIdentifier?: IssuerCertificateIdentifier | undefined;
|
|
2497
2497
|
/**
|
|
2498
2498
|
* <p>The ARN of the identified device certificate.</p>
|
|
2499
2499
|
* @public
|
|
2500
2500
|
*/
|
|
2501
|
-
deviceCertificateArn?: string;
|
|
2501
|
+
deviceCertificateArn?: string | undefined;
|
|
2502
2502
|
}
|
|
2503
2503
|
/**
|
|
2504
2504
|
* @public
|
|
@@ -2528,17 +2528,17 @@ export interface NonCompliantResource {
|
|
|
2528
2528
|
* <p>The type of the noncompliant resource.</p>
|
|
2529
2529
|
* @public
|
|
2530
2530
|
*/
|
|
2531
|
-
resourceType?: ResourceType;
|
|
2531
|
+
resourceType?: ResourceType | undefined;
|
|
2532
2532
|
/**
|
|
2533
2533
|
* <p>Information that identifies the noncompliant resource.</p>
|
|
2534
2534
|
* @public
|
|
2535
2535
|
*/
|
|
2536
|
-
resourceIdentifier?: ResourceIdentifier;
|
|
2536
|
+
resourceIdentifier?: ResourceIdentifier | undefined;
|
|
2537
2537
|
/**
|
|
2538
2538
|
* <p>Other information about the noncompliant resource.</p>
|
|
2539
2539
|
* @public
|
|
2540
2540
|
*/
|
|
2541
|
-
additionalInfo?: Record<string, string
|
|
2541
|
+
additionalInfo?: Record<string, string> | undefined;
|
|
2542
2542
|
}
|
|
2543
2543
|
/**
|
|
2544
2544
|
* <p>Information about a related resource.</p>
|
|
@@ -2549,17 +2549,17 @@ export interface RelatedResource {
|
|
|
2549
2549
|
* <p>The type of resource.</p>
|
|
2550
2550
|
* @public
|
|
2551
2551
|
*/
|
|
2552
|
-
resourceType?: ResourceType;
|
|
2552
|
+
resourceType?: ResourceType | undefined;
|
|
2553
2553
|
/**
|
|
2554
2554
|
* <p>Information that identifies the resource.</p>
|
|
2555
2555
|
* @public
|
|
2556
2556
|
*/
|
|
2557
|
-
resourceIdentifier?: ResourceIdentifier;
|
|
2557
|
+
resourceIdentifier?: ResourceIdentifier | undefined;
|
|
2558
2558
|
/**
|
|
2559
2559
|
* <p>Other information about the resource.</p>
|
|
2560
2560
|
* @public
|
|
2561
2561
|
*/
|
|
2562
|
-
additionalInfo?: Record<string, string
|
|
2562
|
+
additionalInfo?: Record<string, string> | undefined;
|
|
2563
2563
|
}
|
|
2564
2564
|
/**
|
|
2565
2565
|
* @public
|
|
@@ -2585,60 +2585,60 @@ export interface AuditFinding {
|
|
|
2585
2585
|
* mitigation tasks to one or more sets of findings.</p>
|
|
2586
2586
|
* @public
|
|
2587
2587
|
*/
|
|
2588
|
-
findingId?: string;
|
|
2588
|
+
findingId?: string | undefined;
|
|
2589
2589
|
/**
|
|
2590
2590
|
* <p>The ID of the audit that generated this result (finding).</p>
|
|
2591
2591
|
* @public
|
|
2592
2592
|
*/
|
|
2593
|
-
taskId?: string;
|
|
2593
|
+
taskId?: string | undefined;
|
|
2594
2594
|
/**
|
|
2595
2595
|
* <p>The audit check that generated this result.</p>
|
|
2596
2596
|
* @public
|
|
2597
2597
|
*/
|
|
2598
|
-
checkName?: string;
|
|
2598
|
+
checkName?: string | undefined;
|
|
2599
2599
|
/**
|
|
2600
2600
|
* <p>The time the audit started.</p>
|
|
2601
2601
|
* @public
|
|
2602
2602
|
*/
|
|
2603
|
-
taskStartTime?: Date;
|
|
2603
|
+
taskStartTime?: Date | undefined;
|
|
2604
2604
|
/**
|
|
2605
2605
|
* <p>The time the result (finding) was discovered.</p>
|
|
2606
2606
|
* @public
|
|
2607
2607
|
*/
|
|
2608
|
-
findingTime?: Date;
|
|
2608
|
+
findingTime?: Date | undefined;
|
|
2609
2609
|
/**
|
|
2610
2610
|
* <p>The severity of the result (finding).</p>
|
|
2611
2611
|
* @public
|
|
2612
2612
|
*/
|
|
2613
|
-
severity?: AuditFindingSeverity;
|
|
2613
|
+
severity?: AuditFindingSeverity | undefined;
|
|
2614
2614
|
/**
|
|
2615
2615
|
* <p>The resource that was found to be noncompliant with the
|
|
2616
2616
|
* audit check.</p>
|
|
2617
2617
|
* @public
|
|
2618
2618
|
*/
|
|
2619
|
-
nonCompliantResource?: NonCompliantResource;
|
|
2619
|
+
nonCompliantResource?: NonCompliantResource | undefined;
|
|
2620
2620
|
/**
|
|
2621
2621
|
* <p>The list of related resources.</p>
|
|
2622
2622
|
* @public
|
|
2623
2623
|
*/
|
|
2624
|
-
relatedResources?: RelatedResource[];
|
|
2624
|
+
relatedResources?: RelatedResource[] | undefined;
|
|
2625
2625
|
/**
|
|
2626
2626
|
* <p>The reason the resource was noncompliant.</p>
|
|
2627
2627
|
* @public
|
|
2628
2628
|
*/
|
|
2629
|
-
reasonForNonCompliance?: string;
|
|
2629
|
+
reasonForNonCompliance?: string | undefined;
|
|
2630
2630
|
/**
|
|
2631
2631
|
* <p>A code that indicates the reason that the resource was noncompliant.</p>
|
|
2632
2632
|
* @public
|
|
2633
2633
|
*/
|
|
2634
|
-
reasonForNonComplianceCode?: string;
|
|
2634
|
+
reasonForNonComplianceCode?: string | undefined;
|
|
2635
2635
|
/**
|
|
2636
2636
|
* <p>
|
|
2637
2637
|
* Indicates whether the audit finding was suppressed or not during reporting.
|
|
2638
2638
|
* </p>
|
|
2639
2639
|
* @public
|
|
2640
2640
|
*/
|
|
2641
|
-
isSuppressed?: boolean;
|
|
2641
|
+
isSuppressed?: boolean | undefined;
|
|
2642
2642
|
}
|
|
2643
2643
|
/**
|
|
2644
2644
|
* @public
|
|
@@ -2679,47 +2679,47 @@ export interface AuditMitigationActionExecutionMetadata {
|
|
|
2679
2679
|
* <p>The unique identifier for the task that applies the mitigation action.</p>
|
|
2680
2680
|
* @public
|
|
2681
2681
|
*/
|
|
2682
|
-
taskId?: string;
|
|
2682
|
+
taskId?: string | undefined;
|
|
2683
2683
|
/**
|
|
2684
2684
|
* <p>The unique identifier for the findings to which the task and associated mitigation action are applied.</p>
|
|
2685
2685
|
* @public
|
|
2686
2686
|
*/
|
|
2687
|
-
findingId?: string;
|
|
2687
|
+
findingId?: string | undefined;
|
|
2688
2688
|
/**
|
|
2689
2689
|
* <p>The friendly name of the mitigation action being applied by the task.</p>
|
|
2690
2690
|
* @public
|
|
2691
2691
|
*/
|
|
2692
|
-
actionName?: string;
|
|
2692
|
+
actionName?: string | undefined;
|
|
2693
2693
|
/**
|
|
2694
2694
|
* <p>The unique identifier for the mitigation action being applied by the task.</p>
|
|
2695
2695
|
* @public
|
|
2696
2696
|
*/
|
|
2697
|
-
actionId?: string;
|
|
2697
|
+
actionId?: string | undefined;
|
|
2698
2698
|
/**
|
|
2699
2699
|
* <p>The current status of the task being executed.</p>
|
|
2700
2700
|
* @public
|
|
2701
2701
|
*/
|
|
2702
|
-
status?: AuditMitigationActionsExecutionStatus;
|
|
2702
|
+
status?: AuditMitigationActionsExecutionStatus | undefined;
|
|
2703
2703
|
/**
|
|
2704
2704
|
* <p>The date and time when the task was started.</p>
|
|
2705
2705
|
* @public
|
|
2706
2706
|
*/
|
|
2707
|
-
startTime?: Date;
|
|
2707
|
+
startTime?: Date | undefined;
|
|
2708
2708
|
/**
|
|
2709
2709
|
* <p>The date and time when the task was completed or canceled. Blank if the task is still running.</p>
|
|
2710
2710
|
* @public
|
|
2711
2711
|
*/
|
|
2712
|
-
endTime?: Date;
|
|
2712
|
+
endTime?: Date | undefined;
|
|
2713
2713
|
/**
|
|
2714
2714
|
* <p>If an error occurred, the code that indicates which type of error occurred.</p>
|
|
2715
2715
|
* @public
|
|
2716
2716
|
*/
|
|
2717
|
-
errorCode?: string;
|
|
2717
|
+
errorCode?: string | undefined;
|
|
2718
2718
|
/**
|
|
2719
2719
|
* <p>If an error occurred, a message that describes the error.</p>
|
|
2720
2720
|
* @public
|
|
2721
2721
|
*/
|
|
2722
|
-
message?: string;
|
|
2722
|
+
message?: string | undefined;
|
|
2723
2723
|
}
|
|
2724
2724
|
/**
|
|
2725
2725
|
* @public
|
|
@@ -2744,17 +2744,17 @@ export interface AuditMitigationActionsTaskMetadata {
|
|
|
2744
2744
|
* <p>The unique identifier for the task.</p>
|
|
2745
2745
|
* @public
|
|
2746
2746
|
*/
|
|
2747
|
-
taskId?: string;
|
|
2747
|
+
taskId?: string | undefined;
|
|
2748
2748
|
/**
|
|
2749
2749
|
* <p>The time at which the audit mitigation actions task was started.</p>
|
|
2750
2750
|
* @public
|
|
2751
2751
|
*/
|
|
2752
|
-
startTime?: Date;
|
|
2752
|
+
startTime?: Date | undefined;
|
|
2753
2753
|
/**
|
|
2754
2754
|
* <p>The current state of the audit mitigation actions task.</p>
|
|
2755
2755
|
* @public
|
|
2756
2756
|
*/
|
|
2757
|
-
taskStatus?: AuditMitigationActionsTaskStatus;
|
|
2757
|
+
taskStatus?: AuditMitigationActionsTaskStatus | undefined;
|
|
2758
2758
|
}
|
|
2759
2759
|
/**
|
|
2760
2760
|
* <p>Provides summary counts of how many tasks for findings are in a particular state. This information is included in the response from DescribeAuditMitigationActionsTask.</p>
|
|
@@ -2765,27 +2765,27 @@ export interface TaskStatisticsForAuditCheck {
|
|
|
2765
2765
|
* <p>The total number of findings to which a task is being applied.</p>
|
|
2766
2766
|
* @public
|
|
2767
2767
|
*/
|
|
2768
|
-
totalFindingsCount?: number;
|
|
2768
|
+
totalFindingsCount?: number | undefined;
|
|
2769
2769
|
/**
|
|
2770
2770
|
* <p>The number of findings for which at least one of the actions failed when applied.</p>
|
|
2771
2771
|
* @public
|
|
2772
2772
|
*/
|
|
2773
|
-
failedFindingsCount?: number;
|
|
2773
|
+
failedFindingsCount?: number | undefined;
|
|
2774
2774
|
/**
|
|
2775
2775
|
* <p>The number of findings for which all mitigation actions succeeded when applied.</p>
|
|
2776
2776
|
* @public
|
|
2777
2777
|
*/
|
|
2778
|
-
succeededFindingsCount?: number;
|
|
2778
|
+
succeededFindingsCount?: number | undefined;
|
|
2779
2779
|
/**
|
|
2780
2780
|
* <p>The number of findings skipped because of filter conditions provided in the parameters to the command.</p>
|
|
2781
2781
|
* @public
|
|
2782
2782
|
*/
|
|
2783
|
-
skippedFindingsCount?: number;
|
|
2783
|
+
skippedFindingsCount?: number | undefined;
|
|
2784
2784
|
/**
|
|
2785
2785
|
* <p>The number of findings to which the mitigation action task was canceled when applied.</p>
|
|
2786
2786
|
* @public
|
|
2787
2787
|
*/
|
|
2788
|
-
canceledFindingsCount?: number;
|
|
2788
|
+
canceledFindingsCount?: number | undefined;
|
|
2789
2789
|
}
|
|
2790
2790
|
/**
|
|
2791
2791
|
* <p>Used in MitigationActionParams, this information identifies the target findings to which the mitigation actions are applied. Only one entry appears.</p>
|
|
@@ -2796,17 +2796,17 @@ export interface AuditMitigationActionsTaskTarget {
|
|
|
2796
2796
|
* <p>If the task will apply a mitigation action to findings from a specific audit, this value uniquely identifies the audit.</p>
|
|
2797
2797
|
* @public
|
|
2798
2798
|
*/
|
|
2799
|
-
auditTaskId?: string;
|
|
2799
|
+
auditTaskId?: string | undefined;
|
|
2800
2800
|
/**
|
|
2801
2801
|
* <p>If the task will apply a mitigation action to one or more listed findings, this value uniquely identifies those findings.</p>
|
|
2802
2802
|
* @public
|
|
2803
2803
|
*/
|
|
2804
|
-
findingIds?: string[];
|
|
2804
|
+
findingIds?: string[] | undefined;
|
|
2805
2805
|
/**
|
|
2806
2806
|
* <p>Specifies a filter in the form of an audit check and set of reason codes that identify the findings from the audit to which the audit mitigation actions task apply.</p>
|
|
2807
2807
|
* @public
|
|
2808
2808
|
*/
|
|
2809
|
-
auditCheckToReasonCodeFilter?: Record<string, string[]
|
|
2809
|
+
auditCheckToReasonCodeFilter?: Record<string, string[]> | undefined;
|
|
2810
2810
|
}
|
|
2811
2811
|
/**
|
|
2812
2812
|
* <p>Information about the targets to which audit notifications are sent.</p>
|
|
@@ -2817,17 +2817,17 @@ export interface AuditNotificationTarget {
|
|
|
2817
2817
|
* <p>The ARN of the target (SNS topic) to which audit notifications are sent.</p>
|
|
2818
2818
|
* @public
|
|
2819
2819
|
*/
|
|
2820
|
-
targetArn?: string;
|
|
2820
|
+
targetArn?: string | undefined;
|
|
2821
2821
|
/**
|
|
2822
2822
|
* <p>The ARN of the role that grants permission to send notifications to the target.</p>
|
|
2823
2823
|
* @public
|
|
2824
2824
|
*/
|
|
2825
|
-
roleArn?: string;
|
|
2825
|
+
roleArn?: string | undefined;
|
|
2826
2826
|
/**
|
|
2827
2827
|
* <p>True if notifications to the target are enabled.</p>
|
|
2828
2828
|
* @public
|
|
2829
2829
|
*/
|
|
2830
|
-
enabled?: boolean;
|
|
2830
|
+
enabled?: boolean | undefined;
|
|
2831
2831
|
}
|
|
2832
2832
|
/**
|
|
2833
2833
|
* @public
|
|
@@ -2864,21 +2864,21 @@ export interface AuditSuppression {
|
|
|
2864
2864
|
* </p>
|
|
2865
2865
|
* @public
|
|
2866
2866
|
*/
|
|
2867
|
-
expirationDate?: Date;
|
|
2867
|
+
expirationDate?: Date | undefined;
|
|
2868
2868
|
/**
|
|
2869
2869
|
* <p>
|
|
2870
2870
|
* Indicates whether a suppression should exist indefinitely or not.
|
|
2871
2871
|
* </p>
|
|
2872
2872
|
* @public
|
|
2873
2873
|
*/
|
|
2874
|
-
suppressIndefinitely?: boolean;
|
|
2874
|
+
suppressIndefinitely?: boolean | undefined;
|
|
2875
2875
|
/**
|
|
2876
2876
|
* <p>
|
|
2877
2877
|
* The description of the audit suppression.
|
|
2878
2878
|
* </p>
|
|
2879
2879
|
* @public
|
|
2880
2880
|
*/
|
|
2881
|
-
description?: string;
|
|
2881
|
+
description?: string | undefined;
|
|
2882
2882
|
}
|
|
2883
2883
|
/**
|
|
2884
2884
|
* @public
|
|
@@ -2915,18 +2915,18 @@ export interface AuditTaskMetadata {
|
|
|
2915
2915
|
* <p>The ID of this audit.</p>
|
|
2916
2916
|
* @public
|
|
2917
2917
|
*/
|
|
2918
|
-
taskId?: string;
|
|
2918
|
+
taskId?: string | undefined;
|
|
2919
2919
|
/**
|
|
2920
2920
|
* <p>The status of this audit. One of "IN_PROGRESS", "COMPLETED",
|
|
2921
2921
|
* "FAILED", or "CANCELED".</p>
|
|
2922
2922
|
* @public
|
|
2923
2923
|
*/
|
|
2924
|
-
taskStatus?: AuditTaskStatus;
|
|
2924
|
+
taskStatus?: AuditTaskStatus | undefined;
|
|
2925
2925
|
/**
|
|
2926
2926
|
* <p>The type of this audit. One of "ON_DEMAND_AUDIT_TASK" or "SCHEDULED_AUDIT_TASK".</p>
|
|
2927
2927
|
* @public
|
|
2928
2928
|
*/
|
|
2929
|
-
taskType?: AuditTaskType;
|
|
2929
|
+
taskType?: AuditTaskType | undefined;
|
|
2930
2930
|
}
|
|
2931
2931
|
/**
|
|
2932
2932
|
* @public
|
|
@@ -2965,7 +2965,7 @@ export interface AuthInfo {
|
|
|
2965
2965
|
* <p>The type of action for which the principal is being authorized.</p>
|
|
2966
2966
|
* @public
|
|
2967
2967
|
*/
|
|
2968
|
-
actionType?: ActionType;
|
|
2968
|
+
actionType?: ActionType | undefined;
|
|
2969
2969
|
/**
|
|
2970
2970
|
* <p>The resources for which the principal is being authorized to perform the specified
|
|
2971
2971
|
* action.</p>
|
|
@@ -2982,12 +2982,12 @@ export interface AuthorizerConfig {
|
|
|
2982
2982
|
* <p>The name of the authorization service for a domain configuration.</p>
|
|
2983
2983
|
* @public
|
|
2984
2984
|
*/
|
|
2985
|
-
defaultAuthorizerName?: string;
|
|
2985
|
+
defaultAuthorizerName?: string | undefined;
|
|
2986
2986
|
/**
|
|
2987
2987
|
* <p>A Boolean that specifies whether the domain configuration's authorization service can be overridden.</p>
|
|
2988
2988
|
* @public
|
|
2989
2989
|
*/
|
|
2990
|
-
allowAuthorizerOverride?: boolean;
|
|
2990
|
+
allowAuthorizerOverride?: boolean | undefined;
|
|
2991
2991
|
}
|
|
2992
2992
|
/**
|
|
2993
2993
|
* @public
|
|
@@ -3010,55 +3010,55 @@ export interface AuthorizerDescription {
|
|
|
3010
3010
|
* <p>The authorizer name.</p>
|
|
3011
3011
|
* @public
|
|
3012
3012
|
*/
|
|
3013
|
-
authorizerName?: string;
|
|
3013
|
+
authorizerName?: string | undefined;
|
|
3014
3014
|
/**
|
|
3015
3015
|
* <p>The authorizer ARN.</p>
|
|
3016
3016
|
* @public
|
|
3017
3017
|
*/
|
|
3018
|
-
authorizerArn?: string;
|
|
3018
|
+
authorizerArn?: string | undefined;
|
|
3019
3019
|
/**
|
|
3020
3020
|
* <p>The authorizer's Lambda function ARN.</p>
|
|
3021
3021
|
* @public
|
|
3022
3022
|
*/
|
|
3023
|
-
authorizerFunctionArn?: string;
|
|
3023
|
+
authorizerFunctionArn?: string | undefined;
|
|
3024
3024
|
/**
|
|
3025
3025
|
* <p>The key used to extract the token from the HTTP headers.</p>
|
|
3026
3026
|
* @public
|
|
3027
3027
|
*/
|
|
3028
|
-
tokenKeyName?: string;
|
|
3028
|
+
tokenKeyName?: string | undefined;
|
|
3029
3029
|
/**
|
|
3030
3030
|
* <p>The public keys used to validate the token signature returned by your custom
|
|
3031
3031
|
* authentication service.</p>
|
|
3032
3032
|
* @public
|
|
3033
3033
|
*/
|
|
3034
|
-
tokenSigningPublicKeys?: Record<string, string
|
|
3034
|
+
tokenSigningPublicKeys?: Record<string, string> | undefined;
|
|
3035
3035
|
/**
|
|
3036
3036
|
* <p>The status of the authorizer.</p>
|
|
3037
3037
|
* @public
|
|
3038
3038
|
*/
|
|
3039
|
-
status?: AuthorizerStatus;
|
|
3039
|
+
status?: AuthorizerStatus | undefined;
|
|
3040
3040
|
/**
|
|
3041
3041
|
* <p>The UNIX timestamp of when the authorizer was created.</p>
|
|
3042
3042
|
* @public
|
|
3043
3043
|
*/
|
|
3044
|
-
creationDate?: Date;
|
|
3044
|
+
creationDate?: Date | undefined;
|
|
3045
3045
|
/**
|
|
3046
3046
|
* <p>The UNIX timestamp of when the authorizer was last updated.</p>
|
|
3047
3047
|
* @public
|
|
3048
3048
|
*/
|
|
3049
|
-
lastModifiedDate?: Date;
|
|
3049
|
+
lastModifiedDate?: Date | undefined;
|
|
3050
3050
|
/**
|
|
3051
3051
|
* <p>Specifies whether IoT validates the token signature in an authorization request.</p>
|
|
3052
3052
|
* @public
|
|
3053
3053
|
*/
|
|
3054
|
-
signingDisabled?: boolean;
|
|
3054
|
+
signingDisabled?: boolean | undefined;
|
|
3055
3055
|
/**
|
|
3056
3056
|
* <p>When <code>true</code>, the result from the authorizer’s Lambda function is
|
|
3057
3057
|
* cached for the time specified in <code>refreshAfterInSeconds</code>. The cached
|
|
3058
3058
|
* result is used while the device reuses the same HTTP connection.</p>
|
|
3059
3059
|
* @public
|
|
3060
3060
|
*/
|
|
3061
|
-
enableCachingForHttp?: boolean;
|
|
3061
|
+
enableCachingForHttp?: boolean | undefined;
|
|
3062
3062
|
}
|
|
3063
3063
|
/**
|
|
3064
3064
|
* <p>The authorizer summary.</p>
|
|
@@ -3069,12 +3069,12 @@ export interface AuthorizerSummary {
|
|
|
3069
3069
|
* <p>The authorizer name.</p>
|
|
3070
3070
|
* @public
|
|
3071
3071
|
*/
|
|
3072
|
-
authorizerName?: string;
|
|
3072
|
+
authorizerName?: string | undefined;
|
|
3073
3073
|
/**
|
|
3074
3074
|
* <p>The authorizer ARN.</p>
|
|
3075
3075
|
* @public
|
|
3076
3076
|
*/
|
|
3077
|
-
authorizerArn?: string;
|
|
3077
|
+
authorizerArn?: string | undefined;
|
|
3078
3078
|
}
|
|
3079
3079
|
/**
|
|
3080
3080
|
* <p>Information that explicitly denies authorization.</p>
|
|
@@ -3085,7 +3085,7 @@ export interface ExplicitDeny {
|
|
|
3085
3085
|
* <p>The policies that denied the authorization.</p>
|
|
3086
3086
|
* @public
|
|
3087
3087
|
*/
|
|
3088
|
-
policies?: Policy[];
|
|
3088
|
+
policies?: Policy[] | undefined;
|
|
3089
3089
|
}
|
|
3090
3090
|
/**
|
|
3091
3091
|
* <p>Information that implicitly denies authorization. When policy doesn't explicitly deny
|
|
@@ -3098,7 +3098,7 @@ export interface ImplicitDeny {
|
|
|
3098
3098
|
* action on the specified resource. </p>
|
|
3099
3099
|
* @public
|
|
3100
3100
|
*/
|
|
3101
|
-
policies?: Policy[];
|
|
3101
|
+
policies?: Policy[] | undefined;
|
|
3102
3102
|
}
|
|
3103
3103
|
/**
|
|
3104
3104
|
* <p>Contains information that denied the authorization.</p>
|
|
@@ -3111,12 +3111,12 @@ export interface Denied {
|
|
|
3111
3111
|
* deny.</p>
|
|
3112
3112
|
* @public
|
|
3113
3113
|
*/
|
|
3114
|
-
implicitDeny?: ImplicitDeny;
|
|
3114
|
+
implicitDeny?: ImplicitDeny | undefined;
|
|
3115
3115
|
/**
|
|
3116
3116
|
* <p>Information that explicitly denies the authorization. </p>
|
|
3117
3117
|
* @public
|
|
3118
3118
|
*/
|
|
3119
|
-
explicitDeny?: ExplicitDeny;
|
|
3119
|
+
explicitDeny?: ExplicitDeny | undefined;
|
|
3120
3120
|
}
|
|
3121
3121
|
/**
|
|
3122
3122
|
* <p>The authorizer result.</p>
|
|
@@ -3127,29 +3127,29 @@ export interface AuthResult {
|
|
|
3127
3127
|
* <p>Authorization information.</p>
|
|
3128
3128
|
* @public
|
|
3129
3129
|
*/
|
|
3130
|
-
authInfo?: AuthInfo;
|
|
3130
|
+
authInfo?: AuthInfo | undefined;
|
|
3131
3131
|
/**
|
|
3132
3132
|
* <p>The policies and statements that allowed the specified action.</p>
|
|
3133
3133
|
* @public
|
|
3134
3134
|
*/
|
|
3135
|
-
allowed?: Allowed;
|
|
3135
|
+
allowed?: Allowed | undefined;
|
|
3136
3136
|
/**
|
|
3137
3137
|
* <p>The policies and statements that denied the specified action.</p>
|
|
3138
3138
|
* @public
|
|
3139
3139
|
*/
|
|
3140
|
-
denied?: Denied;
|
|
3140
|
+
denied?: Denied | undefined;
|
|
3141
3141
|
/**
|
|
3142
3142
|
* <p>The final authorization decision of this scenario. Multiple statements are taken into
|
|
3143
3143
|
* account when determining the authorization decision. An explicit deny statement can
|
|
3144
3144
|
* override multiple allow statements.</p>
|
|
3145
3145
|
* @public
|
|
3146
3146
|
*/
|
|
3147
|
-
authDecision?: AuthDecision;
|
|
3147
|
+
authDecision?: AuthDecision | undefined;
|
|
3148
3148
|
/**
|
|
3149
3149
|
* <p>Contains any missing context values found while evaluating policy.</p>
|
|
3150
3150
|
* @public
|
|
3151
3151
|
*/
|
|
3152
|
-
missingContextValues?: string[];
|
|
3152
|
+
missingContextValues?: string[] | undefined;
|
|
3153
3153
|
}
|
|
3154
3154
|
/**
|
|
3155
3155
|
* @public
|
|
@@ -3236,12 +3236,12 @@ export interface CancelJobRequest {
|
|
|
3236
3236
|
* <p>(Optional)A reason code string that explains why the job was canceled.</p>
|
|
3237
3237
|
* @public
|
|
3238
3238
|
*/
|
|
3239
|
-
reasonCode?: string;
|
|
3239
|
+
reasonCode?: string | undefined;
|
|
3240
3240
|
/**
|
|
3241
3241
|
* <p>An optional comment string describing why the job was canceled.</p>
|
|
3242
3242
|
* @public
|
|
3243
3243
|
*/
|
|
3244
|
-
comment?: string;
|
|
3244
|
+
comment?: string | undefined;
|
|
3245
3245
|
/**
|
|
3246
3246
|
* <p>(Optional) If <code>true</code> job executions with status "IN_PROGRESS" and "QUEUED"
|
|
3247
3247
|
* are canceled, otherwise only job executions with status "QUEUED" are canceled. The default
|
|
@@ -3251,7 +3251,7 @@ export interface CancelJobRequest {
|
|
|
3251
3251
|
* device executing a job which is canceled is able to recover to a valid state.</p>
|
|
3252
3252
|
* @public
|
|
3253
3253
|
*/
|
|
3254
|
-
force?: boolean;
|
|
3254
|
+
force?: boolean | undefined;
|
|
3255
3255
|
}
|
|
3256
3256
|
/**
|
|
3257
3257
|
* @public
|
|
@@ -3261,17 +3261,17 @@ export interface CancelJobResponse {
|
|
|
3261
3261
|
* <p>The job ARN.</p>
|
|
3262
3262
|
* @public
|
|
3263
3263
|
*/
|
|
3264
|
-
jobArn?: string;
|
|
3264
|
+
jobArn?: string | undefined;
|
|
3265
3265
|
/**
|
|
3266
3266
|
* <p>The unique identifier you assigned to this job when it was created.</p>
|
|
3267
3267
|
* @public
|
|
3268
3268
|
*/
|
|
3269
|
-
jobId?: string;
|
|
3269
|
+
jobId?: string | undefined;
|
|
3270
3270
|
/**
|
|
3271
3271
|
* <p>A short text description of the job.</p>
|
|
3272
3272
|
* @public
|
|
3273
3273
|
*/
|
|
3274
|
-
description?: string;
|
|
3274
|
+
description?: string | undefined;
|
|
3275
3275
|
}
|
|
3276
3276
|
/**
|
|
3277
3277
|
* @public
|
|
@@ -3298,7 +3298,7 @@ export interface CancelJobExecutionRequest {
|
|
|
3298
3298
|
* recover to a valid state.</p>
|
|
3299
3299
|
* @public
|
|
3300
3300
|
*/
|
|
3301
|
-
force?: boolean;
|
|
3301
|
+
force?: boolean | undefined;
|
|
3302
3302
|
/**
|
|
3303
3303
|
* <p>(Optional) The expected current version of the job execution. Each time you update the job
|
|
3304
3304
|
* execution, its version is incremented. If the version of the job execution stored in Jobs does
|
|
@@ -3308,13 +3308,13 @@ export interface CancelJobExecutionRequest {
|
|
|
3308
3308
|
* data.)</p>
|
|
3309
3309
|
* @public
|
|
3310
3310
|
*/
|
|
3311
|
-
expectedVersion?: number;
|
|
3311
|
+
expectedVersion?: number | undefined;
|
|
3312
3312
|
/**
|
|
3313
3313
|
* <p>A collection of name/value pairs that describe the status of the job execution. If not
|
|
3314
3314
|
* specified, the statusDetails are unchanged. You can specify at most 10 name/value pairs.</p>
|
|
3315
3315
|
* @public
|
|
3316
3316
|
*/
|
|
3317
|
-
statusDetails?: Record<string, string
|
|
3317
|
+
statusDetails?: Record<string, string> | undefined;
|
|
3318
3318
|
}
|
|
3319
3319
|
/**
|
|
3320
3320
|
* <p>An attempt was made to change to an invalid state, for example by deleting a job or a
|
|
@@ -3403,21 +3403,21 @@ export interface CreateAuditSuppressionRequest {
|
|
|
3403
3403
|
* </p>
|
|
3404
3404
|
* @public
|
|
3405
3405
|
*/
|
|
3406
|
-
expirationDate?: Date;
|
|
3406
|
+
expirationDate?: Date | undefined;
|
|
3407
3407
|
/**
|
|
3408
3408
|
* <p>
|
|
3409
3409
|
* Indicates whether a suppression should exist indefinitely or not.
|
|
3410
3410
|
* </p>
|
|
3411
3411
|
* @public
|
|
3412
3412
|
*/
|
|
3413
|
-
suppressIndefinitely?: boolean;
|
|
3413
|
+
suppressIndefinitely?: boolean | undefined;
|
|
3414
3414
|
/**
|
|
3415
3415
|
* <p>
|
|
3416
3416
|
* The description of the audit suppression.
|
|
3417
3417
|
* </p>
|
|
3418
3418
|
* @public
|
|
3419
3419
|
*/
|
|
3420
|
-
description?: string;
|
|
3420
|
+
description?: string | undefined;
|
|
3421
3421
|
/**
|
|
3422
3422
|
* <p>
|
|
3423
3423
|
* Each audit supression must have a unique client request token. If you try to create a new audit
|
|
@@ -3425,7 +3425,7 @@ export interface CreateAuditSuppressionRequest {
|
|
|
3425
3425
|
* value, Amazon Web Services SDKs will automatically generate a unique client request.</p>
|
|
3426
3426
|
* @public
|
|
3427
3427
|
*/
|
|
3428
|
-
clientRequestToken?: string;
|
|
3428
|
+
clientRequestToken?: string | undefined;
|
|
3429
3429
|
}
|
|
3430
3430
|
/**
|
|
3431
3431
|
* @public
|
|
@@ -3443,12 +3443,12 @@ export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
|
3443
3443
|
* <p>The ID of the resource that caused the exception.</p>
|
|
3444
3444
|
* @public
|
|
3445
3445
|
*/
|
|
3446
|
-
resourceId?: string;
|
|
3446
|
+
resourceId?: string | undefined;
|
|
3447
3447
|
/**
|
|
3448
3448
|
* <p>The ARN of the resource that caused the exception.</p>
|
|
3449
3449
|
* @public
|
|
3450
3450
|
*/
|
|
3451
|
-
resourceArn?: string;
|
|
3451
|
+
resourceArn?: string | undefined;
|
|
3452
3452
|
/**
|
|
3453
3453
|
* @internal
|
|
3454
3454
|
*/
|
|
@@ -3468,7 +3468,7 @@ export interface Tag {
|
|
|
3468
3468
|
* <p>The tag's value.</p>
|
|
3469
3469
|
* @public
|
|
3470
3470
|
*/
|
|
3471
|
-
Value?: string;
|
|
3471
|
+
Value?: string | undefined;
|
|
3472
3472
|
}
|
|
3473
3473
|
/**
|
|
3474
3474
|
* @public
|
|
@@ -3488,18 +3488,18 @@ export interface CreateAuthorizerRequest {
|
|
|
3488
3488
|
* <p>The name of the token key used to extract the token from the HTTP headers.</p>
|
|
3489
3489
|
* @public
|
|
3490
3490
|
*/
|
|
3491
|
-
tokenKeyName?: string;
|
|
3491
|
+
tokenKeyName?: string | undefined;
|
|
3492
3492
|
/**
|
|
3493
3493
|
* <p>The public keys used to verify the digital signature returned by your custom
|
|
3494
3494
|
* authentication service.</p>
|
|
3495
3495
|
* @public
|
|
3496
3496
|
*/
|
|
3497
|
-
tokenSigningPublicKeys?: Record<string, string
|
|
3497
|
+
tokenSigningPublicKeys?: Record<string, string> | undefined;
|
|
3498
3498
|
/**
|
|
3499
3499
|
* <p>The status of the create authorizer request.</p>
|
|
3500
3500
|
* @public
|
|
3501
3501
|
*/
|
|
3502
|
-
status?: AuthorizerStatus;
|
|
3502
|
+
status?: AuthorizerStatus | undefined;
|
|
3503
3503
|
/**
|
|
3504
3504
|
* <p>Metadata which can be used to manage the custom authorizer.</p>
|
|
3505
3505
|
* <note>
|
|
@@ -3511,12 +3511,12 @@ export interface CreateAuthorizerRequest {
|
|
|
3511
3511
|
* </note>
|
|
3512
3512
|
* @public
|
|
3513
3513
|
*/
|
|
3514
|
-
tags?: Tag[];
|
|
3514
|
+
tags?: Tag[] | undefined;
|
|
3515
3515
|
/**
|
|
3516
3516
|
* <p>Specifies whether IoT validates the token signature in an authorization request.</p>
|
|
3517
3517
|
* @public
|
|
3518
3518
|
*/
|
|
3519
|
-
signingDisabled?: boolean;
|
|
3519
|
+
signingDisabled?: boolean | undefined;
|
|
3520
3520
|
/**
|
|
3521
3521
|
* <p>When <code>true</code>, the result from the authorizer’s Lambda function is
|
|
3522
3522
|
* cached for clients that use persistent HTTP connections. The results are cached for the time
|
|
@@ -3525,7 +3525,7 @@ export interface CreateAuthorizerRequest {
|
|
|
3525
3525
|
* <p>The default value is <code>false</code>.</p>
|
|
3526
3526
|
* @public
|
|
3527
3527
|
*/
|
|
3528
|
-
enableCachingForHttp?: boolean;
|
|
3528
|
+
enableCachingForHttp?: boolean | undefined;
|
|
3529
3529
|
}
|
|
3530
3530
|
/**
|
|
3531
3531
|
* @public
|
|
@@ -3535,12 +3535,12 @@ export interface CreateAuthorizerResponse {
|
|
|
3535
3535
|
* <p>The authorizer's name.</p>
|
|
3536
3536
|
* @public
|
|
3537
3537
|
*/
|
|
3538
|
-
authorizerName?: string;
|
|
3538
|
+
authorizerName?: string | undefined;
|
|
3539
3539
|
/**
|
|
3540
3540
|
* <p>The authorizer ARN.</p>
|
|
3541
3541
|
* @public
|
|
3542
3542
|
*/
|
|
3543
|
-
authorizerArn?: string;
|
|
3543
|
+
authorizerArn?: string | undefined;
|
|
3544
3544
|
}
|
|
3545
3545
|
/**
|
|
3546
3546
|
* <p>The properties of a billing group.</p>
|
|
@@ -3551,7 +3551,7 @@ export interface BillingGroupProperties {
|
|
|
3551
3551
|
* <p>The description of the billing group.</p>
|
|
3552
3552
|
* @public
|
|
3553
3553
|
*/
|
|
3554
|
-
billingGroupDescription?: string;
|
|
3554
|
+
billingGroupDescription?: string | undefined;
|
|
3555
3555
|
}
|
|
3556
3556
|
/**
|
|
3557
3557
|
* @public
|
|
@@ -3566,12 +3566,12 @@ export interface CreateBillingGroupRequest {
|
|
|
3566
3566
|
* <p>The properties of the billing group.</p>
|
|
3567
3567
|
* @public
|
|
3568
3568
|
*/
|
|
3569
|
-
billingGroupProperties?: BillingGroupProperties;
|
|
3569
|
+
billingGroupProperties?: BillingGroupProperties | undefined;
|
|
3570
3570
|
/**
|
|
3571
3571
|
* <p>Metadata which can be used to manage the billing group.</p>
|
|
3572
3572
|
* @public
|
|
3573
3573
|
*/
|
|
3574
|
-
tags?: Tag[];
|
|
3574
|
+
tags?: Tag[] | undefined;
|
|
3575
3575
|
}
|
|
3576
3576
|
/**
|
|
3577
3577
|
* @public
|
|
@@ -3581,17 +3581,17 @@ export interface CreateBillingGroupResponse {
|
|
|
3581
3581
|
* <p>The name you gave to the billing group.</p>
|
|
3582
3582
|
* @public
|
|
3583
3583
|
*/
|
|
3584
|
-
billingGroupName?: string;
|
|
3584
|
+
billingGroupName?: string | undefined;
|
|
3585
3585
|
/**
|
|
3586
3586
|
* <p>The ARN of the billing group.</p>
|
|
3587
3587
|
* @public
|
|
3588
3588
|
*/
|
|
3589
|
-
billingGroupArn?: string;
|
|
3589
|
+
billingGroupArn?: string | undefined;
|
|
3590
3590
|
/**
|
|
3591
3591
|
* <p>The ID of the billing group.</p>
|
|
3592
3592
|
* @public
|
|
3593
3593
|
*/
|
|
3594
|
-
billingGroupId?: string;
|
|
3594
|
+
billingGroupId?: string | undefined;
|
|
3595
3595
|
}
|
|
3596
3596
|
/**
|
|
3597
3597
|
* <p>The input for the CreateCertificateFromCsr operation.</p>
|
|
@@ -3607,7 +3607,7 @@ export interface CreateCertificateFromCsrRequest {
|
|
|
3607
3607
|
* <p>Specifies whether the certificate is active.</p>
|
|
3608
3608
|
* @public
|
|
3609
3609
|
*/
|
|
3610
|
-
setAsActive?: boolean;
|
|
3610
|
+
setAsActive?: boolean | undefined;
|
|
3611
3611
|
}
|
|
3612
3612
|
/**
|
|
3613
3613
|
* <p>The output from the CreateCertificateFromCsr operation.</p>
|
|
@@ -3619,18 +3619,18 @@ export interface CreateCertificateFromCsrResponse {
|
|
|
3619
3619
|
* for policy operations.</p>
|
|
3620
3620
|
* @public
|
|
3621
3621
|
*/
|
|
3622
|
-
certificateArn?: string;
|
|
3622
|
+
certificateArn?: string | undefined;
|
|
3623
3623
|
/**
|
|
3624
3624
|
* <p>The ID of the certificate. Certificate management operations only take a
|
|
3625
3625
|
* certificateId.</p>
|
|
3626
3626
|
* @public
|
|
3627
3627
|
*/
|
|
3628
|
-
certificateId?: string;
|
|
3628
|
+
certificateId?: string | undefined;
|
|
3629
3629
|
/**
|
|
3630
3630
|
* <p>The certificate data, in PEM format.</p>
|
|
3631
3631
|
* @public
|
|
3632
3632
|
*/
|
|
3633
|
-
certificatePem?: string;
|
|
3633
|
+
certificatePem?: string | undefined;
|
|
3634
3634
|
}
|
|
3635
3635
|
/**
|
|
3636
3636
|
* @public
|
|
@@ -3668,12 +3668,12 @@ export interface CreateCertificateProviderRequest {
|
|
|
3668
3668
|
* the request is idempotent.</p>
|
|
3669
3669
|
* @public
|
|
3670
3670
|
*/
|
|
3671
|
-
clientToken?: string;
|
|
3671
|
+
clientToken?: string | undefined;
|
|
3672
3672
|
/**
|
|
3673
3673
|
* <p>Metadata which can be used to manage the certificate provider.</p>
|
|
3674
3674
|
* @public
|
|
3675
3675
|
*/
|
|
3676
|
-
tags?: Tag[];
|
|
3676
|
+
tags?: Tag[] | undefined;
|
|
3677
3677
|
}
|
|
3678
3678
|
/**
|
|
3679
3679
|
* @public
|
|
@@ -3683,12 +3683,12 @@ export interface CreateCertificateProviderResponse {
|
|
|
3683
3683
|
* <p>The name of the certificate provider.</p>
|
|
3684
3684
|
* @public
|
|
3685
3685
|
*/
|
|
3686
|
-
certificateProviderName?: string;
|
|
3686
|
+
certificateProviderName?: string | undefined;
|
|
3687
3687
|
/**
|
|
3688
3688
|
* <p>The ARN of the certificate provider.</p>
|
|
3689
3689
|
* @public
|
|
3690
3690
|
*/
|
|
3691
|
-
certificateProviderArn?: string;
|
|
3691
|
+
certificateProviderArn?: string | undefined;
|
|
3692
3692
|
}
|
|
3693
3693
|
/**
|
|
3694
3694
|
* @public
|
|
@@ -3721,7 +3721,7 @@ export interface CreateCustomMetricRequest {
|
|
|
3721
3721
|
* update the friendly name after you define it.</p>
|
|
3722
3722
|
* @public
|
|
3723
3723
|
*/
|
|
3724
|
-
displayName?: string;
|
|
3724
|
+
displayName?: string | undefined;
|
|
3725
3725
|
/**
|
|
3726
3726
|
* <p> The type of the custom metric. </p>
|
|
3727
3727
|
* <important>
|
|
@@ -3738,7 +3738,7 @@ export interface CreateCustomMetricRequest {
|
|
|
3738
3738
|
* </p>
|
|
3739
3739
|
* @public
|
|
3740
3740
|
*/
|
|
3741
|
-
tags?: Tag[];
|
|
3741
|
+
tags?: Tag[] | undefined;
|
|
3742
3742
|
/**
|
|
3743
3743
|
* <p>Each custom
|
|
3744
3744
|
* metric must have a unique client request token. If you try to create a new custom metric that
|
|
@@ -3747,7 +3747,7 @@ export interface CreateCustomMetricRequest {
|
|
|
3747
3747
|
* occurs. If you omit this value, Amazon Web Services SDKs will automatically generate a unique client request. </p>
|
|
3748
3748
|
* @public
|
|
3749
3749
|
*/
|
|
3750
|
-
clientRequestToken?: string;
|
|
3750
|
+
clientRequestToken?: string | undefined;
|
|
3751
3751
|
}
|
|
3752
3752
|
/**
|
|
3753
3753
|
* @public
|
|
@@ -3759,7 +3759,7 @@ export interface CreateCustomMetricResponse {
|
|
|
3759
3759
|
* </p>
|
|
3760
3760
|
* @public
|
|
3761
3761
|
*/
|
|
3762
|
-
metricName?: string;
|
|
3762
|
+
metricName?: string | undefined;
|
|
3763
3763
|
/**
|
|
3764
3764
|
* <p> The Amazon Resource Number (ARN) of the custom metric. For example,
|
|
3765
3765
|
* <code>arn:<i>aws-partition</i>:iot:<i>region</i>:<i>accountId</i>:custommetric/<i>metricName</i>
|
|
@@ -3767,7 +3767,7 @@ export interface CreateCustomMetricResponse {
|
|
|
3767
3767
|
* </p>
|
|
3768
3768
|
* @public
|
|
3769
3769
|
*/
|
|
3770
|
-
metricArn?: string;
|
|
3770
|
+
metricArn?: string | undefined;
|
|
3771
3771
|
}
|
|
3772
3772
|
/**
|
|
3773
3773
|
* @public
|
|
@@ -3804,13 +3804,13 @@ export interface CreateDimensionRequest {
|
|
|
3804
3804
|
* <p>Metadata that can be used to manage the dimension.</p>
|
|
3805
3805
|
* @public
|
|
3806
3806
|
*/
|
|
3807
|
-
tags?: Tag[];
|
|
3807
|
+
tags?: Tag[] | undefined;
|
|
3808
3808
|
/**
|
|
3809
3809
|
* <p>Each dimension must have a unique client request token. If you try to create a new dimension with the same token as a dimension that already exists, an exception occurs.
|
|
3810
3810
|
* If you omit this value, Amazon Web Services SDKs will automatically generate a unique client request.</p>
|
|
3811
3811
|
* @public
|
|
3812
3812
|
*/
|
|
3813
|
-
clientRequestToken?: string;
|
|
3813
|
+
clientRequestToken?: string | undefined;
|
|
3814
3814
|
}
|
|
3815
3815
|
/**
|
|
3816
3816
|
* @public
|
|
@@ -3820,7 +3820,7 @@ export interface CreateDimensionResponse {
|
|
|
3820
3820
|
* <p>A unique identifier for the dimension.</p>
|
|
3821
3821
|
* @public
|
|
3822
3822
|
*/
|
|
3823
|
-
name?: string;
|
|
3823
|
+
name?: string | undefined;
|
|
3824
3824
|
/**
|
|
3825
3825
|
* <p>The Amazon Resource Name
|
|
3826
3826
|
* (ARN)
|
|
@@ -3828,7 +3828,7 @@ export interface CreateDimensionResponse {
|
|
|
3828
3828
|
* the created dimension.</p>
|
|
3829
3829
|
* @public
|
|
3830
3830
|
*/
|
|
3831
|
-
arn?: string;
|
|
3831
|
+
arn?: string | undefined;
|
|
3832
3832
|
}
|
|
3833
3833
|
/**
|
|
3834
3834
|
* <p>The certificate is invalid.</p>
|
|
@@ -3851,7 +3851,7 @@ export interface ClientCertificateConfig {
|
|
|
3851
3851
|
* <p>The ARN of the Lambda function that IoT invokes after mutual TLS authentication during the connection.</p>
|
|
3852
3852
|
* @public
|
|
3853
3853
|
*/
|
|
3854
|
-
clientCertificateCallbackArn?: string;
|
|
3854
|
+
clientCertificateCallbackArn?: string | undefined;
|
|
3855
3855
|
}
|
|
3856
3856
|
/**
|
|
3857
3857
|
* <p>The server certificate configuration.</p>
|
|
@@ -3865,7 +3865,7 @@ export interface ServerCertificateConfig {
|
|
|
3865
3865
|
* configuration</a> from Amazon Web Services IoT Core Developer Guide.</p>
|
|
3866
3866
|
* @public
|
|
3867
3867
|
*/
|
|
3868
|
-
enableOCSPCheck?: boolean;
|
|
3868
|
+
enableOCSPCheck?: boolean | undefined;
|
|
3869
3869
|
}
|
|
3870
3870
|
/**
|
|
3871
3871
|
* @public
|
|
@@ -3891,7 +3891,7 @@ export interface TlsConfig {
|
|
|
3891
3891
|
* guide</i>.</p>
|
|
3892
3892
|
* @public
|
|
3893
3893
|
*/
|
|
3894
|
-
securityPolicy?: string;
|
|
3894
|
+
securityPolicy?: string | undefined;
|
|
3895
3895
|
}
|
|
3896
3896
|
/**
|
|
3897
3897
|
* @public
|
|
@@ -3906,24 +3906,24 @@ export interface CreateDomainConfigurationRequest {
|
|
|
3906
3906
|
* <p>The name of the domain.</p>
|
|
3907
3907
|
* @public
|
|
3908
3908
|
*/
|
|
3909
|
-
domainName?: string;
|
|
3909
|
+
domainName?: string | undefined;
|
|
3910
3910
|
/**
|
|
3911
3911
|
* <p>The ARNs of the certificates that IoT passes to the device during the TLS handshake. Currently you can specify only one certificate ARN.
|
|
3912
3912
|
* This value is not required for Amazon Web Services-managed domains.</p>
|
|
3913
3913
|
* @public
|
|
3914
3914
|
*/
|
|
3915
|
-
serverCertificateArns?: string[];
|
|
3915
|
+
serverCertificateArns?: string[] | undefined;
|
|
3916
3916
|
/**
|
|
3917
3917
|
* <p>The certificate used to validate the server certificate and prove domain name ownership. This certificate must be signed by a public certificate authority.
|
|
3918
3918
|
* This value is not required for Amazon Web Services-managed domains.</p>
|
|
3919
3919
|
* @public
|
|
3920
3920
|
*/
|
|
3921
|
-
validationCertificateArn?: string;
|
|
3921
|
+
validationCertificateArn?: string | undefined;
|
|
3922
3922
|
/**
|
|
3923
3923
|
* <p>An object that specifies the authorization service for a domain.</p>
|
|
3924
3924
|
* @public
|
|
3925
3925
|
*/
|
|
3926
|
-
authorizerConfig?: AuthorizerConfig;
|
|
3926
|
+
authorizerConfig?: AuthorizerConfig | undefined;
|
|
3927
3927
|
/**
|
|
3928
3928
|
* <p>The type of service delivered by the endpoint.</p>
|
|
3929
3929
|
* <note>
|
|
@@ -3931,7 +3931,7 @@ export interface CreateDomainConfigurationRequest {
|
|
|
3931
3931
|
* </note>
|
|
3932
3932
|
* @public
|
|
3933
3933
|
*/
|
|
3934
|
-
serviceType?: ServiceType;
|
|
3934
|
+
serviceType?: ServiceType | undefined;
|
|
3935
3935
|
/**
|
|
3936
3936
|
* <p>Metadata which can be used to manage the domain configuration.</p>
|
|
3937
3937
|
* <note>
|
|
@@ -3943,17 +3943,17 @@ export interface CreateDomainConfigurationRequest {
|
|
|
3943
3943
|
* </note>
|
|
3944
3944
|
* @public
|
|
3945
3945
|
*/
|
|
3946
|
-
tags?: Tag[];
|
|
3946
|
+
tags?: Tag[] | undefined;
|
|
3947
3947
|
/**
|
|
3948
3948
|
* <p>An object that specifies the TLS configuration for a domain.</p>
|
|
3949
3949
|
* @public
|
|
3950
3950
|
*/
|
|
3951
|
-
tlsConfig?: TlsConfig;
|
|
3951
|
+
tlsConfig?: TlsConfig | undefined;
|
|
3952
3952
|
/**
|
|
3953
3953
|
* <p>The server certificate configuration.</p>
|
|
3954
3954
|
* @public
|
|
3955
3955
|
*/
|
|
3956
|
-
serverCertificateConfig?: ServerCertificateConfig;
|
|
3956
|
+
serverCertificateConfig?: ServerCertificateConfig | undefined;
|
|
3957
3957
|
/**
|
|
3958
3958
|
* <p>An enumerated string that specifies the authentication type.</p>
|
|
3959
3959
|
* <ul>
|
|
@@ -3991,7 +3991,7 @@ export interface CreateDomainConfigurationRequest {
|
|
|
3991
3991
|
* </ul>
|
|
3992
3992
|
* @public
|
|
3993
3993
|
*/
|
|
3994
|
-
authenticationType?: AuthenticationType;
|
|
3994
|
+
authenticationType?: AuthenticationType | undefined;
|
|
3995
3995
|
/**
|
|
3996
3996
|
* <p>An enumerated string that specifies the application-layer protocol.</p>
|
|
3997
3997
|
* <ul>
|
|
@@ -4021,12 +4021,12 @@ export interface CreateDomainConfigurationRequest {
|
|
|
4021
4021
|
* </ul>
|
|
4022
4022
|
* @public
|
|
4023
4023
|
*/
|
|
4024
|
-
applicationProtocol?: ApplicationProtocol;
|
|
4024
|
+
applicationProtocol?: ApplicationProtocol | undefined;
|
|
4025
4025
|
/**
|
|
4026
4026
|
* <p>An object that specifies the client certificate configuration for a domain.</p>
|
|
4027
4027
|
* @public
|
|
4028
4028
|
*/
|
|
4029
|
-
clientCertificateConfig?: ClientCertificateConfig;
|
|
4029
|
+
clientCertificateConfig?: ClientCertificateConfig | undefined;
|
|
4030
4030
|
}
|
|
4031
4031
|
/**
|
|
4032
4032
|
* @public
|
|
@@ -4036,12 +4036,12 @@ export interface CreateDomainConfigurationResponse {
|
|
|
4036
4036
|
* <p>The name of the domain configuration.</p>
|
|
4037
4037
|
* @public
|
|
4038
4038
|
*/
|
|
4039
|
-
domainConfigurationName?: string;
|
|
4039
|
+
domainConfigurationName?: string | undefined;
|
|
4040
4040
|
/**
|
|
4041
4041
|
* <p>The ARN of the domain configuration.</p>
|
|
4042
4042
|
* @public
|
|
4043
4043
|
*/
|
|
4044
|
-
domainConfigurationArn?: string;
|
|
4044
|
+
domainConfigurationArn?: string | undefined;
|
|
4045
4045
|
}
|
|
4046
4046
|
/**
|
|
4047
4047
|
* <p>Thing group properties.</p>
|
|
@@ -4052,12 +4052,12 @@ export interface ThingGroupProperties {
|
|
|
4052
4052
|
* <p>The thing group description.</p>
|
|
4053
4053
|
* @public
|
|
4054
4054
|
*/
|
|
4055
|
-
thingGroupDescription?: string;
|
|
4055
|
+
thingGroupDescription?: string | undefined;
|
|
4056
4056
|
/**
|
|
4057
4057
|
* <p>The thing group attributes in JSON format.</p>
|
|
4058
4058
|
* @public
|
|
4059
4059
|
*/
|
|
4060
|
-
attributePayload?: AttributePayload;
|
|
4060
|
+
attributePayload?: AttributePayload | undefined;
|
|
4061
4061
|
}
|
|
4062
4062
|
/**
|
|
4063
4063
|
* @public
|
|
@@ -4072,7 +4072,7 @@ export interface CreateDynamicThingGroupRequest {
|
|
|
4072
4072
|
* <p>The dynamic thing group properties.</p>
|
|
4073
4073
|
* @public
|
|
4074
4074
|
*/
|
|
4075
|
-
thingGroupProperties?: ThingGroupProperties;
|
|
4075
|
+
thingGroupProperties?: ThingGroupProperties | undefined;
|
|
4076
4076
|
/**
|
|
4077
4077
|
* <p>The dynamic thing group index name.</p>
|
|
4078
4078
|
* <note>
|
|
@@ -4080,7 +4080,7 @@ export interface CreateDynamicThingGroupRequest {
|
|
|
4080
4080
|
* </note>
|
|
4081
4081
|
* @public
|
|
4082
4082
|
*/
|
|
4083
|
-
indexName?: string;
|
|
4083
|
+
indexName?: string | undefined;
|
|
4084
4084
|
/**
|
|
4085
4085
|
* <p>The dynamic thing group search query string.</p>
|
|
4086
4086
|
* <p>See <a href="https://docs.aws.amazon.com/iot/latest/developerguide/query-syntax.html">Query Syntax</a> for information about query string syntax.</p>
|
|
@@ -4095,12 +4095,12 @@ export interface CreateDynamicThingGroupRequest {
|
|
|
4095
4095
|
* </note>
|
|
4096
4096
|
* @public
|
|
4097
4097
|
*/
|
|
4098
|
-
queryVersion?: string;
|
|
4098
|
+
queryVersion?: string | undefined;
|
|
4099
4099
|
/**
|
|
4100
4100
|
* <p>Metadata which can be used to manage the dynamic thing group.</p>
|
|
4101
4101
|
* @public
|
|
4102
4102
|
*/
|
|
4103
|
-
tags?: Tag[];
|
|
4103
|
+
tags?: Tag[] | undefined;
|
|
4104
4104
|
}
|
|
4105
4105
|
/**
|
|
4106
4106
|
* @public
|
|
@@ -4110,32 +4110,32 @@ export interface CreateDynamicThingGroupResponse {
|
|
|
4110
4110
|
* <p>The dynamic thing group name.</p>
|
|
4111
4111
|
* @public
|
|
4112
4112
|
*/
|
|
4113
|
-
thingGroupName?: string;
|
|
4113
|
+
thingGroupName?: string | undefined;
|
|
4114
4114
|
/**
|
|
4115
4115
|
* <p>The dynamic thing group ARN.</p>
|
|
4116
4116
|
* @public
|
|
4117
4117
|
*/
|
|
4118
|
-
thingGroupArn?: string;
|
|
4118
|
+
thingGroupArn?: string | undefined;
|
|
4119
4119
|
/**
|
|
4120
4120
|
* <p>The dynamic thing group ID.</p>
|
|
4121
4121
|
* @public
|
|
4122
4122
|
*/
|
|
4123
|
-
thingGroupId?: string;
|
|
4123
|
+
thingGroupId?: string | undefined;
|
|
4124
4124
|
/**
|
|
4125
4125
|
* <p>The dynamic thing group index name.</p>
|
|
4126
4126
|
* @public
|
|
4127
4127
|
*/
|
|
4128
|
-
indexName?: string;
|
|
4128
|
+
indexName?: string | undefined;
|
|
4129
4129
|
/**
|
|
4130
4130
|
* <p>The dynamic thing group search query string.</p>
|
|
4131
4131
|
* @public
|
|
4132
4132
|
*/
|
|
4133
|
-
queryString?: string;
|
|
4133
|
+
queryString?: string | undefined;
|
|
4134
4134
|
/**
|
|
4135
4135
|
* <p>The dynamic thing group query version.</p>
|
|
4136
4136
|
* @public
|
|
4137
4137
|
*/
|
|
4138
|
-
queryVersion?: string;
|
|
4138
|
+
queryVersion?: string | undefined;
|
|
4139
4139
|
}
|
|
4140
4140
|
/**
|
|
4141
4141
|
* <p>The query is invalid.</p>
|
|
@@ -4219,28 +4219,28 @@ export interface CreateFleetMetricRequest {
|
|
|
4219
4219
|
* <p>The fleet metric description.</p>
|
|
4220
4220
|
* @public
|
|
4221
4221
|
*/
|
|
4222
|
-
description?: string;
|
|
4222
|
+
description?: string | undefined;
|
|
4223
4223
|
/**
|
|
4224
4224
|
* <p>The query version.</p>
|
|
4225
4225
|
* @public
|
|
4226
4226
|
*/
|
|
4227
|
-
queryVersion?: string;
|
|
4227
|
+
queryVersion?: string | undefined;
|
|
4228
4228
|
/**
|
|
4229
4229
|
* <p>The name of the index to search.</p>
|
|
4230
4230
|
* @public
|
|
4231
4231
|
*/
|
|
4232
|
-
indexName?: string;
|
|
4232
|
+
indexName?: string | undefined;
|
|
4233
4233
|
/**
|
|
4234
4234
|
* <p>Used to support unit transformation such as milliseconds to seconds. The unit must be
|
|
4235
4235
|
* supported by <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_MetricDatum.html">CW metric</a>. Default to null.</p>
|
|
4236
4236
|
* @public
|
|
4237
4237
|
*/
|
|
4238
|
-
unit?: FleetMetricUnit;
|
|
4238
|
+
unit?: FleetMetricUnit | undefined;
|
|
4239
4239
|
/**
|
|
4240
4240
|
* <p>Metadata, which can be used to manage the fleet metric.</p>
|
|
4241
4241
|
* @public
|
|
4242
4242
|
*/
|
|
4243
|
-
tags?: Tag[];
|
|
4243
|
+
tags?: Tag[] | undefined;
|
|
4244
4244
|
}
|
|
4245
4245
|
/**
|
|
4246
4246
|
* @public
|
|
@@ -4250,12 +4250,12 @@ export interface CreateFleetMetricResponse {
|
|
|
4250
4250
|
* <p>The name of the fleet metric to create.</p>
|
|
4251
4251
|
* @public
|
|
4252
4252
|
*/
|
|
4253
|
-
metricName?: string;
|
|
4253
|
+
metricName?: string | undefined;
|
|
4254
4254
|
/**
|
|
4255
4255
|
* <p>The Amazon Resource Name (ARN) of the new fleet metric.</p>
|
|
4256
4256
|
* @public
|
|
4257
4257
|
*/
|
|
4258
|
-
metricArn?: string;
|
|
4258
|
+
metricArn?: string | undefined;
|
|
4259
4259
|
}
|
|
4260
4260
|
/**
|
|
4261
4261
|
* <p>The index is not ready.</p>
|
|
@@ -4333,12 +4333,12 @@ export interface RateIncreaseCriteria {
|
|
|
4333
4333
|
* <p>The threshold for number of notified things that will initiate the increase in rate of rollout.</p>
|
|
4334
4334
|
* @public
|
|
4335
4335
|
*/
|
|
4336
|
-
numberOfNotifiedThings?: number;
|
|
4336
|
+
numberOfNotifiedThings?: number | undefined;
|
|
4337
4337
|
/**
|
|
4338
4338
|
* <p>The threshold for number of succeeded things that will initiate the increase in rate of rollout.</p>
|
|
4339
4339
|
* @public
|
|
4340
4340
|
*/
|
|
4341
|
-
numberOfSucceededThings?: number;
|
|
4341
|
+
numberOfSucceededThings?: number | undefined;
|
|
4342
4342
|
}
|
|
4343
4343
|
/**
|
|
4344
4344
|
* <p>Allows you to create an exponential rate of rollout for a job.</p>
|
|
@@ -4373,13 +4373,13 @@ export interface JobExecutionsRolloutConfig {
|
|
|
4373
4373
|
* This parameter allows you to create a staged rollout.</p>
|
|
4374
4374
|
* @public
|
|
4375
4375
|
*/
|
|
4376
|
-
maximumPerMinute?: number;
|
|
4376
|
+
maximumPerMinute?: number | undefined;
|
|
4377
4377
|
/**
|
|
4378
4378
|
* <p>The rate of increase for a job rollout.
|
|
4379
4379
|
* This parameter allows you to define an exponential rate for a job rollout.</p>
|
|
4380
4380
|
* @public
|
|
4381
4381
|
*/
|
|
4382
|
-
exponentialRate?: ExponentialRolloutRate;
|
|
4382
|
+
exponentialRate?: ExponentialRolloutRate | undefined;
|
|
4383
4383
|
}
|
|
4384
4384
|
/**
|
|
4385
4385
|
* <p>Configuration for pre-signed S3 URLs.</p>
|
|
@@ -4396,13 +4396,13 @@ export interface PresignedUrlConfig {
|
|
|
4396
4396
|
* </important>
|
|
4397
4397
|
* @public
|
|
4398
4398
|
*/
|
|
4399
|
-
roleArn?: string;
|
|
4399
|
+
roleArn?: string | undefined;
|
|
4400
4400
|
/**
|
|
4401
4401
|
* <p>How long (in seconds) pre-signed URLs are valid. Valid values are 60 - 3600, the default value is 3600
|
|
4402
4402
|
* seconds. Pre-signed URLs are generated when Jobs receives an MQTT request for the job document.</p>
|
|
4403
4403
|
* @public
|
|
4404
4404
|
*/
|
|
4405
|
-
expiresInSec?: number;
|
|
4405
|
+
expiresInSec?: number | undefined;
|
|
4406
4406
|
}
|
|
4407
4407
|
/**
|
|
4408
4408
|
* @public
|
|
@@ -4448,7 +4448,7 @@ export interface SchedulingConfig {
|
|
|
4448
4448
|
* command or the Command Line Interface, see <a href="https://docs.aws.amazon.com/cli/latest/userguide/cli-usage-parameters-types.html#parameter-type-timestamp">Timestamp</a>.</p>
|
|
4449
4449
|
* @public
|
|
4450
4450
|
*/
|
|
4451
|
-
startTime?: string;
|
|
4451
|
+
startTime?: string | undefined;
|
|
4452
4452
|
/**
|
|
4453
4453
|
* <p>The time a job will stop rollout of the job document to all devices in the target
|
|
4454
4454
|
* group for a job. The <code>endTime</code> must take place no later than two years from
|
|
@@ -4461,19 +4461,19 @@ export interface SchedulingConfig {
|
|
|
4461
4461
|
* or the Command Line Interface, see <a href="https://docs.aws.amazon.com/cli/latest/userguide/cli-usage-parameters-types.html#parameter-type-timestamp">Timestamp</a>.</p>
|
|
4462
4462
|
* @public
|
|
4463
4463
|
*/
|
|
4464
|
-
endTime?: string;
|
|
4464
|
+
endTime?: string | undefined;
|
|
4465
4465
|
/**
|
|
4466
4466
|
* <p>Specifies the end behavior for all job executions after a job reaches the selected
|
|
4467
4467
|
* <code>endTime</code>. If <code>endTime</code> is not selected when creating the job,
|
|
4468
4468
|
* then <code>endBehavior</code> does not apply.</p>
|
|
4469
4469
|
* @public
|
|
4470
4470
|
*/
|
|
4471
|
-
endBehavior?: JobEndBehavior;
|
|
4471
|
+
endBehavior?: JobEndBehavior | undefined;
|
|
4472
4472
|
/**
|
|
4473
4473
|
* <p>An optional configuration within the <code>SchedulingConfig</code> to setup a recurring maintenance window with a predetermined start time and duration for the rollout of a job document to all devices in a target group for a job.</p>
|
|
4474
4474
|
* @public
|
|
4475
4475
|
*/
|
|
4476
|
-
maintenanceWindows?: MaintenanceWindow[];
|
|
4476
|
+
maintenanceWindows?: MaintenanceWindow[] | undefined;
|
|
4477
4477
|
}
|
|
4478
4478
|
/**
|
|
4479
4479
|
* @public
|
|
@@ -4503,7 +4503,7 @@ export interface TimeoutConfig {
|
|
|
4503
4503
|
* and switch to the terminal <code>TIMED_OUT</code> status.</p>
|
|
4504
4504
|
* @public
|
|
4505
4505
|
*/
|
|
4506
|
-
inProgressTimeoutInMinutes?: number;
|
|
4506
|
+
inProgressTimeoutInMinutes?: number | undefined;
|
|
4507
4507
|
}
|
|
4508
4508
|
/**
|
|
4509
4509
|
* @public
|
|
@@ -4527,22 +4527,22 @@ export interface CreateJobRequest {
|
|
|
4527
4527
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/access-bucket-intro.html">Methods for accessing a bucket</a>.</p>
|
|
4528
4528
|
* @public
|
|
4529
4529
|
*/
|
|
4530
|
-
documentSource?: string;
|
|
4530
|
+
documentSource?: string | undefined;
|
|
4531
4531
|
/**
|
|
4532
4532
|
* <p>The job document. Required if you don't specify a value for <code>documentSource</code>.</p>
|
|
4533
4533
|
* @public
|
|
4534
4534
|
*/
|
|
4535
|
-
document?: string;
|
|
4535
|
+
document?: string | undefined;
|
|
4536
4536
|
/**
|
|
4537
4537
|
* <p>A short text description of the job.</p>
|
|
4538
4538
|
* @public
|
|
4539
4539
|
*/
|
|
4540
|
-
description?: string;
|
|
4540
|
+
description?: string | undefined;
|
|
4541
4541
|
/**
|
|
4542
4542
|
* <p>Configuration information for pre-signed S3 URLs.</p>
|
|
4543
4543
|
* @public
|
|
4544
4544
|
*/
|
|
4545
|
-
presignedUrlConfig?: PresignedUrlConfig;
|
|
4545
|
+
presignedUrlConfig?: PresignedUrlConfig | undefined;
|
|
4546
4546
|
/**
|
|
4547
4547
|
* <p>Specifies whether the job will continue to run (CONTINUOUS), or will be complete after all those things
|
|
4548
4548
|
* specified as targets have completed the job (SNAPSHOT). If continuous, the job may also be run on a thing
|
|
@@ -4555,17 +4555,17 @@ export interface CreateJobRequest {
|
|
|
4555
4555
|
* </note>
|
|
4556
4556
|
* @public
|
|
4557
4557
|
*/
|
|
4558
|
-
targetSelection?: TargetSelection;
|
|
4558
|
+
targetSelection?: TargetSelection | undefined;
|
|
4559
4559
|
/**
|
|
4560
4560
|
* <p>Allows you to create a staged rollout of the job.</p>
|
|
4561
4561
|
* @public
|
|
4562
4562
|
*/
|
|
4563
|
-
jobExecutionsRolloutConfig?: JobExecutionsRolloutConfig;
|
|
4563
|
+
jobExecutionsRolloutConfig?: JobExecutionsRolloutConfig | undefined;
|
|
4564
4564
|
/**
|
|
4565
4565
|
* <p>Allows you to create the criteria to abort a job.</p>
|
|
4566
4566
|
* @public
|
|
4567
4567
|
*/
|
|
4568
|
-
abortConfig?: AbortConfig;
|
|
4568
|
+
abortConfig?: AbortConfig | undefined;
|
|
4569
4569
|
/**
|
|
4570
4570
|
* <p>Specifies the amount of time each device has to finish its execution of the job. The timer
|
|
4571
4571
|
* is started when the job execution status is set to <code>IN_PROGRESS</code>. If the job
|
|
@@ -4573,12 +4573,12 @@ export interface CreateJobRequest {
|
|
|
4573
4573
|
* automatically set to <code>TIMED_OUT</code>.</p>
|
|
4574
4574
|
* @public
|
|
4575
4575
|
*/
|
|
4576
|
-
timeoutConfig?: TimeoutConfig;
|
|
4576
|
+
timeoutConfig?: TimeoutConfig | undefined;
|
|
4577
4577
|
/**
|
|
4578
4578
|
* <p>Metadata which can be used to manage the job.</p>
|
|
4579
4579
|
* @public
|
|
4580
4580
|
*/
|
|
4581
|
-
tags?: Tag[];
|
|
4581
|
+
tags?: Tag[] | undefined;
|
|
4582
4582
|
/**
|
|
4583
4583
|
* <p>The namespace used to indicate that a job is a customer-managed job.</p>
|
|
4584
4584
|
* <p>When you specify a value for this parameter, Amazon Web Services IoT Core sends jobs notifications to MQTT topics that
|
|
@@ -4594,17 +4594,17 @@ export interface CreateJobRequest {
|
|
|
4594
4594
|
* </note>
|
|
4595
4595
|
* @public
|
|
4596
4596
|
*/
|
|
4597
|
-
namespaceId?: string;
|
|
4597
|
+
namespaceId?: string | undefined;
|
|
4598
4598
|
/**
|
|
4599
4599
|
* <p>The ARN of the job template used to create the job.</p>
|
|
4600
4600
|
* @public
|
|
4601
4601
|
*/
|
|
4602
|
-
jobTemplateArn?: string;
|
|
4602
|
+
jobTemplateArn?: string | undefined;
|
|
4603
4603
|
/**
|
|
4604
4604
|
* <p>Allows you to create the criteria to retry a job.</p>
|
|
4605
4605
|
* @public
|
|
4606
4606
|
*/
|
|
4607
|
-
jobExecutionsRetryConfig?: JobExecutionsRetryConfig;
|
|
4607
|
+
jobExecutionsRetryConfig?: JobExecutionsRetryConfig | undefined;
|
|
4608
4608
|
/**
|
|
4609
4609
|
* <p>Parameters of an Amazon Web Services managed template that you can specify to create the job document.</p>
|
|
4610
4610
|
* <note>
|
|
@@ -4615,13 +4615,13 @@ export interface CreateJobRequest {
|
|
|
4615
4615
|
* </note>
|
|
4616
4616
|
* @public
|
|
4617
4617
|
*/
|
|
4618
|
-
documentParameters?: Record<string, string
|
|
4618
|
+
documentParameters?: Record<string, string> | undefined;
|
|
4619
4619
|
/**
|
|
4620
4620
|
* <p>The configuration that allows you to schedule a job for a future date and time in
|
|
4621
4621
|
* addition to specifying the end behavior for each job execution.</p>
|
|
4622
4622
|
* @public
|
|
4623
4623
|
*/
|
|
4624
|
-
schedulingConfig?: SchedulingConfig;
|
|
4624
|
+
schedulingConfig?: SchedulingConfig | undefined;
|
|
4625
4625
|
/**
|
|
4626
4626
|
* <p>The package version Amazon Resource Names (ARNs) that are installed on the device when the
|
|
4627
4627
|
* job successfully completes. The package version must be in either the Published or Deprecated state when the job deploys. For more information, see <a href="https://docs.aws.amazon.com/iot/latest/developerguide/preparing-to-use-software-package-catalog.html#package-version-lifecycle">Package version lifecycle</a>. </p>
|
|
@@ -4630,7 +4630,7 @@ export interface CreateJobRequest {
|
|
|
4630
4630
|
* Up to 25 package version ARNs are allowed.</p>
|
|
4631
4631
|
* @public
|
|
4632
4632
|
*/
|
|
4633
|
-
destinationPackageVersions?: string[];
|
|
4633
|
+
destinationPackageVersions?: string[] | undefined;
|
|
4634
4634
|
}
|
|
4635
4635
|
/**
|
|
4636
4636
|
* @public
|
|
@@ -4640,17 +4640,17 @@ export interface CreateJobResponse {
|
|
|
4640
4640
|
* <p>The job ARN.</p>
|
|
4641
4641
|
* @public
|
|
4642
4642
|
*/
|
|
4643
|
-
jobArn?: string;
|
|
4643
|
+
jobArn?: string | undefined;
|
|
4644
4644
|
/**
|
|
4645
4645
|
* <p>The unique identifier you assigned to this job.</p>
|
|
4646
4646
|
* @public
|
|
4647
4647
|
*/
|
|
4648
|
-
jobId?: string;
|
|
4648
|
+
jobId?: string | undefined;
|
|
4649
4649
|
/**
|
|
4650
4650
|
* <p>The job description.</p>
|
|
4651
4651
|
* @public
|
|
4652
4652
|
*/
|
|
4653
|
-
description?: string;
|
|
4653
|
+
description?: string | undefined;
|
|
4654
4654
|
}
|
|
4655
4655
|
/**
|
|
4656
4656
|
* @public
|
|
@@ -4666,7 +4666,7 @@ export interface CreateJobTemplateRequest {
|
|
|
4666
4666
|
* <p>The ARN of the job to use as the basis for the job template.</p>
|
|
4667
4667
|
* @public
|
|
4668
4668
|
*/
|
|
4669
|
-
jobArn?: string;
|
|
4669
|
+
jobArn?: string | undefined;
|
|
4670
4670
|
/**
|
|
4671
4671
|
* <p>An S3 link, or S3 object URL, to the job document. The link is an Amazon S3 object URL and is required if you don't specify a value for <code>document</code>.</p>
|
|
4672
4672
|
* <p>For example, <code>--document-source https://s3.<i>region-code</i>.amazonaws.com/example-firmware/device-firmware.1.0</code>
|
|
@@ -4674,12 +4674,12 @@ export interface CreateJobTemplateRequest {
|
|
|
4674
4674
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/access-bucket-intro.html">Methods for accessing a bucket</a>.</p>
|
|
4675
4675
|
* @public
|
|
4676
4676
|
*/
|
|
4677
|
-
documentSource?: string;
|
|
4677
|
+
documentSource?: string | undefined;
|
|
4678
4678
|
/**
|
|
4679
4679
|
* <p>The job document. Required if you don't specify a value for <code>documentSource</code>.</p>
|
|
4680
4680
|
* @public
|
|
4681
4681
|
*/
|
|
4682
|
-
document?: string;
|
|
4682
|
+
document?: string | undefined;
|
|
4683
4683
|
/**
|
|
4684
4684
|
* <p>A description of the job document.</p>
|
|
4685
4685
|
* @public
|
|
@@ -4689,17 +4689,17 @@ export interface CreateJobTemplateRequest {
|
|
|
4689
4689
|
* <p>Configuration for pre-signed S3 URLs.</p>
|
|
4690
4690
|
* @public
|
|
4691
4691
|
*/
|
|
4692
|
-
presignedUrlConfig?: PresignedUrlConfig;
|
|
4692
|
+
presignedUrlConfig?: PresignedUrlConfig | undefined;
|
|
4693
4693
|
/**
|
|
4694
4694
|
* <p>Allows you to create a staged rollout of a job.</p>
|
|
4695
4695
|
* @public
|
|
4696
4696
|
*/
|
|
4697
|
-
jobExecutionsRolloutConfig?: JobExecutionsRolloutConfig;
|
|
4697
|
+
jobExecutionsRolloutConfig?: JobExecutionsRolloutConfig | undefined;
|
|
4698
4698
|
/**
|
|
4699
4699
|
* <p>The criteria that determine when and how a job abort takes place.</p>
|
|
4700
4700
|
* @public
|
|
4701
4701
|
*/
|
|
4702
|
-
abortConfig?: AbortConfig;
|
|
4702
|
+
abortConfig?: AbortConfig | undefined;
|
|
4703
4703
|
/**
|
|
4704
4704
|
* <p>Specifies the amount of time each device has to finish its execution of the job. A timer
|
|
4705
4705
|
* is started when the job execution status is set to <code>IN_PROGRESS</code>. If the job
|
|
@@ -4707,22 +4707,22 @@ export interface CreateJobTemplateRequest {
|
|
|
4707
4707
|
* be automatically set to <code>TIMED_OUT</code>.</p>
|
|
4708
4708
|
* @public
|
|
4709
4709
|
*/
|
|
4710
|
-
timeoutConfig?: TimeoutConfig;
|
|
4710
|
+
timeoutConfig?: TimeoutConfig | undefined;
|
|
4711
4711
|
/**
|
|
4712
4712
|
* <p>Metadata that can be used to manage the job template.</p>
|
|
4713
4713
|
* @public
|
|
4714
4714
|
*/
|
|
4715
|
-
tags?: Tag[];
|
|
4715
|
+
tags?: Tag[] | undefined;
|
|
4716
4716
|
/**
|
|
4717
4717
|
* <p>Allows you to create the criteria to retry a job.</p>
|
|
4718
4718
|
* @public
|
|
4719
4719
|
*/
|
|
4720
|
-
jobExecutionsRetryConfig?: JobExecutionsRetryConfig;
|
|
4720
|
+
jobExecutionsRetryConfig?: JobExecutionsRetryConfig | undefined;
|
|
4721
4721
|
/**
|
|
4722
4722
|
* <p>Allows you to configure an optional maintenance window for the rollout of a job document to all devices in the target group for a job.</p>
|
|
4723
4723
|
* @public
|
|
4724
4724
|
*/
|
|
4725
|
-
maintenanceWindows?: MaintenanceWindow[];
|
|
4725
|
+
maintenanceWindows?: MaintenanceWindow[] | undefined;
|
|
4726
4726
|
/**
|
|
4727
4727
|
* <p>The package version Amazon Resource Names (ARNs) that are installed on the device when the
|
|
4728
4728
|
* job successfully completes. The package version must be in either the Published or Deprecated state when the job deploys. For more information, see <a href="https://docs.aws.amazon.com/iot/latest/developerguide/preparing-to-use-software-package-catalog.html#package-version-lifecycle">Package version lifecycle</a>.</p>
|
|
@@ -4731,7 +4731,7 @@ export interface CreateJobTemplateRequest {
|
|
|
4731
4731
|
* Up to 25 package version ARNs are allowed.</p>
|
|
4732
4732
|
* @public
|
|
4733
4733
|
*/
|
|
4734
|
-
destinationPackageVersions?: string[];
|
|
4734
|
+
destinationPackageVersions?: string[] | undefined;
|
|
4735
4735
|
}
|
|
4736
4736
|
/**
|
|
4737
4737
|
* @public
|
|
@@ -4741,12 +4741,12 @@ export interface CreateJobTemplateResponse {
|
|
|
4741
4741
|
* <p>The ARN of the job template.</p>
|
|
4742
4742
|
* @public
|
|
4743
4743
|
*/
|
|
4744
|
-
jobTemplateArn?: string;
|
|
4744
|
+
jobTemplateArn?: string | undefined;
|
|
4745
4745
|
/**
|
|
4746
4746
|
* <p>The unique identifier of the job template.</p>
|
|
4747
4747
|
* @public
|
|
4748
4748
|
*/
|
|
4749
|
-
jobTemplateId?: string;
|
|
4749
|
+
jobTemplateId?: string | undefined;
|
|
4750
4750
|
}
|
|
4751
4751
|
/**
|
|
4752
4752
|
* <p>The input for the CreateKeysAndCertificate operation.</p>
|
|
@@ -4758,7 +4758,7 @@ export interface CreateKeysAndCertificateRequest {
|
|
|
4758
4758
|
* <p>Specifies whether the certificate is active.</p>
|
|
4759
4759
|
* @public
|
|
4760
4760
|
*/
|
|
4761
|
-
setAsActive?: boolean;
|
|
4761
|
+
setAsActive?: boolean | undefined;
|
|
4762
4762
|
}
|
|
4763
4763
|
/**
|
|
4764
4764
|
* <p>Describes a key pair.</p>
|
|
@@ -4769,12 +4769,12 @@ export interface KeyPair {
|
|
|
4769
4769
|
* <p>The public key.</p>
|
|
4770
4770
|
* @public
|
|
4771
4771
|
*/
|
|
4772
|
-
PublicKey?: string;
|
|
4772
|
+
PublicKey?: string | undefined;
|
|
4773
4773
|
/**
|
|
4774
4774
|
* <p>The private key.</p>
|
|
4775
4775
|
* @public
|
|
4776
4776
|
*/
|
|
4777
|
-
PrivateKey?: string;
|
|
4777
|
+
PrivateKey?: string | undefined;
|
|
4778
4778
|
}
|
|
4779
4779
|
/**
|
|
4780
4780
|
* <p>The output of the CreateKeysAndCertificate operation.</p>
|
|
@@ -4785,23 +4785,23 @@ export interface CreateKeysAndCertificateResponse {
|
|
|
4785
4785
|
* <p>The ARN of the certificate.</p>
|
|
4786
4786
|
* @public
|
|
4787
4787
|
*/
|
|
4788
|
-
certificateArn?: string;
|
|
4788
|
+
certificateArn?: string | undefined;
|
|
4789
4789
|
/**
|
|
4790
4790
|
* <p>The ID of the certificate. IoT issues a default subject name for the certificate
|
|
4791
4791
|
* (for example, IoT Certificate).</p>
|
|
4792
4792
|
* @public
|
|
4793
4793
|
*/
|
|
4794
|
-
certificateId?: string;
|
|
4794
|
+
certificateId?: string | undefined;
|
|
4795
4795
|
/**
|
|
4796
4796
|
* <p>The certificate data, in PEM format.</p>
|
|
4797
4797
|
* @public
|
|
4798
4798
|
*/
|
|
4799
|
-
certificatePem?: string;
|
|
4799
|
+
certificatePem?: string | undefined;
|
|
4800
4800
|
/**
|
|
4801
4801
|
* <p>The generated key pair.</p>
|
|
4802
4802
|
* @public
|
|
4803
4803
|
*/
|
|
4804
|
-
keyPair?: KeyPair;
|
|
4804
|
+
keyPair?: KeyPair | undefined;
|
|
4805
4805
|
}
|
|
4806
4806
|
/**
|
|
4807
4807
|
* @public
|
|
@@ -4920,32 +4920,32 @@ export interface MitigationActionParams {
|
|
|
4920
4920
|
* <p>Parameters to define a mitigation action that changes the state of the device certificate to inactive.</p>
|
|
4921
4921
|
* @public
|
|
4922
4922
|
*/
|
|
4923
|
-
updateDeviceCertificateParams?: UpdateDeviceCertificateParams;
|
|
4923
|
+
updateDeviceCertificateParams?: UpdateDeviceCertificateParams | undefined;
|
|
4924
4924
|
/**
|
|
4925
4925
|
* <p>Parameters to define a mitigation action that changes the state of the CA certificate to inactive.</p>
|
|
4926
4926
|
* @public
|
|
4927
4927
|
*/
|
|
4928
|
-
updateCACertificateParams?: UpdateCACertificateParams;
|
|
4928
|
+
updateCACertificateParams?: UpdateCACertificateParams | undefined;
|
|
4929
4929
|
/**
|
|
4930
4930
|
* <p>Parameters to define a mitigation action that moves devices associated with a certificate to one or more specified thing groups, typically for quarantine.</p>
|
|
4931
4931
|
* @public
|
|
4932
4932
|
*/
|
|
4933
|
-
addThingsToThingGroupParams?: AddThingsToThingGroupParams;
|
|
4933
|
+
addThingsToThingGroupParams?: AddThingsToThingGroupParams | undefined;
|
|
4934
4934
|
/**
|
|
4935
4935
|
* <p>Parameters to define a mitigation action that adds a blank policy to restrict permissions.</p>
|
|
4936
4936
|
* @public
|
|
4937
4937
|
*/
|
|
4938
|
-
replaceDefaultPolicyVersionParams?: ReplaceDefaultPolicyVersionParams;
|
|
4938
|
+
replaceDefaultPolicyVersionParams?: ReplaceDefaultPolicyVersionParams | undefined;
|
|
4939
4939
|
/**
|
|
4940
4940
|
* <p>Parameters to define a mitigation action that enables Amazon Web Services IoT Core logging at a specified level of detail.</p>
|
|
4941
4941
|
* @public
|
|
4942
4942
|
*/
|
|
4943
|
-
enableIoTLoggingParams?: EnableIoTLoggingParams;
|
|
4943
|
+
enableIoTLoggingParams?: EnableIoTLoggingParams | undefined;
|
|
4944
4944
|
/**
|
|
4945
4945
|
* <p>Parameters to define a mitigation action that publishes findings to Amazon Simple Notification Service (Amazon SNS. You can implement your own custom actions in response to the Amazon SNS messages.</p>
|
|
4946
4946
|
* @public
|
|
4947
4947
|
*/
|
|
4948
|
-
publishFindingToSnsParams?: PublishFindingToSnsParams;
|
|
4948
|
+
publishFindingToSnsParams?: PublishFindingToSnsParams | undefined;
|
|
4949
4949
|
}
|
|
4950
4950
|
/**
|
|
4951
4951
|
* @public
|
|
@@ -4970,7 +4970,7 @@ export interface CreateMitigationActionRequest {
|
|
|
4970
4970
|
* <p>Metadata that can be used to manage the mitigation action.</p>
|
|
4971
4971
|
* @public
|
|
4972
4972
|
*/
|
|
4973
|
-
tags?: Tag[];
|
|
4973
|
+
tags?: Tag[] | undefined;
|
|
4974
4974
|
}
|
|
4975
4975
|
/**
|
|
4976
4976
|
* @public
|
|
@@ -4980,12 +4980,12 @@ export interface CreateMitigationActionResponse {
|
|
|
4980
4980
|
* <p>The ARN for the new mitigation action.</p>
|
|
4981
4981
|
* @public
|
|
4982
4982
|
*/
|
|
4983
|
-
actionArn?: string;
|
|
4983
|
+
actionArn?: string | undefined;
|
|
4984
4984
|
/**
|
|
4985
4985
|
* <p>A unique identifier for the new mitigation action.</p>
|
|
4986
4986
|
* @public
|
|
4987
4987
|
*/
|
|
4988
|
-
actionId?: string;
|
|
4988
|
+
actionId?: string | undefined;
|
|
4989
4989
|
}
|
|
4990
4990
|
/**
|
|
4991
4991
|
* @public
|
|
@@ -5061,13 +5061,13 @@ export interface AwsJobRateIncreaseCriteria {
|
|
|
5061
5061
|
* rate.</p>
|
|
5062
5062
|
* @public
|
|
5063
5063
|
*/
|
|
5064
|
-
numberOfNotifiedThings?: number;
|
|
5064
|
+
numberOfNotifiedThings?: number | undefined;
|
|
5065
5065
|
/**
|
|
5066
5066
|
* <p>When this number of things have succeeded in their job execution, it will initiate an
|
|
5067
5067
|
* increase in the rollout rate.</p>
|
|
5068
5068
|
* @public
|
|
5069
5069
|
*/
|
|
5070
|
-
numberOfSucceededThings?: number;
|
|
5070
|
+
numberOfSucceededThings?: number | undefined;
|
|
5071
5071
|
}
|
|
5072
5072
|
/**
|
|
5073
5073
|
* <p>The rate of increase for a job rollout. This parameter allows you to define an exponential rate
|
|
@@ -5103,13 +5103,13 @@ export interface AwsJobExecutionsRolloutConfig {
|
|
|
5103
5103
|
* <p>The maximum number of OTA update job executions started per minute.</p>
|
|
5104
5104
|
* @public
|
|
5105
5105
|
*/
|
|
5106
|
-
maximumPerMinute?: number;
|
|
5106
|
+
maximumPerMinute?: number | undefined;
|
|
5107
5107
|
/**
|
|
5108
5108
|
* <p>The rate of increase for a job rollout. This parameter allows you to define an exponential rate
|
|
5109
5109
|
* increase for a job rollout.</p>
|
|
5110
5110
|
* @public
|
|
5111
5111
|
*/
|
|
5112
|
-
exponentialRate?: AwsJobExponentialRolloutRate;
|
|
5112
|
+
exponentialRate?: AwsJobExponentialRolloutRate | undefined;
|
|
5113
5113
|
}
|
|
5114
5114
|
/**
|
|
5115
5115
|
* <p>Configuration information for pre-signed URLs. Valid when <code>protocols</code>
|
|
@@ -5122,7 +5122,7 @@ export interface AwsJobPresignedUrlConfig {
|
|
|
5122
5122
|
* seconds. Pre-signed URLs are generated when a request for the job document is received.</p>
|
|
5123
5123
|
* @public
|
|
5124
5124
|
*/
|
|
5125
|
-
expiresInSec?: number;
|
|
5125
|
+
expiresInSec?: number | undefined;
|
|
5126
5126
|
}
|
|
5127
5127
|
/**
|
|
5128
5128
|
* <p>Specifies the amount of time each device has to finish its execution of the job. A timer is
|
|
@@ -5140,7 +5140,7 @@ export interface AwsJobTimeoutConfig {
|
|
|
5140
5140
|
* switch to the terminal <code>TIMED_OUT</code> status.</p>
|
|
5141
5141
|
* @public
|
|
5142
5142
|
*/
|
|
5143
|
-
inProgressTimeoutInMinutes?: number;
|
|
5143
|
+
inProgressTimeoutInMinutes?: number | undefined;
|
|
5144
5144
|
}
|
|
5145
5145
|
/**
|
|
5146
5146
|
* <p>Describes the certificate chain being used when code signing a file.</p>
|
|
@@ -5151,12 +5151,12 @@ export interface CodeSigningCertificateChain {
|
|
|
5151
5151
|
* <p>The name of the certificate.</p>
|
|
5152
5152
|
* @public
|
|
5153
5153
|
*/
|
|
5154
|
-
certificateName?: string;
|
|
5154
|
+
certificateName?: string | undefined;
|
|
5155
5155
|
/**
|
|
5156
5156
|
* <p>A base64 encoded binary representation of the code signing certificate chain.</p>
|
|
5157
5157
|
* @public
|
|
5158
5158
|
*/
|
|
5159
|
-
inlineDocument?: string;
|
|
5159
|
+
inlineDocument?: string | undefined;
|
|
5160
5160
|
}
|
|
5161
5161
|
/**
|
|
5162
5162
|
* <p>Describes the signature for a file.</p>
|
|
@@ -5167,7 +5167,7 @@ export interface CodeSigningSignature {
|
|
|
5167
5167
|
* <p>A base64 encoded binary representation of the code signing signature.</p>
|
|
5168
5168
|
* @public
|
|
5169
5169
|
*/
|
|
5170
|
-
inlineDocument?: Uint8Array;
|
|
5170
|
+
inlineDocument?: Uint8Array | undefined;
|
|
5171
5171
|
}
|
|
5172
5172
|
/**
|
|
5173
5173
|
* <p>Describes a custom method used to code sign a file.</p>
|
|
@@ -5178,22 +5178,22 @@ export interface CustomCodeSigning {
|
|
|
5178
5178
|
* <p>The signature for the file.</p>
|
|
5179
5179
|
* @public
|
|
5180
5180
|
*/
|
|
5181
|
-
signature?: CodeSigningSignature;
|
|
5181
|
+
signature?: CodeSigningSignature | undefined;
|
|
5182
5182
|
/**
|
|
5183
5183
|
* <p>The certificate chain.</p>
|
|
5184
5184
|
* @public
|
|
5185
5185
|
*/
|
|
5186
|
-
certificateChain?: CodeSigningCertificateChain;
|
|
5186
|
+
certificateChain?: CodeSigningCertificateChain | undefined;
|
|
5187
5187
|
/**
|
|
5188
5188
|
* <p>The hash algorithm used to code sign the file. You can use a string as the algorithm name if the target over-the-air (OTA) update devices are able to verify the signature that was generated using the same signature algorithm. For example, FreeRTOS uses <code>SHA256</code> or <code>SHA1</code>, so you can pass either of them based on which was used for generating the signature.</p>
|
|
5189
5189
|
* @public
|
|
5190
5190
|
*/
|
|
5191
|
-
hashAlgorithm?: string;
|
|
5191
|
+
hashAlgorithm?: string | undefined;
|
|
5192
5192
|
/**
|
|
5193
5193
|
* <p>The signature algorithm used to code sign the file. You can use a string as the algorithm name if the target over-the-air (OTA) update devices are able to verify the signature that was generated using the same signature algorithm. For example, FreeRTOS uses <code>ECDSA</code> or <code>RSA</code>, so you can pass either of them based on which was used for generating the signature.</p>
|
|
5194
5194
|
* @public
|
|
5195
5195
|
*/
|
|
5196
|
-
signatureAlgorithm?: string;
|
|
5196
|
+
signatureAlgorithm?: string | undefined;
|
|
5197
5197
|
}
|
|
5198
5198
|
/**
|
|
5199
5199
|
* <p>Describes the location of updated firmware in S3.</p>
|
|
@@ -5204,12 +5204,12 @@ export interface S3Destination {
|
|
|
5204
5204
|
* <p>The S3 bucket that contains the updated firmware.</p>
|
|
5205
5205
|
* @public
|
|
5206
5206
|
*/
|
|
5207
|
-
bucket?: string;
|
|
5207
|
+
bucket?: string | undefined;
|
|
5208
5208
|
/**
|
|
5209
5209
|
* <p>The S3 prefix.</p>
|
|
5210
5210
|
* @public
|
|
5211
5211
|
*/
|
|
5212
|
-
prefix?: string;
|
|
5212
|
+
prefix?: string | undefined;
|
|
5213
5213
|
}
|
|
5214
5214
|
/**
|
|
5215
5215
|
* <p>Describes the location of the updated firmware.</p>
|
|
@@ -5220,7 +5220,7 @@ export interface Destination {
|
|
|
5220
5220
|
* <p>Describes the location in S3 of the updated firmware.</p>
|
|
5221
5221
|
* @public
|
|
5222
5222
|
*/
|
|
5223
|
-
s3Destination?: S3Destination;
|
|
5223
|
+
s3Destination?: S3Destination | undefined;
|
|
5224
5224
|
}
|
|
5225
5225
|
/**
|
|
5226
5226
|
* <p>Describes the code-signing profile.</p>
|
|
@@ -5231,17 +5231,17 @@ export interface SigningProfileParameter {
|
|
|
5231
5231
|
* <p>Certificate ARN.</p>
|
|
5232
5232
|
* @public
|
|
5233
5233
|
*/
|
|
5234
|
-
certificateArn?: string;
|
|
5234
|
+
certificateArn?: string | undefined;
|
|
5235
5235
|
/**
|
|
5236
5236
|
* <p>The hardware platform of your device.</p>
|
|
5237
5237
|
* @public
|
|
5238
5238
|
*/
|
|
5239
|
-
platform?: string;
|
|
5239
|
+
platform?: string | undefined;
|
|
5240
5240
|
/**
|
|
5241
5241
|
* <p>The location of the code-signing certificate on your device.</p>
|
|
5242
5242
|
* @public
|
|
5243
5243
|
*/
|
|
5244
|
-
certificatePathOnDevice?: string;
|
|
5244
|
+
certificatePathOnDevice?: string | undefined;
|
|
5245
5245
|
}
|
|
5246
5246
|
/**
|
|
5247
5247
|
* <p>Information required to start a signing job.</p>
|
|
@@ -5252,17 +5252,17 @@ export interface StartSigningJobParameter {
|
|
|
5252
5252
|
* <p>Describes the code-signing profile.</p>
|
|
5253
5253
|
* @public
|
|
5254
5254
|
*/
|
|
5255
|
-
signingProfileParameter?: SigningProfileParameter;
|
|
5255
|
+
signingProfileParameter?: SigningProfileParameter | undefined;
|
|
5256
5256
|
/**
|
|
5257
5257
|
* <p>The code-signing profile name.</p>
|
|
5258
5258
|
* @public
|
|
5259
5259
|
*/
|
|
5260
|
-
signingProfileName?: string;
|
|
5260
|
+
signingProfileName?: string | undefined;
|
|
5261
5261
|
/**
|
|
5262
5262
|
* <p>The location to write the code-signed file.</p>
|
|
5263
5263
|
* @public
|
|
5264
5264
|
*/
|
|
5265
|
-
destination?: Destination;
|
|
5265
|
+
destination?: Destination | undefined;
|
|
5266
5266
|
}
|
|
5267
5267
|
/**
|
|
5268
5268
|
* <p>Describes the method to use when code signing a file.</p>
|
|
@@ -5273,17 +5273,17 @@ export interface CodeSigning {
|
|
|
5273
5273
|
* <p>The ID of the <code>AWSSignerJob</code> which was created to sign the file.</p>
|
|
5274
5274
|
* @public
|
|
5275
5275
|
*/
|
|
5276
|
-
awsSignerJobId?: string;
|
|
5276
|
+
awsSignerJobId?: string | undefined;
|
|
5277
5277
|
/**
|
|
5278
5278
|
* <p>Describes the code-signing job.</p>
|
|
5279
5279
|
* @public
|
|
5280
5280
|
*/
|
|
5281
|
-
startSigningJobParameter?: StartSigningJobParameter;
|
|
5281
|
+
startSigningJobParameter?: StartSigningJobParameter | undefined;
|
|
5282
5282
|
/**
|
|
5283
5283
|
* <p>A custom method for code signing a file.</p>
|
|
5284
5284
|
* @public
|
|
5285
5285
|
*/
|
|
5286
|
-
customCodeSigning?: CustomCodeSigning;
|
|
5286
|
+
customCodeSigning?: CustomCodeSigning | undefined;
|
|
5287
5287
|
}
|
|
5288
5288
|
/**
|
|
5289
5289
|
* <p>Describes a group of files that can be streamed.</p>
|
|
@@ -5294,12 +5294,12 @@ export interface _Stream {
|
|
|
5294
5294
|
* <p>The stream ID.</p>
|
|
5295
5295
|
* @public
|
|
5296
5296
|
*/
|
|
5297
|
-
streamId?: string;
|
|
5297
|
+
streamId?: string | undefined;
|
|
5298
5298
|
/**
|
|
5299
5299
|
* <p>The ID of a file associated with a stream.</p>
|
|
5300
5300
|
* @public
|
|
5301
5301
|
*/
|
|
5302
|
-
fileId?: number;
|
|
5302
|
+
fileId?: number | undefined;
|
|
5303
5303
|
}
|
|
5304
5304
|
/**
|
|
5305
5305
|
* <p>The location of the OTA update.</p>
|
|
@@ -5310,12 +5310,12 @@ export interface FileLocation {
|
|
|
5310
5310
|
* <p>The stream that contains the OTA update.</p>
|
|
5311
5311
|
* @public
|
|
5312
5312
|
*/
|
|
5313
|
-
stream?: _Stream;
|
|
5313
|
+
stream?: _Stream | undefined;
|
|
5314
5314
|
/**
|
|
5315
5315
|
* <p>The location of the updated firmware in S3.</p>
|
|
5316
5316
|
* @public
|
|
5317
5317
|
*/
|
|
5318
|
-
s3Location?: S3Location;
|
|
5318
|
+
s3Location?: S3Location | undefined;
|
|
5319
5319
|
}
|
|
5320
5320
|
/**
|
|
5321
5321
|
* <p>Describes a file to be associated with an OTA update.</p>
|
|
@@ -5326,33 +5326,33 @@ export interface OTAUpdateFile {
|
|
|
5326
5326
|
* <p>The name of the file.</p>
|
|
5327
5327
|
* @public
|
|
5328
5328
|
*/
|
|
5329
|
-
fileName?: string;
|
|
5329
|
+
fileName?: string | undefined;
|
|
5330
5330
|
/**
|
|
5331
5331
|
* <p>An integer value you can include in the job document to allow your devices to identify the type of file received
|
|
5332
5332
|
* from the cloud.</p>
|
|
5333
5333
|
* @public
|
|
5334
5334
|
*/
|
|
5335
|
-
fileType?: number;
|
|
5335
|
+
fileType?: number | undefined;
|
|
5336
5336
|
/**
|
|
5337
5337
|
* <p>The file version.</p>
|
|
5338
5338
|
* @public
|
|
5339
5339
|
*/
|
|
5340
|
-
fileVersion?: string;
|
|
5340
|
+
fileVersion?: string | undefined;
|
|
5341
5341
|
/**
|
|
5342
5342
|
* <p>The location of the updated firmware.</p>
|
|
5343
5343
|
* @public
|
|
5344
5344
|
*/
|
|
5345
|
-
fileLocation?: FileLocation;
|
|
5345
|
+
fileLocation?: FileLocation | undefined;
|
|
5346
5346
|
/**
|
|
5347
5347
|
* <p>The code signing method of the file.</p>
|
|
5348
5348
|
* @public
|
|
5349
5349
|
*/
|
|
5350
|
-
codeSigning?: CodeSigning;
|
|
5350
|
+
codeSigning?: CodeSigning | undefined;
|
|
5351
5351
|
/**
|
|
5352
5352
|
* <p>A list of name-attribute pairs. They won't be sent to devices as a part of the Job document.</p>
|
|
5353
5353
|
* @public
|
|
5354
5354
|
*/
|
|
5355
|
-
attributes?: Record<string, string
|
|
5355
|
+
attributes?: Record<string, string> | undefined;
|
|
5356
5356
|
}
|
|
5357
5357
|
/**
|
|
5358
5358
|
* @public
|
|
@@ -5379,7 +5379,7 @@ export interface CreateOTAUpdateRequest {
|
|
|
5379
5379
|
* <p>The description of the OTA update.</p>
|
|
5380
5380
|
* @public
|
|
5381
5381
|
*/
|
|
5382
|
-
description?: string;
|
|
5382
|
+
description?: string | undefined;
|
|
5383
5383
|
/**
|
|
5384
5384
|
* <p>The devices targeted to receive OTA updates.</p>
|
|
5385
5385
|
* @public
|
|
@@ -5390,7 +5390,7 @@ export interface CreateOTAUpdateRequest {
|
|
|
5390
5390
|
* HTTP and MQTT are specified, the target device can choose the protocol.</p>
|
|
5391
5391
|
* @public
|
|
5392
5392
|
*/
|
|
5393
|
-
protocols?: Protocol[];
|
|
5393
|
+
protocols?: Protocol[] | undefined;
|
|
5394
5394
|
/**
|
|
5395
5395
|
* <p>Specifies whether the update will continue to run (CONTINUOUS), or will be complete after all the things
|
|
5396
5396
|
* specified as targets have completed the update (SNAPSHOT). If continuous, the update may also be run on a
|
|
@@ -5399,22 +5399,22 @@ export interface CreateOTAUpdateRequest {
|
|
|
5399
5399
|
* values: CONTINUOUS | SNAPSHOT.</p>
|
|
5400
5400
|
* @public
|
|
5401
5401
|
*/
|
|
5402
|
-
targetSelection?: TargetSelection;
|
|
5402
|
+
targetSelection?: TargetSelection | undefined;
|
|
5403
5403
|
/**
|
|
5404
5404
|
* <p>Configuration for the rollout of OTA updates.</p>
|
|
5405
5405
|
* @public
|
|
5406
5406
|
*/
|
|
5407
|
-
awsJobExecutionsRolloutConfig?: AwsJobExecutionsRolloutConfig;
|
|
5407
|
+
awsJobExecutionsRolloutConfig?: AwsJobExecutionsRolloutConfig | undefined;
|
|
5408
5408
|
/**
|
|
5409
5409
|
* <p>Configuration information for pre-signed URLs.</p>
|
|
5410
5410
|
* @public
|
|
5411
5411
|
*/
|
|
5412
|
-
awsJobPresignedUrlConfig?: AwsJobPresignedUrlConfig;
|
|
5412
|
+
awsJobPresignedUrlConfig?: AwsJobPresignedUrlConfig | undefined;
|
|
5413
5413
|
/**
|
|
5414
5414
|
* <p>The criteria that determine when and how a job abort takes place.</p>
|
|
5415
5415
|
* @public
|
|
5416
5416
|
*/
|
|
5417
|
-
awsJobAbortConfig?: AwsJobAbortConfig;
|
|
5417
|
+
awsJobAbortConfig?: AwsJobAbortConfig | undefined;
|
|
5418
5418
|
/**
|
|
5419
5419
|
* <p>Specifies the amount of time each device has to finish its execution of the job. A timer is
|
|
5420
5420
|
* started when the job execution status is set to <code>IN_PROGRESS</code>. If the job execution
|
|
@@ -5422,7 +5422,7 @@ export interface CreateOTAUpdateRequest {
|
|
|
5422
5422
|
* set to <code>TIMED_OUT</code>.</p>
|
|
5423
5423
|
* @public
|
|
5424
5424
|
*/
|
|
5425
|
-
awsJobTimeoutConfig?: AwsJobTimeoutConfig;
|
|
5425
|
+
awsJobTimeoutConfig?: AwsJobTimeoutConfig | undefined;
|
|
5426
5426
|
/**
|
|
5427
5427
|
* <p>The files to be streamed by the OTA update.</p>
|
|
5428
5428
|
* @public
|
|
@@ -5439,12 +5439,12 @@ export interface CreateOTAUpdateRequest {
|
|
|
5439
5439
|
* They won't be sent to devices as a part of the Job document.</p>
|
|
5440
5440
|
* @public
|
|
5441
5441
|
*/
|
|
5442
|
-
additionalParameters?: Record<string, string
|
|
5442
|
+
additionalParameters?: Record<string, string> | undefined;
|
|
5443
5443
|
/**
|
|
5444
5444
|
* <p>Metadata which can be used to manage updates.</p>
|
|
5445
5445
|
* @public
|
|
5446
5446
|
*/
|
|
5447
|
-
tags?: Tag[];
|
|
5447
|
+
tags?: Tag[] | undefined;
|
|
5448
5448
|
}
|
|
5449
5449
|
/**
|
|
5450
5450
|
* @public
|
|
@@ -5470,27 +5470,27 @@ export interface CreateOTAUpdateResponse {
|
|
|
5470
5470
|
* <p>The OTA update ID.</p>
|
|
5471
5471
|
* @public
|
|
5472
5472
|
*/
|
|
5473
|
-
otaUpdateId?: string;
|
|
5473
|
+
otaUpdateId?: string | undefined;
|
|
5474
5474
|
/**
|
|
5475
5475
|
* <p>The IoT job ID associated with the OTA update.</p>
|
|
5476
5476
|
* @public
|
|
5477
5477
|
*/
|
|
5478
|
-
awsIotJobId?: string;
|
|
5478
|
+
awsIotJobId?: string | undefined;
|
|
5479
5479
|
/**
|
|
5480
5480
|
* <p>The OTA update ARN.</p>
|
|
5481
5481
|
* @public
|
|
5482
5482
|
*/
|
|
5483
|
-
otaUpdateArn?: string;
|
|
5483
|
+
otaUpdateArn?: string | undefined;
|
|
5484
5484
|
/**
|
|
5485
5485
|
* <p>The IoT job ARN associated with the OTA update.</p>
|
|
5486
5486
|
* @public
|
|
5487
5487
|
*/
|
|
5488
|
-
awsIotJobArn?: string;
|
|
5488
|
+
awsIotJobArn?: string | undefined;
|
|
5489
5489
|
/**
|
|
5490
5490
|
* <p>The OTA update status.</p>
|
|
5491
5491
|
* @public
|
|
5492
5492
|
*/
|
|
5493
|
-
otaUpdateStatus?: OTAUpdateStatus;
|
|
5493
|
+
otaUpdateStatus?: OTAUpdateStatus | undefined;
|
|
5494
5494
|
}
|
|
5495
5495
|
/**
|
|
5496
5496
|
* @public
|
|
@@ -5505,18 +5505,18 @@ export interface CreatePackageRequest {
|
|
|
5505
5505
|
* <p>A summary of the package being created. This can be used to outline the package's contents or purpose.</p>
|
|
5506
5506
|
* @public
|
|
5507
5507
|
*/
|
|
5508
|
-
description?: string;
|
|
5508
|
+
description?: string | undefined;
|
|
5509
5509
|
/**
|
|
5510
5510
|
* <p>Metadata that can be used to manage the package.</p>
|
|
5511
5511
|
* @public
|
|
5512
5512
|
*/
|
|
5513
|
-
tags?: Record<string, string
|
|
5513
|
+
tags?: Record<string, string> | undefined;
|
|
5514
5514
|
/**
|
|
5515
5515
|
* <p>A unique case-sensitive identifier that you can provide to ensure the idempotency of the request.
|
|
5516
5516
|
* Don't reuse this client token if a new idempotent request is required.</p>
|
|
5517
5517
|
* @public
|
|
5518
5518
|
*/
|
|
5519
|
-
clientToken?: string;
|
|
5519
|
+
clientToken?: string | undefined;
|
|
5520
5520
|
}
|
|
5521
5521
|
/**
|
|
5522
5522
|
* @public
|
|
@@ -5526,17 +5526,17 @@ export interface CreatePackageResponse {
|
|
|
5526
5526
|
* <p>The name of the software package.</p>
|
|
5527
5527
|
* @public
|
|
5528
5528
|
*/
|
|
5529
|
-
packageName?: string;
|
|
5529
|
+
packageName?: string | undefined;
|
|
5530
5530
|
/**
|
|
5531
5531
|
* <p>The Amazon Resource Name (ARN) for the package.</p>
|
|
5532
5532
|
* @public
|
|
5533
5533
|
*/
|
|
5534
|
-
packageArn?: string;
|
|
5534
|
+
packageArn?: string | undefined;
|
|
5535
5535
|
/**
|
|
5536
5536
|
* <p>The package description.</p>
|
|
5537
5537
|
* @public
|
|
5538
5538
|
*/
|
|
5539
|
-
description?: string;
|
|
5539
|
+
description?: string | undefined;
|
|
5540
5540
|
}
|
|
5541
5541
|
/**
|
|
5542
5542
|
* <p>A specific package version artifact associated with a software package version.</p>
|
|
@@ -5547,7 +5547,7 @@ export interface PackageVersionArtifact {
|
|
|
5547
5547
|
* <p>The S3 location.</p>
|
|
5548
5548
|
* @public
|
|
5549
5549
|
*/
|
|
5550
|
-
s3Location?: S3Location;
|
|
5550
|
+
s3Location?: S3Location | undefined;
|
|
5551
5551
|
}
|
|
5552
5552
|
/**
|
|
5553
5553
|
* @public
|
|
@@ -5567,36 +5567,36 @@ export interface CreatePackageVersionRequest {
|
|
|
5567
5567
|
* <p>A summary of the package version being created. This can be used to outline the package's contents or purpose.</p>
|
|
5568
5568
|
* @public
|
|
5569
5569
|
*/
|
|
5570
|
-
description?: string;
|
|
5570
|
+
description?: string | undefined;
|
|
5571
5571
|
/**
|
|
5572
5572
|
* <p>Metadata that can be used to define a package version’s configuration. For example, the S3 file location, configuration options that are being sent to the device or fleet.</p>
|
|
5573
5573
|
* <p>The combined size of all the attributes on a package version is limited to 3KB.</p>
|
|
5574
5574
|
* @public
|
|
5575
5575
|
*/
|
|
5576
|
-
attributes?: Record<string, string
|
|
5576
|
+
attributes?: Record<string, string> | undefined;
|
|
5577
5577
|
/**
|
|
5578
5578
|
* <p>The various build components created during the build process such as libraries and
|
|
5579
5579
|
* configuration files that make up a software package version.</p>
|
|
5580
5580
|
* @public
|
|
5581
5581
|
*/
|
|
5582
|
-
artifact?: PackageVersionArtifact;
|
|
5582
|
+
artifact?: PackageVersionArtifact | undefined;
|
|
5583
5583
|
/**
|
|
5584
5584
|
* <p>The inline job document associated with a software package version used for a quick job
|
|
5585
5585
|
* deployment.</p>
|
|
5586
5586
|
* @public
|
|
5587
5587
|
*/
|
|
5588
|
-
recipe?: string;
|
|
5588
|
+
recipe?: string | undefined;
|
|
5589
5589
|
/**
|
|
5590
5590
|
* <p>Metadata that can be used to manage the package version.</p>
|
|
5591
5591
|
* @public
|
|
5592
5592
|
*/
|
|
5593
|
-
tags?: Record<string, string
|
|
5593
|
+
tags?: Record<string, string> | undefined;
|
|
5594
5594
|
/**
|
|
5595
5595
|
* <p>A unique case-sensitive identifier that you can provide to ensure the idempotency of the request.
|
|
5596
5596
|
* Don't reuse this client token if a new idempotent request is required.</p>
|
|
5597
5597
|
* @public
|
|
5598
5598
|
*/
|
|
5599
|
-
clientToken?: string;
|
|
5599
|
+
clientToken?: string | undefined;
|
|
5600
5600
|
}
|
|
5601
5601
|
/**
|
|
5602
5602
|
* @public
|
|
@@ -5619,37 +5619,37 @@ export interface CreatePackageVersionResponse {
|
|
|
5619
5619
|
* <p>The Amazon Resource Name (ARN) for the package.</p>
|
|
5620
5620
|
* @public
|
|
5621
5621
|
*/
|
|
5622
|
-
packageVersionArn?: string;
|
|
5622
|
+
packageVersionArn?: string | undefined;
|
|
5623
5623
|
/**
|
|
5624
5624
|
* <p>The name of the associated software package.</p>
|
|
5625
5625
|
* @public
|
|
5626
5626
|
*/
|
|
5627
|
-
packageName?: string;
|
|
5627
|
+
packageName?: string | undefined;
|
|
5628
5628
|
/**
|
|
5629
5629
|
* <p>The name of the new package version.</p>
|
|
5630
5630
|
* @public
|
|
5631
5631
|
*/
|
|
5632
|
-
versionName?: string;
|
|
5632
|
+
versionName?: string | undefined;
|
|
5633
5633
|
/**
|
|
5634
5634
|
* <p>The package version description.</p>
|
|
5635
5635
|
* @public
|
|
5636
5636
|
*/
|
|
5637
|
-
description?: string;
|
|
5637
|
+
description?: string | undefined;
|
|
5638
5638
|
/**
|
|
5639
5639
|
* <p>Metadata that were added to the package version that can be used to define a package version’s configuration.</p>
|
|
5640
5640
|
* @public
|
|
5641
5641
|
*/
|
|
5642
|
-
attributes?: Record<string, string
|
|
5642
|
+
attributes?: Record<string, string> | undefined;
|
|
5643
5643
|
/**
|
|
5644
5644
|
* <p>The status of the package version. For more information, see <a href="https://docs.aws.amazon.com/iot/latest/developerguide/preparing-to-use-software-package-catalog.html#package-version-lifecycle">Package version lifecycle</a>.</p>
|
|
5645
5645
|
* @public
|
|
5646
5646
|
*/
|
|
5647
|
-
status?: PackageVersionStatus;
|
|
5647
|
+
status?: PackageVersionStatus | undefined;
|
|
5648
5648
|
/**
|
|
5649
5649
|
* <p>Error reason for a package version failure during creation or update.</p>
|
|
5650
5650
|
* @public
|
|
5651
5651
|
*/
|
|
5652
|
-
errorReason?: string;
|
|
5652
|
+
errorReason?: string | undefined;
|
|
5653
5653
|
}
|
|
5654
5654
|
/**
|
|
5655
5655
|
* <p>The input for the CreatePolicy operation.</p>
|
|
@@ -5678,7 +5678,7 @@ export interface CreatePolicyRequest {
|
|
|
5678
5678
|
* </note>
|
|
5679
5679
|
* @public
|
|
5680
5680
|
*/
|
|
5681
|
-
tags?: Tag[];
|
|
5681
|
+
tags?: Tag[] | undefined;
|
|
5682
5682
|
}
|
|
5683
5683
|
/**
|
|
5684
5684
|
* <p>The output from the CreatePolicy operation.</p>
|
|
@@ -5689,22 +5689,22 @@ export interface CreatePolicyResponse {
|
|
|
5689
5689
|
* <p>The policy name.</p>
|
|
5690
5690
|
* @public
|
|
5691
5691
|
*/
|
|
5692
|
-
policyName?: string;
|
|
5692
|
+
policyName?: string | undefined;
|
|
5693
5693
|
/**
|
|
5694
5694
|
* <p>The policy ARN.</p>
|
|
5695
5695
|
* @public
|
|
5696
5696
|
*/
|
|
5697
|
-
policyArn?: string;
|
|
5697
|
+
policyArn?: string | undefined;
|
|
5698
5698
|
/**
|
|
5699
5699
|
* <p>The JSON document that describes the policy.</p>
|
|
5700
5700
|
* @public
|
|
5701
5701
|
*/
|
|
5702
|
-
policyDocument?: string;
|
|
5702
|
+
policyDocument?: string | undefined;
|
|
5703
5703
|
/**
|
|
5704
5704
|
* <p>The policy version ID.</p>
|
|
5705
5705
|
* @public
|
|
5706
5706
|
*/
|
|
5707
|
-
policyVersionId?: string;
|
|
5707
|
+
policyVersionId?: string | undefined;
|
|
5708
5708
|
}
|
|
5709
5709
|
/**
|
|
5710
5710
|
* <p>The policy documentation is not valid.</p>
|
|
@@ -5740,7 +5740,7 @@ export interface CreatePolicyVersionRequest {
|
|
|
5740
5740
|
* effect for the certificates to which the policy is attached).</p>
|
|
5741
5741
|
* @public
|
|
5742
5742
|
*/
|
|
5743
|
-
setAsDefault?: boolean;
|
|
5743
|
+
setAsDefault?: boolean | undefined;
|
|
5744
5744
|
}
|
|
5745
5745
|
/**
|
|
5746
5746
|
* <p>The output of the CreatePolicyVersion operation.</p>
|
|
@@ -5751,22 +5751,22 @@ export interface CreatePolicyVersionResponse {
|
|
|
5751
5751
|
* <p>The policy ARN.</p>
|
|
5752
5752
|
* @public
|
|
5753
5753
|
*/
|
|
5754
|
-
policyArn?: string;
|
|
5754
|
+
policyArn?: string | undefined;
|
|
5755
5755
|
/**
|
|
5756
5756
|
* <p>The JSON document that describes the policy.</p>
|
|
5757
5757
|
* @public
|
|
5758
5758
|
*/
|
|
5759
|
-
policyDocument?: string;
|
|
5759
|
+
policyDocument?: string | undefined;
|
|
5760
5760
|
/**
|
|
5761
5761
|
* <p>The policy version ID.</p>
|
|
5762
5762
|
* @public
|
|
5763
5763
|
*/
|
|
5764
|
-
policyVersionId?: string;
|
|
5764
|
+
policyVersionId?: string | undefined;
|
|
5765
5765
|
/**
|
|
5766
5766
|
* <p>Specifies whether the policy version is the default.</p>
|
|
5767
5767
|
* @public
|
|
5768
5768
|
*/
|
|
5769
|
-
isDefaultVersion?: boolean;
|
|
5769
|
+
isDefaultVersion?: boolean | undefined;
|
|
5770
5770
|
}
|
|
5771
5771
|
/**
|
|
5772
5772
|
* <p>The number of policy versions exceeds the limit.</p>
|
|
@@ -5798,22 +5798,22 @@ export interface CreateProvisioningClaimResponse {
|
|
|
5798
5798
|
* <p>The ID of the certificate.</p>
|
|
5799
5799
|
* @public
|
|
5800
5800
|
*/
|
|
5801
|
-
certificateId?: string;
|
|
5801
|
+
certificateId?: string | undefined;
|
|
5802
5802
|
/**
|
|
5803
5803
|
* <p>The provisioning claim certificate.</p>
|
|
5804
5804
|
* @public
|
|
5805
5805
|
*/
|
|
5806
|
-
certificatePem?: string;
|
|
5806
|
+
certificatePem?: string | undefined;
|
|
5807
5807
|
/**
|
|
5808
5808
|
* <p>The provisioning claim key pair.</p>
|
|
5809
5809
|
* @public
|
|
5810
5810
|
*/
|
|
5811
|
-
keyPair?: KeyPair;
|
|
5811
|
+
keyPair?: KeyPair | undefined;
|
|
5812
5812
|
/**
|
|
5813
5813
|
* <p>The provisioning claim expiration time.</p>
|
|
5814
5814
|
* @public
|
|
5815
5815
|
*/
|
|
5816
|
-
expiration?: Date;
|
|
5816
|
+
expiration?: Date | undefined;
|
|
5817
5817
|
}
|
|
5818
5818
|
/**
|
|
5819
5819
|
* <p>Structure that contains <code>payloadVersion</code> and
|
|
@@ -5827,7 +5827,7 @@ export interface ProvisioningHook {
|
|
|
5827
5827
|
* <i>Note:</i> Only Lambda functions are currently supported.</p>
|
|
5828
5828
|
* @public
|
|
5829
5829
|
*/
|
|
5830
|
-
payloadVersion?: string;
|
|
5830
|
+
payloadVersion?: string | undefined;
|
|
5831
5831
|
/**
|
|
5832
5832
|
* <p>The ARN of the target function.</p>
|
|
5833
5833
|
* <p>
|
|
@@ -5861,7 +5861,7 @@ export interface CreateProvisioningTemplateRequest {
|
|
|
5861
5861
|
* <p>The description of the provisioning template.</p>
|
|
5862
5862
|
* @public
|
|
5863
5863
|
*/
|
|
5864
|
-
description?: string;
|
|
5864
|
+
description?: string | undefined;
|
|
5865
5865
|
/**
|
|
5866
5866
|
* <p>The JSON formatted contents of the provisioning template.</p>
|
|
5867
5867
|
* @public
|
|
@@ -5871,7 +5871,7 @@ export interface CreateProvisioningTemplateRequest {
|
|
|
5871
5871
|
* <p>True to enable the provisioning template, otherwise false.</p>
|
|
5872
5872
|
* @public
|
|
5873
5873
|
*/
|
|
5874
|
-
enabled?: boolean;
|
|
5874
|
+
enabled?: boolean | undefined;
|
|
5875
5875
|
/**
|
|
5876
5876
|
* <p>The role ARN for the role associated with the provisioning template. This IoT role
|
|
5877
5877
|
* grants permission to provision a device.</p>
|
|
@@ -5884,7 +5884,7 @@ export interface CreateProvisioningTemplateRequest {
|
|
|
5884
5884
|
* see <a href="https://docs.aws.amazon.com/iot/latest/apireference/API_CreateProvisioningTemplate.html#iot-CreateProvisioningTemplate-request-type">type</a>.</p>
|
|
5885
5885
|
* @public
|
|
5886
5886
|
*/
|
|
5887
|
-
preProvisioningHook?: ProvisioningHook;
|
|
5887
|
+
preProvisioningHook?: ProvisioningHook | undefined;
|
|
5888
5888
|
/**
|
|
5889
5889
|
* <p>Metadata which can be used to manage the provisioning template.</p>
|
|
5890
5890
|
* <note>
|
|
@@ -5896,7 +5896,7 @@ export interface CreateProvisioningTemplateRequest {
|
|
|
5896
5896
|
* </note>
|
|
5897
5897
|
* @public
|
|
5898
5898
|
*/
|
|
5899
|
-
tags?: Tag[];
|
|
5899
|
+
tags?: Tag[] | undefined;
|
|
5900
5900
|
/**
|
|
5901
5901
|
* <p>The type you define in a provisioning template. You can create a template with only one type.
|
|
5902
5902
|
* You can't change the template type after its creation. The default value is <code>FLEET_PROVISIONING</code>.
|
|
@@ -5904,7 +5904,7 @@ export interface CreateProvisioningTemplateRequest {
|
|
|
5904
5904
|
* </p>
|
|
5905
5905
|
* @public
|
|
5906
5906
|
*/
|
|
5907
|
-
type?: TemplateType;
|
|
5907
|
+
type?: TemplateType | undefined;
|
|
5908
5908
|
}
|
|
5909
5909
|
/**
|
|
5910
5910
|
* @public
|
|
@@ -5914,17 +5914,17 @@ export interface CreateProvisioningTemplateResponse {
|
|
|
5914
5914
|
* <p>The ARN that identifies the provisioning template.</p>
|
|
5915
5915
|
* @public
|
|
5916
5916
|
*/
|
|
5917
|
-
templateArn?: string;
|
|
5917
|
+
templateArn?: string | undefined;
|
|
5918
5918
|
/**
|
|
5919
5919
|
* <p>The name of the provisioning template.</p>
|
|
5920
5920
|
* @public
|
|
5921
5921
|
*/
|
|
5922
|
-
templateName?: string;
|
|
5922
|
+
templateName?: string | undefined;
|
|
5923
5923
|
/**
|
|
5924
5924
|
* <p>The default version of the provisioning template.</p>
|
|
5925
5925
|
* @public
|
|
5926
5926
|
*/
|
|
5927
|
-
defaultVersionId?: number;
|
|
5927
|
+
defaultVersionId?: number | undefined;
|
|
5928
5928
|
}
|
|
5929
5929
|
/**
|
|
5930
5930
|
* @public
|
|
@@ -5944,7 +5944,7 @@ export interface CreateProvisioningTemplateVersionRequest {
|
|
|
5944
5944
|
* <p>Sets a fleet provision template version as the default version.</p>
|
|
5945
5945
|
* @public
|
|
5946
5946
|
*/
|
|
5947
|
-
setAsDefault?: boolean;
|
|
5947
|
+
setAsDefault?: boolean | undefined;
|
|
5948
5948
|
}
|
|
5949
5949
|
/**
|
|
5950
5950
|
* @public
|
|
@@ -5954,23 +5954,23 @@ export interface CreateProvisioningTemplateVersionResponse {
|
|
|
5954
5954
|
* <p>The ARN that identifies the provisioning template.</p>
|
|
5955
5955
|
* @public
|
|
5956
5956
|
*/
|
|
5957
|
-
templateArn?: string;
|
|
5957
|
+
templateArn?: string | undefined;
|
|
5958
5958
|
/**
|
|
5959
5959
|
* <p>The name of the provisioning template.</p>
|
|
5960
5960
|
* @public
|
|
5961
5961
|
*/
|
|
5962
|
-
templateName?: string;
|
|
5962
|
+
templateName?: string | undefined;
|
|
5963
5963
|
/**
|
|
5964
5964
|
* <p>The version of the provisioning template.</p>
|
|
5965
5965
|
* @public
|
|
5966
5966
|
*/
|
|
5967
|
-
versionId?: number;
|
|
5967
|
+
versionId?: number | undefined;
|
|
5968
5968
|
/**
|
|
5969
5969
|
* <p>True if the provisioning template version is the default version, otherwise
|
|
5970
5970
|
* false.</p>
|
|
5971
5971
|
* @public
|
|
5972
5972
|
*/
|
|
5973
|
-
isDefaultVersion?: boolean;
|
|
5973
|
+
isDefaultVersion?: boolean | undefined;
|
|
5974
5974
|
}
|
|
5975
5975
|
/**
|
|
5976
5976
|
* @public
|
|
@@ -5993,7 +5993,7 @@ export interface CreateRoleAliasRequest {
|
|
|
5993
5993
|
* that the role alias references.</p>
|
|
5994
5994
|
* @public
|
|
5995
5995
|
*/
|
|
5996
|
-
credentialDurationSeconds?: number;
|
|
5996
|
+
credentialDurationSeconds?: number | undefined;
|
|
5997
5997
|
/**
|
|
5998
5998
|
* <p>Metadata which can be used to manage the role alias.</p>
|
|
5999
5999
|
* <note>
|
|
@@ -6005,7 +6005,7 @@ export interface CreateRoleAliasRequest {
|
|
|
6005
6005
|
* </note>
|
|
6006
6006
|
* @public
|
|
6007
6007
|
*/
|
|
6008
|
-
tags?: Tag[];
|
|
6008
|
+
tags?: Tag[] | undefined;
|
|
6009
6009
|
}
|
|
6010
6010
|
/**
|
|
6011
6011
|
* @public
|
|
@@ -6015,12 +6015,12 @@ export interface CreateRoleAliasResponse {
|
|
|
6015
6015
|
* <p>The role alias.</p>
|
|
6016
6016
|
* @public
|
|
6017
6017
|
*/
|
|
6018
|
-
roleAlias?: string;
|
|
6018
|
+
roleAlias?: string | undefined;
|
|
6019
6019
|
/**
|
|
6020
6020
|
* <p>The role alias ARN.</p>
|
|
6021
6021
|
* @public
|
|
6022
6022
|
*/
|
|
6023
|
-
roleAliasArn?: string;
|
|
6023
|
+
roleAliasArn?: string | undefined;
|
|
6024
6024
|
}
|
|
6025
6025
|
/**
|
|
6026
6026
|
* @public
|
|
@@ -6063,7 +6063,7 @@ export interface CreateScheduledAuditRequest {
|
|
|
6063
6063
|
* have that many days, the audit takes place on the <code>LAST</code> day of the month.</p>
|
|
6064
6064
|
* @public
|
|
6065
6065
|
*/
|
|
6066
|
-
dayOfMonth?: string;
|
|
6066
|
+
dayOfMonth?: string | undefined;
|
|
6067
6067
|
/**
|
|
6068
6068
|
* <p>The day of the week on which the scheduled audit takes
|
|
6069
6069
|
* place,
|
|
@@ -6073,7 +6073,7 @@ export interface CreateScheduledAuditRequest {
|
|
|
6073
6073
|
* parameter is set to <code>WEEKLY</code> or <code>BIWEEKLY</code>.</p>
|
|
6074
6074
|
* @public
|
|
6075
6075
|
*/
|
|
6076
|
-
dayOfWeek?: DayOfWeek;
|
|
6076
|
+
dayOfWeek?: DayOfWeek | undefined;
|
|
6077
6077
|
/**
|
|
6078
6078
|
* <p>Which checks are performed during the scheduled audit. Checks must be enabled
|
|
6079
6079
|
* for your account. (Use <code>DescribeAccountAuditConfiguration</code> to see the list
|
|
@@ -6091,7 +6091,7 @@ export interface CreateScheduledAuditRequest {
|
|
|
6091
6091
|
* <p>Metadata that can be used to manage the scheduled audit.</p>
|
|
6092
6092
|
* @public
|
|
6093
6093
|
*/
|
|
6094
|
-
tags?: Tag[];
|
|
6094
|
+
tags?: Tag[] | undefined;
|
|
6095
6095
|
}
|
|
6096
6096
|
/**
|
|
6097
6097
|
* @public
|
|
@@ -6101,7 +6101,7 @@ export interface CreateScheduledAuditResponse {
|
|
|
6101
6101
|
* <p>The ARN of the scheduled audit.</p>
|
|
6102
6102
|
* @public
|
|
6103
6103
|
*/
|
|
6104
|
-
scheduledAuditArn?: string;
|
|
6104
|
+
scheduledAuditArn?: string | undefined;
|
|
6105
6105
|
}
|
|
6106
6106
|
/**
|
|
6107
6107
|
* <p>Set configurations for metrics export.</p>
|
|
@@ -6134,18 +6134,18 @@ export interface CreateSecurityProfileRequest {
|
|
|
6134
6134
|
* <p>A description of the security profile.</p>
|
|
6135
6135
|
* @public
|
|
6136
6136
|
*/
|
|
6137
|
-
securityProfileDescription?: string;
|
|
6137
|
+
securityProfileDescription?: string | undefined;
|
|
6138
6138
|
/**
|
|
6139
6139
|
* <p>Specifies the behaviors that, when violated by a device (thing), cause an alert.</p>
|
|
6140
6140
|
* @public
|
|
6141
6141
|
*/
|
|
6142
|
-
behaviors?: Behavior[];
|
|
6142
|
+
behaviors?: Behavior[] | undefined;
|
|
6143
6143
|
/**
|
|
6144
6144
|
* <p>Specifies the destinations to which alerts are sent. (Alerts are always sent to the
|
|
6145
6145
|
* console.) Alerts are generated when a device (thing) violates a behavior.</p>
|
|
6146
6146
|
* @public
|
|
6147
6147
|
*/
|
|
6148
|
-
alertTargets?: Partial<Record<AlertTargetType, AlertTarget
|
|
6148
|
+
alertTargets?: Partial<Record<AlertTargetType, AlertTarget>> | undefined;
|
|
6149
6149
|
/**
|
|
6150
6150
|
* @deprecated
|
|
6151
6151
|
*
|
|
@@ -6157,22 +6157,22 @@ export interface CreateSecurityProfileRequest {
|
|
|
6157
6157
|
* any metric specified here. Can be used with custom metrics; cannot be used with dimensions.</p>
|
|
6158
6158
|
* @public
|
|
6159
6159
|
*/
|
|
6160
|
-
additionalMetricsToRetain?: string[];
|
|
6160
|
+
additionalMetricsToRetain?: string[] | undefined;
|
|
6161
6161
|
/**
|
|
6162
6162
|
* <p>A list of metrics whose data is retained (stored). By default, data is retained for any metric used in the profile's <code>behaviors</code>, but it is also retained for any metric specified here. Can be used with custom metrics; cannot be used with dimensions.</p>
|
|
6163
6163
|
* @public
|
|
6164
6164
|
*/
|
|
6165
|
-
additionalMetricsToRetainV2?: MetricToRetain[];
|
|
6165
|
+
additionalMetricsToRetainV2?: MetricToRetain[] | undefined;
|
|
6166
6166
|
/**
|
|
6167
6167
|
* <p>Metadata that can be used to manage the security profile.</p>
|
|
6168
6168
|
* @public
|
|
6169
6169
|
*/
|
|
6170
|
-
tags?: Tag[];
|
|
6170
|
+
tags?: Tag[] | undefined;
|
|
6171
6171
|
/**
|
|
6172
6172
|
* <p>Specifies the MQTT topic and role ARN required for metric export.</p>
|
|
6173
6173
|
* @public
|
|
6174
6174
|
*/
|
|
6175
|
-
metricsExportConfig?: MetricsExportConfig;
|
|
6175
|
+
metricsExportConfig?: MetricsExportConfig | undefined;
|
|
6176
6176
|
}
|
|
6177
6177
|
/**
|
|
6178
6178
|
* @public
|
|
@@ -6182,12 +6182,12 @@ export interface CreateSecurityProfileResponse {
|
|
|
6182
6182
|
* <p>The name you gave to the security profile.</p>
|
|
6183
6183
|
* @public
|
|
6184
6184
|
*/
|
|
6185
|
-
securityProfileName?: string;
|
|
6185
|
+
securityProfileName?: string | undefined;
|
|
6186
6186
|
/**
|
|
6187
6187
|
* <p>The ARN of the security profile.</p>
|
|
6188
6188
|
* @public
|
|
6189
6189
|
*/
|
|
6190
|
-
securityProfileArn?: string;
|
|
6190
|
+
securityProfileArn?: string | undefined;
|
|
6191
6191
|
}
|
|
6192
6192
|
/**
|
|
6193
6193
|
* <p>Represents a file to stream.</p>
|
|
@@ -6198,12 +6198,12 @@ export interface StreamFile {
|
|
|
6198
6198
|
* <p>The file ID.</p>
|
|
6199
6199
|
* @public
|
|
6200
6200
|
*/
|
|
6201
|
-
fileId?: number;
|
|
6201
|
+
fileId?: number | undefined;
|
|
6202
6202
|
/**
|
|
6203
6203
|
* <p>The location of the file in S3.</p>
|
|
6204
6204
|
* @public
|
|
6205
6205
|
*/
|
|
6206
|
-
s3Location?: S3Location;
|
|
6206
|
+
s3Location?: S3Location | undefined;
|
|
6207
6207
|
}
|
|
6208
6208
|
/**
|
|
6209
6209
|
* @public
|
|
@@ -6218,7 +6218,7 @@ export interface CreateStreamRequest {
|
|
|
6218
6218
|
* <p>A description of the stream.</p>
|
|
6219
6219
|
* @public
|
|
6220
6220
|
*/
|
|
6221
|
-
description?: string;
|
|
6221
|
+
description?: string | undefined;
|
|
6222
6222
|
/**
|
|
6223
6223
|
* <p>The files to stream.</p>
|
|
6224
6224
|
* @public
|
|
@@ -6233,7 +6233,7 @@ export interface CreateStreamRequest {
|
|
|
6233
6233
|
* <p>Metadata which can be used to manage streams.</p>
|
|
6234
6234
|
* @public
|
|
6235
6235
|
*/
|
|
6236
|
-
tags?: Tag[];
|
|
6236
|
+
tags?: Tag[] | undefined;
|
|
6237
6237
|
}
|
|
6238
6238
|
/**
|
|
6239
6239
|
* @public
|
|
@@ -6243,22 +6243,22 @@ export interface CreateStreamResponse {
|
|
|
6243
6243
|
* <p>The stream ID.</p>
|
|
6244
6244
|
* @public
|
|
6245
6245
|
*/
|
|
6246
|
-
streamId?: string;
|
|
6246
|
+
streamId?: string | undefined;
|
|
6247
6247
|
/**
|
|
6248
6248
|
* <p>The stream ARN.</p>
|
|
6249
6249
|
* @public
|
|
6250
6250
|
*/
|
|
6251
|
-
streamArn?: string;
|
|
6251
|
+
streamArn?: string | undefined;
|
|
6252
6252
|
/**
|
|
6253
6253
|
* <p>A description of the stream.</p>
|
|
6254
6254
|
* @public
|
|
6255
6255
|
*/
|
|
6256
|
-
description?: string;
|
|
6256
|
+
description?: string | undefined;
|
|
6257
6257
|
/**
|
|
6258
6258
|
* <p>The version of the stream.</p>
|
|
6259
6259
|
* @public
|
|
6260
6260
|
*/
|
|
6261
|
-
streamVersion?: number;
|
|
6261
|
+
streamVersion?: number | undefined;
|
|
6262
6262
|
}
|
|
6263
6263
|
/**
|
|
6264
6264
|
* <p>The input for the CreateThing operation.</p>
|
|
@@ -6276,7 +6276,7 @@ export interface CreateThingRequest {
|
|
|
6276
6276
|
* <p>The name of the thing type associated with the new thing.</p>
|
|
6277
6277
|
* @public
|
|
6278
6278
|
*/
|
|
6279
|
-
thingTypeName?: string;
|
|
6279
|
+
thingTypeName?: string | undefined;
|
|
6280
6280
|
/**
|
|
6281
6281
|
* <p>The attribute payload, which consists of up to three name/value pairs in a JSON
|
|
6282
6282
|
* document. For example:</p>
|
|
@@ -6285,12 +6285,12 @@ export interface CreateThingRequest {
|
|
|
6285
6285
|
* </p>
|
|
6286
6286
|
* @public
|
|
6287
6287
|
*/
|
|
6288
|
-
attributePayload?: AttributePayload;
|
|
6288
|
+
attributePayload?: AttributePayload | undefined;
|
|
6289
6289
|
/**
|
|
6290
6290
|
* <p>The name of the billing group the thing will be added to.</p>
|
|
6291
6291
|
* @public
|
|
6292
6292
|
*/
|
|
6293
|
-
billingGroupName?: string;
|
|
6293
|
+
billingGroupName?: string | undefined;
|
|
6294
6294
|
}
|
|
6295
6295
|
/**
|
|
6296
6296
|
* <p>The output of the CreateThing operation.</p>
|
|
@@ -6301,17 +6301,17 @@ export interface CreateThingResponse {
|
|
|
6301
6301
|
* <p>The name of the new thing.</p>
|
|
6302
6302
|
* @public
|
|
6303
6303
|
*/
|
|
6304
|
-
thingName?: string;
|
|
6304
|
+
thingName?: string | undefined;
|
|
6305
6305
|
/**
|
|
6306
6306
|
* <p>The ARN of the new thing.</p>
|
|
6307
6307
|
* @public
|
|
6308
6308
|
*/
|
|
6309
|
-
thingArn?: string;
|
|
6309
|
+
thingArn?: string | undefined;
|
|
6310
6310
|
/**
|
|
6311
6311
|
* <p>The thing ID.</p>
|
|
6312
6312
|
* @public
|
|
6313
6313
|
*/
|
|
6314
|
-
thingId?: string;
|
|
6314
|
+
thingId?: string | undefined;
|
|
6315
6315
|
}
|
|
6316
6316
|
/**
|
|
6317
6317
|
* @public
|
|
@@ -6326,17 +6326,17 @@ export interface CreateThingGroupRequest {
|
|
|
6326
6326
|
* <p>The name of the parent thing group.</p>
|
|
6327
6327
|
* @public
|
|
6328
6328
|
*/
|
|
6329
|
-
parentGroupName?: string;
|
|
6329
|
+
parentGroupName?: string | undefined;
|
|
6330
6330
|
/**
|
|
6331
6331
|
* <p>The thing group properties.</p>
|
|
6332
6332
|
* @public
|
|
6333
6333
|
*/
|
|
6334
|
-
thingGroupProperties?: ThingGroupProperties;
|
|
6334
|
+
thingGroupProperties?: ThingGroupProperties | undefined;
|
|
6335
6335
|
/**
|
|
6336
6336
|
* <p>Metadata which can be used to manage the thing group.</p>
|
|
6337
6337
|
* @public
|
|
6338
6338
|
*/
|
|
6339
|
-
tags?: Tag[];
|
|
6339
|
+
tags?: Tag[] | undefined;
|
|
6340
6340
|
}
|
|
6341
6341
|
/**
|
|
6342
6342
|
* @public
|
|
@@ -6346,17 +6346,17 @@ export interface CreateThingGroupResponse {
|
|
|
6346
6346
|
* <p>The thing group name.</p>
|
|
6347
6347
|
* @public
|
|
6348
6348
|
*/
|
|
6349
|
-
thingGroupName?: string;
|
|
6349
|
+
thingGroupName?: string | undefined;
|
|
6350
6350
|
/**
|
|
6351
6351
|
* <p>The thing group ARN.</p>
|
|
6352
6352
|
* @public
|
|
6353
6353
|
*/
|
|
6354
|
-
thingGroupArn?: string;
|
|
6354
|
+
thingGroupArn?: string | undefined;
|
|
6355
6355
|
/**
|
|
6356
6356
|
* <p>The thing group ID.</p>
|
|
6357
6357
|
* @public
|
|
6358
6358
|
*/
|
|
6359
|
-
thingGroupId?: string;
|
|
6359
|
+
thingGroupId?: string | undefined;
|
|
6360
6360
|
}
|
|
6361
6361
|
/**
|
|
6362
6362
|
* <p>The ThingTypeProperties contains information about the thing type including: a thing type description,
|
|
@@ -6368,12 +6368,12 @@ export interface ThingTypeProperties {
|
|
|
6368
6368
|
* <p>The description of the thing type.</p>
|
|
6369
6369
|
* @public
|
|
6370
6370
|
*/
|
|
6371
|
-
thingTypeDescription?: string;
|
|
6371
|
+
thingTypeDescription?: string | undefined;
|
|
6372
6372
|
/**
|
|
6373
6373
|
* <p>A list of searchable thing attribute names.</p>
|
|
6374
6374
|
* @public
|
|
6375
6375
|
*/
|
|
6376
|
-
searchableAttributes?: string[];
|
|
6376
|
+
searchableAttributes?: string[] | undefined;
|
|
6377
6377
|
}
|
|
6378
6378
|
/**
|
|
6379
6379
|
* <p>The input for the CreateThingType operation.</p>
|
|
@@ -6391,12 +6391,12 @@ export interface CreateThingTypeRequest {
|
|
|
6391
6391
|
* names.</p>
|
|
6392
6392
|
* @public
|
|
6393
6393
|
*/
|
|
6394
|
-
thingTypeProperties?: ThingTypeProperties;
|
|
6394
|
+
thingTypeProperties?: ThingTypeProperties | undefined;
|
|
6395
6395
|
/**
|
|
6396
6396
|
* <p>Metadata which can be used to manage the thing type.</p>
|
|
6397
6397
|
* @public
|
|
6398
6398
|
*/
|
|
6399
|
-
tags?: Tag[];
|
|
6399
|
+
tags?: Tag[] | undefined;
|
|
6400
6400
|
}
|
|
6401
6401
|
/**
|
|
6402
6402
|
* <p>The output of the CreateThingType operation.</p>
|
|
@@ -6407,17 +6407,17 @@ export interface CreateThingTypeResponse {
|
|
|
6407
6407
|
* <p>The name of the thing type.</p>
|
|
6408
6408
|
* @public
|
|
6409
6409
|
*/
|
|
6410
|
-
thingTypeName?: string;
|
|
6410
|
+
thingTypeName?: string | undefined;
|
|
6411
6411
|
/**
|
|
6412
6412
|
* <p>The Amazon Resource Name (ARN) of the thing type.</p>
|
|
6413
6413
|
* @public
|
|
6414
6414
|
*/
|
|
6415
|
-
thingTypeArn?: string;
|
|
6415
|
+
thingTypeArn?: string | undefined;
|
|
6416
6416
|
/**
|
|
6417
6417
|
* <p>The thing type ID.</p>
|
|
6418
6418
|
* @public
|
|
6419
6419
|
*/
|
|
6420
|
-
thingTypeId?: string;
|
|
6420
|
+
thingTypeId?: string | undefined;
|
|
6421
6421
|
}
|
|
6422
6422
|
/**
|
|
6423
6423
|
* <p>Describes a rule.</p>
|
|
@@ -6434,7 +6434,7 @@ export interface TopicRulePayload {
|
|
|
6434
6434
|
* <p>The description of the rule.</p>
|
|
6435
6435
|
* @public
|
|
6436
6436
|
*/
|
|
6437
|
-
description?: string;
|
|
6437
|
+
description?: string | undefined;
|
|
6438
6438
|
/**
|
|
6439
6439
|
* <p>The actions associated with the rule.</p>
|
|
6440
6440
|
* @public
|
|
@@ -6444,17 +6444,17 @@ export interface TopicRulePayload {
|
|
|
6444
6444
|
* <p>Specifies whether the rule is disabled.</p>
|
|
6445
6445
|
* @public
|
|
6446
6446
|
*/
|
|
6447
|
-
ruleDisabled?: boolean;
|
|
6447
|
+
ruleDisabled?: boolean | undefined;
|
|
6448
6448
|
/**
|
|
6449
6449
|
* <p>The version of the SQL rules engine to use when evaluating the rule.</p>
|
|
6450
6450
|
* @public
|
|
6451
6451
|
*/
|
|
6452
|
-
awsIotSqlVersion?: string;
|
|
6452
|
+
awsIotSqlVersion?: string | undefined;
|
|
6453
6453
|
/**
|
|
6454
6454
|
* <p>The action to take when an error occurs.</p>
|
|
6455
6455
|
* @public
|
|
6456
6456
|
*/
|
|
6457
|
-
errorAction?: Action;
|
|
6457
|
+
errorAction?: Action | undefined;
|
|
6458
6458
|
}
|
|
6459
6459
|
/**
|
|
6460
6460
|
* <p>The input for the CreateTopicRule operation.</p>
|
|
@@ -6482,7 +6482,7 @@ export interface CreateTopicRuleRequest {
|
|
|
6482
6482
|
* </note>
|
|
6483
6483
|
* @public
|
|
6484
6484
|
*/
|
|
6485
|
-
tags?: string;
|
|
6485
|
+
tags?: string | undefined;
|
|
6486
6486
|
}
|
|
6487
6487
|
/**
|
|
6488
6488
|
* <p>The Rule-SQL expression can't be parsed correctly.</p>
|
|
@@ -6522,7 +6522,7 @@ export interface VpcDestinationConfiguration {
|
|
|
6522
6522
|
* <p>The security groups of the VPC destination.</p>
|
|
6523
6523
|
* @public
|
|
6524
6524
|
*/
|
|
6525
|
-
securityGroups?: string[];
|
|
6525
|
+
securityGroups?: string[] | undefined;
|
|
6526
6526
|
/**
|
|
6527
6527
|
* <p>The ID of the VPC.</p>
|
|
6528
6528
|
* @public
|
|
@@ -6543,12 +6543,12 @@ export interface TopicRuleDestinationConfiguration {
|
|
|
6543
6543
|
* <p>Configuration of the HTTP URL.</p>
|
|
6544
6544
|
* @public
|
|
6545
6545
|
*/
|
|
6546
|
-
httpUrlConfiguration?: HttpUrlDestinationConfiguration;
|
|
6546
|
+
httpUrlConfiguration?: HttpUrlDestinationConfiguration | undefined;
|
|
6547
6547
|
/**
|
|
6548
6548
|
* <p>Configuration of the virtual private cloud (VPC) connection.</p>
|
|
6549
6549
|
* @public
|
|
6550
6550
|
*/
|
|
6551
|
-
vpcConfiguration?: VpcDestinationConfiguration;
|
|
6551
|
+
vpcConfiguration?: VpcDestinationConfiguration | undefined;
|
|
6552
6552
|
}
|
|
6553
6553
|
/**
|
|
6554
6554
|
* @public
|
|
@@ -6569,7 +6569,7 @@ export interface HttpUrlDestinationProperties {
|
|
|
6569
6569
|
* <p>The URL used to confirm the HTTP topic rule destination URL.</p>
|
|
6570
6570
|
* @public
|
|
6571
6571
|
*/
|
|
6572
|
-
confirmationUrl?: string;
|
|
6572
|
+
confirmationUrl?: string | undefined;
|
|
6573
6573
|
}
|
|
6574
6574
|
/**
|
|
6575
6575
|
* @public
|
|
@@ -6595,22 +6595,22 @@ export interface VpcDestinationProperties {
|
|
|
6595
6595
|
* <p>The subnet IDs of the VPC destination.</p>
|
|
6596
6596
|
* @public
|
|
6597
6597
|
*/
|
|
6598
|
-
subnetIds?: string[];
|
|
6598
|
+
subnetIds?: string[] | undefined;
|
|
6599
6599
|
/**
|
|
6600
6600
|
* <p>The security groups of the VPC destination.</p>
|
|
6601
6601
|
* @public
|
|
6602
6602
|
*/
|
|
6603
|
-
securityGroups?: string[];
|
|
6603
|
+
securityGroups?: string[] | undefined;
|
|
6604
6604
|
/**
|
|
6605
6605
|
* <p>The ID of the VPC.</p>
|
|
6606
6606
|
* @public
|
|
6607
6607
|
*/
|
|
6608
|
-
vpcId?: string;
|
|
6608
|
+
vpcId?: string | undefined;
|
|
6609
6609
|
/**
|
|
6610
6610
|
* <p>The ARN of a role that has permission to create and attach to elastic network interfaces (ENIs).</p>
|
|
6611
6611
|
* @public
|
|
6612
6612
|
*/
|
|
6613
|
-
roleArn?: string;
|
|
6613
|
+
roleArn?: string | undefined;
|
|
6614
6614
|
}
|
|
6615
6615
|
/**
|
|
6616
6616
|
* <p>A topic rule destination.</p>
|
|
@@ -6621,7 +6621,7 @@ export interface TopicRuleDestination {
|
|
|
6621
6621
|
* <p>The topic rule destination URL.</p>
|
|
6622
6622
|
* @public
|
|
6623
6623
|
*/
|
|
6624
|
-
arn?: string;
|
|
6624
|
+
arn?: string | undefined;
|
|
6625
6625
|
/**
|
|
6626
6626
|
* <p>The status of the topic rule destination. Valid values are:</p>
|
|
6627
6627
|
* <dl>
|
|
@@ -6657,33 +6657,33 @@ export interface TopicRuleDestination {
|
|
|
6657
6657
|
* </dl>
|
|
6658
6658
|
* @public
|
|
6659
6659
|
*/
|
|
6660
|
-
status?: TopicRuleDestinationStatus;
|
|
6660
|
+
status?: TopicRuleDestinationStatus | undefined;
|
|
6661
6661
|
/**
|
|
6662
6662
|
* <p>The date and time when the topic rule destination was created.</p>
|
|
6663
6663
|
* @public
|
|
6664
6664
|
*/
|
|
6665
|
-
createdAt?: Date;
|
|
6665
|
+
createdAt?: Date | undefined;
|
|
6666
6666
|
/**
|
|
6667
6667
|
* <p>The date and time when the topic rule destination was last updated.</p>
|
|
6668
6668
|
* @public
|
|
6669
6669
|
*/
|
|
6670
|
-
lastUpdatedAt?: Date;
|
|
6670
|
+
lastUpdatedAt?: Date | undefined;
|
|
6671
6671
|
/**
|
|
6672
6672
|
* <p>Additional details or reason why the topic rule destination is in the current
|
|
6673
6673
|
* status.</p>
|
|
6674
6674
|
* @public
|
|
6675
6675
|
*/
|
|
6676
|
-
statusReason?: string;
|
|
6676
|
+
statusReason?: string | undefined;
|
|
6677
6677
|
/**
|
|
6678
6678
|
* <p>Properties of the HTTP URL.</p>
|
|
6679
6679
|
* @public
|
|
6680
6680
|
*/
|
|
6681
|
-
httpUrlProperties?: HttpUrlDestinationProperties;
|
|
6681
|
+
httpUrlProperties?: HttpUrlDestinationProperties | undefined;
|
|
6682
6682
|
/**
|
|
6683
6683
|
* <p>Properties of the virtual private cloud (VPC) connection.</p>
|
|
6684
6684
|
* @public
|
|
6685
6685
|
*/
|
|
6686
|
-
vpcProperties?: VpcDestinationProperties;
|
|
6686
|
+
vpcProperties?: VpcDestinationProperties | undefined;
|
|
6687
6687
|
}
|
|
6688
6688
|
/**
|
|
6689
6689
|
* @public
|
|
@@ -6693,7 +6693,7 @@ export interface CreateTopicRuleDestinationResponse {
|
|
|
6693
6693
|
* <p>The topic rule destination.</p>
|
|
6694
6694
|
* @public
|
|
6695
6695
|
*/
|
|
6696
|
-
topicRuleDestination?: TopicRuleDestination;
|
|
6696
|
+
topicRuleDestination?: TopicRuleDestination | undefined;
|
|
6697
6697
|
}
|
|
6698
6698
|
/**
|
|
6699
6699
|
* @public
|
|
@@ -6703,7 +6703,7 @@ export interface DeleteAccountAuditConfigurationRequest {
|
|
|
6703
6703
|
* <p>If true, all scheduled audits are deleted.</p>
|
|
6704
6704
|
* @public
|
|
6705
6705
|
*/
|
|
6706
|
-
deleteScheduledAudits?: boolean;
|
|
6706
|
+
deleteScheduledAudits?: boolean | undefined;
|
|
6707
6707
|
}
|
|
6708
6708
|
/**
|
|
6709
6709
|
* @public
|