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

Lines changed: 21 additions & 0 deletions
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

Lines changed: 1 addition & 1 deletion
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

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.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

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.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

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.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

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.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

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.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

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.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

Lines changed: 14 additions & 7 deletions
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

Lines changed: 14 additions & 7 deletions
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

0 commit comments

Comments
 (0)