Skip to content

Commit 5929e20

Browse files
Adds support for tagging, with new TagResource, UntagResource and ListTagsForResource APIs to manage tags and updates to existing APIs to allow tag on create. This release also adds support for the new DeleteWorkerConfiguration API.
This release adds support for gp3 data volumes for Multi-AZ DB Clusters. Added volume status to DescribeSourceServer replicated volumes. Documentation updates for Amazon API Gateway.
1 parent 60f3e40 commit 5929e20

File tree

72 files changed

+3521
-327
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

72 files changed

+3521
-327
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.11.272
1+
1.11.273

generated/src/aws-cpp-sdk-apigateway/include/aws/apigateway/APIGatewayClient.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2938,7 +2938,8 @@ namespace APIGateway
29382938
}
29392939

29402940
/**
2941-
* <p>Changes information about a model.</p><p><h3>See Also:</h3> <a
2941+
* <p>Changes information about a model. The maximum size of the model is 400
2942+
* KB.</p><p><h3>See Also:</h3> <a
29422943
* href="http://docs.aws.amazon.com/goto/WebAPI/apigateway-2015-07-09/UpdateModel">AWS
29432944
* API Reference</a></p>
29442945
*/

generated/src/aws-cpp-sdk-apigateway/include/aws/apigateway/model/CreateModelRequest.h

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -161,49 +161,57 @@ namespace Model
161161

162162
/**
163163
* <p>The schema for the model. For <code>application/json</code> models, this
164-
* should be JSON schema draft 4 model.</p>
164+
* should be JSON schema draft 4 model. The maximum size of the model is 400
165+
* KB.</p>
165166
*/
166167
inline const Aws::String& GetSchema() const{ return m_schema; }
167168

168169
/**
169170
* <p>The schema for the model. For <code>application/json</code> models, this
170-
* should be JSON schema draft 4 model.</p>
171+
* should be JSON schema draft 4 model. The maximum size of the model is 400
172+
* KB.</p>
171173
*/
172174
inline bool SchemaHasBeenSet() const { return m_schemaHasBeenSet; }
173175

174176
/**
175177
* <p>The schema for the model. For <code>application/json</code> models, this
176-
* should be JSON schema draft 4 model.</p>
178+
* should be JSON schema draft 4 model. The maximum size of the model is 400
179+
* KB.</p>
177180
*/
178181
inline void SetSchema(const Aws::String& value) { m_schemaHasBeenSet = true; m_schema = value; }
179182

180183
/**
181184
* <p>The schema for the model. For <code>application/json</code> models, this
182-
* should be JSON schema draft 4 model.</p>
185+
* should be JSON schema draft 4 model. The maximum size of the model is 400
186+
* KB.</p>
183187
*/
184188
inline void SetSchema(Aws::String&& value) { m_schemaHasBeenSet = true; m_schema = std::move(value); }
185189

186190
/**
187191
* <p>The schema for the model. For <code>application/json</code> models, this
188-
* should be JSON schema draft 4 model.</p>
192+
* should be JSON schema draft 4 model. The maximum size of the model is 400
193+
* KB.</p>
189194
*/
190195
inline void SetSchema(const char* value) { m_schemaHasBeenSet = true; m_schema.assign(value); }
191196

192197
/**
193198
* <p>The schema for the model. For <code>application/json</code> models, this
194-
* should be JSON schema draft 4 model.</p>
199+
* should be JSON schema draft 4 model. The maximum size of the model is 400
200+
* KB.</p>
195201
*/
196202
inline CreateModelRequest& WithSchema(const Aws::String& value) { SetSchema(value); return *this;}
197203

198204
/**
199205
* <p>The schema for the model. For <code>application/json</code> models, this
200-
* should be JSON schema draft 4 model.</p>
206+
* should be JSON schema draft 4 model. The maximum size of the model is 400
207+
* KB.</p>
201208
*/
202209
inline CreateModelRequest& WithSchema(Aws::String&& value) { SetSchema(std::move(value)); return *this;}
203210

204211
/**
205212
* <p>The schema for the model. For <code>application/json</code> models, this
206-
* should be JSON schema draft 4 model.</p>
213+
* should be JSON schema draft 4 model. The maximum size of the model is 400
214+
* KB.</p>
207215
*/
208216
inline CreateModelRequest& WithSchema(const char* value) { SetSchema(value); return *this;}
209217

generated/src/aws-cpp-sdk-apigateway/include/aws/apigateway/model/CreateStageResult.h

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -211,17 +211,23 @@ namespace Model
211211

212212

213213
/**
214-
* <p>Specifies whether a cache cluster is enabled for the stage.</p>
214+
* <p>Specifies whether a cache cluster is enabled for the stage. To activate a
215+
* method-level cache, set <code>CachingEnabled</code> to <code>true</code> for a
216+
* method. </p>
215217
*/
216218
inline bool GetCacheClusterEnabled() const{ return m_cacheClusterEnabled; }
217219

218220
/**
219-
* <p>Specifies whether a cache cluster is enabled for the stage.</p>
221+
* <p>Specifies whether a cache cluster is enabled for the stage. To activate a
222+
* method-level cache, set <code>CachingEnabled</code> to <code>true</code> for a
223+
* method. </p>
220224
*/
221225
inline void SetCacheClusterEnabled(bool value) { m_cacheClusterEnabled = value; }
222226

