Skip to content

Commit

Permalink
Updates SDK to v2.1537.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Jan 16, 2024
1 parent ec78f30 commit f8d726a
Show file tree
Hide file tree
Showing 27 changed files with 673 additions and 330 deletions.
27 changes: 27 additions & 0 deletions .changes/2.1537.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
[
{
"type": "feature",
"category": "IoTFleetWise",
"description": "Updated APIs: SignalNodeType query parameter has been added to ListSignalCatalogNodesRequest and ListVehiclesResponse has been extended with attributes field."
},
{
"type": "feature",
"category": "Iot",
"description": "Revert release of LogTargetTypes"
},
{
"type": "feature",
"category": "Macie2",
"description": "This release adds support for analyzing Amazon S3 objects that are encrypted using dual-layer server-side encryption with AWS KMS keys (DSSE-KMS). It also adds support for reporting DSSE-KMS details in statistics and metadata about encryption settings for S3 buckets and objects."
},
{
"type": "feature",
"category": "PaymentCryptography",
"description": "Provide an additional option for key exchange using RSA wrap/unwrap in addition to tr-34/tr-31 in ImportKey and ExportKey operations. Added new key usage (type) TR31_M1_ISO_9797_1_MAC_KEY, for use with Generate/VerifyMac dataplane operations with ISO9797 Algorithm 1 MAC calculations."
},
{
"type": "feature",
"category": "Rekognition",
"description": "This release adds ContentType and TaxonomyLevel attributes to DetectModerationLabels and GetMediaAnalysisJob API responses."
}
]
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.1536.0-->
<!--LATEST=2.1537.0-->
<!--ENTRYINSERT-->

## 2.1537.0
* feature: IoTFleetWise: Updated APIs: SignalNodeType query parameter has been added to ListSignalCatalogNodesRequest and ListVehiclesResponse has been extended with attributes field.
* feature: Iot: Revert release of LogTargetTypes
* feature: Macie2: This release adds support for analyzing Amazon S3 objects that are encrypted using dual-layer server-side encryption with AWS KMS keys (DSSE-KMS). It also adds support for reporting DSSE-KMS details in statistics and metadata about encryption settings for S3 buckets and objects.
* feature: PaymentCryptography: Provide an additional option for key exchange using RSA wrap/unwrap in addition to tr-34/tr-31 in ImportKey and ExportKey operations. Added new key usage (type) TR31_M1_ISO_9797_1_MAC_KEY, for use with Generate/VerifyMac dataplane operations with ISO9797 Algorithm 1 MAC calculations.
* feature: Rekognition: This release adds ContentType and TaxonomyLevel attributes to DetectModerationLabels and GetMediaAnalysisJob API responses.

## 2.1536.0
* feature: SageMaker: This release will have ValidationException thrown if certain invalid app types are provided. The release will also throw ValidationException if more than 10 account ids are provided in VpcOnlyTrustedAccounts.

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ require('aws-sdk/lib/maintenance_mode_message').suppress = true;
To use the SDK in the browser, simply add the following script tag to your
HTML pages:

<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1536.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1537.0.min.js"></script>

