Skip to content

Commit 6584675

Browse files
This release adds ECR container image scanning based on their lastRecordedPullTime.
Update list and string length limits for predefined attributes. Amazon SageMaker Automatic Model Tuning now provides an API to programmatically delete tuning jobs.
1 parent ec0e9b1 commit 6584675

File tree

50 files changed

+1462
-732
lines changed

Some content is hidden

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

50 files changed

+1462
-732
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.11.251
1+
1.11.252

generated/src/aws-cpp-sdk-inspector2/include/aws/inspector2/Inspector2Client.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1514,8 +1514,8 @@ namespace Inspector2
15141514

15151515
/**
15161516
* <p>Updates an encryption key. A <code>ResourceNotFoundException</code> means
1517-
* that an AWS owned key is being used for encryption.</p><p><h3>See Also:</h3>
1518-
* <a
1517+
* that an Amazon Web Services owned key is being used for
1518+
* encryption.</p><p><h3>See Also:</h3> <a
15191519
* href="http://docs.aws.amazon.com/goto/WebAPI/inspector2-2020-06-08/UpdateEncryptionKey">AWS
15201520
* API Reference</a></p>
15211521
*/

generated/src/aws-cpp-sdk-inspector2/include/aws/inspector2/model/AggregationRequest.h

Lines changed: 24 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -270,63 +270,75 @@ namespace Model
270270

271271

272272
/**
273-
* <p>Returns an object with findings aggregated by AWS Lambda function.</p>
273+
* <p>Returns an object with findings aggregated by Amazon Web Services Lambda
274+
* function.</p>
274275
*/
275276
inline const LambdaFunctionAggregation& GetLambdaFunctionAggregation() const{ return m_lambdaFunctionAggregation; }
276277

277278
/**
278-
* <p>Returns an object with findings aggregated by AWS Lambda function.</p>
279+
* <p>Returns an object with findings aggregated by Amazon Web Services Lambda
280+
* function.</p>
279281
*/
280282
inline bool LambdaFunctionAggregationHasBeenSet() const { return m_lambdaFunctionAggregationHasBeenSet; }
281283

282284
/**
283-
* <p>Returns an object with findings aggregated by AWS Lambda function.</p>
285+
* <p>Returns an object with findings aggregated by Amazon Web Services Lambda
286+
* function.</p>
284287
*/
285288
inline void SetLambdaFunctionAggregation(const LambdaFunctionAggregation& value) { m_lambdaFunctionAggregationHasBeenSet = true; m_lambdaFunctionAggregation = value; }
286289

287290
/**
288-
* <p>Returns an object with findings aggregated by AWS Lambda function.</p>
291+
* <p>Returns an object with findings aggregated by Amazon Web Services Lambda
292+
* function.</p>
289293
*/
290294
inline void SetLambdaFunctionAggregation(LambdaFunctionAggregation&& value) { m_lambdaFunctionAggregationHasBeenSet = true; m_lambdaFunctionAggregation = std::move(value); }
291295

292296
/**
293-
* <p>Returns an object with findings aggregated by AWS Lambda function.</p>
297+
* <p>Returns an object with findings aggregated by Amazon Web Services Lambda
298+
* function.</p>
294299
*/
295300
inline AggregationRequest& WithLambdaFunctionAggregation(const LambdaFunctionAggregation& value) { SetLambdaFunctionAggregation(value); return *this;}
296301

297302
/**
298-
* <p>Returns an object with findings aggregated by AWS Lambda function.</p>
303+
* <p>Returns an object with findings aggregated by Amazon Web Services Lambda
304+
* function.</p>
299305
*/
300306
inline AggregationRequest& WithLambdaFunctionAggregation(LambdaFunctionAggregation&& value) { SetLambdaFunctionAggregation(std::move(value)); return *this;}
301307

302308

303309
/**
304-
* <p>Returns an object with findings aggregated by AWS Lambda layer.</p>
310+
* <p>Returns an object with findings aggregated by Amazon Web Services Lambda
311+
* layer.</p>
305312
*/
306313
inline const LambdaLayerAggregation& GetLambdaLayerAggregation() const{ return m_lambdaLayerAggregation; }
307314

308315
/**
309-
* <p>Returns an object with findings aggregated by AWS Lambda layer.</p>
316+
* <p>Returns an object with findings aggregated by Amazon Web Services Lambda
317+
* layer.</p>
310318
*/
311319
inline bool LambdaLayerAggregationHasBeenSet() const { return m_lambdaLayerAggregationHasBeenSet; }
312320

313321
/**
314-
* <p>Returns an object with findings aggregated by AWS Lambda layer.</p>
322+
* <p>Returns an object with findings aggregated by Amazon Web Services Lambda
323+
* layer.</p>
315324
*/
316325
inline void SetLambdaLayerAggregation(const LambdaLayerAggregation& value) { m_lambdaLayerAggregationHasBeenSet = true; m_lambdaLayerAggregation = value; }
317326

