Skip to content

Commit 9a87dd5

Browse files
author
AWS
committed
AWS SDK for Java 1.11.869
1 parent a18575e commit 9a87dd5

File tree

372 files changed

+6372
-942
lines changed

Some content is hidden

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

372 files changed

+6372
-942
lines changed

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
# __1.11.869__ __2020-09-24__
2+
## __AWS Amplify__
3+
- ### Features
4+
- Allow Oauth Token in CreateApp call to be a maximum of 1000 characters instead of 100
5+
6+
## __AWS Savings Plans__
7+
- ### Features
8+
- Introducing Queued SavingsPlans that will enable customers to queue their purchase request of Savings Plans for future dates.
9+
10+
## __Amazon Elastic Kubernetes Service__
11+
- ### Features
12+
- Amazon EKS now supports configuring your cluster's service CIDR during cluster creation.
13+
14+
## __Amazon Textract__
15+
- ### Features
16+
- AWS Textract now supports output results for asynchronous jobs to customer specified s3 bucket.
17+
18+
## __Amazon Transcribe Service__
19+
- ### Features
20+
- Amazon Transcribe now supports WebM, OGG, AMR and AMR-WB as input formats. You can also specify an output key as a location within your S3 buckets to store the output of your transcription jobs.
21+
22+
## __Synthetics__
23+
- ### Features
24+
- AWS Synthetics now supports AWS X-Ray Active Tracing feature. RunConfig is now an optional parameter with timeout updated from (60 - 900 seconds) to (3 - 840 seconds).
25+
126
# __1.11.868__ __2020-09-23__
227
## __AWS Backup__
328
- ### Features

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ dependencies.
4848
<dependency>
4949
<groupId>com.amazonaws</groupId>
5050
<artifactId>aws-java-sdk-bom</artifactId>
51-
<version>1.11.868</version>
51+
<version>1.11.869</version>
5252
<type>pom</type>
5353
<scope>import</scope>
5454
</dependency>

aws-java-sdk-accessanalyzer/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-java-sdk-pom</artifactId>
8-
<version>1.11.868</version>
8+
<version>1.11.869</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-accessanalyzer</artifactId>

aws-java-sdk-acm/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-java-sdk-pom</artifactId>
8-
<version>1.11.868</version>
8+
<version>1.11.869</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-acm</artifactId>

aws-java-sdk-acmpca/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-java-sdk-pom</artifactId>
8-
<version>1.11.868</version>
8+
<version>1.11.869</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-acmpca</artifactId>

aws-java-sdk-alexaforbusiness/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-java-sdk-pom</artifactId>
8-
<version>1.11.868</version>
8+
<version>1.11.869</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-alexaforbusiness</artifactId>

aws-java-sdk-amplify/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-java-sdk-pom</artifactId>
8-
<version>1.11.868</version>
8+
<version>1.11.869</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-amplify</artifactId>

aws-java-sdk-amplify/src/main/java/com/amazonaws/services/amplify/model/CustomRule.java

