aws-sdk 2.624.0 → 2.628.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/CHANGELOG.md +24 -1
- package/README.md +1 -1
- package/apis/ec2-2016-11-15.min.json +1 -0
- package/apis/eventbridge-2015-10-07.min.json +8 -5
- package/apis/events-2015-10-07.min.json +8 -5
- package/apis/fsx-2018-03-01.min.json +28 -19
- package/apis/globalaccelerator-2018-08-08.min.json +235 -30
- package/apis/kafka-2018-11-14.min.json +118 -37
- package/apis/lightsail-2016-11-28.min.json +368 -110
- package/apis/outposts-2019-12-03.min.json +44 -0
- package/apis/sagemaker-2017-07-24.min.json +163 -147
- package/apis/securityhub-2018-10-26.min.json +19 -15
- package/apis/snowball-2016-06-30.min.json +36 -13
- package/apis/states-2016-11-23.min.json +3 -0
- package/apis/transcribe-2017-10-26.min.json +23 -2
- package/clients/cloudwatchevents.d.ts +115 -111
- package/clients/docdb.d.ts +5 -5
- package/clients/ec2.d.ts +7 -7
- package/clients/eventbridge.d.ts +117 -113
- package/clients/fsx.d.ts +30 -7
- package/clients/globalaccelerator.d.ts +240 -23
- package/clients/iotevents.d.ts +22 -22
- package/clients/kafka.d.ts +25 -0
- package/clients/lightsail.d.ts +492 -130
- package/clients/outposts.d.ts +26 -0
- package/clients/sagemaker.d.ts +47 -28
- package/clients/secretsmanager.d.ts +7 -1
- package/clients/securityhub.d.ts +31 -25
- package/clients/snowball.d.ts +32 -3
- package/clients/stepfunctions.d.ts +36 -38
- package/clients/transcribeservice.d.ts +33 -5
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +15 -15
- package/dist/aws-sdk.js +13 -9
- package/dist/aws-sdk.min.js +45 -45
- package/lib/core.js +1 -1
- package/lib/s3/managed_upload.js +1 -1
- package/package.json +2 -2
package/clients/iotevents.d.ts
CHANGED
|
@@ -44,11 +44,11 @@ declare class IoTEvents extends Service {
|
|
|
44
44
|
*/
|
|
45
45
|
deleteInput(callback?: (err: AWSError, data: IoTEvents.Types.DeleteInputResponse) => void): Request<IoTEvents.Types.DeleteInputResponse, AWSError>;
|
|
46
46
|
/**
|
|
47
|
-
* Describes a detector model. If the
|
|
47
|
+
* Describes a detector model. If the version parameter is not specified, information about the latest version is returned.
|
|
48
48
|
*/
|
|
49
49
|
describeDetectorModel(params: IoTEvents.Types.DescribeDetectorModelRequest, callback?: (err: AWSError, data: IoTEvents.Types.DescribeDetectorModelResponse) => void): Request<IoTEvents.Types.DescribeDetectorModelResponse, AWSError>;
|
|
50
50
|
/**
|
|
51
|
-
* Describes a detector model. If the
|
|
51
|
+
* Describes a detector model. If the version parameter is not specified, information about the latest version is returned.
|
|
52
52
|
*/
|
|
53
53
|
describeDetectorModel(callback?: (err: AWSError, data: IoTEvents.Types.DescribeDetectorModelResponse) => void): Request<IoTEvents.Types.DescribeDetectorModelResponse, AWSError>;
|
|
54
54
|
/**
|
|
@@ -100,11 +100,11 @@ declare class IoTEvents extends Service {
|
|
|
100
100
|
*/
|
|
101
101
|
listTagsForResource(callback?: (err: AWSError, data: IoTEvents.Types.ListTagsForResourceResponse) => void): Request<IoTEvents.Types.ListTagsForResourceResponse, AWSError>;
|
|
102
102
|
/**
|
|
103
|
-
* Sets or updates the AWS IoT Events logging options. If you update the value of any
|
|
103
|
+
* Sets or updates the AWS IoT Events logging options. If you update the value of any loggingOptions field, it takes up to one minute for the change to take effect. If you change the policy attached to the role you specified in the roleArn field (for example, to correct an invalid policy), it takes up to five minutes for that change to take effect.
|
|
104
104
|
*/
|
|
105
105
|
putLoggingOptions(params: IoTEvents.Types.PutLoggingOptionsRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
106
106
|
/**
|
|
107
|
-
* Sets or updates the AWS IoT Events logging options. If you update the value of any
|
|
107
|
+
* Sets or updates the AWS IoT Events logging options. If you update the value of any loggingOptions field, it takes up to one minute for the change to take effect. If you change the policy attached to the role you specified in the roleArn field (for example, to correct an invalid policy), it takes up to five minutes for that change to take effect.
|
|
108
108
|
*/
|
|
109
109
|
putLoggingOptions(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
110
110
|
/**
|
|
@@ -171,7 +171,7 @@ declare namespace IoTEvents {
|
|
|
171
171
|
*/
|
|
172
172
|
lambda?: LambdaAction;
|
|
173
173
|
/**
|
|
174
|
-
* Sends an IoT Events input, passing in information about the detector model instance and the event that triggered the action.
|
|
174
|
+
* Sends an AWS IoT Events input, passing in information about the detector model instance and the event that triggered the action.
|
|
175
175
|
*/
|
|
176
176
|
iotEvents?: IotEventsAction;
|
|
177
177
|
/**
|
|
@@ -179,7 +179,7 @@ declare namespace IoTEvents {
|
|
|
179
179
|
*/
|
|
180
180
|
sqs?: SqsAction;
|
|
181
181
|
/**
|
|
182
|
-
* Sends information about the detector model instance and the event that triggered the action to
|
|
182
|
+
* Sends information about the detector model instance and the event that triggered the action to an Amazon Kinesis Data Firehose delivery stream.
|
|
183
183
|
*/
|
|
184
184
|
firehose?: FirehoseAction;
|
|
185
185
|
}
|
|
@@ -187,7 +187,7 @@ declare namespace IoTEvents {
|
|
|
187
187
|
export type AmazonResourceName = string;
|
|
188
188
|
export interface Attribute {
|
|
189
189
|
/**
|
|
190
|
-
* An expression that specifies an attribute-value pair in a JSON structure. Use this to specify an attribute from the JSON payload that is made available by the input. Inputs are derived from messages sent to
|
|
190
|
+
* An expression that specifies an attribute-value pair in a JSON structure. Use this to specify an attribute from the JSON payload that is made available by the input. Inputs are derived from messages sent to AWS IoT Events (BatchPutMessage). Each such message contains a JSON payload. The attribute (and its paired value) specified here are available for use in the condition expressions used by detectors. Syntax: <field-name>.<field-name>...
|
|
191
191
|
*/
|
|
192
192
|
jsonPath: AttributeJsonPath;
|
|
193
193
|
}
|
|
@@ -214,7 +214,7 @@ declare namespace IoTEvents {
|
|
|
214
214
|
*/
|
|
215
215
|
detectorModelDescription?: DetectorModelDescription;
|
|
216
216
|
/**
|
|
217
|
-
* The input attribute key used to identify a device or system
|
|
217
|
+
* The input attribute key used to identify a device or system to create a detector (an instance of the detector model) and then to route each input received to the appropriate detector (instance). This parameter uses a JSON-path expression in the message payload of each input to specify the attribute-value pair that is used to identify the device associated with the input.
|
|
218
218
|
*/
|
|
219
219
|
key?: AttributeJsonPath;
|
|
220
220
|
/**
|
|
@@ -369,7 +369,7 @@ declare namespace IoTEvents {
|
|
|
369
369
|
*/
|
|
370
370
|
status?: DetectorModelVersionStatus;
|
|
371
371
|
/**
|
|
372
|
-
* The input attribute key used to identify a device or system
|
|
372
|
+
* The input attribute key used to identify a device or system to create a detector (an instance of the detector model) and then to route each input received to the appropriate detector (instance). This parameter uses a JSON-path expression in the message payload of each input to specify the attribute-value pair that is used to identify the device associated with the input.
|
|
373
373
|
*/
|
|
374
374
|
key?: AttributeJsonPath;
|
|
375
375
|
/**
|
|
@@ -448,7 +448,7 @@ declare namespace IoTEvents {
|
|
|
448
448
|
*/
|
|
449
449
|
eventName: EventName;
|
|
450
450
|
/**
|
|
451
|
-
*
|
|
451
|
+
* Optional. The Boolean expression that, when TRUE, causes the actions to be performed. If not present, the actions are performed (=TRUE). If the expression result is not a Boolean value, the actions are not performed (=FALSE).
|
|
452
452
|
*/
|
|
453
453
|
condition?: Condition;
|
|
454
454
|
/**
|
|
@@ -508,7 +508,7 @@ declare namespace IoTEvents {
|
|
|
508
508
|
}
|
|
509
509
|
export interface InputDefinition {
|
|
510
510
|
/**
|
|
511
|
-
* The attributes from the JSON payload that are made available by the input. Inputs are derived from messages sent to the AWS IoT Events system using BatchPutMessage. Each such message contains a JSON payload, and those attributes (and their paired values) specified here are available for use in the
|
|
511
|
+
* The attributes from the JSON payload that are made available by the input. Inputs are derived from messages sent to the AWS IoT Events system using BatchPutMessage. Each such message contains a JSON payload, and those attributes (and their paired values) specified here are available for use in the condition expressions used by detectors that monitor this input.
|
|
512
512
|
*/
|
|
513
513
|
attributes: Attributes;
|
|
514
514
|
}
|
|
@@ -550,7 +550,7 @@ declare namespace IoTEvents {
|
|
|
550
550
|
}
|
|
551
551
|
export interface IotTopicPublishAction {
|
|
552
552
|
/**
|
|
553
|
-
* The MQTT topic of the message.
|
|
553
|
+
* The MQTT topic of the message. You can use a string expression that includes variables ($variable.<variable-name>) and input values ($input.<input-name>.<path-to-datum>) as the topic string.
|
|
554
554
|
*/
|
|
555
555
|
mqttTopic: MQTTTopic;
|
|
556
556
|
}
|
|
@@ -662,23 +662,23 @@ declare namespace IoTEvents {
|
|
|
662
662
|
export type NextToken = string;
|
|
663
663
|
export interface OnEnterLifecycle {
|
|
664
664
|
/**
|
|
665
|
-
* Specifies the actions that are performed when the state is entered and the
|
|
665
|
+
* Specifies the actions that are performed when the state is entered and the condition is TRUE.
|
|
666
666
|
*/
|
|
667
667
|
events?: Events;
|
|
668
668
|
}
|
|
669
669
|
export interface OnExitLifecycle {
|
|
670
670
|
/**
|
|
671
|
-
* Specifies the
|
|
671
|
+
* Specifies the actions that are performed when the state is exited and the condition is TRUE.
|
|
672
672
|
*/
|
|
673
673
|
events?: Events;
|
|
674
674
|
}
|
|
675
675
|
export interface OnInputLifecycle {
|
|
676
676
|
/**
|
|
677
|
-
* Specifies the actions performed when the
|
|
677
|
+
* Specifies the actions performed when the condition evaluates to TRUE.
|
|
678
678
|
*/
|
|
679
679
|
events?: Events;
|
|
680
680
|
/**
|
|
681
|
-
* Specifies the actions performed, and the next state entered, when a
|
|
681
|
+
* Specifies the actions performed, and the next state entered, when a condition evaluates to TRUE.
|
|
682
682
|
*/
|
|
683
683
|
transitionEvents?: TransitionEvents;
|
|
684
684
|
}
|
|
@@ -708,7 +708,7 @@ declare namespace IoTEvents {
|
|
|
708
708
|
*/
|
|
709
709
|
timerName: TimerName;
|
|
710
710
|
/**
|
|
711
|
-
* The number of seconds until the timer expires. The minimum value is 60 seconds to ensure accuracy.
|
|
711
|
+
* The number of seconds until the timer expires. The minimum value is 60 seconds to ensure accuracy. The maximum value is 31622400 seconds.
|
|
712
712
|
*/
|
|
713
713
|
seconds: Seconds;
|
|
714
714
|
}
|
|
@@ -728,7 +728,7 @@ declare namespace IoTEvents {
|
|
|
728
728
|
*/
|
|
729
729
|
queueUrl: QueueUrl;
|
|
730
730
|
/**
|
|
731
|
-
* Set this to TRUE if you want the data to be
|
|
731
|
+
* Set this to TRUE if you want the data to be base-64 encoded before it is written to the queue. Otherwise, set this to FALSE.
|
|
732
732
|
*/
|
|
733
733
|
useBase64?: UseBase64;
|
|
734
734
|
}
|
|
@@ -738,15 +738,15 @@ declare namespace IoTEvents {
|
|
|
738
738
|
*/
|
|
739
739
|
stateName: StateName;
|
|
740
740
|
/**
|
|
741
|
-
* When an input is received and the
|
|
741
|
+
* When an input is received and the condition is TRUE, perform the specified actions.
|
|
742
742
|
*/
|
|
743
743
|
onInput?: OnInputLifecycle;
|
|
744
744
|
/**
|
|
745
|
-
* When entering this state, perform these
|
|
745
|
+
* When entering this state, perform these actions if the condition is TRUE.
|
|
746
746
|
*/
|
|
747
747
|
onEnter?: OnEnterLifecycle;
|
|
748
748
|
/**
|
|
749
|
-
* When exiting this state, perform these
|
|
749
|
+
* When exiting this state, perform these actions if the specified condition is TRUE.
|
|
750
750
|
*/
|
|
751
751
|
onExit?: OnExitLifecycle;
|
|
752
752
|
}
|
|
@@ -786,7 +786,7 @@ declare namespace IoTEvents {
|
|
|
786
786
|
*/
|
|
787
787
|
eventName: EventName;
|
|
788
788
|
/**
|
|
789
|
-
*
|
|
789
|
+
* Required. A Boolean expression that when TRUE causes the actions to be performed and the nextState to be entered.
|
|
790
790
|
*/
|
|
791
791
|
condition: Condition;
|
|
792
792
|
/**
|
package/clients/kafka.d.ts
CHANGED
|
@@ -280,6 +280,11 @@ declare namespace Kafka {
|
|
|
280
280
|
*/
|
|
281
281
|
VolumeSizeGB: __integer;
|
|
282
282
|
}
|
|
283
|
+
export interface BrokerLogs {
|
|
284
|
+
CloudWatchLogs?: CloudWatchLogs;
|
|
285
|
+
Firehose?: Firehose;
|
|
286
|
+
S3?: S3;
|
|
287
|
+
}
|
|
283
288
|
export interface BrokerNodeGroupInfo {
|
|
284
289
|
/**
|
|
285
290
|
*
|
|
@@ -381,6 +386,10 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
|
|
|
381
386
|
Tls?: Tls;
|
|
382
387
|
}
|
|
383
388
|
export type ClientBroker = "TLS"|"TLS_PLAINTEXT"|"PLAINTEXT"|string;
|
|
389
|
+
export interface CloudWatchLogs {
|
|
390
|
+
Enabled: __boolean;
|
|
391
|
+
LogGroup?: __string;
|
|
392
|
+
}
|
|
384
393
|
export interface ClusterInfo {
|
|
385
394
|
/**
|
|
386
395
|
*
|
|
@@ -448,6 +457,7 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
|
|
|
448
457
|
|
|
449
458
|
*/
|
|
450
459
|
OpenMonitoring?: OpenMonitoring;
|
|
460
|
+
LoggingInfo?: LoggingInfo;
|
|
451
461
|
/**
|
|
452
462
|
*
|
|
453
463
|
The number of broker nodes in the cluster.
|
|
@@ -658,6 +668,7 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
|
|
|
658
668
|
|
|
659
669
|
*/
|
|
660
670
|
KafkaVersion: __stringMin1Max128;
|
|
671
|
+
LoggingInfo?: LoggingInfo;
|
|
661
672
|
/**
|
|
662
673
|
*
|
|
663
674
|
The number of broker nodes in the cluster.
|
|
@@ -964,6 +975,10 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
|
|
|
964
975
|
*/
|
|
965
976
|
ErrorString?: __string;
|
|
966
977
|
}
|
|
978
|
+
export interface Firehose {
|
|
979
|
+
DeliveryStream?: __string;
|
|
980
|
+
Enabled: __boolean;
|
|
981
|
+
}
|
|
967
982
|
export interface GetBootstrapBrokersRequest {
|
|
968
983
|
/**
|
|
969
984
|
*
|
|
@@ -1196,6 +1211,9 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
|
|
|
1196
1211
|
Tags?: __mapOf__string;
|
|
1197
1212
|
}
|
|
1198
1213
|
export type MaxResults = number;
|
|
1214
|
+
export interface LoggingInfo {
|
|
1215
|
+
BrokerLogs: BrokerLogs;
|
|
1216
|
+
}
|
|
1199
1217
|
export interface MutableClusterInfo {
|
|
1200
1218
|
/**
|
|
1201
1219
|
*
|
|
@@ -1227,6 +1245,7 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
|
|
|
1227
1245
|
|
|
1228
1246
|
*/
|
|
1229
1247
|
OpenMonitoring?: OpenMonitoring;
|
|
1248
|
+
LoggingInfo?: LoggingInfo;
|
|
1230
1249
|
}
|
|
1231
1250
|
export interface NodeExporter {
|
|
1232
1251
|
/**
|
|
@@ -1304,6 +1323,11 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
|
|
|
1304
1323
|
*/
|
|
1305
1324
|
NodeExporter?: NodeExporterInfo;
|
|
1306
1325
|
}
|
|
1326
|
+
export interface S3 {
|
|
1327
|
+
Bucket?: __string;
|
|
1328
|
+
Enabled: __boolean;
|
|
1329
|
+
Prefix?: __string;
|
|
1330
|
+
}
|
|
1307
1331
|
export interface NodeInfo {
|
|
1308
1332
|
/**
|
|
1309
1333
|
*
|
|
@@ -1537,6 +1561,7 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
|
|
|
1537
1561
|
|
|
1538
1562
|
*/
|
|
1539
1563
|
OpenMonitoring?: OpenMonitoringInfo;
|
|
1564
|
+
LoggingInfo?: LoggingInfo;
|
|
1540
1565
|
}
|
|
1541
1566
|
export interface UpdateMonitoringResponse {
|
|
1542
1567
|
/**
|