318327
/**
319-
* <p>Returns an object with findings aggregated by AWS Lambda layer.</p>
328+
* <p>Returns an object with findings aggregated by Amazon Web Services Lambda
329+
* layer.</p>
320330
*/
321331
inline void SetLambdaLayerAggregation(LambdaLayerAggregation&& value) { m_lambdaLayerAggregationHasBeenSet = true; m_lambdaLayerAggregation = std::move(value); }
322332

323333
/**
324-
* <p>Returns an object with findings aggregated by AWS Lambda layer.</p>
334+
* <p>Returns an object with findings aggregated by Amazon Web Services Lambda
335+
* layer.</p>
325336
*/
326337
inline AggregationRequest& WithLambdaLayerAggregation(const LambdaLayerAggregation& value) { SetLambdaLayerAggregation(value); return *this;}
327338

328339
/**
329-
* <p>Returns an object with findings aggregated by AWS Lambda layer.</p>
340+
* <p>Returns an object with findings aggregated by Amazon Web Services Lambda
341+
* layer.</p>
330342
*/
331343
inline AggregationRequest& WithLambdaLayerAggregation(LambdaLayerAggregation&& value) { SetLambdaLayerAggregation(std::move(value)); return *this;}
332344

generated/src/aws-cpp-sdk-inspector2/include/aws/inspector2/model/AggregationResponse.h

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -271,63 +271,63 @@ namespace Model
271271

272272

273273
/**
274-
* <p>An aggregation of findings by AWS Lambda function.</p>
274+
* <p>An aggregation of findings by Amazon Web Services Lambda function.</p>
275275
*/
276276
inline const LambdaFunctionAggregationResponse& GetLambdaFunctionAggregation() const{ return m_lambdaFunctionAggregation; }
277277

278278
/**
279-
* <p>An aggregation of findings by AWS Lambda function.</p>
279+
* <p>An aggregation of findings by Amazon Web Services Lambda function.</p>
280280
*/
281281
inline bool LambdaFunctionAggregationHasBeenSet() const { return m_lambdaFunctionAggregationHasBeenSet; }
282282

283283
/**
284-
* <p>An aggregation of findings by AWS Lambda function.</p>
284+
* <p>An aggregation of findings by Amazon Web Services Lambda function.</p>
285285
*/
286286
inline void SetLambdaFunctionAggregation(const LambdaFunctionAggregationResponse& value) { m_lambdaFunctionAggregationHasBeenSet = true; m_lambdaFunctionAggregation = value; }
287287

288288
/**
289-
* <p>An aggregation of findings by AWS Lambda function.</p>
289+
* <p>An aggregation of findings by Amazon Web Services Lambda function.</p>
290290
*/
291291
inline void SetLambdaFunctionAggregation(LambdaFunctionAggregationResponse&& value) { m_lambdaFunctionAggregationHasBeenSet = true; m_lambdaFunctionAggregation = std::move(value); }
292292

293293
/**
294-
* <p>An aggregation of findings by AWS Lambda function.</p>
294+
* <p>An aggregation of findings by Amazon Web Services Lambda function.</p>
295295
*/
296296
inline AggregationResponse& WithLambdaFunctionAggregation(const LambdaFunctionAggregationResponse& value) { SetLambdaFunctionAggregation(value); return *this;}
297297

298298
/**
299-
* <p>An aggregation of findings by AWS Lambda function.</p>
299+
* <p>An aggregation of findings by Amazon Web Services Lambda function.</p>
300300
*/
301301
inline AggregationResponse& WithLambdaFunctionAggregation(LambdaFunctionAggregationResponse&& value) { SetLambdaFunctionAggregation(std::move(value)); return *this;}
302302

303303

304304
/**
305-
* <p>An aggregation of findings by AWS Lambda layer.</p>
305+
* <p>An aggregation of findings by Amazon Web Services Lambda layer.</p>
306306
*/
307307
inline const LambdaLayerAggregationResponse& GetLambdaLayerAggregation() const{ return m_lambdaLayerAggregation; }
308308

309309
/**
310-
* <p>An aggregation of findings by AWS Lambda layer.</p>
310+
* <p>An aggregation of findings by Amazon Web Services Lambda layer.</p>
311311
*/
312312
inline bool LambdaLayerAggregationHasBeenSet() const { return m_lambdaLayerAggregationHasBeenSet; }
313313

314314
/**
315-
* <p>An aggregation of findings by AWS Lambda layer.</p>
315+
* <p>An aggregation of findings by Amazon Web Services Lambda layer.</p>
316316
*/
317317
inline void SetLambdaLayerAggregation(const LambdaLayerAggregationResponse& value) { m_lambdaLayerAggregationHasBeenSet = true; m_lambdaLayerAggregation = value; }
318318