Lines changed: 231 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,39 @@ public class CustomRule implements Serializable, Cloneable, StructuredPojo {
4444
* <p>
4545
* The status code for a URL rewrite or redirect rule.
4646
* </p>
47+
* <dl>
48+
* <dt>200</dt>
49+
* <dd>
50+
* <p>
51+
* Represents a 200 rewrite rule.
52+
* </p>
53+
* </dd>
54+
* <dt>301</dt>
55+
* <dd>
56+
* <p>
57+
* Represents a 301 (moved pemanently) redirect rule. This and all future requests should be directed to the target
58+
* URL.
59+
* </p>
60+
* </dd>
61+
* <dt>302</dt>
62+
* <dd>
63+
* <p>
64+
* Represents a 302 temporary redirect rule.
65+
* </p>
66+
* </dd>
67+
* <dt>404</dt>
68+
* <dd>
69+
* <p>
70+
* Represents a 404 redirect rule.
71+
* </p>
72+
* </dd>
73+
* <dt>404-200</dt>
74+
* <dd>
75+
* <p>
76+
* Represents a 404 rewrite rule.
77+
* </p>
78+
* </dd>
79+
* </dl>
4780
*/
4881
private String status;
4982
/**
@@ -137,9 +170,74 @@ public CustomRule withTarget(String target) {
137170
* <p>
138171
* The status code for a URL rewrite or redirect rule.
139172
* </p>
173+
* <dl>
174+
* <dt>200</dt>
175+
* <dd>
176+
* <p>
177+
* Represents a 200 rewrite rule.
178+
* </p>
179+
* </dd>
180+
* <dt>301</dt>
181+
* <dd>
182+
* <p>
183+
* Represents a 301 (moved pemanently) redirect rule. This and all future requests should be directed to the target
184+
* URL.
185+
* </p>
186+
* </dd>
187+
* <dt>302</dt>
188+
* <dd>
189+
* <p>
190+
* Represents a 302 temporary redirect rule.
191+
* </p>
192+
* </dd>
193+
* <dt>404</dt>
194+
* <dd>
195+
* <p>
196+
* Represents a 404 redirect rule.
197+
* </p>
198+
* </dd>
199+
* <dt>404-200</dt>
200+
* <dd>
201+
* <p>
202+
* Represents a 404 rewrite rule.
203+
* </p>
204+
* </dd>
205+
* </dl>
140206
*
141207
* @param status
142-
* The status code for a URL rewrite or redirect rule.
208+
* The status code for a URL rewrite or redirect rule. </p>
209+
* <dl>
210+
* <dt>200</dt>
211+
* <dd>
212+
* <p>
213+
* Represents a 200 rewrite rule.
214+
* </p>
215+
* </dd>
216+
* <dt>301</dt>
217+
* <dd>
218+
* <p>
219+
* Represents a 301 (moved pemanently) redirect rule. This and all future requests should be directed to the
220+
* target URL.
221+
* </p>
222+
* </dd>
223+
* <dt>302</dt>
224+
* <dd>
225+
* <p>
226+
* Represents a 302 temporary redirect rule.
227+
* </p>
228+
* </dd>
229+
* <dt>404</dt>
230+
* <dd>
231+
* <p>
232+
* Represents a 404 redirect rule.
233+
* </p>
234+
* </dd>
235+
* <dt>404-200</dt>
236+
* <dd>
237+
* <p>
238+
* Represents a 404 rewrite rule.
239+
* </p>
240+
* </dd>
143241
*/
144242

145243
public void setStatus(String status) {
@@ -150,8 +248,73 @@ public void setStatus(String status) {
150248
* <p>
151249
* The status code for a URL rewrite or redirect rule.
152250
* </p>
251+
* <dl>
252+
* <dt>200</dt>
253+
* <dd>
254+
* <p>
255+
* Represents a 200 rewrite rule.
256+
* </p>
257+
* </dd>
258+
* <dt>301</dt>
259+
* <dd>
260+
* <p>
261+
* Represents a 301 (moved pemanently) redirect rule. This and all future requests should be directed to the target
262+
* URL.
263+
* </p>
264+
* </dd>
265+
* <dt>302</dt>
266+
* <dd>
267+
* <p>
268+
* Represents a 302 temporary redirect rule.
269+
* </p>
270+
* </dd>
271+
* <dt>404</dt>
272+
* <dd>
273+
* <p>
274+
* Represents a 404 redirect rule.
275+
* </p>
276+
* </dd>
277+
* <dt>404-200</dt>
278+
* <dd>
279+
* <p>
280+
* Represents a 404 rewrite rule.
281+
* </p>
282+
* </dd>
283+
* </dl>
153284
*
154-
* @return The status code for a URL rewrite or redirect rule.
285+
* @return The status code for a URL rewrite or redirect rule. </p>
286+
* <dl>
287+
* <dt>200</dt>
288+
* <dd>
289+
* <p>
290+
* Represents a 200 rewrite rule.
291+
* </p>
292+
* </dd>
293+
* <dt>301</dt>
294+
* <dd>
295+
* <p>
296+
* Represents a 301 (moved pemanently) redirect rule. This and all future requests should be directed to the
297+
* target URL.
298+
* </p>
299+
* </dd>
300+
* <dt>302</dt>
301+
* <dd>
302+
* <p>
303+
* Represents a 302 temporary redirect rule.
304+
* </p>
305+
* </dd>
306+
* <dt>404</dt>
307+
* <dd>
308+
* <p>
309+
* Represents a 404 redirect rule.
310+
* </p>
311+
* </dd>
312+
* <dt>404-200</dt>
313+
* <dd>
314+
* <p>
315+
* Represents a 404 rewrite rule.
316+
* </p>
317+
* </dd>
155318
*/
156319

157320
public String getStatus() {
@@ -162,9 +325,74 @@ public String getStatus() {
162325
* <p>
163326
* The status code for a URL rewrite or redirect rule.
164327
* </p>
328+
* <dl>
329+
* <dt>200</dt>
330+
* <dd>
331+
* <p>
332+
* Represents a 200 rewrite rule.
333+
* </p>
334+
* </dd>
335+
* <dt>301</dt>
336+
* <dd>
337+
* <p>
338+
* Represents a 301 (moved pemanently) redirect rule. This and all future requests should be directed to the target
339+
* URL.
340+
* </p>
341+
* </dd>
342+
* <dt>302</dt>
343+
* <dd>
344+
* <p>
345+
* Represents a 302 temporary redirect rule.
346+
* </p>
347+
* </dd>
348+
* <dt>404</dt>
349+
* <dd>
350+
* <p>
351+
* Represents a 404 redirect rule.
352+
* </p>
353+
* </dd>
354+
* <dt>404-200</dt>
355+
* <dd>
356+
* <p>
357+
* Represents a 404 rewrite rule.
358+
* </p>
359+
* </dd>
360+
* </dl>
165361
*
166362
* @param status
167-
* The status code for a URL rewrite or redirect rule.
363+
* The status code for a URL rewrite or redirect rule. </p>
364+
* <dl>
365+
* <dt>200</dt>
366+
* <dd>
367+
* <p>
368+
* Represents a 200 rewrite rule.
369+
* </p>
370+
* </dd>
371+
* <dt>301</dt>
372+
* <dd>
373+
* <p>
374+
* Represents a 301 (moved pemanently) redirect rule. This and all future requests should be directed to the
375+
* target URL.
376+
* </p>
377+
* </dd>
378+
* <dt>302</dt>
379+
* <dd>
380+
* <p>
381+
* Represents a 302 temporary redirect rule.
382+
* </p>
383+
* </dd>
384+
* <dt>404</dt>
385+
* <dd>
386+
* <p>
387+
* Represents a 404 redirect rule.
388+
* </p>
389+
* </dd>
390+
* <dt>404-200</dt>
391+
* <dd>
392+
* <p>
393+
* Represents a 404 rewrite rule.
394+
* </p>
395+
* </dd>
168396
* @return Returns a reference to this object so that method calls can be chained together.
169397
*/
170398

aws-java-sdk-api-gateway/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-java-sdk-pom</artifactId>
8-
<version>1.11.868</version>
8+
<version>1.11.869</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-api-gateway</artifactId>

aws-java-sdk-apigatewaymanagementapi/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-java-sdk-pom</artifactId>
8-
<version>1.11.868</version>
8+
<version>1.11.869</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-apigatewaymanagementapi</artifactId>

aws-java-sdk-apigatewayv2/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-java-sdk-pom</artifactId>
8-
<version>1.11.868</version>
8+
<version>1.11.869</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-apigatewayv2</artifactId>

aws-java-sdk-appconfig/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-java-sdk-pom</artifactId>
8-
<version>1.11.868</version>
8+
<version>1.11.869</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-appconfig</artifactId>

aws-java-sdk-appflow/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-java-sdk-pom</artifactId>
8-
<version>1.11.868</version>
8+
<version>1.11.869</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-appflow</artifactId>

0 commit comments

Comments
 (0)