You can also build a custom browser SDK with your specified set of AWS services.
This can allow you to reduce the SDK's size, specify different API versions of
Expand Down
4 changes: 1 addition & 3 deletions apis/iot-2015-05-28.normal.json
Original file line number Diff line number Diff line change
Expand Up @@ -19420,9 +19420,7 @@
"THING_GROUP",
"CLIENT_ID",
"SOURCE_IP",
"PRINCIPAL_ID",
"EVENT_TYPE",
"DEVICE_DEFENDER"
"PRINCIPAL_ID"
]
},
"LoggingOptionsPayload": {
Expand Down
26 changes: 15 additions & 11 deletions apis/iotfleetwise-2021-06-17.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -1236,7 +1236,8 @@
"nextToken": {},
"maxResults": {
"type": "integer"
}
},
"signalNodeType": {}
}
},
"output": {
Expand Down Expand Up @@ -1337,6 +1338,9 @@
},
"lastModificationTime": {
"type": "timestamp"
},
"attributes": {
"shape": "S9"
}
}
}
Expand Down Expand Up @@ -1417,12 +1421,12 @@
"type": "structure",
"members": {
"timestreamResources": {
"shape": "S6r",
"shape": "S6s",
"deprecated": true,
"deprecatedMessage": "Amazon Timestream metadata is now passed in the CreateCampaign API."
},
"iamResources": {
"shape": "S6s",
"shape": "S6t",
"deprecated": true,
"deprecatedMessage": "iamResources is no longer used or needed as input"
}
Expand All @@ -1439,10 +1443,10 @@
"members": {
"registerAccountStatus": {},
"timestreamResources": {
"shape": "S6r"
"shape": "S6s"
},
"iamResources": {
"shape": "S6s"
"shape": "S6t"
},
"creationTime": {
"type": "timestamp"
Expand Down Expand Up @@ -1593,10 +1597,10 @@
"name": {},
"description": {},
"nodesToAdd": {
"shape": "S79"
"shape": "S7a"
},
"nodesToRemove": {
"shape": "S79"
"shape": "S7a"
},
"status": {}
}
Expand Down Expand Up @@ -1630,7 +1634,7 @@
"shape": "S36"
},
"nodesToRemove": {
"shape": "S79"
"shape": "S7a"
}
}
},
Expand Down Expand Up @@ -2157,7 +2161,7 @@
"logGroupName": {}
}
},
"S6r": {
"S6s": {
"type": "structure",
"required": [
"timestreamDatabaseName",
Expand All @@ -2168,7 +2172,7 @@
"timestreamTableName": {}
}
},
"S6s": {
"S6t": {
"type": "structure",
"required": [
"roleArn"
Expand All @@ -2177,7 +2181,7 @@
"roleArn": {}
}
},
"S79": {
"S7a": {
"type": "list",
"member": {}
}
Expand Down
21 changes: 20 additions & 1 deletion apis/iotfleetwise-2021-06-17.normal.json
Original file line number Diff line number Diff line change
Expand Up @@ -2150,7 +2150,7 @@
"members": {
"expression": {
"shape": "eventExpression",
"documentation": "<p>The logical expression used to recognize what data to collect. For example, <code>$variable.Vehicle.OutsideAirTemperature &gt;= 105.0</code>.</p>"
"documentation": "<p>The logical expression used to recognize what data to collect. For example, <code>$variable.`Vehicle.OutsideAirTemperature` &gt;= 105.0</code>.</p>"
},
"minimumTriggerIntervalMs": {
"shape": "uint32",
Expand Down Expand Up @@ -3828,6 +3828,10 @@
"maxResults": {
"shape": "maxResults",
"documentation": "<p> The maximum number of items to return, between 1 and 100, inclusive. </p>"
},
"signalNodeType": {
"shape": "SignalNodeType",
"documentation": "<p>The type of node in the signal catalog.</p>"
}
}
},
Expand Down Expand Up @@ -4725,6 +4729,17 @@
"max": 1000,
"min": 0
},
"SignalNodeType": {
"type": "string",
"enum": [
"SENSOR",
"ACTUATOR",
"ATTRIBUTE",
"BRANCH",
"CUSTOM_STRUCT",
"CUSTOM_PROPERTY"
]
},
"SpoolingMode": {
"type": "string",
"enum": [
Expand Down Expand Up @@ -5472,6 +5487,10 @@
"lastModificationTime": {
"shape": "timestamp",
"documentation": "<p>The time the vehicle was last updated in seconds since epoch (January 1, 1970 at midnight UTC time). </p>"
},
"attributes": {
"shape": "attributesMap",
"documentation": "<p>Static information about a vehicle in a key-value pair. For example:</p> <p> <code>\"engineType\"</code> : <code>\"1.3 L R2\"</code> </p>"
}
},
"documentation": "<p>Information about a vehicle.</p> <p>To return this information about vehicles in your account, you can use the API operation.</p>"
Expand Down
Loading

0 comments on commit f8d726a

Please sign in to comment.