319319
/**
320-
* <p>An aggregation of findings by AWS Lambda layer.</p>
320+
* <p>An aggregation of findings by Amazon Web Services Lambda layer.</p>
321321
*/
322322
inline void SetLambdaLayerAggregation(LambdaLayerAggregationResponse&& value) { m_lambdaLayerAggregationHasBeenSet = true; m_lambdaLayerAggregation = std::move(value); }
323323

324324
/**
325-
* <p>An aggregation of findings by AWS Lambda layer.</p>
325+
* <p>An aggregation of findings by Amazon Web Services Lambda layer.</p>
326326
*/
327327
inline AggregationResponse& WithLambdaLayerAggregation(const LambdaLayerAggregationResponse& value) { SetLambdaLayerAggregation(value); return *this;}
328328

329329
/**
330-
* <p>An aggregation of findings by AWS Lambda layer.</p>
330+
* <p>An aggregation of findings by Amazon Web Services Lambda layer.</p>
331331
*/
332332
inline AggregationResponse& WithLambdaLayerAggregation(LambdaLayerAggregationResponse&& value) { SetLambdaLayerAggregation(std::move(value)); return *this;}
333333

generated/src/aws-cpp-sdk-inspector2/include/aws/inspector2/model/AutoEnable.h

Lines changed: 16 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -87,53 +87,57 @@ namespace Model
8787

8888

8989
/**
90-
* <p>Represents whether AWS Lambda standard scans are automatically enabled for
91-
* new members of your Amazon Inspector organization. </p>
90+
* <p>Represents whether Amazon Web Services Lambda standard scans are
91+
* automatically enabled for new members of your Amazon Inspector organization.
92+
* </p>
9293
*/
9394
inline bool GetLambda() const{ return m_lambda; }
9495

9596
/**
96-
* <p>Represents whether AWS Lambda standard scans are automatically enabled for
97-
* new members of your Amazon Inspector organization. </p>
97+
* <p>Represents whether Amazon Web Services Lambda standard scans are
98+
* automatically enabled for new members of your Amazon Inspector organization.
99+
* </p>
98100
*/
99101
inline bool LambdaHasBeenSet() const { return m_lambdaHasBeenSet; }
100102

101103
/**
102-
* <p>Represents whether AWS Lambda standard scans are automatically enabled for
103-
* new members of your Amazon Inspector organization. </p>
104+
* <p>Represents whether Amazon Web Services Lambda standard scans are
105+
* automatically enabled for new members of your Amazon Inspector organization.
106+
* </p>
104107
*/
105108
inline void SetLambda(bool value) { m_lambdaHasBeenSet = true; m_lambda = value; }
106109

107110
/**
108-
* <p>Represents whether AWS Lambda standard scans are automatically enabled for
109-
* new members of your Amazon Inspector organization. </p>
111+
* <p>Represents whether Amazon Web Services Lambda standard scans are
112+
* automatically enabled for new members of your Amazon Inspector organization.
113+
* </p>
110114
*/
111115
inline AutoEnable& WithLambda(bool value) { SetLambda(value); return *this;}
112116

113117

114118
/**
115-
* <p>Represents whether AWS Lambda code scans are automatically enabled for new
119+
* <p>Represents whether Lambda code scans are automatically enabled for new
116120
* members of your Amazon Inspector organization. <pre><code> &lt;/p&gt;
117121
* </code></pre>
118122
*/
119123
inline bool GetLambdaCode() const{ return m_lambdaCode; }
120124

121125
/**
122-
* <p>Represents whether AWS Lambda code scans are automatically enabled for new
126+
* <p>Represents whether Lambda code scans are automatically enabled for new
123127
* members of your Amazon Inspector organization. <pre><code> &lt;/p&gt;
124128
* </code></pre>
125129
*/
126130
inline bool LambdaCodeHasBeenSet() const { return m_lambdaCodeHasBeenSet; }
127131

128132
/**
129-
* <p>Represents whether AWS Lambda code scans are automatically enabled for new
133+
* <p>Represents whether Lambda code scans are automatically enabled for new
130134
* members of your Amazon Inspector organization. <pre><code> &lt;/p&gt;
131135
* </code></pre>
132136
*/
133137
inline void SetLambdaCode(bool value) { m_lambdaCodeHasBeenSet = true; m_lambdaCode = value; }
134138

135139
/**
136-
* <p>Represents whether AWS Lambda code scans are automatically enabled for new
140+
* <p>Represents whether Lambda code scans are automatically enabled for new
137141
* members of your Amazon Inspector organization. <pre><code> &lt;/p&gt;
138142
* </code></pre>
139143
*/

0 commit comments

Comments
 (0)