Skip to content

Commit 159f8fe

Browse files
author
AWS
committed
AWS SDK for Java 1.11.787
1 parent 6ecd58e commit 159f8fe

File tree

814 files changed

+109013
-73022
lines changed

Some content is hidden

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

814 files changed

+109013
-73022
lines changed

CHANGELOG.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,45 @@
1+
# __1.11.787__ __2020-05-20__
2+
## __AWS App Mesh__
3+
- ### Features
4+
- List APIs for all resources now contain additional information: when a resource was created, last updated, and its current version number.
5+
6+
## __AWS Backup__
7+
- ### Features
8+
- This release allows customers to enable or disable AWS Backup support for an AWS resource type. This release also includes new APIs, update-region-settings and describe-region-settings, which can be used to opt in to a specific resource type. For all current AWS Backup customers, the default settings enable support for EBS, EC2, StorageGateway, EFS, DDB and RDS resource types.
9+
10+
## __AWS CodeDeploy__
11+
- ### Features
12+
- Amazon ECS customers using application and network load balancers can use CodeDeploy BlueGreen hook to invoke a CloudFormation stack update. With this update you can view CloudFormation deployment and target details via existing APIs and use your stack Id to list or delete all deployments associated with the stack.
13+
14+
## __AWS Elemental MediaLive__
15+
- ### Features
16+
- AWS Elemental MediaLive now supports the ability to ingest the content that is streaming from an AWS Elemental Link device: https://aws.amazon.com/medialive/features/link/. This release also adds support for SMPTE-2038 and input state waiters.
17+
18+
## __AWS SecurityHub__
19+
- ### Features
20+
- For findings related to controls, the finding information now includes the reason behind the current status of the control. A new field for the findings original severity allows finding providers to use the severity values from the system they use to assign severity.
21+
22+
## __Amazon Chime__
23+
- ### Features
24+
- Amazon Chime enterprise account administrators can now set custom retention policies on chat data in the Amazon Chime application.
25+
26+
## __Amazon Transcribe Streaming Service__
27+
- ### Features
28+
- This release adds support for vocabulary filtering in streaming with which you can filter unwanted words from the real-time transcription results. Visit https://docs.aws.amazon.com/transcribe/latest/dg/how-it-works.html to learn more.
29+
30+
## __Application Auto Scaling__
31+
- ### Features
32+
- Documentation updates for Application Auto Scaling
33+
134
# __1.11.786__ __2020-05-19__
235
## __AWS Health APIs and Notifications__
336
- ### Features
437
- Feature: Health: AWS Health added a new field to differentiate Public events from Account-Specific events in the API request and response. Visit https://docs.aws.amazon.com/health/latest/APIReference/API_Event.html to learn more.
538

39+
## __AWS SDK for Java__
40+
- ### Features
41+
- Added support for endpoint discovery in async client implementations for services that support endpoint discovery. This feature was already available for sync clients.
42+
643
## __Amazon Chime__
744
- ### Features
845
- You can now receive Voice Connector call events through SNS or SQS.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ dependencies.
4545
<dependency>
4646
<groupId>com.amazonaws</groupId>
4747
<artifactId>aws-java-sdk-bom</artifactId>
48-
<version>1.11.786</version>
48+
<version>1.11.787</version>
4949
<type>pom</type>
5050
<scope>import</scope>
5151
</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.787-SNAPSHOT</version>
8+
<version>1.11.787</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-accessanalyzer</artifactId>

