Skip to content

Commit c343f69

Browse files
author
AWS
committed
AWS SDK for Java 1.12.149
1 parent 2573de1 commit c343f69

File tree

433 files changed

+7984
-557
lines changed

Some content is hidden

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

433 files changed

+7984
-557
lines changed

CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
# __1.12.149__ __2022-01-27__
2+
## __AWS Amplify__
3+
- ### Features
4+
- Doc only update to the description of basicauthcredentials to describe the required encoding and format.
5+
6+
## __Amazon Connect Service__
7+
- ### Features
8+
- This release adds support for configuring a custom chat duration when starting a new chat session via the StartChatContact API. The default value for chat duration is 25 hours, minimum configurable value is 1 hour (60 minutes) and maximum configurable value is 7 days (10,080 minutes).
9+
10+
## __Amazon Elastic Compute Cloud__
11+
- ### Features
12+
- X2ezn instances are powered by Intel Cascade Lake CPUs that deliver turbo all core frequency of up to 4.5 GHz and up to 100 Gbps of networking bandwidth
13+
14+
## __Amazon OpenSearch Service__
15+
- ### Features
16+
- Allows customers to get progress updates for blue/green deployments
17+
18+
## __Managed Streaming for Kafka__
19+
- ### Features
20+
- Amazon MSK has updated the CreateCluster and UpdateBrokerStorage API that allows you to specify volume throughput during cluster creation and broker volume updates.
21+
122
# __1.12.148__ __2022-01-26__
223
## __AWS SecurityHub__
324
- ### Features

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ dependencies.
5151
<dependency>
5252
<groupId>com.amazonaws</groupId>
5353
<artifactId>aws-java-sdk-bom</artifactId>
54-
<version>1.12.148</version>
54+
<version>1.12.149</version>
5555
<type>pom</type>
5656
<scope>import</scope>
5757
</dependency>

aws-java-sdk-accessanalyzer/pom.xml

+1-1
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.12.149-SNAPSHOT</version>
8+
<version>1.12.149</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-accessanalyzer</artifactId>

aws-java-sdk-account/pom.xml

+1-1
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.12.149-SNAPSHOT</version>
8+
<version>1.12.149</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-account</artifactId>

aws-java-sdk-acm/pom.xml

+1-1
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.12.149-SNAPSHOT</version>
8+
<version>1.12.149</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-acm</artifactId>

aws-java-sdk-acmpca/pom.xml

+1-1
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.12.149-SNAPSHOT</version>
8+
<version>1.12.149</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-acmpca</artifactId>

aws-java-sdk-alexaforbusiness/pom.xml

+1-1
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.12.149-SNAPSHOT</version>
8+
<version>1.12.149</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-alexaforbusiness</artifactId>

aws-java-sdk-amplify/pom.xml

+1-1
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.12.149-SNAPSHOT</version>
8+
<version>1.12.149</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/App.java

