aws-sdk 2.1594.0 → 2.1596.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/README.md +1 -1
- package/apis/controlcatalog-2018-05-10.examples.json +5 -0
- package/apis/controlcatalog-2018-05-10.min.json +228 -0
- package/apis/controlcatalog-2018-05-10.paginators.json +22 -0
- package/apis/mediaconvert-2017-08-29.min.json +107 -80
- package/apis/metadata.json +3 -0
- package/apis/pinpoint-2016-12-01.min.json +3 -1
- package/apis/rds-2014-10-31.min.json +7 -3
- package/clients/all.d.ts +1 -0
- package/clients/all.js +2 -1
- package/clients/codebuild.d.ts +3 -3
- package/clients/controlcatalog.d.ts +260 -0
- package/clients/controlcatalog.js +18 -0
- package/clients/mediaconvert.d.ts +46 -4
- package/clients/mgn.d.ts +4 -4
- package/clients/networkmonitor.d.ts +16 -16
- package/clients/pinpoint.d.ts +10 -2
- package/clients/rds.d.ts +17 -1
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +44 -7
- package/dist/aws-sdk.js +13 -6
- package/dist/aws-sdk.min.js +39 -39
- package/lib/config_service_placeholders.d.ts +2 -0
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
@@ -64,7 +64,7 @@ require('aws-sdk/lib/maintenance_mode_message').suppress = true;
|
|
64
64
|
To use the SDK in the browser, simply add the following script tag to your
|
65
65
|
HTML pages:
|
66
66
|
|
67
|
-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.
|
67
|
+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1596.0.min.js"></script>
|
68
68
|
|
69
69
|
You can also build a custom browser SDK with your specified set of AWS services.
|
70
70
|
This can allow you to reduce the SDK's size, specify different API versions of
|
@@ -0,0 +1,228 @@
|
|
1
|
+
{
|
2
|
+
"version": "2.0",
|
3
|
+
"metadata": {
|
4
|
+
"apiVersion": "2018-05-10",
|
5
|
+
"endpointPrefix": "controlcatalog",
|
6
|
+
"jsonVersion": "1.1",
|
7
|
+
"protocol": "rest-json",
|
8
|
+
"serviceFullName": "AWS Control Catalog",
|
9
|
+
"serviceId": "ControlCatalog",
|
10
|
+
"signatureVersion": "v4",
|
11
|
+
"signingName": "controlcatalog",
|
12
|
+
"uid": "controlcatalog-2018-05-10"
|
13
|
+
},
|
14
|
+
"operations": {
|
15
|
+
"ListCommonControls": {
|
16
|
+
"http": {
|
17
|
+
"requestUri": "/common-controls",
|
18
|
+
"responseCode": 200
|
19
|
+
},
|
20
|
+
"input": {
|
21
|
+
"type": "structure",
|
22
|
+
"members": {
|
23
|
+
"CommonControlFilter": {
|
24
|
+
"type": "structure",
|
25
|
+
"members": {
|
26
|
+
"Objectives": {
|
27
|
+
"type": "list",
|
28
|
+
"member": {
|
29
|
+
"type": "structure",
|
30
|
+
"members": {
|
31
|
+
"Arn": {}
|
32
|
+
}
|
33
|
+
}
|
34
|
+
}
|
35
|
+
}
|
36
|
+
},
|
37
|
+
"MaxResults": {
|
38
|
+
"location": "querystring",
|
39
|
+
"locationName": "maxResults",
|
40
|
+
"type": "integer"
|
41
|
+
},
|
42
|
+
"NextToken": {
|
43
|
+
"location": "querystring",
|
44
|
+
"locationName": "nextToken"
|
45
|
+
}
|
46
|
+
}
|
47
|
+
},
|
48
|
+
"output": {
|
49
|
+
"type": "structure",
|
50
|
+
"required": [
|
51
|
+
"CommonControls"
|
52
|
+
],
|
53
|
+
"members": {
|
54
|
+
"CommonControls": {
|
55
|
+
"type": "list",
|
56
|
+
"member": {
|
57
|
+
"type": "structure",
|
58
|
+
"required": [
|
59
|
+
"Arn",
|
60
|
+
"CreateTime",
|
61
|
+
"Description",
|
62
|
+
"Domain",
|
63
|
+
"LastUpdateTime",
|
64
|
+
"Name",
|
65
|
+
"Objective"
|
66
|
+
],
|
67
|
+
"members": {
|
68
|
+
"Arn": {},
|
69
|
+
"CreateTime": {
|
70
|
+
"type": "timestamp"
|
71
|
+
},
|
72
|
+
"Description": {},
|
73
|
+
"Domain": {
|
74
|
+
"shape": "Se"
|
75
|
+
},
|
76
|
+
"LastUpdateTime": {
|
77
|
+
"type": "timestamp"
|
78
|
+
},
|
79
|
+
"Name": {},
|
80
|
+
"Objective": {
|
81
|
+
"type": "structure",
|
82
|
+
"members": {
|
83
|
+
"Arn": {},
|
84
|
+
"Name": {}
|
85
|
+
}
|
86
|
+
}
|
87
|
+
}
|
88
|
+
}
|
89
|
+
},
|
90
|
+
"NextToken": {}
|
91
|
+
}
|
92
|
+
}
|
93
|
+
},
|
94
|
+
"ListDomains": {
|
95
|
+
"http": {
|
96
|
+
"requestUri": "/domains",
|
97
|
+
"responseCode": 200
|
98
|
+
},
|
99
|
+
"input": {
|
100
|
+
"type": "structure",
|
101
|
+
"members": {
|
102
|
+
"MaxResults": {
|
103
|
+
"location": "querystring",
|
104
|
+
"locationName": "maxResults",
|
105
|
+
"type": "integer"
|
106
|
+
},
|
107
|
+
"NextToken": {
|
108
|
+
"location": "querystring",
|
109
|
+
"locationName": "nextToken"
|
110
|
+
}
|
111
|
+
}
|
112
|
+
},
|
113
|
+
"output": {
|
114
|
+
"type": "structure",
|
115
|
+
"required": [
|
116
|
+
"Domains"
|
117
|
+
],
|
118
|
+
"members": {
|
119
|
+
"Domains": {
|
120
|
+
"type": "list",
|
121
|
+
"member": {
|
122
|
+
"type": "structure",
|
123
|
+
"required": [
|
124
|
+
"Arn",
|
125
|
+
"CreateTime",
|
126
|
+
"Description",
|
127
|
+
"LastUpdateTime",
|
128
|
+
"Name"
|
129
|
+
],
|
130
|
+
"members": {
|
131
|
+
"Arn": {},
|
132
|
+
"CreateTime": {
|
133
|
+
"type": "timestamp"
|
134
|
+
},
|
135
|
+
"Description": {},
|
136
|
+
"LastUpdateTime": {
|
137
|
+
"type": "timestamp"
|
138
|
+
},
|
139
|
+
"Name": {}
|
140
|
+
}
|
141
|
+
}
|
142
|
+
},
|
143
|
+
"NextToken": {}
|
144
|
+
}
|
145
|
+
}
|
146
|
+
},
|
147
|
+
"ListObjectives": {
|
148
|
+
"http": {
|
149
|
+
"requestUri": "/objectives",
|
150
|
+
"responseCode": 200
|
151
|
+
},
|
152
|
+
"input": {
|
153
|
+
"type": "structure",
|
154
|
+
"members": {
|
155
|
+
"MaxResults": {
|
156
|
+
"location": "querystring",
|
157
|
+
"locationName": "maxResults",
|
158
|
+
"type": "integer"
|
159
|
+
},
|
160
|
+
"NextToken": {
|
161
|
+
"location": "querystring",
|
162
|
+
"locationName": "nextToken"
|
163
|
+
},
|
164
|
+
"ObjectiveFilter": {
|
165
|
+
"type": "structure",
|
166
|
+
"members": {
|
167
|
+
"Domains": {
|
168
|
+
"type": "list",
|
169
|
+
"member": {
|
170
|
+
"type": "structure",
|
171
|
+
"members": {
|
172
|
+
"Arn": {}
|
173
|
+
}
|
174
|
+
}
|
175
|
+
}
|
176
|
+
}
|
177
|
+
}
|
178
|
+
}
|
179
|
+
},
|
180
|
+
"output": {
|
181
|
+
"type": "structure",
|
182
|
+
"required": [
|
183
|
+
"Objectives"
|
184
|
+
],
|
185
|
+
"members": {
|
186
|
+
"NextToken": {},
|
187
|
+
"Objectives": {
|
188
|
+
"type": "list",
|
189
|
+
"member": {
|
190
|
+
"type": "structure",
|
191
|
+
"required": [
|
192
|
+
"Arn",
|
193
|
+
"CreateTime",
|
194
|
+
"Description",
|
195
|
+
"Domain",
|
196
|
+
"LastUpdateTime",
|
197
|
+
"Name"
|
198
|
+
],
|
199
|
+
"members": {
|
200
|
+
"Arn": {},
|
201
|
+
"CreateTime": {
|
202
|
+
"type": "timestamp"
|
203
|
+
},
|
204
|
+
"Description": {},
|
205
|
+
"Domain": {
|
206
|
+
"shape": "Se"
|
207
|
+
},
|
208
|
+
"LastUpdateTime": {
|
209
|
+
"type": "timestamp"
|
210
|
+
},
|
211
|
+
"Name": {}
|
212
|
+
}
|
213
|
+
}
|
214
|
+
}
|
215
|
+
}
|
216
|
+
}
|
217
|
+
}
|
218
|
+
},
|
219
|
+
"shapes": {
|
220
|
+
"Se": {
|
221
|
+
"type": "structure",
|
222
|
+
"members": {
|
223
|
+
"Arn": {},
|
224
|
+
"Name": {}
|
225
|
+
}
|
226
|
+
}
|
227
|
+
}
|
228
|
+
}
|
@@ -0,0 +1,22 @@
|
|
1
|
+
{
|
2
|
+
"pagination": {
|
3
|
+
"ListCommonControls": {
|
4
|
+
"input_token": "NextToken",
|
5
|
+
"output_token": "NextToken",
|
6
|
+
"limit_key": "MaxResults",
|
7
|
+
"result_key": "CommonControls"
|
8
|
+
},
|
9
|
+
"ListDomains": {
|
10
|
+
"input_token": "NextToken",
|
11
|
+
"output_token": "NextToken",
|
12
|
+
"limit_key": "MaxResults",
|
13
|
+
"result_key": "Domains"
|
14
|
+
},
|
15
|
+
"ListObjectives": {
|
16
|
+
"input_token": "NextToken",
|
17
|
+
"output_token": "NextToken",
|
18
|
+
"limit_key": "MaxResults",
|
19
|
+
"result_key": "Objectives"
|
20
|
+
}
|
21
|
+
}
|
22
|
+
}
|