aws-java-sdk-accessanalyzer/src/main/java/com/amazonaws/services/accessanalyzer/AWSAccessAnalyzerAsyncClient.java

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,19 @@ public static AWSAccessAnalyzerAsyncClientBuilder asyncBuilder() {
5757
* Object providing client parameters.
5858
*/
5959
AWSAccessAnalyzerAsyncClient(AwsAsyncClientParams asyncClientParams) {
60-
super(asyncClientParams);
60+
this(asyncClientParams, false);
61+
}
62+
63+
/**
64+
* Constructs a new asynchronous client to invoke service methods on Access Analyzer using the specified parameters.
65+
*
66+
* @param asyncClientParams
67+
* Object providing client parameters.
68+
* @param endpointDiscoveryEnabled
69+
* true will enable endpoint discovery if the service supports it.
70+
*/
71+
AWSAccessAnalyzerAsyncClient(AwsAsyncClientParams asyncClientParams, boolean endpointDiscoveryEnabled) {
72+
super(asyncClientParams, endpointDiscoveryEnabled);
6173
this.executorService = asyncClientParams.getExecutor();
6274
}
6375

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

aws-java-sdk-acm/src/main/java/com/amazonaws/services/certificatemanager/AWSCertificateManagerAsyncClient.java

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,19 @@ public static AWSCertificateManagerAsyncClientBuilder asyncBuilder() {
237237
* Object providing client parameters.
238238
*/
239239
AWSCertificateManagerAsyncClient(AwsAsyncClientParams asyncClientParams) {
240-
super(asyncClientParams);
240+
this(asyncClientParams, false);
241+
}
242+
243+
/**
244+
* Constructs a new asynchronous client to invoke service methods on ACM using the specified parameters.
245+
*
246+
* @param asyncClientParams
247+
* Object providing client parameters.
248+
* @param endpointDiscoveryEnabled
249+
* true will enable endpoint discovery if the service supports it.
250+
*/
251+
AWSCertificateManagerAsyncClient(AwsAsyncClientParams asyncClientParams, boolean endpointDiscoveryEnabled) {
252+
super(asyncClientParams, endpointDiscoveryEnabled);
241253
this.executorService = asyncClientParams.getExecutor();
242254
}
243255

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

aws-java-sdk-acmpca/src/main/java/com/amazonaws/services/acmpca/AWSACMPCAAsyncClient.java

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,19 @@ public static AWSACMPCAAsyncClientBuilder asyncBuilder() {
6262
* Object providing client parameters.
6363
*/
6464
AWSACMPCAAsyncClient(AwsAsyncClientParams asyncClientParams) {
65-
super(asyncClientParams);
65+
this(asyncClientParams, false);
66+
}
67+
68+
/**
69+
* Constructs a new asynchronous client to invoke service methods on ACM-PCA using the specified parameters.
70+
*
71+
* @param asyncClientParams
72+
* Object providing client parameters.
73+
* @param endpointDiscoveryEnabled
74+
* true will enable endpoint discovery if the service supports it.
75+
*/
76+
AWSACMPCAAsyncClient(AwsAsyncClientParams asyncClientParams, boolean endpointDiscoveryEnabled) {
77+
super(asyncClientParams, endpointDiscoveryEnabled);
6678
this.executorService = asyncClientParams.getExecutor();
6779
}
6880

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

aws-java-sdk-alexaforbusiness/src/main/java/com/amazonaws/services/alexaforbusiness/AmazonAlexaForBusinessAsyncClient.java

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,20 @@ public static AmazonAlexaForBusinessAsyncClientBuilder asyncBuilder() {
5555
* Object providing client parameters.
5656
*/
5757
AmazonAlexaForBusinessAsyncClient(AwsAsyncClientParams asyncClientParams) {
58-
super(asyncClientParams);
58+
this(asyncClientParams, false);
59+
}
60+
61+
/**
62+
* Constructs a new asynchronous client to invoke service methods on Alexa For Business using the specified
63+
* parameters.
64+
*
65+
* @param asyncClientParams
66+
* Object providing client parameters.
67+
* @param endpointDiscoveryEnabled
68+
* true will enable endpoint discovery if the service supports it.
69+
*/
70+
AmazonAlexaForBusinessAsyncClient(AwsAsyncClientParams asyncClientParams, boolean endpointDiscoveryEnabled) {
71+
super(asyncClientParams, endpointDiscoveryEnabled);
5972
this.executorService = asyncClientParams.getExecutor();
6073
}
6174

0 commit comments

Comments
 (0)