Skip to content

Commit

Permalink
Updates SDK to v2.1208.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Sep 1, 2022
1 parent 28ae217 commit f2f0881
Show file tree
Hide file tree
Showing 23 changed files with 1,103 additions and 331 deletions.
7 changes: 7 additions & 0 deletions .changes/2.1208.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[
{
"type": "feature",
"category": "ControlTower",
"description": "This release contains the first SDK for AWS Control Tower. It introduces a new set of APIs: EnableControl, DisableControl, GetControlOperation, and ListEnabledControls."
}
]
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.1207.0-->
<!--LATEST=2.1208.0-->
<!--ENTRYINSERT-->

## 2.1208.0
* feature: ControlTower: This release contains the first SDK for AWS Control Tower. It introduces a new set of APIs: EnableControl, DisableControl, GetControlOperation, and ListEnabledControls.

## 2.1207.0
* feature: IVS: IVS Merge Fragmented Streams. This release adds support for recordingReconnectWindow field in IVS recordingConfigurations. For more information see https://docs.aws.amazon.com/ivs/latest/APIReference/Welcome.html
* feature: IdentityStore: Expand IdentityStore API to support Create, Read, Update, Delete and Get operations for User, Group and GroupMembership resources.
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.1207.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1208.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
292 changes: 146 additions & 146 deletions apis/codeguru-reviewer-2019-09-19.normal.json

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions apis/controltower-2018-05-10.examples.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"version": "1.0",
"examples": {
}
}
148 changes: 148 additions & 0 deletions apis/controltower-2018-05-10.min.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,148 @@
{
"version": "2.0",
"metadata": {
"apiVersion": "2018-05-10",
"endpointPrefix": "controltower",
"jsonVersion": "1.1",
"protocol": "rest-json",
"serviceFullName": "AWS Control Tower",
"serviceId": "ControlTower",
"signatureVersion": "v4",
"signingName": "controltower",
"uid": "controltower-2018-05-10"
},
"operations": {
"DisableControl": {
"http": {
"requestUri": "/disable-control",
"responseCode": 200
},
"input": {
"type": "structure",
"required": [
"controlIdentifier",
"targetIdentifier"
],
"members": {
"controlIdentifier": {},
"targetIdentifier": {}
}
},
"output": {
"type": "structure",
"required": [
"operationIdentifier"
],
"members": {
"operationIdentifier": {}
}
}
},
"EnableControl": {
"http": {
"requestUri": "/enable-control",
"responseCode": 200
},
"input": {
"type": "structure",
"required": [
"controlIdentifier",
"targetIdentifier"
],
"members": {
"controlIdentifier": {},
"targetIdentifier": {}
}
},
"output": {
"type": "structure",
"required": [
"operationIdentifier"
],
"members": {
"operationIdentifier": {}
}
}
},
"GetControlOperation": {
"http": {
"requestUri": "/get-control-operation",
"responseCode": 200
},
"input": {
"type": "structure",
"required": [
"operationIdentifier"
],
"members": {
"operationIdentifier": {}
}
},
"output": {
"type": "structure",
"required": [
"controlOperation"
],
"members": {
"controlOperation": {
"type": "structure",
"members": {
"endTime": {
"shape": "Sb"
},
"operationType": {},
"startTime": {
"shape": "Sb"
},
"status": {},
"statusMessage": {}
}
}
}
}
},
"ListEnabledControls": {
"http": {
"requestUri": "/list-enabled-controls",
"responseCode": 200
},
"input": {
"type": "structure",
"required": [
"targetIdentifier"
],
"members": {
"maxResults": {
"type": "integer"
},
"nextToken": {},
"targetIdentifier": {}
}
},
"output": {
"type": "structure",
"required": [
"enabledControls"
],
"members": {
"enabledControls": {
"type": "list",
"member": {
"type": "structure",
"members": {
"controlIdentifier": {}
}
}
},
"nextToken": {}
}
}
}
},
"shapes": {
"Sb": {
"type": "timestamp",
"timestampFormat": "iso8601"
}
}
}
Loading

0 comments on commit f2f0881

Please sign in to comment.