Skip to content

Commit f2f0881

Browse files
author
awstools
committed
Updates SDK to v2.1208.0
1 parent 28ae217 commit f2f0881

23 files changed

+1103
-331
lines changed

.changes/2.1208.0.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[
2+
{
3+
"type": "feature",
4+
"category": "ControlTower",
5+
"description": "This release contains the first SDK for AWS Control Tower. It introduces a new set of APIs: EnableControl, DisableControl, GetControlOperation, and ListEnabledControls."
6+
}
7+
]

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
# Changelog for AWS SDK for JavaScript
2-
<!--LATEST=2.1207.0-->
2+
<!--LATEST=2.1208.0-->
33
<!--ENTRYINSERT-->
44

5+
## 2.1208.0
6+
* feature: ControlTower: This release contains the first SDK for AWS Control Tower. It introduces a new set of APIs: EnableControl, DisableControl, GetControlOperation, and ListEnabledControls.
7+
58
## 2.1207.0
69
* 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
710
* feature: IdentityStore: Expand IdentityStore API to support Create, Read, Update, Delete and Get operations for User, Group and GroupMembership resources.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ For release notes, see the [CHANGELOG](https://github.com/aws/aws-sdk-js/blob/ma
2929
To use the SDK in the browser, simply add the following script tag to your
3030
HTML pages:
3131

32-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1207.0.min.js"></script>
32+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1208.0.min.js"></script>
3333

3434
You can also build a custom browser SDK with your specified set of AWS services.
3535
This can allow you to reduce the SDK's size, specify different API versions of

apis/codeguru-reviewer-2019-09-19.normal.json

Lines changed: 146 additions & 146 deletions
Large diffs are not rendered by default.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"version": "1.0",
3+
"examples": {
4+
}
5+
}

apis/controltower-2018-05-10.min.json

Lines changed: 148 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,148 @@
1+
{
2+
"version": "2.0",
3+
"metadata": {
4+
"apiVersion": "2018-05-10",
5+
"endpointPrefix": "controltower",
6+
"jsonVersion": "1.1",
7+
"protocol": "rest-json",
8+
"serviceFullName": "AWS Control Tower",
9+
"serviceId": "ControlTower",
10+
"signatureVersion": "v4",
11+
"signingName": "controltower",
12+
"uid": "controltower-2018-05-10"
13+
},
14+
"operations": {
15+
"DisableControl": {
16+
"http": {
17+
"requestUri": "/disable-control",
18+
"responseCode": 200
19+
},
20+
"input": {
21+
"type": "structure",
22+
"required": [
23+
"controlIdentifier",
24+
"targetIdentifier"
25+
],
26+
"members": {
27+
"controlIdentifier": {},
28+
"targetIdentifier": {}
29+
}
30+
},
31+
"output": {
32+
"type": "structure",
33+
"required": [
34+
"operationIdentifier"
35+
],
36+
"members": {
37+
"operationIdentifier": {}
38+
}
39+
}
40+
},
41+
"EnableControl": {
42+
"http": {
43+
"requestUri": "/enable-control",
44+
"responseCode": 200
45+
},
46+
"input": {
47+
"type": "structure",
48+
"required": [
49+
"controlIdentifier",
50+
"targetIdentifier"
51+
],
52+
"members": {
53+
"controlIdentifier": {},
54+
"targetIdentifier": {}
55+
}
56+
},
57+
"output": {
58+
"type": "structure",
59+
"required": [
60+
"operationIdentifier"
61+
],
62+
"members": {
63+
"operationIdentifier": {}
64+
}
65+
}
66+
},
67+
"GetControlOperation": {
68+
"http": {
69+
"requestUri": "/get-control-operation",
70+
"responseCode": 200
71+
},
72+
"input": {
73+
"type": "structure",
74+
"required": [
75+
"operationIdentifier"
76+
],
77+
"members": {
78+
"operationIdentifier": {}
79+
}
80+
},
81+
"output": {
82+
"type": "structure",
83+
"required": [
84+
"controlOperation"
85+
],
86+
"members": {
87+
"controlOperation": {
88+
"type": "structure",
89+
"members": {
90+
"endTime": {
91+
"shape": "Sb"
92+
},
93+
"operationType": {},
94+
"startTime": {
95+
"shape": "Sb"
96+
},
97+
"status": {},
98+
"statusMessage": {}
99+
}
100+
}
101+
}
102+
}
103+
},
104+
"ListEnabledControls": {
105+
"http": {
106+
"requestUri": "/list-enabled-controls",
107+
"responseCode": 200
108+
},
109+
"input": {
110+
"type": "structure",
111+
"required": [
112+
"targetIdentifier"
113+
],
114+
"members": {
115+
"maxResults": {
116+
"type": "integer"
117+
},
118+
"nextToken": {},
119+
"targetIdentifier": {}
120+
}
121+
},
122+
"output": {
123+
"type": "structure",
124+
"required": [
125+
"enabledControls"
126+
],
127+
"members": {
128+
"enabledControls": {
129+
"type": "list",
130+
"member": {
131+
"type": "structure",
132+
"members": {
133+
"controlIdentifier": {}
134+
}
135+
}
136+
},
137+
"nextToken": {}
138+
}
139+
}
140+
}
141+
},
142+
"shapes": {
143+
"Sb": {
144+
"type": "timestamp",
145+
"timestampFormat": "iso8601"
146+
}
147+
}
148+
}

0 commit comments

Comments
 (0)