+14-7
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,8 @@ public class App implements Serializable, Cloneable, StructuredPojo {
119119
private Boolean enableBasicAuth;
120120
/**
121121
* <p>
122-
* The basic authorization credentials for branches for the Amplify app.
122+
* The basic authorization credentials for branches for the Amplify app. You must base64-encode the authorization
123+
* credentials and provide them in the format <code>user:password</code>.
123124
* </p>
124125
*/
125126
private String basicAuthCredentials;
@@ -886,11 +887,13 @@ public Boolean isEnableBasicAuth() {
886887

887888
/**
888889
* <p>
889-
* The basic authorization credentials for branches for the Amplify app.
890+
* The basic authorization credentials for branches for the Amplify app. You must base64-encode the authorization
891+
* credentials and provide them in the format <code>user:password</code>.
890892
* </p>
891893
*
892894
* @param basicAuthCredentials
893-
* The basic authorization credentials for branches for the Amplify app.
895+
* The basic authorization credentials for branches for the Amplify app. You must base64-encode the
896+
* authorization credentials and provide them in the format <code>user:password</code>.
894897
*/
895898

896899
public void setBasicAuthCredentials(String basicAuthCredentials) {
@@ -899,10 +902,12 @@ public void setBasicAuthCredentials(String basicAuthCredentials) {
899902

900903
/**
901904
* <p>
902-
* The basic authorization credentials for branches for the Amplify app.
905+
* The basic authorization credentials for branches for the Amplify app. You must base64-encode the authorization
906+
* credentials and provide them in the format <code>user:password</code>.
903907
* </p>
904908
*
905-
* @return The basic authorization credentials for branches for the Amplify app.
909+
* @return The basic authorization credentials for branches for the Amplify app. You must base64-encode the
910+
* authorization credentials and provide them in the format <code>user:password</code>.
906911
*/
907912

908913
public String getBasicAuthCredentials() {
@@ -911,11 +916,13 @@ public String getBasicAuthCredentials() {
911916

912917
/**
913918
* <p>
914-
* The basic authorization credentials for branches for the Amplify app.
919+
* The basic authorization credentials for branches for the Amplify app. You must base64-encode the authorization
920+
* credentials and provide them in the format <code>user:password</code>.
915921
* </p>
916922
*
917923
* @param basicAuthCredentials
918-
* The basic authorization credentials for branches for the Amplify app.
924+
* The basic authorization credentials for branches for the Amplify app. You must base64-encode the
925+
* authorization credentials and provide them in the format <code>user:password</code>.
919926
* @return Returns a reference to this object so that method calls can be chained together.
920927
*/
921928

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

+14-7
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ public class AutoBranchCreationConfig implements Serializable, Cloneable, Struct
5454
private java.util.Map<String, String> environmentVariables;
5555
/**
5656
* <p>
57-
* The basic authorization credentials for the autocreated branch.
57+
* The basic authorization credentials for the autocreated branch. You must base64-encode the authorization
58+
* credentials and provide them in the format <code>user:password</code>.
5859
* </p>
5960
*/
6061
private String basicAuthCredentials;
@@ -315,11 +316,13 @@ public AutoBranchCreationConfig clearEnvironmentVariablesEntries() {
315316

316317
/**
317318
* <p>
318-
* The basic authorization credentials for the autocreated branch.
319+
* The basic authorization credentials for the autocreated branch. You must base64-encode the authorization
320+
* credentials and provide them in the format <code>user:password</code>.
319321
* </p>
320322
*
321323
* @param basicAuthCredentials
322-
* The basic authorization credentials for the autocreated branch.
324+
* The basic authorization credentials for the autocreated branch. You must base64-encode the authorization
325+
* credentials and provide them in the format <code>user:password</code>.
323326
*/
324327

325328
public void setBasicAuthCredentials(String basicAuthCredentials) {
@@ -328,10 +331,12 @@ public void setBasicAuthCredentials(String basicAuthCredentials) {
328331

329332
/**
330333
* <p>
331-
* The basic authorization credentials for the autocreated branch.
334+
* The basic authorization credentials for the autocreated branch. You must base64-encode the authorization
335+
* credentials and provide them in the format <code>user:password</code>.
332336
* </p>
333337
*
334-
* @return The basic authorization credentials for the autocreated branch.
338+
* @return The basic authorization credentials for the autocreated branch. You must base64-encode the authorization
339+
* credentials and provide them in the format <code>user:password</code>.
335340
*/
336341

337342
public String getBasicAuthCredentials() {
@@ -340,11 +345,13 @@ public String getBasicAuthCredentials() {
340345

341346
/**
342347
* <p>
343-
* The basic authorization credentials for the autocreated branch.
348+
* The basic authorization credentials for the autocreated branch. You must base64-encode the authorization
349+
* credentials and provide them in the format <code>user:password</code>.
344350
* </p>
345351
*
346352
* @param basicAuthCredentials
347-
* The basic authorization credentials for the autocreated branch.
353+
* The basic authorization credentials for the autocreated branch. You must base64-encode the authorization
354+
* credentials and provide them in the format <code>user:password</code>.
348355
* @return Returns a reference to this object so that method calls can be chained together.
349356
*/
350357

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

+14-7
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,8 @@ public class Branch implements Serializable, Cloneable, StructuredPojo {
143143
private String thumbnailUrl;
144144
/**
145145
* <p>
146-
* The basic authorization credentials for a branch of an Amplify app.
146+
* The basic authorization credentials for a branch of an Amplify app. You must base64-encode the authorization
147+
* credentials and provide them in the format <code>user:password</code>.
147148
* </p>
148149
*/
149150
private String basicAuthCredentials;
@@ -1107,11 +1108,13 @@ public Branch withThumbnailUrl(String thumbnailUrl) {
11071108

11081109
/**
11091110
* <p>
1110-
* The basic authorization credentials for a branch of an Amplify app.
1111+
* The basic authorization credentials for a branch of an Amplify app. You must base64-encode the authorization
1112+
* credentials and provide them in the format <code>user:password</code>.
11111113
* </p>
11121114
*
11131115
* @param basicAuthCredentials
1114-
* The basic authorization credentials for a branch of an Amplify app.
1116+
* The basic authorization credentials for a branch of an Amplify app. You must base64-encode the
1117+
* authorization credentials and provide them in the format <code>user:password</code>.
11151118
*/
11161119

11171120
public void setBasicAuthCredentials(String basicAuthCredentials) {
@@ -1120,10 +1123,12 @@ public void setBasicAuthCredentials(String basicAuthCredentials) {
11201123

11211124
/**
11221125
* <p>
1123-
* The basic authorization credentials for a branch of an Amplify app.
1126+
* The basic authorization credentials for a branch of an Amplify app. You must base64-encode the authorization
1127+
* credentials and provide them in the format <code>user:password</code>.
11241128
* </p>
11251129
*
1126-
* @return The basic authorization credentials for a branch of an Amplify app.
1130+
* @return The basic authorization credentials for a branch of an Amplify app. You must base64-encode the
1131+
* authorization credentials and provide them in the format <code>user:password</code>.
11271132
*/
11281133

11291134
public String getBasicAuthCredentials() {
@@ -1132,11 +1137,13 @@ public String getBasicAuthCredentials() {
11321137

11331138
/**
11341139
* <p>
1135-
* The basic authorization credentials for a branch of an Amplify app.
1140+
* The basic authorization credentials for a branch of an Amplify app. You must base64-encode the authorization
1141+
* credentials and provide them in the format <code>user:password</code>.
11361142
* </p>
11371143
*
11381144
* @param basicAuthCredentials
1139-
* The basic authorization credentials for a branch of an Amplify app.
1145+
* The basic authorization credentials for a branch of an Amplify app. You must base64-encode the
1146+
* authorization credentials and provide them in the format <code>user:password</code>.
11401147
* @return Returns a reference to this object so that method calls can be chained together.
11411148
*/
11421149

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

+14-7
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,8 @@ public class CreateAppRequest extends com.amazonaws.AmazonWebServiceRequest impl
9898
private Boolean enableBasicAuth;
9999
/**
100100
* <p>
101-
* The credentials for basic authorization for an Amplify app.
101+
* The credentials for basic authorization for an Amplify app. You must base64-encode the authorization credentials
102+
* and provide them in the format <code>user:password</code>.
102103
* </p>
103104
*/
104105
private String basicAuthCredentials;
@@ -688,11 +689,13 @@ public Boolean isEnableBasicAuth() {
688689

689690
/**
690691
* <p>
691-
* The credentials for basic authorization for an Amplify app.
692+
* The credentials for basic authorization for an Amplify app. You must base64-encode the authorization credentials
693+
* and provide them in the format <code>user:password</code>.
692694
* </p>
693695
*
694696
* @param basicAuthCredentials
695-
* The credentials for basic authorization for an Amplify app.
697+
* The credentials for basic authorization for an Amplify app. You must base64-encode the authorization
698+
* credentials and provide them in the format <code>user:password</code>.
696699
*/
697700

698701
public void setBasicAuthCredentials(String basicAuthCredentials) {
@@ -701,10 +704,12 @@ public void setBasicAuthCredentials(String basicAuthCredentials) {
701704

702705
/**
703706
* <p>
704-
* The credentials for basic authorization for an Amplify app.
707+
* The credentials for basic authorization for an Amplify app. You must base64-encode the authorization credentials
708+
* and provide them in the format <code>user:password</code>.
705709
* </p>
706710
*
707-
* @return The credentials for basic authorization for an Amplify app.
711+
* @return The credentials for basic authorization for an Amplify app. You must base64-encode the authorization
712+
* credentials and provide them in the format <code>user:password</code>.
708713
*/
709714

710715
public String getBasicAuthCredentials() {
@@ -713,11 +718,13 @@ public String getBasicAuthCredentials() {
713718

714719
/**
715720
* <p>
716-
* The credentials for basic authorization for an Amplify app.
721+
* The credentials for basic authorization for an Amplify app. You must base64-encode the authorization credentials
722+
* and provide them in the format <code>user:password</code>.
717723
* </p>
718724
*
719725
* @param basicAuthCredentials
720-
* The credentials for basic authorization for an Amplify app.
726+
* The credentials for basic authorization for an Amplify app. You must base64-encode the authorization
727+
* credentials and provide them in the format <code>user:password</code>.
721728
* @return Returns a reference to this object so that method calls can be chained together.
722729
*/
723730

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

+14-7
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,8 @@ public class CreateBranchRequest extends com.amazonaws.AmazonWebServiceRequest i
7878
private java.util.Map<String, String> environmentVariables;
7979
/**
8080
* <p>
81-
* The basic authorization credentials for the branch.
81+
* The basic authorization credentials for the branch. You must base64-encode the authorization credentials and
82+
* provide them in the format <code>user:password</code>.
8283
* </p>
8384
*/
8485
private String basicAuthCredentials;
@@ -535,11 +536,13 @@ public CreateBranchRequest clearEnvironmentVariablesEntries() {
535536

536537
/**
537538
* <p>
538-
* The basic authorization credentials for the branch.
539+
* The basic authorization credentials for the branch. You must base64-encode the authorization credentials and
540+
* provide them in the format <code>user:password</code>.
539541
* </p>
540542
*
541543
* @param basicAuthCredentials
542-
* The basic authorization credentials for the branch.
544+
* The basic authorization credentials for the branch. You must base64-encode the authorization credentials
545+
* and provide them in the format <code>user:password</code>.
543546
*/
544547

545548
public void setBasicAuthCredentials(String basicAuthCredentials) {
@@ -548,10 +551,12 @@ public void setBasicAuthCredentials(String basicAuthCredentials) {
548551

549552
/**
550553
* <p>
551-
* The basic authorization credentials for the branch.
554+
* The basic authorization credentials for the branch. You must base64-encode the authorization credentials and
555+
* provide them in the format <code>user:password</code>.
552556
* </p>
553557
*
554-
* @return The basic authorization credentials for the branch.
558+
* @return The basic authorization credentials for the branch. You must base64-encode the authorization credentials
559+
* and provide them in the format <code>user:password</code>.
555560
*/
556561

557562
public String getBasicAuthCredentials() {
@@ -560,11 +565,13 @@ public String getBasicAuthCredentials() {
560565

561566
/**
562567
* <p>
563-
* The basic authorization credentials for the branch.
568+
* The basic authorization credentials for the branch. You must base64-encode the authorization credentials and
569+
* provide them in the format <code>user:password</code>.
564570
* </p>
565571
*
566572
* @param basicAuthCredentials
567-
* The basic authorization credentials for the branch.
573+
* The basic authorization credentials for the branch. You must base64-encode the authorization credentials
574+
* and provide them in the format <code>user:password</code>.
568575
* @return Returns a reference to this object so that method calls can be chained together.
569576
*/
570577

0 commit comments

Comments
 (0)