223227
/**
224-
* <p>Specifies whether a cache cluster is enabled for the stage.</p>
228+
* <p>Specifies whether a cache cluster is enabled for the stage. To activate a
229+
* method-level cache, set <code>CachingEnabled</code> to <code>true</code> for a
230+
* method. </p>
225231
*/
226232
inline CreateStageResult& WithCacheClusterEnabled(bool value) { SetCacheClusterEnabled(value); return *this;}
227233

generated/src/aws-cpp-sdk-apigateway/include/aws/apigateway/model/GetStageResult.h

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -211,17 +211,23 @@ namespace Model
211211

212212

213213
/**
214-
* <p>Specifies whether a cache cluster is enabled for the stage.</p>
214+
* <p>Specifies whether a cache cluster is enabled for the stage. To activate a
215+
* method-level cache, set <code>CachingEnabled</code> to <code>true</code> for a
216+
* method. </p>
215217
*/
216218
inline bool GetCacheClusterEnabled() const{ return m_cacheClusterEnabled; }
217219

218220
/**
219-
* <p>Specifies whether a cache cluster is enabled for the stage.</p>
221+
* <p>Specifies whether a cache cluster is enabled for the stage. To activate a
222+
* method-level cache, set <code>CachingEnabled</code> to <code>true</code> for a
223+
* method. </p>
220224
*/
221225
inline void SetCacheClusterEnabled(bool value) { m_cacheClusterEnabled = value; }
222226

223227
/**
224-
* <p>Specifies whether a cache cluster is enabled for the stage.</p>
228+
* <p>Specifies whether a cache cluster is enabled for the stage. To activate a
229+
* method-level cache, set <code>CachingEnabled</code> to <code>true</code> for a
230+
* method. </p>
225231
*/
226232
inline GetStageResult& WithCacheClusterEnabled(bool value) { SetCacheClusterEnabled(value); return *this;}
227233

generated/src/aws-cpp-sdk-apigateway/include/aws/apigateway/model/Stage.h

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -234,22 +234,30 @@ namespace Model
234234

235235

236236
/**
237-
* <p>Specifies whether a cache cluster is enabled for the stage.</p>
237+
* <p>Specifies whether a cache cluster is enabled for the stage. To activate a
238+
* method-level cache, set <code>CachingEnabled</code> to <code>true</code> for a
239+
* method. </p>
238240
*/
239241
inline bool GetCacheClusterEnabled() const{ return m_cacheClusterEnabled; }
240242

241243
/**
242-
* <p>Specifies whether a cache cluster is enabled for the stage.</p>
244+
* <p>Specifies whether a cache cluster is enabled for the stage. To activate a
245+
* method-level cache, set <code>CachingEnabled</code> to <code>true</code> for a
246+
* method. </p>
243247
*/
244248
inline bool CacheClusterEnabledHasBeenSet() const { return m_cacheClusterEnabledHasBeenSet; }
245249

246250
/**
247-
* <p>Specifies whether a cache cluster is enabled for the stage.</p>
251+
* <p>Specifies whether a cache cluster is enabled for the stage. To activate a
252+
* method-level cache, set <code>CachingEnabled</code> to <code>true</code> for a
253+
* method. </p>
248254
*/
249255
inline void SetCacheClusterEnabled(bool value) { m_cacheClusterEnabledHasBeenSet = true; m_cacheClusterEnabled = value; }
250256

251257
/**
252-
* <p>Specifies whether a cache cluster is enabled for the stage.</p>
258+
* <p>Specifies whether a cache cluster is enabled for the stage. To activate a
259+
* method-level cache, set <code>CachingEnabled</code> to <code>true</code> for a
260+
* method. </p>
253261
*/
254262
inline Stage& WithCacheClusterEnabled(bool value) { SetCacheClusterEnabled(value); return *this;}
255263

generated/src/aws-cpp-sdk-apigateway/include/aws/apigateway/model/UpdateStageResult.h

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -211,17 +211,23 @@ namespace Model
211211

212212

213213
/**
214-
* <p>Specifies whether a cache cluster is enabled for the stage.</p>
214+
* <p>Specifies whether a cache cluster is enabled for the stage. To activate a
215+
* method-level cache, set <code>CachingEnabled</code> to <code>true</code> for a
216+
* method. </p>
215217
*/
216218
inline bool GetCacheClusterEnabled() const{ return m_cacheClusterEnabled; }
217219

218220
/**
219-
* <p>Specifies whether a cache cluster is enabled for the stage.</p>
221+
* <p>Specifies whether a cache cluster is enabled for the stage. To activate a
222+
* method-level cache, set <code>CachingEnabled</code> to <code>true</code> for a
223+
* method. </p>
220224
*/
221225
inline void SetCacheClusterEnabled(bool value) { m_cacheClusterEnabled = value; }
222226

223227
/**
224-
* <p>Specifies whether a cache cluster is enabled for the stage.</p>
228+
* <p>Specifies whether a cache cluster is enabled for the stage. To activate a
229+
* method-level cache, set <code>CachingEnabled</code> to <code>true</code> for a
230+
* method. </p>
225231
*/
226232
inline UpdateStageResult& WithCacheClusterEnabled(bool value) { SetCacheClusterEnabled(value); return *this;}
227233

0 commit comments

Comments
 (0)