Skip to content

Commit

Permalink
Updates SDK to v2.1213.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Sep 9, 2022
1 parent 7181de6 commit b319ab6
Show file tree
Hide file tree
Showing 22 changed files with 1,301 additions and 372 deletions.
22 changes: 22 additions & 0 deletions .changes/2.1213.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
[
{
"type": "feature",
"category": "CloudTrail",
"description": "This release adds CloudTrail getChannel and listChannels APIs to allow customer to view the ServiceLinkedChannel configurations."
},
{
"type": "feature",
"category": "LexModelsV2",
"description": "This release is for supporting Composite Slot Type feature in AWS Lex V2. Composite Slot Type will help developer to logically group coherent slots and maintain their inter-relationships in runtime conversation."
},
{
"type": "feature",
"category": "LexRuntimeV2",
"description": "Updates API to latest version."
},
{
"type": "feature",
"category": "PI",
"description": "Increases the maximum values of two RDS Performance Insights APIs. The maximum value of the Limit parameter of DimensionGroup is 25. The MaxResult maximum is now 25 for the following APIs: DescribeDimensionKeys, GetResourceMetrics, ListAvailableResourceDimensions, and ListAvailableResourceMetrics."
}
]
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.1212.0-->
<!--LATEST=2.1213.0-->
<!--ENTRYINSERT-->

## 2.1213.0
* feature: CloudTrail: This release adds CloudTrail getChannel and listChannels APIs to allow customer to view the ServiceLinkedChannel configurations.
* feature: LexModelsV2: This release is for supporting Composite Slot Type feature in AWS Lex V2. Composite Slot Type will help developer to logically group coherent slots and maintain their inter-relationships in runtime conversation.
* feature: LexRuntimeV2: Updates API to latest version.
* feature: PI: Increases the maximum values of two RDS Performance Insights APIs. The maximum value of the Limit parameter of DimensionGroup is 25. The MaxResult maximum is now 25 for the following APIs: DescribeDimensionKeys, GetResourceMetrics, ListAvailableResourceDimensions, and ListAvailableResourceMetrics.

## 2.1212.0
* feature: EC2: This release adds support to send VPC Flow Logs to kinesis-data-firehose as new destination type
* feature: EMRcontainers: EMR on EKS now allows running Spark SQL using the newly introduced Spark SQL Job Driver in the Start Job Run API
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ For release notes, see the [CHANGELOG](https://github.com/aws/aws-sdk-js/blob/ma
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.1212.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1213.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
89 changes: 81 additions & 8 deletions apis/cloudtrail-2013-11-01.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,51 @@
},
"idempotent": true
},
"GetChannel": {
"input": {
"type": "structure",
"required": [
"Channel"
],
"members": {
"Channel": {}
}
},
"output": {
"type": "structure",
"members": {
"ChannelArn": {},
"Name": {},
"Source": {},
"SourceConfig": {
"type": "structure",
"members": {
"ApplyToAllRegions": {
"type": "boolean"
},
"AdvancedEventSelectors": {
"shape": "Sf"
}
}
},
"Destinations": {
"type": "list",
"member": {
"type": "structure",
"required": [
"Type",
"Location"
],
"members": {
"Type": {},
"Location": {}
}
}
}
}
},
"idempotent": true
},
"GetEventDataStore": {
"input": {
"type": "structure",
Expand Down Expand Up @@ -337,7 +382,7 @@
"members": {
"TrailARN": {},
"EventSelectors": {
"shape": "S1f"
"shape": "S1p"
},
"AdvancedEventSelectors": {
"shape": "Sf"
Expand All @@ -361,7 +406,7 @@
"members": {
"TrailARN": {},
"InsightSelectors": {
"shape": "S1o"
"shape": "S1y"
}
}
},
Expand Down Expand Up @@ -485,6 +530,34 @@
},
"idempotent": true
},
"ListChannels": {
"input": {
"type": "structure",
"members": {
"MaxResults": {
"type": "integer"
},
"NextToken": {}
}
},
"output": {
"type": "structure",
"members": {
"Channels": {
"type": "list",
"member": {
"type": "structure",
"members": {
"ChannelArn": {},
"Name": {}
}
}
},
"NextToken": {}
}
},
"idempotent": true
},
"ListEventDataStores": {
"input": {
"type": "structure",
Expand Down Expand Up @@ -769,7 +842,7 @@
"members": {
"TrailName": {},
"EventSelectors": {
"shape": "S1f"
"shape": "S1p"
},
"AdvancedEventSelectors": {
"shape": "Sf"
Expand All @@ -781,7 +854,7 @@
"members": {
"TrailARN": {},
"EventSelectors": {
"shape": "S1f"
"shape": "S1p"
},
"AdvancedEventSelectors": {
"shape": "Sf"
Expand All @@ -800,7 +873,7 @@
"members": {
"TrailName": {},
"InsightSelectors": {
"shape": "S1o"
"shape": "S1y"
}
}
},
Expand All @@ -809,7 +882,7 @@
"members": {
"TrailARN": {},
"InsightSelectors": {
"shape": "S1o"
"shape": "S1y"
}
}
},
Expand Down Expand Up @@ -1136,7 +1209,7 @@
}
}
},
"S1f": {
"S1p": {
"type": "list",
"member": {
"type": "structure",
Expand Down Expand Up @@ -1165,7 +1238,7 @@
}
}
},
"S1o": {
"S1y": {
"type": "list",
"member": {
"type": "structure",
Expand Down
226 changes: 220 additions & 6 deletions apis/cloudtrail-2013-11-01.normal.json

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions apis/cloudtrail-2013-11-01.paginators.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@
"input_token": "NextToken",
"output_token": "NextToken"
},
"ListChannels": {
"input_token": "NextToken",
"limit_key": "MaxResults",
"output_token": "NextToken"
},
"ListEventDataStores": {
"input_token": "NextToken",
"limit_key": "MaxResults",
Expand Down

0 comments on commit b319ab6

Please sign in to comment.