Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DynamoDB enhanced client: EnhancedDocument.getJson() produces invalid JSON #4156

Closed
twbecker opened this issue Jun 30, 2023 · 3 comments
Closed
Assignees
Labels
bug This issue is a bug. p2 This is a standard priority issue pending-release This issue will be fixed by an approved PR that hasn't been released yet.

Comments

@twbecker
Copy link

Describe the bug

EnhancedDocument.getJson() incorrectly produces json that has single quotes backslash-escaped. Such escapes are neither required nor legal in JSON.

Example:

        dynamoTable.putItem(EnhancedDocument.builder()
                .putString("pk", "partitionKey")
                .putJson("json", "{ \"aKey\": \"A value with 'single quotes'\" }")
                .build());

        String invalidJson = dynamoTable.getItem(Key.builder().partitionValue("partitionKey").build())
                .getJson("json");
        System.out.println(invalidJson);

Produces {"aKey":"A value with \'single quotes\'"}. Again this is not valid and any JSON parser will choke on it:

com.fasterxml.jackson.core.JsonParseException: Unrecognized character escape ''' (code 39)
 at [Source: (String)"{"aKey":"A value with \'single quotes\'"}"; line: 1, column: 25]

	at com.fasterxml.jackson.core.JsonParser._constructError(JsonParser.java:1840)
	at com.fasterxml.jackson.core.base.ParserMinimalBase._reportError(ParserMinimalBase.java:712)
...

Expected Behavior

I expect the getJson() method to produce valid JSON.

Current Behavior

See above, resulting JSON contains strings with invalid escape sequences (\').

Reproduction Steps

JUnit5 test, requires Jackson mapper and DynamoDbLocal:

import com.amazonaws.services.dynamodbv2.local.main.ServerRunner;
import com.amazonaws.services.dynamodbv2.local.server.DynamoDBProxyServer;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.ObjectMapper;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Test;
import software.amazon.awssdk.enhanced.dynamodb.*;
import software.amazon.awssdk.enhanced.dynamodb.document.EnhancedDocument;
import software.amazon.awssdk.services.dynamodb.DynamoDbClient;

import java.net.URI;

public class DeserializationBugTest {
    private static DynamoDbTable<EnhancedDocument> dynamoTable;

    @BeforeAll
    static void suiteSetUp() throws Exception {
        System.setProperty("sqlite4java.library.path", "target/native-libs");
        DynamoDBProxyServer dynamoServer = ServerRunner.createServerFromCommandLineArgs(new String[]{"-inMemory"});
        dynamoServer.start();

        DynamoDbEnhancedClient dynamoClient = DynamoDbEnhancedClient.builder()
                .dynamoDbClient(
                        DynamoDbClient.builder()
                                .endpointOverride(URI.create("http://localhost:8000"))
                                .build())
                .build();
        dynamoTable = dynamoClient
                .table("test-table", TableSchema.documentSchemaBuilder()
                        .addIndexPartitionKey(TableMetadata.primaryIndexName(), "pk", AttributeValueType.S)
                        .build());
        dynamoTable.createTable();
    }

    @Test
    void invalidJson() throws JsonProcessingException {
        dynamoTable.putItem(EnhancedDocument.builder()
                .putString("pk", "partitionKey")
                .putJson("json", "{ \"aKey\": \"A value with 'single quotes'\" }")
                .build());

        String invalidJson = dynamoTable.getItem(Key.builder().partitionValue("partitionKey").build())
                .getJson("json");
        System.out.println(invalidJson);
        new ObjectMapper().readTree(invalidJson);
    }
}

Possible Solution

If I understand correctly, single quotes do have to be escaped in DDB's internal JSON/map format, but those escapes should be removed when converting back to JSON.

Additional Information/Context

No response

AWS Java SDK version used

2.20.89

JDK version used

11.0.12

Operating System and version

Mac OS X 12.6.7

@twbecker twbecker added bug This issue is a bug. needs-triage This issue or PR still needs to be triaged. labels Jun 30, 2023
@twbecker twbecker changed the title EnhancedDocument.getJson() produces invalid JSON DynamoDB enhanced client: EnhancedDocument.getJson() produces invalid JSON Jun 30, 2023
@yasminetalby yasminetalby self-assigned this Jul 12, 2023
@yasminetalby yasminetalby added investigating This issue is being investigated and/or work is in progress to resolve the issue. and removed needs-triage This issue or PR still needs to be triaged. labels Aug 8, 2023
joviegas added a commit that referenced this issue Aug 9, 2023
…r EnhancedDocuments are no longer being escaped.
@joviegas
Copy link
Contributor

joviegas commented Aug 9, 2023

Thanks @twbecker for reporting this.
I verified this behavior with V1 and confirmed that Single quotes should not be escaped

    @Test
    void testValidJson() throws JsonProcessingException {

        Item putItem = new Item()
                .withString("myHashKey", "partitionKey1.x''")
                .withNumber("myRangeKey", 3)
                .withJSON("json", "{ \"aKey\": \"A value   with 'single quotes'\" }");

        AmazonDynamoDB client = AmazonDynamoDBClientBuilder.standard().withRegion(Regions.US_EAST_1).build();
        DynamoDB dynamoDB = new DynamoDB(client);

        Table  dynamoDBTable = dynamoDB.getTable("test_table");

        dynamoDBTable.putItem(putItem);

        Item item = dynamoDBTable.getItem("myHashKey", "partitionKey1.x''", "myRangeKey", 3);

        System.out.println(item.toJSON());
        new ObjectMapper().readTree(item.toJSON());

I have fixed the issue.
Appreciate the details mentioned in the issues, really helpful.

Thanks @yasminetalby for letting me know about this 👍

@yasminetalby yasminetalby added pending-release This issue will be fixed by an approved PR that hasn't been released yet. and removed investigating This issue is being investigated and/or work is in progress to resolve the issue. labels Aug 9, 2023
@debora-ito debora-ito added the p2 This is a standard priority issue label Aug 9, 2023
joviegas added a commit that referenced this issue Aug 9, 2023
…r EnhancedDocuments are no longer being escaped. (#4277)
davidh44 added a commit that referenced this issue Aug 11, 2023
* Amazon WorkSpaces Update: Fixed VolumeEncryptionKey descriptions

* Amazon Relational Database Service Update: Adds support for the DBSystemID parameter of CreateDBInstance to RDS Custom for Oracle.

* AWS Elemental MediaConvert Update: This release includes improvements to Preserve 444 handling, compatibility of HEVC sources without frame rates, and general improvements to MP4 outputs.

* AWS Glue Update: This release adds support for AWS Glue Crawler with Apache Hudi Tables, allowing Crawlers to discover Hudi Tables in S3 and register them in Glue Data Catalog for query engines to query against.

* Updated endpoints.json and partitions.json.

* Release 2.20.109. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.110-SNAPSHOT

* Amazon Chime SDK Media Pipelines Update: AWS Media Pipeline compositing enhancement and Media Insights Pipeline auto language identification.

* Amazon QuickSight Update: This release launches new Snapshot APIs for CSV and PDF exports, adds support for info icon for filters and parameters in Exploration APIs, adds modeled exception to the DeleteAccountCustomization API, and introduces AttributeAggregationFunction's ability to add UNIQUE_VALUE aggregation in tooltips.

* AWS Cost Explorer Service Update: This release introduces the new API 'GetSavingsPlanPurchaseRecommendationDetails', which retrieves the details for a Savings Plan recommendation. It also updates the existing API 'GetSavingsPlansPurchaseRecommendation' to include the recommendation detail ID.

* AWS Glue Update: Added support for Data Preparation Recipe node in Glue Studio jobs

* Amazon Elastic Compute Cloud Update: Add "disabled" enum value to SpotInstanceState.

* AWS CloudFormation Update: This release supports filtering by DRIFT_STATUS for existing API ListStackInstances and adds support for a new API ListStackInstanceResourceDrifts. Customers can now view resource drift information from their StackSet management accounts.

* AmazonApiGatewayV2 Update: Documentation updates for Amazon API Gateway.

* Updated endpoints.json and partitions.json.

* Release 2.20.110. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.111-SNAPSHOT

* Fixed bug in IAM policy builder where actions were being written instead of resources. (#4223)

Also fixed javadoc issue, where create() doesn't exist on the IAM client.

* Amazon DynamoDB Update: Documentation updates for DynamoDB

* Amazon Relational Database Service Update: This release adds support for monitoring storage optimization progress on the DescribeDBInstances API.

* AWS Lambda Update: Add Python 3.11 (python3.11) support to AWS Lambda

* AWS SecurityHub Update: Add support for CONTAINS and NOT_CONTAINS comparison operators for Automation Rules string filters and map filters

* AWS DataSync Update: AWS DataSync now supports Microsoft Azure Blob Storage locations.

* Amazon SageMaker Service Update: Mark ContentColumn and TargetLabelColumn as required Targets in TextClassificationJobConfig in CreateAutoMLJobV2API

* Amazon Connect Wisdom Service Update: This release added two new data types: AssistantIntegrationConfiguration, and SessionIntegrationConfiguration to support Wisdom integration with Amazon Connect Chat

* AWS Transfer Family Update: This release adds support for SFTP Connectors.

* AWSBillingConductor Update: Added support for Auto-Assocate Billing Groups for CreateBillingGroup, UpdateBillingGroup, and ListBillingGroups.

* Amazon Elastic Compute Cloud Update: This release adds an instance's peak and baseline network bandwidth as well as the memory sizes of an instance's inference accelerators to DescribeInstanceTypes.

* AWS Security Token Service Update: API updates for the AWS Security Token Service

* EMR Serverless Update: This release adds support for publishing application logs to CloudWatch.

* Amazon Connect Customer Profiles Update: Amazon Connect Customer Profiles now supports rule-based resolution to match and merge similar profiles into unified profiles, helping companies deliver faster and more personalized customer service by providing access to relevant customer information for agents and automated experiences.

* Release 2.20.111. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.112-SNAPSHOT

* Amazon HealthLake Update: Updating the HealthLake service documentation.

* Amazon Omics Update: The service is renaming as a part of AWS Health.

* Amazon Polly Update: Amazon Polly adds 1 new voice - Lisa (nl-BE)

* OpenSearch Service Serverless Update: This release adds new collection type VectorSearch.

* Amazon Managed Blockchain Query Update: Amazon Managed Blockchain (AMB) Query provides serverless access to standardized, multi-blockchain datasets with developer-friendly APIs.

* AWS Elemental MediaConvert Update: This release includes general updates to user documentation.

* Amazon Route 53 Update: Update that corrects the documents for received feedback.

* AWS Cloud Control API Update: Updates the documentation for CreateResource.

* AWS EntityResolution Update: AWS Entity Resolution can effectively match a source record from a customer relationship management (CRM) system with a source record from a marketing system containing campaign information.

* AWS Glue Update: Release Glue Studio Snowflake Connector Node for SDK/CLI

* Updated endpoints.json and partitions.json.

* Release 2.20.112. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.113-SNAPSHOT

* Amazon SageMaker Service Update: Expose ProfilerConfig attribute in SageMaker Search API response.

* Amazon Elastic Block Store Update: SDK and documentation updates for Amazon Elastic Block Store API

* Auto Scaling Update: This release updates validation for instance types used in the AllowedInstanceTypes and ExcludedInstanceTypes parameters of the InstanceRequirements property of a MixedInstancesPolicy.

* Amazon Elastic Compute Cloud Update: SDK and documentation updates for Amazon Elastic Block Store APIs

* Amazon Elastic Kubernetes Service Update: Add multiple customer error code to handle customer caused failure when managing EKS node groups

* Release 2.20.113. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.114-SNAPSHOT

* Cleanup unused imports/members (#4234)

* Amazon Simple Queue Service Update: Documentation changes related to SQS APIs.

* Release 2.20.114. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.115-SNAPSHOT

* Managed Streaming for Kafka Update: Amazon MSK has introduced new versions of ListClusterOperations and DescribeClusterOperation APIs. These v2 APIs provide information and insights into the ongoing operations of both MSK Provisioned and MSK Serverless clusters.

* Amazon CloudFront Update: Add a new JavaScript runtime version for CloudFront Functions.

* Amazon Pinpoint Update: Added support for sending push notifications using the FCM v1 API with json credentials. Amazon Pinpoint customers can now deliver messages to Android devices using both FCM v1 API and the legacy FCM/GCM API

* Amazon Connect Service Update: This release adds support for new number types.

* Amazon CloudWatch Application Insights Update: This release enable customer to add/remove/update more than one workload for a component

* AWS CloudFormation Update: This SDK release is for the feature launch of AWS CloudFormation RetainExceptOnCreate. It adds a new parameter retainExceptOnCreate in the following APIs: CreateStack, UpdateStack, RollbackStack, ExecuteChangeSet.

* Updated endpoints.json and partitions.json.

* Release 2.20.115. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.116-SNAPSHOT

* AWS Amplify UI Builder Update: Amplify Studio releases GraphQL support for codegen job action.

* Elastic Disaster Recovery Service Update: Add support for in-aws right sizing

* AWS CodeStar connections Update: New integration with the Gitlab provider type.

* AWS Clean Rooms Service Update: This release introduces custom SQL queries - an expanded set of SQL you can run. This release adds analysis templates, a new resource for storing pre-defined custom SQL queries ahead of time. This release also adds the Custom analysis rule, which lets you approve analysis templates for querying.

* Amazon Omics Update: Add CreationType filter for ListReadSets

* Inspector2 Update: This release adds 1 new API: BatchGetFindingDetails to retrieve enhanced vulnerability intelligence details for findings.

* Amazon Relational Database Service Update: This release adds support for Aurora MySQL local write forwarding, which allows for forwarding of write operations from reader DB instances to the writer DB instance.

* Amazon Lookout for Equipment Update: This release includes new import resource, model versioning and resource policy features.

* Amazon EventBridge Scheduler Update: This release introduces automatic deletion of schedules in EventBridge Scheduler. If configured, EventBridge Scheduler automatically deletes a schedule after the schedule has completed its last invocation.

* Amazon Route 53 Update: Amazon Route 53 now supports the Israel (Tel Aviv) Region (il-central-1) for latency records, geoproximity records, and private DNS for Amazon VPCs in that region.

* Auto Scaling Update: You can now configure an instance refresh to set its status to 'failed' when it detects that a specified CloudWatch alarm has gone into the ALARM state. You can also choose to roll back the instance refresh automatically when the alarm threshold is met.

* Updated endpoints.json and partitions.json.

* Release 2.20.116. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.117-SNAPSHOT

* Amazon SageMaker Service Update: Add Stairs TrafficPattern and FlatInvocations to RecommendationJobStoppingConditions

* AWS Batch Update: This release adds support for price capacity optimized allocation strategy for Spot Instances.

* Amazon CloudWatch Internet Monitor Update: This release adds a new feature for Amazon CloudWatch Internet Monitor that enables customers to set custom thresholds, for performance and availability drops, for impact limited to a single city-network to trigger creation of a health event.

* Amazon Relational Database Service Update: Added support for deleted clusters PiTR.

* AWS Database Migration Service Update: Adding new API describe-engine-versions which provides information about the lifecycle of a replication instance's version.

* AWS Elemental MediaLive Update: AWS Elemental Link devices now report their Availability Zone. Link devices now support the ability to change their Availability Zone.

* Amazon Polly Update: Amazon Polly adds new French Belgian voice - Isabelle. Isabelle is available as Neural voice only.

* Updated endpoints.json and partitions.json.

* Release 2.20.117. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.118-SNAPSHOT

* AWS Resilience Hub Update: Drift Detection capability added when applications policy has moved from a meet to breach state. Customers will be able to exclude operational recommendations and receive credit in their resilience score. Customers can now add ARH permissions to an existing or new role.

* Amazon Cognito Identity Provider Update: New feature that logs Cognito user pool error messages to CloudWatch logs.

* AWS Glue Update: This release includes additional Glue Streaming KAKFA SASL property types.

* Amazon SageMaker Service Update: SageMaker Inference Recommender introduces a new API GetScalingConfigurationRecommendation to recommend auto scaling policies based on completed Inference Recommender jobs.

* AWS Budgets Update: As part of CAE tagging integration we need to update our budget names regex filter to prevent customers from using "/action/" in their budget names.

* Updated endpoints.json and partitions.json.

* Release 2.20.118. Updated CHANGELOG.md, README.md and all pom.xml.

* Fixed an issue in ChecksumCalculatingAsyncRequestBody where the posit… (#4244)

* Fixed an issue in ChecksumCalculatingAsyncRequestBody where the position of the ByteBuffer was not honored.

* Fix checkstyle

* rename methods and variables

* Add javadocs

* Update to next snapshot version: 2.20.119-SNAPSHOT

* Add Expect 100-continue for UploadPartRequest (#4252)

* Add Expect 100-continue for UploadPartRequest

* Fix typo

* Bump crt to 0.24.0 (#4256)

* Amazon SageMaker Service Update: Amazon SageMaker now supports running training jobs on p5.48xlarge instance types.

* Amazon Elastic Compute Cloud Update: This release adds new parameter isPrimaryIPv6 to allow assigning an IPv6 address as a primary IPv6 address to a network interface which cannot be changed to give equivalent functionality available for network interfaces with primary IPv4 address.

* Auto Scaling Update: Documentation changes related to Amazon EC2 Auto Scaling APIs.

* AWS Database Migration Service Update: The release makes public API for DMS Schema Conversion feature.

* AWS Cloud9 Update: Updated the deprecation date for Amazon Linux. Doc only update.

* Release 2.20.119. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.120-SNAPSHOT

* AWS Certificate Manager Private Certificate Authority Update: Documentation correction for AWS Private CA

* Amazon Connect Service Update: Added a new API UpdateRoutingProfileAgentAvailabilityTimer to update agent availability timer of a routing profile.

* Amazon SageMaker Service Update: Including DataCaptureConfig key in the Amazon Sagemaker Search's transform job object

* AWS DataSync Update: Display cloud storage used capacity at a cluster level.

* Amazon EC2 Container Service Update: This is a documentation update to address various tickets.

* Updated endpoints.json and partitions.json.

* Release 2.20.120. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.121-SNAPSHOT

* Java based S3 Multipart Client (#4254)

* Implement multipart upload in Java-based S3 async client (#4052)

* Implement multipart upload in Java-based S3 async client
Co-authored-by: Matthew Miller <millem@amazon.com>

* Iterate SdkFields to convert requests (#4177)

* Iterate SdkFields to convert requests

* Fix flaky test

* Rename convertion utils class

* Fix null content length in SplittingPublisher (#4173)

* Implement multipart copy in Java-based S3 async client (#4189)

* Create split method in AsyncRequestBody to return SplittingPublisher (#4188)

* Create split method in AsyncRequestBody to return SplittingPublisher

* Fix Javadoc and build

* Add more tests with ByteArrayAsyncRequestBody (#4214)

* Handle null response metadata (#4215)

* Handle null response metadata

* Fix build

* Support streaming with unknown content length (#4226)

* Support uploading with unknown content length

* Refactoring

* Create a configuration class for SdkPublisher#split (#4236)

* S3 Multipart API implementation (#4235)

* Multipart API
fix merge conflicts

* getObject(...) throw UnsupportedOperationException

* Use user agent for all requests in MultipartS3Client

* MultipartS3AsyncClient javadoc + API_NAME private

* use `maximumMemoryUsageInBytes`

* fix problem with UserAgent, cleanup

* move contextParam keys to S3AsyncClientDecorator

* javadoc

* more javadoc

* Use 4x part size as default apiCallBufferSize

* Fix test

* Guard against re-subscription in SplittingPublisher (#4253)

* guard against re-subscription in SplittingPublisher

* fix checkstyle

* Error msg

* Fix a race condition where the third upload part request was sent before the second one (#4260)

---------

Co-authored-by: Zoe Wang <33073555+zoewangg@users.noreply.github.com>

* Amazon Interactive Video Service RealTime Update: Add QUOTA_EXCEEDED and PUBLISHER_NOT_FOUND to EventErrorCode for stage health events.

* Amazon Kinesis Video Streams Update: This release enables minimum of Images SamplingInterval to be as low as 200 milliseconds in Kinesis Video Stream Image feature.

* Amazon Rekognition Update: This release adds code snippets for Amazon Rekognition Custom Labels.

* Amazon Kinesis Video Streams Archived Media Update: This release enables minimum of Images SamplingInterval to be as low as 200 milliseconds in Kinesis Video Stream Image feature.

* Amazon Detective Update: Updated the email validation regex to be in line with the TLD name specifications.

* Updated endpoints.json and partitions.json.

* Release 2.20.121. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.122-SNAPSHOT

* Update to next snapshot version: 2.20.122-SNAPSHOT (#4275)

* Update to next snapshot version: 2.20.122-SNAPSHOT

* Revert previous version number

* AWS Service Catalog Update: Introduce support for HashiCorp Terraform Cloud in Service Catalog by addying TERRAFORM_CLOUD product type in CreateProduct and CreateProvisioningArtifact API.

* AWS Backup Update: This release introduces a new logically air-gapped vault (Preview) in AWS Backup that stores immutable backup copies, which are locked by default and isolated with encryption using AWS owned keys. Logically air-gapped vault (Preview) allows secure recovery of application data across accounts.

* Amazon ElastiCache Update: Added support for cluster mode in online migration and test migration API

* Updated endpoints.json and partitions.json.

* Release 2.20.122. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.123-SNAPSHOT

* Add default methods to AwsServiceClientConfiguration.Builder and SdkServiceClientConfiguration.Builder. (#4263)

This allows older client versions to still compile with newer runtime versions.

* Expose thresholdSizeInBytes in AWS CRT-based S3 client (#4282)

* AWS Global Accelerator Update: Documentation update for dualstack EC2 endpoint support

* Amazon FSx Update: For FSx for Lustre, add new data repository task type, RELEASE_DATA_FROM_FILESYSTEM, to release files that have been archived to S3. For FSx for Windows, enable support for configuring and updating SSD IOPS, and for updating storage type. For FSx for OpenZFS, add new deployment type, MULTI_AZ_1.

* Amazon Chime SDK Voice Update: Updating CreatePhoneNumberOrder, UpdatePhoneNumber and BatchUpdatePhoneNumbers APIs, adding phone number name

* Amazon GuardDuty Update: Added autoEnable ALL to UpdateOrganizationConfiguration and DescribeOrganizationConfiguration APIs.

* Amazon SageMaker Service Update: This release adds support for cross account access for SageMaker Model Cards through AWS RAM.

* Updated endpoints.json and partitions.json.

* Release 2.20.123. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.124-SNAPSHOT

* Fix immutableCopyOf bug (#4266)

* Set limit when cloning ByteBuffer

* Add changelog

* Add L-Applin and breader124 to the all-contributors hall (#4276)

* Fix for Issue [#4156](#4156) : Single quotes in toJson conversions for EnhancedDocuments are no longer being escaped. (#4277)

* Amazon Connect Service Update: This release adds APIs to provision agents that are global / available in multiple AWS regions and distribute them across these regions by percentage.

* AWS Secrets Manager Update: Add additional InvalidRequestException to list of possible exceptions for ListSecret.

* AWS CloudTrail Update: Documentation updates for CloudTrail.

* AWS Transfer Family Update: Documentation updates for AW Transfer Family

* Elastic Load Balancing Update: This release enables configuring security groups for Network Load Balancers

* Amazon Omics Update: This release adds instanceType to GetRunTask & ListRunTasks responses.

* Updated endpoints.json and partitions.json.

* Release 2.20.124. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.125-SNAPSHOT

* AmplifyBackend Update: Adds sensitive trait to required input shapes.

* AWS Config Update: Updated ResourceType enum with new resource types onboarded by AWS Config in July 2023.

* Amazon Elastic Compute Cloud Update: Amazon EC2 P5 instances, powered by the latest NVIDIA H100 Tensor Core GPUs, deliver the highest performance in EC2 for deep learning (DL) and HPC applications. M7i-flex and M7i instances are next-generation general purpose instances powered by custom 4th Generation Intel Xeon Scalable processors.

* Amazon Simple Email Service Update: Doc only updates to include: 1) Clarified which part of an email address where it's okay to have Punycode when it contains non-ASCII characters for the SendRawEmail action and other actions where this is applicable. 2) Updated S3Action description with new MB max bucket size from 30 to 40.

* Amazon Simple Workflow Service Update: This release adds new API parameters to override workflow task list for workflow executions.

* Amazon QuickSight Update: New Authentication method for Account subscription - IAM Identity Center. Hierarchy layout support, default column width support and related style properties for pivot table visuals. Non-additive topic field aggregations for Topic API

* Updated endpoints.json and partitions.json.

* Release 2.20.125. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.126-SNAPSHOT

---------

Co-authored-by: AWS <>
Co-authored-by: aws-sdk-java-automation <43143862+aws-sdk-java-automation@users.noreply.github.com>
Co-authored-by: Matthew Miller <millem@amazon.com>
Co-authored-by: Dongie Agnir <261310+dagnir@users.noreply.github.com>
Co-authored-by: Zoe Wang <33073555+zoewangg@users.noreply.github.com>
Co-authored-by: Olivier L Applin <olapplin@amazon.com>
Co-authored-by: Debora N. Ito <476307+debora-ito@users.noreply.github.com>
Co-authored-by: John Viegas <70235430+joviegas@users.noreply.github.com>
@github-actions
Copy link

⚠️COMMENT VISIBILITY WARNING⚠️

Comments on closed issues are hard for our team to see.
If you need more assistance, please open a new issue that references this one.
If you wish to keep having a conversation with other community members under this issue feel free to do so.

davidh44 added a commit that referenced this issue Aug 30, 2023
* Amazon Elastic Kubernetes Service Update: Add multiple customer error code to handle customer caused failure when managing EKS node groups

* Release 2.20.113. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.114-SNAPSHOT

* Cleanup unused imports/members (#4234)

* Amazon Simple Queue Service Update: Documentation changes related to SQS APIs.

* Release 2.20.114. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.115-SNAPSHOT

* Managed Streaming for Kafka Update: Amazon MSK has introduced new versions of ListClusterOperations and DescribeClusterOperation APIs. These v2 APIs provide information and insights into the ongoing operations of both MSK Provisioned and MSK Serverless clusters.

* Amazon CloudFront Update: Add a new JavaScript runtime version for CloudFront Functions.

* Amazon Pinpoint Update: Added support for sending push notifications using the FCM v1 API with json credentials. Amazon Pinpoint customers can now deliver messages to Android devices using both FCM v1 API and the legacy FCM/GCM API

* Amazon Connect Service Update: This release adds support for new number types.

* Amazon CloudWatch Application Insights Update: This release enable customer to add/remove/update more than one workload for a component

* AWS CloudFormation Update: This SDK release is for the feature launch of AWS CloudFormation RetainExceptOnCreate. It adds a new parameter retainExceptOnCreate in the following APIs: CreateStack, UpdateStack, RollbackStack, ExecuteChangeSet.

* Updated endpoints.json and partitions.json.

* Release 2.20.115. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.116-SNAPSHOT

* AWS Amplify UI Builder Update: Amplify Studio releases GraphQL support for codegen job action.

* Elastic Disaster Recovery Service Update: Add support for in-aws right sizing

* AWS CodeStar connections Update: New integration with the Gitlab provider type.

* AWS Clean Rooms Service Update: This release introduces custom SQL queries - an expanded set of SQL you can run. This release adds analysis templates, a new resource for storing pre-defined custom SQL queries ahead of time. This release also adds the Custom analysis rule, which lets you approve analysis templates for querying.

* Amazon Omics Update: Add CreationType filter for ListReadSets

* Inspector2 Update: This release adds 1 new API: BatchGetFindingDetails to retrieve enhanced vulnerability intelligence details for findings.

* Amazon Relational Database Service Update: This release adds support for Aurora MySQL local write forwarding, which allows for forwarding of write operations from reader DB instances to the writer DB instance.

* Amazon Lookout for Equipment Update: This release includes new import resource, model versioning and resource policy features.

* Amazon EventBridge Scheduler Update: This release introduces automatic deletion of schedules in EventBridge Scheduler. If configured, EventBridge Scheduler automatically deletes a schedule after the schedule has completed its last invocation.

* Amazon Route 53 Update: Amazon Route 53 now supports the Israel (Tel Aviv) Region (il-central-1) for latency records, geoproximity records, and private DNS for Amazon VPCs in that region.

* Auto Scaling Update: You can now configure an instance refresh to set its status to 'failed' when it detects that a specified CloudWatch alarm has gone into the ALARM state. You can also choose to roll back the instance refresh automatically when the alarm threshold is met.

* Updated endpoints.json and partitions.json.

* Release 2.20.116. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.117-SNAPSHOT

* Amazon SageMaker Service Update: Add Stairs TrafficPattern and FlatInvocations to RecommendationJobStoppingConditions

* AWS Batch Update: This release adds support for price capacity optimized allocation strategy for Spot Instances.

* Amazon CloudWatch Internet Monitor Update: This release adds a new feature for Amazon CloudWatch Internet Monitor that enables customers to set custom thresholds, for performance and availability drops, for impact limited to a single city-network to trigger creation of a health event.

* Amazon Relational Database Service Update: Added support for deleted clusters PiTR.

* AWS Database Migration Service Update: Adding new API describe-engine-versions which provides information about the lifecycle of a replication instance's version.

* AWS Elemental MediaLive Update: AWS Elemental Link devices now report their Availability Zone. Link devices now support the ability to change their Availability Zone.

* Amazon Polly Update: Amazon Polly adds new French Belgian voice - Isabelle. Isabelle is available as Neural voice only.

* Updated endpoints.json and partitions.json.

* Release 2.20.117. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.118-SNAPSHOT

* AWS Resilience Hub Update: Drift Detection capability added when applications policy has moved from a meet to breach state. Customers will be able to exclude operational recommendations and receive credit in their resilience score. Customers can now add ARH permissions to an existing or new role.

* Amazon Cognito Identity Provider Update: New feature that logs Cognito user pool error messages to CloudWatch logs.

* AWS Glue Update: This release includes additional Glue Streaming KAKFA SASL property types.

* Amazon SageMaker Service Update: SageMaker Inference Recommender introduces a new API GetScalingConfigurationRecommendation to recommend auto scaling policies based on completed Inference Recommender jobs.

* AWS Budgets Update: As part of CAE tagging integration we need to update our budget names regex filter to prevent customers from using "/action/" in their budget names.

* Updated endpoints.json and partitions.json.

* Release 2.20.118. Updated CHANGELOG.md, README.md and all pom.xml.

* Fixed an issue in ChecksumCalculatingAsyncRequestBody where the posit… (#4244)

* Fixed an issue in ChecksumCalculatingAsyncRequestBody where the position of the ByteBuffer was not honored.

* Fix checkstyle

* rename methods and variables

* Add javadocs

* Update to next snapshot version: 2.20.119-SNAPSHOT

* Add Expect 100-continue for UploadPartRequest (#4252)

* Add Expect 100-continue for UploadPartRequest

* Fix typo

* Bump crt to 0.24.0 (#4256)

* Amazon SageMaker Service Update: Amazon SageMaker now supports running training jobs on p5.48xlarge instance types.

* Amazon Elastic Compute Cloud Update: This release adds new parameter isPrimaryIPv6 to allow assigning an IPv6 address as a primary IPv6 address to a network interface which cannot be changed to give equivalent functionality available for network interfaces with primary IPv4 address.

* Auto Scaling Update: Documentation changes related to Amazon EC2 Auto Scaling APIs.

* AWS Database Migration Service Update: The release makes public API for DMS Schema Conversion feature.

* AWS Cloud9 Update: Updated the deprecation date for Amazon Linux. Doc only update.

* Release 2.20.119. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.120-SNAPSHOT

* AWS Certificate Manager Private Certificate Authority Update: Documentation correction for AWS Private CA

* Amazon Connect Service Update: Added a new API UpdateRoutingProfileAgentAvailabilityTimer to update agent availability timer of a routing profile.

* Amazon SageMaker Service Update: Including DataCaptureConfig key in the Amazon Sagemaker Search's transform job object

* AWS DataSync Update: Display cloud storage used capacity at a cluster level.

* Amazon EC2 Container Service Update: This is a documentation update to address various tickets.

* Updated endpoints.json and partitions.json.

* Release 2.20.120. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.121-SNAPSHOT

* Java based S3 Multipart Client (#4254)

* Implement multipart upload in Java-based S3 async client (#4052)

* Implement multipart upload in Java-based S3 async client
Co-authored-by: Matthew Miller <millem@amazon.com>

* Iterate SdkFields to convert requests (#4177)

* Iterate SdkFields to convert requests

* Fix flaky test

* Rename convertion utils class

* Fix null content length in SplittingPublisher (#4173)

* Implement multipart copy in Java-based S3 async client (#4189)

* Create split method in AsyncRequestBody to return SplittingPublisher (#4188)

* Create split method in AsyncRequestBody to return SplittingPublisher

* Fix Javadoc and build

* Add more tests with ByteArrayAsyncRequestBody (#4214)

* Handle null response metadata (#4215)

* Handle null response metadata

* Fix build

* Support streaming with unknown content length (#4226)

* Support uploading with unknown content length

* Refactoring

* Create a configuration class for SdkPublisher#split (#4236)

* S3 Multipart API implementation (#4235)

* Multipart API
fix merge conflicts

* getObject(...) throw UnsupportedOperationException

* Use user agent for all requests in MultipartS3Client

* MultipartS3AsyncClient javadoc + API_NAME private

* use `maximumMemoryUsageInBytes`

* fix problem with UserAgent, cleanup

* move contextParam keys to S3AsyncClientDecorator

* javadoc

* more javadoc

* Use 4x part size as default apiCallBufferSize

* Fix test

* Guard against re-subscription in SplittingPublisher (#4253)

* guard against re-subscription in SplittingPublisher

* fix checkstyle

* Error msg

* Fix a race condition where the third upload part request was sent before the second one (#4260)

---------

Co-authored-by: Zoe Wang <33073555+zoewangg@users.noreply.github.com>

* Amazon Interactive Video Service RealTime Update: Add QUOTA_EXCEEDED and PUBLISHER_NOT_FOUND to EventErrorCode for stage health events.

* Amazon Kinesis Video Streams Update: This release enables minimum of Images SamplingInterval to be as low as 200 milliseconds in Kinesis Video Stream Image feature.

* Amazon Rekognition Update: This release adds code snippets for Amazon Rekognition Custom Labels.

* Amazon Kinesis Video Streams Archived Media Update: This release enables minimum of Images SamplingInterval to be as low as 200 milliseconds in Kinesis Video Stream Image feature.

* Amazon Detective Update: Updated the email validation regex to be in line with the TLD name specifications.

* Updated endpoints.json and partitions.json.

* Release 2.20.121. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.122-SNAPSHOT

* Update to next snapshot version: 2.20.122-SNAPSHOT (#4275)

* Update to next snapshot version: 2.20.122-SNAPSHOT

* Revert previous version number

* AWS Service Catalog Update: Introduce support for HashiCorp Terraform Cloud in Service Catalog by addying TERRAFORM_CLOUD product type in CreateProduct and CreateProvisioningArtifact API.

* AWS Backup Update: This release introduces a new logically air-gapped vault (Preview) in AWS Backup that stores immutable backup copies, which are locked by default and isolated with encryption using AWS owned keys. Logically air-gapped vault (Preview) allows secure recovery of application data across accounts.

* Amazon ElastiCache Update: Added support for cluster mode in online migration and test migration API

* Updated endpoints.json and partitions.json.

* Release 2.20.122. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.123-SNAPSHOT

* Add default methods to AwsServiceClientConfiguration.Builder and SdkServiceClientConfiguration.Builder. (#4263)

This allows older client versions to still compile with newer runtime versions.

* Expose thresholdSizeInBytes in AWS CRT-based S3 client (#4282)

* AWS Global Accelerator Update: Documentation update for dualstack EC2 endpoint support

* Amazon FSx Update: For FSx for Lustre, add new data repository task type, RELEASE_DATA_FROM_FILESYSTEM, to release files that have been archived to S3. For FSx for Windows, enable support for configuring and updating SSD IOPS, and for updating storage type. For FSx for OpenZFS, add new deployment type, MULTI_AZ_1.

* Amazon Chime SDK Voice Update: Updating CreatePhoneNumberOrder, UpdatePhoneNumber and BatchUpdatePhoneNumbers APIs, adding phone number name

* Amazon GuardDuty Update: Added autoEnable ALL to UpdateOrganizationConfiguration and DescribeOrganizationConfiguration APIs.

* Amazon SageMaker Service Update: This release adds support for cross account access for SageMaker Model Cards through AWS RAM.

* Updated endpoints.json and partitions.json.

* Release 2.20.123. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.124-SNAPSHOT

* Fix immutableCopyOf bug (#4266)

* Set limit when cloning ByteBuffer

* Add changelog

* Add L-Applin and breader124 to the all-contributors hall (#4276)

* Fix for Issue [#4156](#4156) : Single quotes in toJson conversions for EnhancedDocuments are no longer being escaped. (#4277)

* Amazon Connect Service Update: This release adds APIs to provision agents that are global / available in multiple AWS regions and distribute them across these regions by percentage.

* AWS Secrets Manager Update: Add additional InvalidRequestException to list of possible exceptions for ListSecret.

* AWS CloudTrail Update: Documentation updates for CloudTrail.

* AWS Transfer Family Update: Documentation updates for AW Transfer Family

* Elastic Load Balancing Update: This release enables configuring security groups for Network Load Balancers

* Amazon Omics Update: This release adds instanceType to GetRunTask & ListRunTasks responses.

* Updated endpoints.json and partitions.json.

* Release 2.20.124. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.125-SNAPSHOT

* AmplifyBackend Update: Adds sensitive trait to required input shapes.

* AWS Config Update: Updated ResourceType enum with new resource types onboarded by AWS Config in July 2023.

* Amazon Elastic Compute Cloud Update: Amazon EC2 P5 instances, powered by the latest NVIDIA H100 Tensor Core GPUs, deliver the highest performance in EC2 for deep learning (DL) and HPC applications. M7i-flex and M7i instances are next-generation general purpose instances powered by custom 4th Generation Intel Xeon Scalable processors.

* Amazon Simple Email Service Update: Doc only updates to include: 1) Clarified which part of an email address where it's okay to have Punycode when it contains non-ASCII characters for the SendRawEmail action and other actions where this is applicable. 2) Updated S3Action description with new MB max bucket size from 30 to 40.

* Amazon Simple Workflow Service Update: This release adds new API parameters to override workflow task list for workflow executions.

* Amazon QuickSight Update: New Authentication method for Account subscription - IAM Identity Center. Hierarchy layout support, default column width support and related style properties for pivot table visuals. Non-additive topic field aggregations for Topic API

* Updated endpoints.json and partitions.json.

* Release 2.20.125. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.126-SNAPSHOT

* AWS Elemental MediaPackage Update: Fix SDK logging of certain fields.

* Amazon Omics Update: This release provides support for annotation store versioning and cross account sharing for Omics Analytics

* AWS Transfer Family Update: Documentation updates for AWS Transfer Family

* Updated endpoints.json and partitions.json.

* Release 2.20.126. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.127-SNAPSHOT

* S3 Benchmarks - support java-based multipart client (#4288)

S3 Benchmarks - support java-based multipart client

* Amazon Route 53 Domains Update: Provide explanation if CheckDomainTransferability return false. Provide requestId if a request is already submitted. Add sensitive protection for customer information

* AWS Glue Update: AWS Glue Crawlers can now accept SerDe overrides from a custom csv classifier. The two SerDe options are LazySimpleSerDe and OpenCSVSerDe. In case, the user wants crawler to do the selection, "None" can be selected for this purpose.

* Amazon SageMaker Service Update: SageMaker Inference Recommender now provides SupportedResponseMIMETypes from DescribeInferenceRecommendationsJob response

* AWS Performance Insights Update: AWS Performance Insights for Amazon RDS is launching Performance Analysis On Demand, a new feature that allows you to analyze database performance metrics and find out the performance issues. You can now use SDK to create, list, get, delete, and manage tags of performance analysis reports.

* Amazon Elastic Compute Cloud Update: Documentation updates for Elastic Compute Cloud (EC2).

* Amazon Chime SDK Meetings Update: Updated API documentation to include additional exceptions.

* Updated endpoints.json and partitions.json.

* Release 2.20.127. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.128-SNAPSHOT

* Fixed the issue where thresholdInBytes is not the same as minimalPart… (#4289)

* Fixed the issue where thresholdInBytes is not the same as minimalPartSizeInBytes if a custom minimalPartSizeInBytes is provided.

* Address feedback

* Add more test

* Update LaunchChangelog.md to add IAM Policy Builder (#4301)

* Add SERVICE_ENDPOINT metric (#4307)

* Implement SERVICE_ENDPOINT core metric

* Create CollectionStages for SERVICE_ENDPOINT

* Remove erviceEndpointMetricCollectionStages since they're unnecessary

* Move collection of SERVICE_ENDPOINT metric

Simplify by collecting in the API Call metric collection stages where other
request metrics are already being collected.

* Remove unused import

* Update changelog entry

* Fix test

* Remove unused class

---------

Co-authored-by: David Negrete <davidfn@amazon.com>

* Amazon CloudWatch Update: Doc-only update to incorporate several doc bug fixes

* Amazon Lex Model Building V2 Update: This release updates the Custom Vocabulary Weight field to support a value of 0.

* Release 2.20.128. Updated CHANGELOG.md, README.md and all pom.xml.

* Ensure onNext will be called even if publishing empty content and onC… (#4290)

* Ensure onNext will be called even if publishing empty content and onComplete is called directly

* Adding changelog and removing unnecessary override

* Update to next snapshot version: 2.20.129-SNAPSHOT

* Fix javadocs links - consumer request objects (#4310)

* Fix javadocs links - consumer request objects

* Use getShapeName instead of getC2jName

* Use fully qualified name

* Update codegen test classes

* changing terminology to more inclusive terms (#4115)

* Amazon Elastic Compute Cloud Update: Adds support for SubnetConfigurations to allow users to select their own IPv4 and IPv6 addresses for Interface VPC endpoints

* Amazon GameLift Update: Amazon GameLift updates its instance types support.

* Updated endpoints.json and partitions.json.

* Release 2.20.129. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.130-SNAPSHOT

* AWS SecurityHub Update: Added Inspector Lambda code Vulnerability section to ASFF, including GeneratorDetails, EpssScore, ExploitAvailable, and CodeVulnerabilities.

* AWS CodeCommit Update: Add new ListFileCommitHistory operation to retrieve commits which introduced changes to a specific file.

* Updated endpoints.json and partitions.json.

* Release 2.20.130. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.131-SNAPSHOT

* AWS Cloud9 Update: Doc only update to add Ubuntu 22.04 as an Image ID option for Cloud9

* Amazon Route 53 Domains Update: Fixed typos in description fields

* Amazon Elastic Compute Cloud Update: The DeleteKeyPair API has been updated to return the keyPairId when an existing key pair is deleted.

* Amazon Relational Database Service Update: Adding support for RDS Aurora Global Database Unplanned Failover

* FinSpace User Environment Management service Update: Allow customers to manage outbound traffic from their Kx Environment when attaching a transit gateway by providing network acl entries. Allow the customer to choose how they want to update the databases on a cluster allowing updates to possibly be faster than usual.

* Updated endpoints.json and partitions.json.

* Release 2.20.131. Updated CHANGELOG.md, README.md and all pom.xml.

* Corrected a minor JavaDoc typo in the DynamoDbBean class. (#4325)

* Remove unused address interceptor (#4316)

* Bump reactive-streams from 1.0.3 to 1.0.4 (#4322)

Signed-off-by: Chad Wilson <chadw@thoughtworks.com>

* Update to next snapshot version: 2.20.132-SNAPSHOT

* Modify ArnResource to handle more variants of resources (#4317)

* Changes default behavior for DynamoDb Enhanced atomic counter extension (#4314)

* Changes the default behavior for DynamoDb Enhanced atomic counter extension to filter out any counter attributes in the item map if present

* docs: add chadlwilson as a contributor for code (#4330)

* docs: update README.md [skip ci]

* docs: update .all-contributorsrc [skip ci]

---------

Co-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com>

* Amazon Verified Permissions Update: Documentation updates for Amazon Verified Permissions. Increases max results per page for ListPolicyStores, ListPolicies, and ListPolicyTemplates APIs from 20 to 50.

* AWS Cost Explorer Service Update: This release adds the LastUpdatedDate and LastUsedDate timestamps to help you manage your cost allocation tags.

* Amazon Relational Database Service Update: Adding parameters to CreateCustomDbEngineVersion reserved for future use.

* AWS Global Accelerator Update: Global Accelerator now supports Client Ip Preservation for Network Load Balancer endpoints.

* Updated endpoints.json and partitions.json.

* Release 2.20.132. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.133-SNAPSHOT

* Amazon API Gateway Update: This release adds RootResourceId to GetRestApi response.

* Amazon Polly Update: Amazon Polly adds 1 new voice - Zayd (ar-AE)

* Amazon Elastic Compute Cloud Update: Marking fields as sensitive on BundleTask and GetPasswordData

* Updated endpoints.json and partitions.json.

* Release 2.20.133. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.134-SNAPSHOT

* Add support for presigned DeleteObject (#4313)

* Add support for presigned DeleteObject

* Review comments

 - Add proper annotations
 - Add equals and hashCode

* Add auth-crt to bom (#4338)

* AWS Elemental MediaLive Update: MediaLive now supports passthrough of KLV data to a HLS output group with a TS container. MediaLive now supports setting an attenuation mode for AC3 audio when the coding mode is 3/2 LFE. MediaLive now supports specifying whether to include filler NAL units in RTMP output group settings.

* Amazon Relational Database Service Update: This release updates the supported versions for Percona XtraBackup in Aurora MySQL.

* AWS MediaTailor Update: Adds new source location AUTODETECT_SIGV4 access type.

* Amazon QuickSight Update: Excel support in Snapshot Export APIs. Removed Required trait for some insight Computations. Namespace-shared Folders support. Global Filters support. Table pin Column support.

* AWS S3 Control Update: Updates to endpoint ruleset tests to address Smithy validation issues and standardize the capitalization of DualStack.

* AWS Elemental MediaConvert Update: This release includes additional audio channel tags in Quicktime outputs, support for film grain synthesis for AV1 outputs, ability to create audio-only FLAC outputs, and ability to specify Amazon S3 destination storage class.

* Amazon Simple Storage Service Update: Updates to endpoint ruleset tests to address Smithy validation issues.

* AWS Glue Update: Added API attributes that help in the monitoring of sessions.

* Amazon Verified Permissions Update: Documentation updates for Amazon Verified Permissions.

* Amazon Elastic Compute Cloud Update: Amazon EC2 M7a instances, powered by 4th generation AMD EPYC processors, deliver up to 50% higher performance compared to M6a instances. Amazon EC2 Hpc7a instances, powered by 4th Gen AMD EPYC processors, deliver up to 2.5x better performance compared to Amazon EC2 Hpc6a instances.

* Updated endpoints.json and partitions.json.

* Release 2.20.134. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.135-SNAPSHOT

* fix IamPolicy code example docs. (#4324)

Co-authored-by: Debora N. Ito <476307+debora-ito@users.noreply.github.com>

* Add option to output all results to disk (#4344)

* docs: add ManishDait as a contributor for doc (#4343)

* docs: update README.md [skip ci]

* docs: update .all-contributorsrc [skip ci]

---------

Co-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com>

* Amazon Detective Update: Added protections to interacting with fields containing customer information.

* AWS CloudTrail Update: Add ThrottlingException with error code 429 to handle CloudTrail Delegated Admin request rate exceeded on organization resources.

* Amazon CloudWatch Update: Doc-only update to get doc bug fixes into the SDK docs

* Updated endpoints.json and partitions.json.

* Release 2.20.135. Updated CHANGELOG.md, README.md and all pom.xml.

* Revert "Modify ArnResource to handle more variants of resources (#4317)"

This reverts commit 0a37e9f.

* Update to next snapshot version: 2.20.136-SNAPSHOT

* Revert "Modify ArnResource to handle more variants of resources (#4317)" (#4349)

This reverts commit 0a37e9f.

* Use zoned date time in benchmark params (#4351)

This is useful when the results are processed across different systems.

* AWS Organizations Update: Documentation updates for permissions and links.

* AWS Backup Update: Add support for customizing time zone for backup window in backup plan rules.

* Amazon WorkSpaces Web Update: WorkSpaces Web now enables Admins to configure which cookies are synchronized from an end-user's local browser to the in-session browser. In conjunction with a browser extension, this feature enables enhanced Single-Sign On capability by reducing the number of times an end-user has to authenticate.

* Service Quotas Update: Service Quotas now supports viewing the applied quota value and requesting a quota increase for a specific resource in an AWS account.

* AWS Compute Optimizer Update: This release enables AWS Compute Optimizer to analyze and generate licensing optimization recommendations for sql server running on EC2 instances.

* Amazon Security Lake Update: Remove incorrect regex enforcement on pagination tokens.

* Updated endpoints.json and partitions.json.

* Release 2.20.136. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.137-SNAPSHOT

* Optimize file uploads by reading from file in parallel (#4331)

* Optimize file upload by reading from file in different offsets in parallel

* Override split in FileAsyncRequestBody

* Address feedback and fix the issue where doAfterOnComplete is invoked

* address feedback

* Fix issue reported by sonarcloud

* Upgrade jacoco to 0.8.10 (#4360)

* Upgrade jacoco to 0.8.10

* Fix test coverage reporting with java 17

* Amazon Simple Email Service Update: Adds support for the new Export and Message Insights features: create, get, list and cancel export jobs; get message insights.

* Amazon Omics Update: Add RetentionMode support for Runs.

* Amazon Cognito Identity Provider Update: Added API example requests and responses for several operations. Fixed the validation regex for user pools Identity Provider name.

* Amazon FSx Update: Documentation updates for project quotas.

* Release 2.20.137. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.138-SNAPSHOT

---------

Signed-off-by: Chad Wilson <chadw@thoughtworks.com>
Co-authored-by: AWS <>
Co-authored-by: aws-sdk-java-automation <43143862+aws-sdk-java-automation@users.noreply.github.com>
Co-authored-by: Dongie Agnir <261310+dagnir@users.noreply.github.com>
Co-authored-by: Zoe Wang <33073555+zoewangg@users.noreply.github.com>
Co-authored-by: Olivier L Applin <olapplin@amazon.com>
Co-authored-by: Matthew Miller <millem@amazon.com>
Co-authored-by: Debora N. Ito <476307+debora-ito@users.noreply.github.com>
Co-authored-by: John Viegas <70235430+joviegas@users.noreply.github.com>
Co-authored-by: David Negrete <davidfn@amazon.com>
Co-authored-by: Anna-Karin Salander <salande@amazon.com>
Co-authored-by: Chad Wilson <chadw@thoughtworks.com>
Co-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com>
Co-authored-by: Manish Dait <90558243+ManishDait@users.noreply.github.com>
davidh44 added a commit that referenced this issue Aug 30, 2023
* Adding codegen updates and configuration options (#4085)

* Adding configuration options

* Adding codegen updates

* Adding javadocs

* Fix CheckStyle/SpotBugs errors, and add RequestCompression interceptor trait and SdkInternalExecutionAttribute

* RequestCompression interceptor trait

* Refactoring, adding profile config and javadocs

* Refactoring and add codegen tests

* Add codegen tests

* Update code generated test classes

* Request compression - nonstreaming operations

* Throw codegen error for streaming operations with request compression

* Throw codegen error for S3 operations with request compression

* Changelog entry

* Refactoring

* Refactoring

* Move interceptor trait to internal module

* Update javadoc

* Move config resolution logic to SdkDefaultClientBuilder

* Null check for clientOverrideConfiguration

* Remove unnecessary ExecutionAttribute

* Request compression sync streaming (#4222)

* Refactor to common class AwsChunkedInputStream

* Sync streaming compression

* Sync streaming compression functional tests

* Sync streaming compression integ tests

* Fix integ test

* Add unit tests

* Merge from master (#4297)

* Amazon WorkSpaces Update: Fixed VolumeEncryptionKey descriptions

* Amazon Relational Database Service Update: Adds support for the DBSystemID parameter of CreateDBInstance to RDS Custom for Oracle.

* AWS Elemental MediaConvert Update: This release includes improvements to Preserve 444 handling, compatibility of HEVC sources without frame rates, and general improvements to MP4 outputs.

* AWS Glue Update: This release adds support for AWS Glue Crawler with Apache Hudi Tables, allowing Crawlers to discover Hudi Tables in S3 and register them in Glue Data Catalog for query engines to query against.

* Updated endpoints.json and partitions.json.

* Release 2.20.109. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.110-SNAPSHOT

* Amazon Chime SDK Media Pipelines Update: AWS Media Pipeline compositing enhancement and Media Insights Pipeline auto language identification.

* Amazon QuickSight Update: This release launches new Snapshot APIs for CSV and PDF exports, adds support for info icon for filters and parameters in Exploration APIs, adds modeled exception to the DeleteAccountCustomization API, and introduces AttributeAggregationFunction's ability to add UNIQUE_VALUE aggregation in tooltips.

* AWS Cost Explorer Service Update: This release introduces the new API 'GetSavingsPlanPurchaseRecommendationDetails', which retrieves the details for a Savings Plan recommendation. It also updates the existing API 'GetSavingsPlansPurchaseRecommendation' to include the recommendation detail ID.

* AWS Glue Update: Added support for Data Preparation Recipe node in Glue Studio jobs

* Amazon Elastic Compute Cloud Update: Add "disabled" enum value to SpotInstanceState.

* AWS CloudFormation Update: This release supports filtering by DRIFT_STATUS for existing API ListStackInstances and adds support for a new API ListStackInstanceResourceDrifts. Customers can now view resource drift information from their StackSet management accounts.

* AmazonApiGatewayV2 Update: Documentation updates for Amazon API Gateway.

* Updated endpoints.json and partitions.json.

* Release 2.20.110. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.111-SNAPSHOT

* Fixed bug in IAM policy builder where actions were being written instead of resources. (#4223)

Also fixed javadoc issue, where create() doesn't exist on the IAM client.

* Amazon DynamoDB Update: Documentation updates for DynamoDB

* Amazon Relational Database Service Update: This release adds support for monitoring storage optimization progress on the DescribeDBInstances API.

* AWS Lambda Update: Add Python 3.11 (python3.11) support to AWS Lambda

* AWS SecurityHub Update: Add support for CONTAINS and NOT_CONTAINS comparison operators for Automation Rules string filters and map filters

* AWS DataSync Update: AWS DataSync now supports Microsoft Azure Blob Storage locations.

* Amazon SageMaker Service Update: Mark ContentColumn and TargetLabelColumn as required Targets in TextClassificationJobConfig in CreateAutoMLJobV2API

* Amazon Connect Wisdom Service Update: This release added two new data types: AssistantIntegrationConfiguration, and SessionIntegrationConfiguration to support Wisdom integration with Amazon Connect Chat

* AWS Transfer Family Update: This release adds support for SFTP Connectors.

* AWSBillingConductor Update: Added support for Auto-Assocate Billing Groups for CreateBillingGroup, UpdateBillingGroup, and ListBillingGroups.

* Amazon Elastic Compute Cloud Update: This release adds an instance's peak and baseline network bandwidth as well as the memory sizes of an instance's inference accelerators to DescribeInstanceTypes.

* AWS Security Token Service Update: API updates for the AWS Security Token Service

* EMR Serverless Update: This release adds support for publishing application logs to CloudWatch.

* Amazon Connect Customer Profiles Update: Amazon Connect Customer Profiles now supports rule-based resolution to match and merge similar profiles into unified profiles, helping companies deliver faster and more personalized customer service by providing access to relevant customer information for agents and automated experiences.

* Release 2.20.111. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.112-SNAPSHOT

* Amazon HealthLake Update: Updating the HealthLake service documentation.

* Amazon Omics Update: The service is renaming as a part of AWS Health.

* Amazon Polly Update: Amazon Polly adds 1 new voice - Lisa (nl-BE)

* OpenSearch Service Serverless Update: This release adds new collection type VectorSearch.

* Amazon Managed Blockchain Query Update: Amazon Managed Blockchain (AMB) Query provides serverless access to standardized, multi-blockchain datasets with developer-friendly APIs.

* AWS Elemental MediaConvert Update: This release includes general updates to user documentation.

* Amazon Route 53 Update: Update that corrects the documents for received feedback.

* AWS Cloud Control API Update: Updates the documentation for CreateResource.

* AWS EntityResolution Update: AWS Entity Resolution can effectively match a source record from a customer relationship management (CRM) system with a source record from a marketing system containing campaign information.

* AWS Glue Update: Release Glue Studio Snowflake Connector Node for SDK/CLI

* Updated endpoints.json and partitions.json.

* Release 2.20.112. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.113-SNAPSHOT

* Amazon SageMaker Service Update: Expose ProfilerConfig attribute in SageMaker Search API response.

* Amazon Elastic Block Store Update: SDK and documentation updates for Amazon Elastic Block Store API

* Auto Scaling Update: This release updates validation for instance types used in the AllowedInstanceTypes and ExcludedInstanceTypes parameters of the InstanceRequirements property of a MixedInstancesPolicy.

* Amazon Elastic Compute Cloud Update: SDK and documentation updates for Amazon Elastic Block Store APIs

* Amazon Elastic Kubernetes Service Update: Add multiple customer error code to handle customer caused failure when managing EKS node groups

* Release 2.20.113. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.114-SNAPSHOT

* Cleanup unused imports/members (#4234)

* Amazon Simple Queue Service Update: Documentation changes related to SQS APIs.

* Release 2.20.114. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.115-SNAPSHOT

* Managed Streaming for Kafka Update: Amazon MSK has introduced new versions of ListClusterOperations and DescribeClusterOperation APIs. These v2 APIs provide information and insights into the ongoing operations of both MSK Provisioned and MSK Serverless clusters.

* Amazon CloudFront Update: Add a new JavaScript runtime version for CloudFront Functions.

* Amazon Pinpoint Update: Added support for sending push notifications using the FCM v1 API with json credentials. Amazon Pinpoint customers can now deliver messages to Android devices using both FCM v1 API and the legacy FCM/GCM API

* Amazon Connect Service Update: This release adds support for new number types.

* Amazon CloudWatch Application Insights Update: This release enable customer to add/remove/update more than one workload for a component

* AWS CloudFormation Update: This SDK release is for the feature launch of AWS CloudFormation RetainExceptOnCreate. It adds a new parameter retainExceptOnCreate in the following APIs: CreateStack, UpdateStack, RollbackStack, ExecuteChangeSet.

* Updated endpoints.json and partitions.json.

* Release 2.20.115. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.116-SNAPSHOT

* AWS Amplify UI Builder Update: Amplify Studio releases GraphQL support for codegen job action.

* Elastic Disaster Recovery Service Update: Add support for in-aws right sizing

* AWS CodeStar connections Update: New integration with the Gitlab provider type.

* AWS Clean Rooms Service Update: This release introduces custom SQL queries - an expanded set of SQL you can run. This release adds analysis templates, a new resource for storing pre-defined custom SQL queries ahead of time. This release also adds the Custom analysis rule, which lets you approve analysis templates for querying.

* Amazon Omics Update: Add CreationType filter for ListReadSets

* Inspector2 Update: This release adds 1 new API: BatchGetFindingDetails to retrieve enhanced vulnerability intelligence details for findings.

* Amazon Relational Database Service Update: This release adds support for Aurora MySQL local write forwarding, which allows for forwarding of write operations from reader DB instances to the writer DB instance.

* Amazon Lookout for Equipment Update: This release includes new import resource, model versioning and resource policy features.

* Amazon EventBridge Scheduler Update: This release introduces automatic deletion of schedules in EventBridge Scheduler. If configured, EventBridge Scheduler automatically deletes a schedule after the schedule has completed its last invocation.

* Amazon Route 53 Update: Amazon Route 53 now supports the Israel (Tel Aviv) Region (il-central-1) for latency records, geoproximity records, and private DNS for Amazon VPCs in that region.

* Auto Scaling Update: You can now configure an instance refresh to set its status to 'failed' when it detects that a specified CloudWatch alarm has gone into the ALARM state. You can also choose to roll back the instance refresh automatically when the alarm threshold is met.

* Updated endpoints.json and partitions.json.

* Release 2.20.116. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.117-SNAPSHOT

* Amazon SageMaker Service Update: Add Stairs TrafficPattern and FlatInvocations to RecommendationJobStoppingConditions

* AWS Batch Update: This release adds support for price capacity optimized allocation strategy for Spot Instances.

* Amazon CloudWatch Internet Monitor Update: This release adds a new feature for Amazon CloudWatch Internet Monitor that enables customers to set custom thresholds, for performance and availability drops, for impact limited to a single city-network to trigger creation of a health event.

* Amazon Relational Database Service Update: Added support for deleted clusters PiTR.

* AWS Database Migration Service Update: Adding new API describe-engine-versions which provides information about the lifecycle of a replication instance's version.

* AWS Elemental MediaLive Update: AWS Elemental Link devices now report their Availability Zone. Link devices now support the ability to change their Availability Zone.

* Amazon Polly Update: Amazon Polly adds new French Belgian voice - Isabelle. Isabelle is available as Neural voice only.

* Updated endpoints.json and partitions.json.

* Release 2.20.117. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.118-SNAPSHOT

* AWS Resilience Hub Update: Drift Detection capability added when applications policy has moved from a meet to breach state. Customers will be able to exclude operational recommendations and receive credit in their resilience score. Customers can now add ARH permissions to an existing or new role.

* Amazon Cognito Identity Provider Update: New feature that logs Cognito user pool error messages to CloudWatch logs.

* AWS Glue Update: This release includes additional Glue Streaming KAKFA SASL property types.

* Amazon SageMaker Service Update: SageMaker Inference Recommender introduces a new API GetScalingConfigurationRecommendation to recommend auto scaling policies based on completed Inference Recommender jobs.

* AWS Budgets Update: As part of CAE tagging integration we need to update our budget names regex filter to prevent customers from using "/action/" in their budget names.

* Updated endpoints.json and partitions.json.

* Release 2.20.118. Updated CHANGELOG.md, README.md and all pom.xml.

* Fixed an issue in ChecksumCalculatingAsyncRequestBody where the posit… (#4244)

* Fixed an issue in ChecksumCalculatingAsyncRequestBody where the position of the ByteBuffer was not honored.

* Fix checkstyle

* rename methods and variables

* Add javadocs

* Update to next snapshot version: 2.20.119-SNAPSHOT

* Add Expect 100-continue for UploadPartRequest (#4252)

* Add Expect 100-continue for UploadPartRequest

* Fix typo

* Bump crt to 0.24.0 (#4256)

* Amazon SageMaker Service Update: Amazon SageMaker now supports running training jobs on p5.48xlarge instance types.

* Amazon Elastic Compute Cloud Update: This release adds new parameter isPrimaryIPv6 to allow assigning an IPv6 address as a primary IPv6 address to a network interface which cannot be changed to give equivalent functionality available for network interfaces with primary IPv4 address.

* Auto Scaling Update: Documentation changes related to Amazon EC2 Auto Scaling APIs.

* AWS Database Migration Service Update: The release makes public API for DMS Schema Conversion feature.

* AWS Cloud9 Update: Updated the deprecation date for Amazon Linux. Doc only update.

* Release 2.20.119. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.120-SNAPSHOT

* AWS Certificate Manager Private Certificate Authority Update: Documentation correction for AWS Private CA

* Amazon Connect Service Update: Added a new API UpdateRoutingProfileAgentAvailabilityTimer to update agent availability timer of a routing profile.

* Amazon SageMaker Service Update: Including DataCaptureConfig key in the Amazon Sagemaker Search's transform job object

* AWS DataSync Update: Display cloud storage used capacity at a cluster level.

* Amazon EC2 Container Service Update: This is a documentation update to address various tickets.

* Updated endpoints.json and partitions.json.

* Release 2.20.120. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.121-SNAPSHOT

* Java based S3 Multipart Client (#4254)

* Implement multipart upload in Java-based S3 async client (#4052)

* Implement multipart upload in Java-based S3 async client
Co-authored-by: Matthew Miller <millem@amazon.com>

* Iterate SdkFields to convert requests (#4177)

* Iterate SdkFields to convert requests

* Fix flaky test

* Rename convertion utils class

* Fix null content length in SplittingPublisher (#4173)

* Implement multipart copy in Java-based S3 async client (#4189)

* Create split method in AsyncRequestBody to return SplittingPublisher (#4188)

* Create split method in AsyncRequestBody to return SplittingPublisher

* Fix Javadoc and build

* Add more tests with ByteArrayAsyncRequestBody (#4214)

* Handle null response metadata (#4215)

* Handle null response metadata

* Fix build

* Support streaming with unknown content length (#4226)

* Support uploading with unknown content length

* Refactoring

* Create a configuration class for SdkPublisher#split (#4236)

* S3 Multipart API implementation (#4235)

* Multipart API
fix merge conflicts

* getObject(...) throw UnsupportedOperationException

* Use user agent for all requests in MultipartS3Client

* MultipartS3AsyncClient javadoc + API_NAME private

* use `maximumMemoryUsageInBytes`

* fix problem with UserAgent, cleanup

* move contextParam keys to S3AsyncClientDecorator

* javadoc

* more javadoc

* Use 4x part size as default apiCallBufferSize

* Fix test

* Guard against re-subscription in SplittingPublisher (#4253)

* guard against re-subscription in SplittingPublisher

* fix checkstyle

* Error msg

* Fix a race condition where the third upload part request was sent before the second one (#4260)

---------

Co-authored-by: Zoe Wang <33073555+zoewangg@users.noreply.github.com>

* Amazon Interactive Video Service RealTime Update: Add QUOTA_EXCEEDED and PUBLISHER_NOT_FOUND to EventErrorCode for stage health events.

* Amazon Kinesis Video Streams Update: This release enables minimum of Images SamplingInterval to be as low as 200 milliseconds in Kinesis Video Stream Image feature.

* Amazon Rekognition Update: This release adds code snippets for Amazon Rekognition Custom Labels.

* Amazon Kinesis Video Streams Archived Media Update: This release enables minimum of Images SamplingInterval to be as low as 200 milliseconds in Kinesis Video Stream Image feature.

* Amazon Detective Update: Updated the email validation regex to be in line with the TLD name specifications.

* Updated endpoints.json and partitions.json.

* Release 2.20.121. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.122-SNAPSHOT

* Update to next snapshot version: 2.20.122-SNAPSHOT (#4275)

* Update to next snapshot version: 2.20.122-SNAPSHOT

* Revert previous version number

* AWS Service Catalog Update: Introduce support for HashiCorp Terraform Cloud in Service Catalog by addying TERRAFORM_CLOUD product type in CreateProduct and CreateProvisioningArtifact API.

* AWS Backup Update: This release introduces a new logically air-gapped vault (Preview) in AWS Backup that stores immutable backup copies, which are locked by default and isolated with encryption using AWS owned keys. Logically air-gapped vault (Preview) allows secure recovery of application data across accounts.

* Amazon ElastiCache Update: Added support for cluster mode in online migration and test migration API

* Updated endpoints.json and partitions.json.

* Release 2.20.122. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.123-SNAPSHOT

* Add default methods to AwsServiceClientConfiguration.Builder and SdkServiceClientConfiguration.Builder. (#4263)

This allows older client versions to still compile with newer runtime versions.

* Expose thresholdSizeInBytes in AWS CRT-based S3 client (#4282)

* AWS Global Accelerator Update: Documentation update for dualstack EC2 endpoint support

* Amazon FSx Update: For FSx for Lustre, add new data repository task type, RELEASE_DATA_FROM_FILESYSTEM, to release files that have been archived to S3. For FSx for Windows, enable support for configuring and updating SSD IOPS, and for updating storage type. For FSx for OpenZFS, add new deployment type, MULTI_AZ_1.

* Amazon Chime SDK Voice Update: Updating CreatePhoneNumberOrder, UpdatePhoneNumber and BatchUpdatePhoneNumbers APIs, adding phone number name

* Amazon GuardDuty Update: Added autoEnable ALL to UpdateOrganizationConfiguration and DescribeOrganizationConfiguration APIs.

* Amazon SageMaker Service Update: This release adds support for cross account access for SageMaker Model Cards through AWS RAM.

* Updated endpoints.json and partitions.json.

* Release 2.20.123. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.124-SNAPSHOT

* Fix immutableCopyOf bug (#4266)

* Set limit when cloning ByteBuffer

* Add changelog

* Add L-Applin and breader124 to the all-contributors hall (#4276)

* Fix for Issue [#4156](https://github.com/aws/aws-sdk-java-v2/issues/4156) : Single quotes in toJson conversions for EnhancedDocuments are no longer being escaped. (#4277)

* Amazon Connect Service Update: This release adds APIs to provision agents that are global / available in multiple AWS regions and distribute them across these regions by percentage.

* AWS Secrets Manager Update: Add additional InvalidRequestException to list of possible exceptions for ListSecret.

* AWS CloudTrail Update: Documentation updates for CloudTrail.

* AWS Transfer Family Update: Documentation updates for AW Transfer Family

* Elastic Load Balancing Update: This release enables configuring security groups for Network Load Balancers

* Amazon Omics Update: This release adds instanceType to GetRunTask & ListRunTasks responses.

* Updated endpoints.json and partitions.json.

* Release 2.20.124. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.125-SNAPSHOT

* AmplifyBackend Update: Adds sensitive trait to required input shapes.

* AWS Config Update: Updated ResourceType enum with new resource types onboarded by AWS Config in July 2023.

* Amazon Elastic Compute Cloud Update: Amazon EC2 P5 instances, powered by the latest NVIDIA H100 Tensor Core GPUs, deliver the highest performance in EC2 for deep learning (DL) and HPC applications. M7i-flex and M7i instances are next-generation general purpose instances powered by custom 4th Generation Intel Xeon Scalable processors.

* Amazon Simple Email Service Update: Doc only updates to include: 1) Clarified which part of an email address where it's okay to have Punycode when it contains non-ASCII characters for the SendRawEmail action and other actions where this is applicable. 2) Updated S3Action description with new MB max bucket size from 30 to 40.

* Amazon Simple Workflow Service Update: This release adds new API parameters to override workflow task list for workflow executions.

* Amazon QuickSight Update: New Authentication method for Account subscription - IAM Identity Center. Hierarchy layout support, default column width support and related style properties for pivot table visuals. Non-additive topic field aggregations for Topic API

* Updated endpoints.json and partitions.json.

* Release 2.20.125. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.126-SNAPSHOT

---------

Co-authored-by: AWS <>
Co-authored-by: aws-sdk-java-automation <43143862+aws-sdk-java-automation@users.noreply.github.com>
Co-authored-by: Matthew Miller <millem@amazon.com>
Co-authored-by: Dongie Agnir <261310+dagnir@users.noreply.github.com>
Co-authored-by: Zoe Wang <33073555+zoewangg@users.noreply.github.com>
Co-authored-by: Olivier L Applin <olapplin@amazon.com>
Co-authored-by: Debora N. Ito <476307+debora-ito@users.noreply.github.com>
Co-authored-by: John Viegas <70235430+joviegas@users.noreply.github.com>

* Request compression async streaming (#4262)

* Refactor to common class AwsChunkedInputStream

* Sync streaming compression

* Sync streaming compression functional tests

* Sync streaming compression integ tests

* Fix integ test

* Async streaming compression

* Address comments

* Refactor ChunkBuffer class

* Address comments

* Address comments

* Remove unused field

* Handle demand in Subscriber

* Address comments

* Add back final modifier

* Merge from master (#4369)

* Amazon Elastic Kubernetes Service Update: Add multiple customer error code to handle customer caused failure when managing EKS node groups

* Release 2.20.113. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.114-SNAPSHOT

* Cleanup unused imports/members (#4234)

* Amazon Simple Queue Service Update: Documentation changes related to SQS APIs.

* Release 2.20.114. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.115-SNAPSHOT

* Managed Streaming for Kafka Update: Amazon MSK has introduced new versions of ListClusterOperations and DescribeClusterOperation APIs. These v2 APIs provide information and insights into the ongoing operations of both MSK Provisioned and MSK Serverless clusters.

* Amazon CloudFront Update: Add a new JavaScript runtime version for CloudFront Functions.

* Amazon Pinpoint Update: Added support for sending push notifications using the FCM v1 API with json credentials. Amazon Pinpoint customers can now deliver messages to Android devices using both FCM v1 API and the legacy FCM/GCM API

* Amazon Connect Service Update: This release adds support for new number types.

* Amazon CloudWatch Application Insights Update: This release enable customer to add/remove/update more than one workload for a component

* AWS CloudFormation Update: This SDK release is for the feature launch of AWS CloudFormation RetainExceptOnCreate. It adds a new parameter retainExceptOnCreate in the following APIs: CreateStack, UpdateStack, RollbackStack, ExecuteChangeSet.

* Updated endpoints.json and partitions.json.

* Release 2.20.115. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.116-SNAPSHOT

* AWS Amplify UI Builder Update: Amplify Studio releases GraphQL support for codegen job action.

* Elastic Disaster Recovery Service Update: Add support for in-aws right sizing

* AWS CodeStar connections Update: New integration with the Gitlab provider type.

* AWS Clean Rooms Service Update: This release introduces custom SQL queries - an expanded set of SQL you can run. This release adds analysis templates, a new resource for storing pre-defined custom SQL queries ahead of time. This release also adds the Custom analysis rule, which lets you approve analysis templates for querying.

* Amazon Omics Update: Add CreationType filter for ListReadSets

* Inspector2 Update: This release adds 1 new API: BatchGetFindingDetails to retrieve enhanced vulnerability intelligence details for findings.

* Amazon Relational Database Service Update: This release adds support for Aurora MySQL local write forwarding, which allows for forwarding of write operations from reader DB instances to the writer DB instance.

* Amazon Lookout for Equipment Update: This release includes new import resource, model versioning and resource policy features.

* Amazon EventBridge Scheduler Update: This release introduces automatic deletion of schedules in EventBridge Scheduler. If configured, EventBridge Scheduler automatically deletes a schedule after the schedule has completed its last invocation.

* Amazon Route 53 Update: Amazon Route 53 now supports the Israel (Tel Aviv) Region (il-central-1) for latency records, geoproximity records, and private DNS for Amazon VPCs in that region.

* Auto Scaling Update: You can now configure an instance refresh to set its status to 'failed' when it detects that a specified CloudWatch alarm has gone into the ALARM state. You can also choose to roll back the instance refresh automatically when the alarm threshold is met.

* Updated endpoints.json and partitions.json.

* Release 2.20.116. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.117-SNAPSHOT

* Amazon SageMaker Service Update: Add Stairs TrafficPattern and FlatInvocations to RecommendationJobStoppingConditions

* AWS Batch Update: This release adds support for price capacity optimized allocation strategy for Spot Instances.

* Amazon CloudWatch Internet Monitor Update: This release adds a new feature for Amazon CloudWatch Internet Monitor that enables customers to set custom thresholds, for performance and availability drops, for impact limited to a single city-network to trigger creation of a health event.

* Amazon Relational Database Service Update: Added support for deleted clusters PiTR.

* AWS Database Migration Service Update: Adding new API describe-engine-versions which provides information about the lifecycle of a replication instance's version.

* AWS Elemental MediaLive Update: AWS Elemental Link devices now report their Availability Zone. Link devices now support the ability to change their Availability Zone.

* Amazon Polly Update: Amazon Polly adds new French Belgian voice - Isabelle. Isabelle is available as Neural voice only.

* Updated endpoints.json and partitions.json.

* Release 2.20.117. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.118-SNAPSHOT

* AWS Resilience Hub Update: Drift Detection capability added when applications policy has moved from a meet to breach state. Customers will be able to exclude operational recommendations and receive credit in their resilience score. Customers can now add ARH permissions to an existing or new role.

* Amazon Cognito Identity Provider Update: New feature that logs Cognito user pool error messages to CloudWatch logs.

* AWS Glue Update: This release includes additional Glue Streaming KAKFA SASL property types.

* Amazon SageMaker Service Update: SageMaker Inference Recommender introduces a new API GetScalingConfigurationRecommendation to recommend auto scaling policies based on completed Inference Recommender jobs.

* AWS Budgets Update: As part of CAE tagging integration we need to update our budget names regex filter to prevent customers from using "/action/" in their budget names.

* Updated endpoints.json and partitions.json.

* Release 2.20.118. Updated CHANGELOG.md, README.md and all pom.xml.

* Fixed an issue in ChecksumCalculatingAsyncRequestBody where the posit… (#4244)

* Fixed an issue in ChecksumCalculatingAsyncRequestBody where the position of the ByteBuffer was not honored.

* Fix checkstyle

* rename methods and variables

* Add javadocs

* Update to next snapshot version: 2.20.119-SNAPSHOT

* Add Expect 100-continue for UploadPartRequest (#4252)

* Add Expect 100-continue for UploadPartRequest

* Fix typo

* Bump crt to 0.24.0 (#4256)

* Amazon SageMaker Service Update: Amazon SageMaker now supports running training jobs on p5.48xlarge instance types.

* Amazon Elastic Compute Cloud Update: This release adds new parameter isPrimaryIPv6 to allow assigning an IPv6 address as a primary IPv6 address to a network interface which cannot be changed to give equivalent functionality available for network interfaces with primary IPv4 address.

* Auto Scaling Update: Documentation changes related to Amazon EC2 Auto Scaling APIs.

* AWS Database Migration Service Update: The release makes public API for DMS Schema Conversion feature.

* AWS Cloud9 Update: Updated the deprecation date for Amazon Linux. Doc only update.

* Release 2.20.119. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.120-SNAPSHOT

* AWS Certificate Manager Private Certificate Authority Update: Documentation correction for AWS Private CA

* Amazon Connect Service Update: Added a new API UpdateRoutingProfileAgentAvailabilityTimer to update agent availability timer of a routing profile.

* Amazon SageMaker Service Update: Including DataCaptureConfig key in the Amazon Sagemaker Search's transform job object

* AWS DataSync Update: Display cloud storage used capacity at a cluster level.

* Amazon EC2 Container Service Update: This is a documentation update to address various tickets.

* Updated endpoints.json and partitions.json.

* Release 2.20.120. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.121-SNAPSHOT

* Java based S3 Multipart Client (#4254)

* Implement multipart upload in Java-based S3 async client (#4052)

* Implement multipart upload in Java-based S3 async client
Co-authored-by: Matthew Miller <millem@amazon.com>

* Iterate SdkFields to convert requests (#4177)

* Iterate SdkFields to convert requests

* Fix flaky test

* Rename convertion utils class

* Fix null content length in SplittingPublisher (#4173)

* Implement multipart copy in Java-based S3 async client (#4189)

* Create split method in AsyncRequestBody to return SplittingPublisher (#4188)

* Create split method in AsyncRequestBody to return SplittingPublisher

* Fix Javadoc and build

* Add more tests with ByteArrayAsyncRequestBody (#4214)

* Handle null response metadata (#4215)

* Handle null response metadata

* Fix build

* Support streaming with unknown content length (#4226)

* Support uploading with unknown content length

* Refactoring

* Create a configuration class for SdkPublisher#split (#4236)

* S3 Multipart API implementation (#4235)

* Multipart API
fix merge conflicts

* getObject(...) throw UnsupportedOperationException

* Use user agent for all requests in MultipartS3Client

* MultipartS3AsyncClient javadoc + API_NAME private

* use `maximumMemoryUsageInBytes`

* fix problem with UserAgent, cleanup

* move contextParam keys to S3AsyncClientDecorator

* javadoc

* more javadoc

* Use 4x part size as default apiCallBufferSize

* Fix test

* Guard against re-subscription in SplittingPublisher (#4253)

* guard against re-subscription in SplittingPublisher

* fix checkstyle

* Error msg

* Fix a race condition where the third upload part request was sent before the second one (#4260)

---------

Co-authored-by: Zoe Wang <33073555+zoewangg@users.noreply.github.com>

* Amazon Interactive Video Service RealTime Update: Add QUOTA_EXCEEDED and PUBLISHER_NOT_FOUND to EventErrorCode for stage health events.

* Amazon Kinesis Video Streams Update: This release enables minimum of Images SamplingInterval to be as low as 200 milliseconds in Kinesis Video Stream Image feature.

* Amazon Rekognition Update: This release adds code snippets for Amazon Rekognition Custom Labels.

* Amazon Kinesis Video Streams Archived Media Update: This release enables minimum of Images SamplingInterval to be as low as 200 milliseconds in Kinesis Video Stream Image feature.

* Amazon Detective Update: Updated the email validation regex to be in line with the TLD name specifications.

* Updated endpoints.json and partitions.json.

* Release 2.20.121. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.122-SNAPSHOT

* Update to next snapshot version: 2.20.122-SNAPSHOT (#4275)

* Update to next snapshot version: 2.20.122-SNAPSHOT

* Revert previous version number

* AWS Service Catalog Update: Introduce support for HashiCorp Terraform Cloud in Service Catalog by addying TERRAFORM_CLOUD product type in CreateProduct and CreateProvisioningArtifact API.

* AWS Backup Update: This release introduces a new logically air-gapped vault (Preview) in AWS Backup that stores immutable backup copies, which are locked by default and isolated with encryption using AWS owned keys. Logically air-gapped vault (Preview) allows secure recovery of application data across accounts.

* Amazon ElastiCache Update: Added support for cluster mode in online migration and test migration API

* Updated endpoints.json and partitions.json.

* Release 2.20.122. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.123-SNAPSHOT

* Add default methods to AwsServiceClientConfiguration.Builder and SdkServiceClientConfiguration.Builder. (#4263)

This allows older client versions to still compile with newer runtime versions.

* Expose thresholdSizeInBytes in AWS CRT-based S3 client (#4282)

* AWS Global Accelerator Update: Documentation update for dualstack EC2 endpoint support

* Amazon FSx Update: For FSx for Lustre, add new data repository task type, RELEASE_DATA_FROM_FILESYSTEM, to release files that have been archived to S3. For FSx for Windows, enable support for configuring and updating SSD IOPS, and for updating storage type. For FSx for OpenZFS, add new deployment type, MULTI_AZ_1.

* Amazon Chime SDK Voice Update: Updating CreatePhoneNumberOrder, UpdatePhoneNumber and BatchUpdatePhoneNumbers APIs, adding phone number name

* Amazon GuardDuty Update: Added autoEnable ALL to UpdateOrganizationConfiguration and DescribeOrganizationConfiguration APIs.

* Amazon SageMaker Service Update: This release adds support for cross account access for SageMaker Model Cards through AWS RAM.

* Updated endpoints.json and partitions.json.

* Release 2.20.123. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.124-SNAPSHOT

* Fix immutableCopyOf bug (#4266)

* Set limit when cloning ByteBuffer

* Add changelog

* Add L-Applin and breader124 to the all-contributors hall (#4276)

* Fix for Issue [#4156](https://github.com/aws/aws-sdk-java-v2/issues/4156) : Single quotes in toJson conversions for EnhancedDocuments are no longer being escaped. (#4277)

* Amazon Connect Service Update: This release adds APIs to provision agents that are global / available in multiple AWS regions and distribute them across these regions by percentage.

* AWS Secrets Manager Update: Add additional InvalidRequestException to list of possible exceptions for ListSecret.

* AWS CloudTrail Update: Documentation updates for CloudTrail.

* AWS Transfer Family Update: Documentation updates for AW Transfer Family

* Elastic Load Balancing Update: This release enables configuring security groups for Network Load Balancers

* Amazon Omics Update: This release adds instanceType to GetRunTask & ListRunTasks responses.

* Updated endpoints.json and partitions.json.

* Release 2.20.124. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.125-SNAPSHOT

* AmplifyBackend Update: Adds sensitive trait to required input shapes.

* AWS Config Update: Updated ResourceType enum with new resource types onboarded by AWS Config in July 2023.

* Amazon Elastic Compute Cloud Update: Amazon EC2 P5 instances, powered by the latest NVIDIA H100 Tensor Core GPUs, deliver the highest performance in EC2 for deep learning (DL) and HPC applications. M7i-flex and M7i instances are next-generation general purpose instances powered by custom 4th Generation Intel Xeon Scalable processors.

* Amazon Simple Email Service Update: Doc only updates to include: 1) Clarified which part of an email address where it's okay to have Punycode when it contains non-ASCII characters for the SendRawEmail action and other actions where this is applicable. 2) Updated S3Action description with new MB max bucket size from 30 to 40.

* Amazon Simple Workflow Service Update: This release adds new API parameters to override workflow task list for workflow executions.

* Amazon QuickSight Update: New Authentication method for Account subscription - IAM Identity Center. Hierarchy layout support, default column width support and related style properties for pivot table visuals. Non-additive topic field aggregations for Topic API

* Updated endpoints.json and partitions.json.

* Release 2.20.125. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.126-SNAPSHOT

* AWS Elemental MediaPackage Update: Fix SDK logging of certain fields.

* Amazon Omics Update: This release provides support for annotation store versioning and cross account sharing for Omics Analytics

* AWS Transfer Family Update: Documentation updates for AWS Transfer Family

* Updated endpoints.json and partitions.json.

* Release 2.20.126. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.127-SNAPSHOT

* S3 Benchmarks - support java-based multipart client (#4288)

S3 Benchmarks - support java-based multipart client

* Amazon Route 53 Domains Update: Provide explanation if CheckDomainTransferability return false. Provide requestId if a request is already submitted. Add sensitive protection for customer information

* AWS Glue Update: AWS Glue Crawlers can now accept SerDe overrides from a custom csv classifier. The two SerDe options are LazySimpleSerDe and OpenCSVSerDe. In case, the user wants crawler to do the selection, "None" can be selected for this purpose.

* Amazon SageMaker Service Update: SageMaker Inference Recommender now provides SupportedResponseMIMETypes from DescribeInferenceRecommendationsJob response

* AWS Performance Insights Update: AWS Performance Insights for Amazon RDS is launching Performance Analysis On Demand, a new feature that allows you to analyze database performance metrics and find out the performance issues. You can now use SDK to create, list, get, delete, and manage tags of performance analysis reports.

* Amazon Elastic Compute Cloud Update: Documentation updates for Elastic Compute Cloud (EC2).

* Amazon Chime SDK Meetings Update: Updated API documentation to include additional exceptions.

* Updated endpoints.json and partitions.json.

* Release 2.20.127. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.128-SNAPSHOT

* Fixed the issue where thresholdInBytes is not the same as minimalPart… (#4289)

* Fixed the issue where thresholdInBytes is not the same as minimalPartSizeInBytes if a custom minimalPartSizeInBytes is provided.

* Address feedback

* Add more test

* Update LaunchChangelog.md to add IAM Policy Builder (#4301)

* Add SERVICE_ENDPOINT metric (#4307)

* Implement SERVICE_ENDPOINT core metric

* Create CollectionStages for SERVICE_ENDPOINT

* Remove erviceEndpointMetricCollectionStages since they're unnecessary

* Move collection of SERVICE_ENDPOINT metric

Simplify by collecting in the API Call metric collection stages where other
request metrics are already being collected.

* Remove unused import

* Update changelog entry

* Fix test

* Remove unused class

---------

Co-authored-by: David Negrete <davidfn@amazon.com>

* Amazon CloudWatch Update: Doc-only update to incorporate several doc bug fixes

* Amazon Lex Model Building V2 Update: This release updates the Custom Vocabulary Weight field to support a value of 0.

* Release 2.20.128. Updated CHANGELOG.md, README.md and all pom.xml.

* Ensure onNext will be called even if publishing empty content and onC… (#4290)

* Ensure onNext will be called even if publishing empty content and onComplete is called directly

* Adding changelog and removing unnecessary override

* Update to next snapshot version: 2.20.129-SNAPSHOT

* Fix javadocs links - consumer request objects (#4310)

* Fix javadocs links - consumer request objects

* Use getShapeName instead of getC2jName

* Use fully qualified name

* Update codegen test classes

* changing terminology to more inclusive terms (#4115)

* Amazon Elastic Compute Cloud Update: Adds support for SubnetConfigurations to allow users to select their own IPv4 and IPv6 addresses for Interface VPC endpoints

* Amazon GameLift Update: Amazon GameLift updates its instance types support.

* Updated endpoints.json and partitions.json.

* Release 2.20.129. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.130-SNAPSHOT

* AWS SecurityHub Update: Added Inspector Lambda code Vulnerability section to ASFF, including GeneratorDetails, EpssScore, ExploitAvailable, and CodeVulnerabilities.

* AWS CodeCommit Update: Add new ListFileCommitHistory operation to retrieve commits which introduced changes to a specific file.

* Updated endpoints.json and partitions.json.

* Release 2.20.130. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.131-SNAPSHOT

* AWS Cloud9 Update: Doc only update to add Ubuntu 22.04 as an Image ID option for Cloud9

* Amazon Route 53 Domains Update: Fixed typos in description fields

* Amazon Elastic Compute Cloud Update: The DeleteKeyPair API has been updated to return the keyPairId when an existing key pair is deleted.

* Amazon Relational Database Service Update: Adding support for RDS Aurora Global Database Unplanned Failover

* FinSpace User Environment Management service Update: Allow customers to manage outbound traffic from their Kx Environment when attaching a transit gateway by providing network acl entries. Allow the customer to choose how they want to update the databases on a cluster allowing updates to possibly be faster than usual.

* Updated endpoints.json and partitions.json.

* Release 2.20.131. Updated CHANGELOG.md, README.md and all pom.xml.

* Corrected a minor JavaDoc typo in the DynamoDbBean class. (#4325)

* Remove unused address interceptor (#4316)

* Bump reactive-streams from 1.0.3 to 1.0.4 (#4322)

Signed-off-by: Chad Wilson <chadw@thoughtworks.com>

* Update to next snapshot version: 2.20.132-SNAPSHOT

* Modify ArnResource to handle more variants of resources (#4317)

* Changes default behavior for DynamoDb Enhanced atomic counter extension (#4314)

* Changes the default behavior for DynamoDb Enhanced atomic counter extension to filter out any counter attributes in the item map if present

* docs: add chadlwilson as a contributor for code (#4330)

* docs: update README.md [skip ci]

* docs: update .all-contributorsrc [skip ci]

---------

Co-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com>

* Amazon Verified Permissions Update: Documentation updates for Amazon Verified Permissions. Increases max results per page for ListPolicyStores, ListPolicies, and ListPolicyTemplates APIs from 20 to 50.

* AWS Cost Explorer Service Update: This release adds the LastUpdatedDate and LastUsedDate timestamps to help you manage your cost allocation tags.

* Amazon Relational Database Service Update: Adding parameters to CreateCustomDbEngineVersion reserved for future use.

* AWS Global Accelerator Update: Global Accelerator now supports Client Ip Preservation for Network Load Balancer endpoints.

* Updated endpoints.json and partitions.json.

* Release 2.20.132. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.133-SNAPSHOT

* Amazon API Gateway Update: This release adds RootResourceId to GetRestApi response.

* Amazon Polly Update: Amazon Polly adds 1 new voice - Zayd (ar-AE)

* Amazon Elastic Compute Cloud Update: Marking fields as sensitive on BundleTask and GetPasswordData

* Updated endpoints.json and partitions.json.

* Release 2.20.133. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.134-SNAPSHOT

* Add support for presigned DeleteObject (#4313)

* Add support for presigned DeleteObject

* Review comments

 - Add proper annotations
 - Add equals and hashCode

* Add auth-crt to bom (#4338)

* AWS Elemental MediaLive Update: MediaLive now supports passthrough of KLV data to a HLS output group with a TS container. MediaLive now supports setting an attenuation mode for AC3 audio when the coding mode is 3/2 LFE. MediaLive now supports specifying whether to include filler NAL units in RTMP output group settings.

* Amazon Relational Database Service Update: This release updates the supported versions for Percona XtraBackup in Aurora MySQL.

* AWS MediaTailor Update: Adds new source location AUTODETECT_SIGV4 access type.

* Amazon QuickSight Update: Excel support in Snapshot Export APIs. Removed Required trait for some insight Computations. Namespace-shared Folders support. Global Filters support. Table pin Column support.

* AWS S3 Control Update: Updates to endpoint ruleset tests to address Smithy validation issues and standardize the capitalization of DualStack.

* AWS Elemental MediaConvert Update: This release includes additional audio channel tags in Quicktime outputs, support for film grain synthesis for AV1 outputs, ability to create audio-only FLAC outputs, and ability to specify Amazon S3 destination storage class.

* Amazon Simple Storage Service Update: Updates to endpoint ruleset tests to address Smithy validation issues.

* AWS Glue Update: Added API attributes that help in the monitoring of sessions.

* Amazon Verified Permissions Update: Documentation updates for Amazon Verified Permissions.

* Amazon Elastic Compute Cloud Update: Amazon EC2 M7a instances, powered by 4th generation AMD EPYC processors, deliver up to 50% higher performance compared to M6a instances. Amazon EC2 Hpc7a instances, powered by 4th Gen AMD EPYC processors, deliver up to 2.5x better performance compared to Amazon EC2 Hpc6a instances.

* Updated endpoints.json and partitions.json.

* Release 2.20.134. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.135-SNAPSHOT

* fix IamPolicy code example docs. (#4324)

Co-authored-by: Debora N. Ito <476307+debora-ito@users.noreply.github.com>

* Add option to output all results to disk (#4344)

* docs: add ManishDait as a contributor for doc (#4343)

* docs: update README.md [skip ci]

* docs: update .all-contributorsrc [skip ci]

---------

Co-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com>

* Amazon Detective Update: Added protections to interacting with fields containing customer information.

* AWS CloudTrail Update: Add ThrottlingException with error code 429 to handle CloudTrail Delegated Admin request rate exceeded on organization resources.

* Amazon CloudWatch Update: Doc-only update to get doc bug fixes into the SDK docs

* Updated endpoints.json and partitions.json.

* Release 2.20.135. Updated CHANGELOG.md, README.md and all pom.xml.

* Revert "Modify ArnResource to handle more variants of resources (#4317)"

This reverts commit 0a37e9f4f58616c9e81da6c3a78c7bcb423c9a57.

* Update to next snapshot version: 2.20.136-SNAPSHOT

* Revert "Modify ArnResource to handle more variants of resources (#4317)" (#4349)

This reverts commit 0a37e9f4f58616c9e81da6c3a78c7bcb423c9a57.

* Use zoned date time in benchmark params (#4351)

This is useful when the results are processed across different systems.

* AWS Organizations Update: Documentation updates for permissions and links.

* AWS Backup Update: Add support for customizing time zone for backup window in backup plan rules.

* Amazon WorkSpaces Web Update: WorkSpaces Web now enables Admins to configure which cookies are synchronized from an end-user's local browser to the in-session browser. In conjunction with a browser extension, this feature enables enhanced Single-Sign On capability by reducing the number of times an end-user has to authenticate.

* Service Quotas Update: Service Quotas now supports viewing the applied quota value and requesting a quota increase for a specific resource in an AWS account.

* AWS Compute Optimizer Update: This release enables AWS Compute Optimizer to analyze and generate licensing optimization recommendations for sql server running on EC2 instances.

* Amazon Security Lake Update: Remove incorrect regex enforcement on pagination tokens.

* Updated endpoints.json and partitions.json.

* Release 2.20.136. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.137-SNAPSHOT

* Optimize file uploads by reading from file in parallel (#4331)

* Optimize file upload by reading from file in different offsets in parallel

* Override split in FileAsyncRequestBody

* Address feedback and fix the issue where doAfterOnComplete is invoked

* address feedback

* Fix issue reported by sonarcloud

* Upgrade jacoco to 0.8.10 (#4360)

* Upgrade jacoco to 0.8.10

* Fix test coverage reporting with java 17

* Amazon Simple Email Service Update: Adds support for the new Export and Message Insights features: create, get, list and cancel export jobs; get message insights.

* Amazon Omics Update: Add RetentionMode support for Runs.

* Amazon Cognito Identity Provider Update: Added API example requests and responses for several operations. Fixed the validation regex for user pools Identity Provider name.

* Amazon FSx Update: Documentation updates for project quotas.

* Release 2.20.137. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.138-SNAPSHOT

---------

Signed-off-by: Chad Wilson <chadw@thoughtworks.com>
Co-authored-by: AWS <>
Co-authored-by: aws-sdk-java-automation <43143862+aws-sdk-java-automation@users.noreply.github.com>
Co-authored-by: Dongie Agnir <261310+dagnir@users.noreply.github.com>
Co-authored-by: Zoe Wang <33073555+zoewangg@users.noreply.github.com>
Co-authored-by: Olivier L Applin <olapplin@amazon.com>
Co-authored-by: Matthew Miller <millem@amazon.com>
Co-authored-by: Debora N. Ito <476307+debora-ito@users.noreply.github.com>
Co-authored-by: John Viegas <70235430+joviegas@users.noreply.github.com>
Co-authored-by: David Negrete <davidfn@amazon.com>
Co-authored-by: Anna-Karin Salander <salande@amazon.com>
Co-authored-by: Chad Wilson <chadw@thoughtworks.com>
Co-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com>
Co-authored-by: Manish Dait <90558243+ManishDait@users.noreply.github.com>

---------

Signed-off-by: Chad Wilson <chadw@thoughtworks.com>
Co-authored-by: aws-sdk-java-automation <43143862+aws-sdk-java-automation@users.noreply.github.com>
Co-authored-by: Matthew Miller <millem@amazon.com>
Co-authored-by: Dongie Agnir <261310+dagnir@users.noreply.github.com>
Co-authored-by: Zoe Wang <33073555+zoewangg@users.noreply.github.com>
Co-authored-by: Olivier L Applin <olapplin@amazon.com>
Co-authored-by: Debora N. Ito <476307+debora-ito@users.noreply.github.com>
Co-authored-by: John Viegas <70235430+joviegas@users.noreply.github.com>
Co-authored-by: David Negrete <davidfn@amazon.com>
Co-authored-by: Anna-Karin Salander <salande@amazon.com>
Co-authored-by: Chad Wilson <chadw@thoughtworks.com>
Co-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com>
Co-authored-by: Manish Dait <90558243+ManishDait@users.noreply.github.com>
davidh44 added a commit that referenced this issue Sep 5, 2023
* Request compression: non-streaming operations (#4193)

* Adding codegen updates and configuration options (#4085)

* Adding configuration options

* Adding codegen updates

* Adding javadocs

* Fix CheckStyle/SpotBugs errors, and add RequestCompression interceptor trait and SdkInternalExecutionAttribute

* RequestCompression interceptor trait

* Refactoring, adding profile config and javadocs

* Refactoring and add codegen tests

* Add codegen tests

* Update code generated test classes

* Request compression - nonstreaming operations

* Throw codegen error for streaming operations with request compression

* Throw codegen error for S3 operations with request compression

* Changelog entry

* Refactoring

* Refactoring

* Move interceptor trait to internal module

* Update javadoc

* Move config resolution logic to SdkDefaultClientBuilder

* Null check for clientOverrideConfiguration

* Remove unnecessary ExecutionAttribute

* Merge streaming branch into base branch (#4370)

* Adding codegen updates and configuration options (#4085)

* Adding configuration options

* Adding codegen updates

* Adding javadocs

* Fix CheckStyle/SpotBugs errors, and add RequestCompression interceptor trait and SdkInternalExecutionAttribute

* RequestCompression interceptor trait

* Refactoring, adding profile config and javadocs

* Refactoring and add codegen tests

* Add codegen tests

* Update code generated test classes

* Request compression - nonstreaming operations

* Throw codegen error for streaming operations with request compression

* Throw codegen error for S3 operations with request compression

* Changelog entry

* Refactoring

* Refactoring

* Move interceptor trait to internal module

* Update javadoc

* Move config resolution logic to SdkDefaultClientBuilder

* Null check for clientOverrideConfiguration

* Remove unnecessary ExecutionAttribute

* Request compression sync streaming (#4222)

* Refactor to common class AwsChunkedInputStream

* Sync streaming compression

* Sync streaming compression functional tests

* Sync streaming compression integ tests

* Fix integ test

* Add unit tests

* Merge from master (#4297)

* Amazon WorkSpaces Update: Fixed VolumeEncryptionKey descriptions

* Amazon Relational Database Service Update: Adds support for the DBSystemID parameter of CreateDBInstance to RDS Custom for Oracle.

* AWS Elemental MediaConvert Update: This release includes improvements to Preserve 444 handling, compatibility of HEVC sources without frame rates, and general improvements to MP4 outputs.

* AWS Glue Update: This release adds support for AWS Glue Crawler with Apache Hudi Tables, allowing Crawlers to discover Hudi Tables in S3 and register them in Glue Data Catalog for query engines to query against.

* Updated endpoints.json and partitions.json.

* Release 2.20.109. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.110-SNAPSHOT

* Amazon Chime SDK Media Pipelines Update: AWS Media Pipeline compositing enhancement and Media Insights Pipeline auto language identification.

* Amazon QuickSight Update: This release launches new Snapshot APIs for CSV and PDF exports, adds support for info icon for filters and parameters in Exploration APIs, adds modeled exception to the DeleteAccountCustomization API, and introduces AttributeAggregationFunction's ability to add UNIQUE_VALUE aggregation in tooltips.

* AWS Cost Explorer Service Update: This release introduces the new API 'GetSavingsPlanPurchaseRecommendationDetails', which retrieves the details for a Savings Plan recommendation. It also updates the existing API 'GetSavingsPlansPurchaseRecommendation' to include the recommendation detail ID.

* AWS Glue Update: Added support for Data Preparation Recipe node in Glue Studio jobs

* Amazon Elastic Compute Cloud Update: Add "disabled" enum value to SpotInstanceState.

* AWS CloudFormation Update: This release supports filtering by DRIFT_STATUS for existing API ListStackInstances and adds support for a new API ListStackInstanceResourceDrifts. Customers can now view resource drift information from their StackSet management accounts.

* AmazonApiGatewayV2 Update: Documentation updates for Amazon API Gateway.

* Updated endpoints.json and partitions.json.

* Release 2.20.110. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.111-SNAPSHOT

* Fixed bug in IAM policy builder where actions were being written instead of resources. (#4223)

Also fixed javadoc issue, where create() doesn't exist on the IAM client.

* Amazon DynamoDB Update: Documentation updates for DynamoDB

* Amazon Relational Database Service Update: This release adds support for monitoring storage optimization progress on the DescribeDBInstances API.

* AWS Lambda Update: Add Python 3.11 (python3.11) support to AWS Lambda

* AWS SecurityHub Update: Add support for CONTAINS and NOT_CONTAINS comparison operators for Automation Rules string filters and map filters

* AWS DataSync Update: AWS DataSync now supports Microsoft Azure Blob Storage locations.

* Amazon SageMaker Service Update: Mark ContentColumn and TargetLabelColumn as required Targets in TextClassificationJobConfig in CreateAutoMLJobV2API

* Amazon Connect Wisdom Service Update: This release added two new data types: AssistantIntegrationConfiguration, and SessionIntegrationConfiguration to support Wisdom integration with Amazon Connect Chat

* AWS Transfer Family Update: This release adds support for SFTP Connectors.

* AWSBillingConductor Update: Added support for Auto-Assocate Billing Groups for CreateBillingGroup, UpdateBillingGroup, and ListBillingGroups.

* Amazon Elastic Compute Cloud Update: This release adds an instance's peak and baseline network bandwidth as well as the memory sizes of an instance's inference accelerators to DescribeInstanceTypes.

* AWS Security Token Service Update: API updates for the AWS Security Token Service

* EMR Serverless Update: This release adds support for publishing application logs to CloudWatch.

* Amazon Connect Customer Profiles Update: Amazon Connect Customer Profiles now supports rule-based resolution to match and merge similar profiles into unified profiles, helping companies deliver faster and more personalized customer service by providing access to relevant customer information for agents and automated experiences.

* Release 2.20.111. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.112-SNAPSHOT

* Amazon HealthLake Update: Updating the HealthLake service documentation.

* Amazon Omics Update: The service is renaming as a part of AWS Health.

* Amazon Polly Update: Amazon Polly adds 1 new voice - Lisa (nl-BE)

* OpenSearch Service Serverless Update: This release adds new collection type VectorSearch.

* Amazon Managed Blockchain Query Update: Amazon Managed Blockchain (AMB) Query provides serverless access to standardized, multi-blockchain datasets with developer-friendly APIs.

* AWS Elemental MediaConvert Update: This release includes general updates to user documentation.

* Amazon Route 53 Update: Update that corrects the documents for received feedback.

* AWS Cloud Control API Update: Updates the documentation for CreateResource.

* AWS EntityResolution Update: AWS Entity Resolution can effectively match a source record from a customer relationship management (CRM) system with a source record from a marketing system containing campaign information.

* AWS Glue Update: Release Glue Studio Snowflake Connector Node for SDK/CLI

* Updated endpoints.json and partitions.json.

* Release 2.20.112. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.113-SNAPSHOT

* Amazon SageMaker Service Update: Expose ProfilerConfig attribute in SageMaker Search API response.

* Amazon Elastic Block Store Update: SDK and documentation updates for Amazon Elastic Block Store API

* Auto Scaling Update: This release updates validation for instance types used in the AllowedInstanceTypes and ExcludedInstanceTypes parameters of the InstanceRequirements property of a MixedInstancesPolicy.

* Amazon Elastic Compute Cloud Update: SDK and documentation updates for Amazon Elastic Block Store APIs

* Amazon Elastic Kubernetes Service Update: Add multiple customer error code to handle customer caused failure when managing EKS node groups

* Release 2.20.113. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.114-SNAPSHOT

* Cleanup unused imports/members (#4234)

* Amazon Simple Queue Service Update: Documentation changes related to SQS APIs.

* Release 2.20.114. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.115-SNAPSHOT

* Managed Streaming for Kafka Update: Amazon MSK has introduced new versions of ListClusterOperations and DescribeClusterOperation APIs. These v2 APIs provide information and insights into the ongoing operations of both MSK Provisioned and MSK Serverless clusters.

* Amazon CloudFront Update: Add a new JavaScript runtime version for CloudFront Functions.

* Amazon Pinpoint Update: Added support for sending push notifications using the FCM v1 API with json credentials. Amazon Pinpoint customers can now deliver messages to Android devices using both FCM v1 API and the legacy FCM/GCM API

* Amazon Connect Service Update: This release adds support for new number types.

* Amazon CloudWatch Application Insights Update: This release enable customer to add/remove/update more than one workload for a component

* AWS CloudFormation Update: This SDK release is for the feature launch of AWS CloudFormation RetainExceptOnCreate. It adds a new parameter retainExceptOnCreate in the following APIs: CreateStack, UpdateStack, RollbackStack, ExecuteChangeSet.

* Updated endpoints.json and partitions.json.

* Release 2.20.115. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.116-SNAPSHOT

* AWS Amplify UI Builder Update: Amplify Studio releases GraphQL support for codegen job action.

* Elastic Disaster Recovery Service Update: Add support for in-aws right sizing

* AWS CodeStar connections Update: New integration with the Gitlab provider type.

* AWS Clean Rooms Service Update: This release introduces custom SQL queries - an expanded set of SQL you can run. This release adds analysis templates, a new resource for storing pre-defined custom SQL queries ahead of time. This release also adds the Custom analysis rule, which lets you approve analysis templates for querying.

* Amazon Omics Update: Add CreationType filter for ListReadSets

* Inspector2 Update: This release adds 1 new API: BatchGetFindingDetails to retrieve enhanced vulnerability intelligence details for findings.

* Amazon Relational Database Service Update: This release adds support for Aurora MySQL local write forwarding, which allows for forwarding of write operations from reader DB instances to the writer DB instance.

* Amazon Lookout for Equipment Update: This release includes new import resource, model versioning and resource policy features.

* Amazon EventBridge Scheduler Update: This release introduces automatic deletion of schedules in EventBridge Scheduler. If configured, EventBridge Scheduler automatically deletes a schedule after the schedule has completed its last invocation.

* Amazon Route 53 Update: Amazon Route 53 now supports the Israel (Tel Aviv) Region (il-central-1) for latency records, geoproximity records, and private DNS for Amazon VPCs in that region.

* Auto Scaling Update: You can now configure an instance refresh to set its status to 'failed' when it detects that a specified CloudWatch alarm has gone into the ALARM state. You can also choose to roll back the instance refresh automatically when the alarm threshold is met.

* Updated endpoints.json and partitions.json.

* Release 2.20.116. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.117-SNAPSHOT

* Amazon SageMaker Service Update: Add Stairs TrafficPattern and FlatInvocations to RecommendationJobStoppingConditions

* AWS Batch Update: This release adds support for price capacity optimized allocation strategy for Spot Instances.

* Amazon CloudWatch Internet Monitor Update: This release adds a new feature for Amazon CloudWatch Internet Monitor that enables customers to set custom thresholds, for performance and availability drops, for impact limited to a single city-network to trigger creation of a health event.

* Amazon Relational Database Service Update: Added support for deleted clusters PiTR.

* AWS Database Migration Service Update: Adding new API describe-engine-versions which provides information about the lifecycle of a replication instance's version.

* AWS Elemental MediaLive Update: AWS Elemental Link devices now report their Availability Zone. Link devices now support the ability to change their Availability Zone.

* Amazon Polly Update: Amazon Polly adds new French Belgian voice - Isabelle. Isabelle is available as Neural voice only.

* Updated endpoints.json and partitions.json.

* Release 2.20.117. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.118-SNAPSHOT

* AWS Resilience Hub Update: Drift Detection capability added when applications policy has moved from a meet to breach state. Customers will be able to exclude operational recommendations and receive credit in their resilience score. Customers can now add ARH permissions to an existing or new role.

* Amazon Cognito Identity Provider Update: New feature that logs Cognito user pool error messages to CloudWatch logs.

* AWS Glue Update: This release includes additional Glue Streaming KAKFA SASL property types.

* Amazon SageMaker Service Update: SageMaker Inference Recommender introduces a new API GetScalingConfigurationRecommendation to recommend auto scaling policies based on completed Inference Recommender jobs.

* AWS Budgets Update: As part of CAE tagging integration we need to update our budget names regex filter to prevent customers from using "/action/" in their budget names.

* Updated endpoints.json and partitions.json.

* Release 2.20.118. Updated CHANGELOG.md, README.md and all pom.xml.

* Fixed an issue in ChecksumCalculatingAsyncRequestBody where the posit… (#4244)

* Fixed an issue in ChecksumCalculatingAsyncRequestBody where the position of the ByteBuffer was not honored.

* Fix checkstyle

* rename methods and variables

* Add javadocs

* Update to next snapshot version: 2.20.119-SNAPSHOT

* Add Expect 100-continue for UploadPartRequest (#4252)

* Add Expect 100-continue for UploadPartRequest

* Fix typo

* Bump crt to 0.24.0 (#4256)

* Amazon SageMaker Service Update: Amazon SageMaker now supports running training jobs on p5.48xlarge instance types.

* Amazon Elastic Compute Cloud Update: This release adds new parameter isPrimaryIPv6 to allow assigning an IPv6 address as a primary IPv6 address to a network interface which cannot be changed to give equivalent functionality available for network interfaces with primary IPv4 address.

* Auto Scaling Update: Documentation changes related to Amazon EC2 Auto Scaling APIs.

* AWS Database Migration Service Update: The release makes public API for DMS Schema Conversion feature.

* AWS Cloud9 Update: Updated the deprecation date for Amazon Linux. Doc only update.

* Release 2.20.119. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.120-SNAPSHOT

* AWS Certificate Manager Private Certificate Authority Update: Documentation correction for AWS Private CA

* Amazon Connect Service Update: Added a new API UpdateRoutingProfileAgentAvailabilityTimer to update agent availability timer of a routing profile.

* Amazon SageMaker Service Update: Including DataCaptureConfig key in the Amazon Sagemaker Search's transform job object

* AWS DataSync Update: Display cloud storage used capacity at a cluster level.

* Amazon EC2 Container Service Update: This is a documentation update to address various tickets.

* Updated endpoints.json and partitions.json.

* Release 2.20.120. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.121-SNAPSHOT

* Java based S3 Multipart Client (#4254)

* Implement multipart upload in Java-based S3 async client (#4052)

* Implement multipart upload in Java-based S3 async client
Co-authored-by: Matthew Miller <millem@amazon.com>

* Iterate SdkFields to convert requests (#4177)

* Iterate SdkFields to convert requests

* Fix flaky test

* Rename convertion utils class

* Fix null content length in SplittingPublisher (#4173)

* Implement multipart copy in Java-based S3 async client (#4189)

* Create split method in AsyncRequestBody to return SplittingPublisher (#4188)

* Create split method in AsyncRequestBody to return SplittingPublisher

* Fix Javadoc and build

* Add more tests with ByteArrayAsyncRequestBody (#4214)

* Handle null response metadata (#4215)

* Handle null response metadata

* Fix build

* Support streaming with unknown content length (#4226)

* Support uploading with unknown content length

* Refactoring

* Create a configuration class for SdkPublisher#split (#4236)

* S3 Multipart API implementation (#4235)

* Multipart API
fix merge conflicts

* getObject(...) throw UnsupportedOperationException

* Use user agent for all requests in MultipartS3Client

* MultipartS3AsyncClient javadoc + API_NAME private

* use `maximumMemoryUsageInBytes`

* fix problem with UserAgent, cleanup

* move contextParam keys to S3AsyncClientDecorator

* javadoc

* more javadoc

* Use 4x part size as default apiCallBufferSize

* Fix test

* Guard against re-subscription in SplittingPublisher (#4253)

* guard against re-subscription in SplittingPublisher

* fix checkstyle

* Error msg

* Fix a race condition where the third upload part request was sent before the second one (#4260)

---------

Co-authored-by: Zoe Wang <33073555+zoewangg@users.noreply.github.com>

* Amazon Interactive Video Service RealTime Update: Add QUOTA_EXCEEDED and PUBLISHER_NOT_FOUND to EventErrorCode for stage health events.

* Amazon Kinesis Video Streams Update: This release enables minimum of Images SamplingInterval to be as low as 200 milliseconds in Kinesis Video Stream Image feature.

* Amazon Rekognition Update: This release adds code snippets for Amazon Rekognition Custom Labels.

* Amazon Kinesis Video Streams Archived Media Update: This release enables minimum of Images SamplingInterval to be as low as 200 milliseconds in Kinesis Video Stream Image feature.

* Amazon Detective Update: Updated the email validation regex to be in line with the TLD name specifications.

* Updated endpoints.json and partitions.json.

* Release 2.20.121. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.122-SNAPSHOT

* Update to next snapshot version: 2.20.122-SNAPSHOT (#4275)

* Update to next snapshot version: 2.20.122-SNAPSHOT

* Revert previous version number

* AWS Service Catalog Update: Introduce support for HashiCorp Terraform Cloud in Service Catalog by addying TERRAFORM_CLOUD product type in CreateProduct and CreateProvisioningArtifact API.

* AWS Backup Update: This release introduces a new logically air-gapped vault (Preview) in AWS Backup that stores immutable backup copies, which are locked by default and isolated with encryption using AWS owned keys. Logically air-gapped vault (Preview) allows secure recovery of application data across accounts.

* Amazon ElastiCache Update: Added support for cluster mode in online migration and test migration API

* Updated endpoints.json and partitions.json.

* Release 2.20.122. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.123-SNAPSHOT

* Add default methods to AwsServiceClientConfiguration.Builder and SdkServiceClientConfiguration.Builder. (#4263)

This allows older client versions to still compile with newer runtime versions.

* Expose thresholdSizeInBytes in AWS CRT-based S3 client (#4282)

* AWS Global Accelerator Update: Documentation update for dualstack EC2 endpoint support

* Amazon FSx Update: For FSx for Lustre, add new data repository task type, RELEASE_DATA_FROM_FILESYSTEM, to release files that have been archived to S3. For FSx for Windows, enable support for configuring and updating SSD IOPS, and for updating storage type. For FSx for OpenZFS, add new deployment type, MULTI_AZ_1.

* Amazon Chime SDK Voice Update: Updating CreatePhoneNumberOrder, UpdatePhoneNumber and BatchUpdatePhoneNumbers APIs, adding phone number name

* Amazon GuardDuty Update: Added autoEnable ALL to UpdateOrganizationConfiguration and DescribeOrganizationConfiguration APIs.

* Amazon SageMaker Service Update: This release adds support for cross account access for SageMaker Model Cards through AWS RAM.

* Updated endpoints.json and partitions.json.

* Release 2.20.123. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.124-SNAPSHOT

* Fix immutableCopyOf bug (#4266)

* Set limit when cloning ByteBuffer

* Add changelog

* Add L-Applin and breader124 to the all-contributors hall (#4276)

* Fix for Issue [#4156](https://github.com/aws/aws-sdk-java-v2/issues/4156) : Single quotes in toJson conversions for EnhancedDocuments are no longer being escaped. (#4277)

* Amazon Connect Service Update: This release adds APIs to provision agents that are global / available in multiple AWS regions and distribute them across these regions by percentage.

* AWS Secrets Manager Update: Add additional InvalidRequestException to list of possible exceptions for ListSecret.

* AWS CloudTrail Update: Documentation updates for CloudTrail.

* AWS Transfer Family Update: Documentation updates for AW Transfer Family

* Elastic Load Balancing Update: This release enables configuring security groups for Network Load Balancers

* Amazon Omics Update: This release adds instanceType to GetRunTask & ListRunTasks responses.

* Updated endpoints.json and partitions.json.

* Release 2.20.124. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.125-SNAPSHOT

* AmplifyBackend Update: Adds sensitive trait to required input shapes.

* AWS Config Update: Updated ResourceType enum with new resource types onboarded by AWS Config in July 2023.

* Amazon Elastic Compute Cloud Update: Amazon EC2 P5 instances, powered by the latest NVIDIA H100 Tensor Core GPUs, deliver the highest performance in EC2 for deep learning (DL) and HPC applications. M7i-flex and M7i instances are next-generation general purpose instances powered by custom 4th Generation Intel Xeon Scalable processors.

* Amazon Simple Email Service Update: Doc only updates to include: 1) Clarified which part of an email address where it's okay to have Punycode when it contains non-ASCII characters for the SendRawEmail action and other actions where this is applicable. 2) Updated S3Action description with new MB max bucket size from 30 to 40.

* Amazon Simple Workflow Service Update: This release adds new API parameters to override workflow task list for workflow executions.

* Amazon QuickSight Update: New Authentication method for Account subscription - IAM Identity Center. Hierarchy layout support, default column width support and related style properties for pivot table visuals. Non-additive topic field aggregations for Topic API

* Updated endpoints.json and partitions.json.

* Release 2.20.125. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.126-SNAPSHOT

---------

Co-authored-by: AWS <>
Co-authored-by: aws-sdk-java-automation <43143862+aws-sdk-java-automation@users.noreply.github.com>
Co-authored-by: Matthew Miller <millem@amazon.com>
Co-authored-by: Dongie Agnir <261310+dagnir@users.noreply.github.com>
Co-authored-by: Zoe Wang <33073555+zoewangg@users.noreply.github.com>
Co-authored-by: Olivier L Applin <olapplin@amazon.com>
Co-authored-by: Debora N. Ito <476307+debora-ito@users.noreply.github.com>
Co-authored-by: John Viegas <70235430+joviegas@users.noreply.github.com>

* Request compression async streaming (#4262)

* Refactor to common class AwsChunkedInputStream

* Sync streaming compression

* Sync streaming compression functional tests

* Sync streaming compression integ tests

* Fix integ test

* Async streaming compression

* Address comments

* Refactor ChunkBuffer class

* Address comments

* Address comments

* Remove unused field

* Handle demand in Subscriber

* Address comments

* Add back final modifier

* Merge from master (#4369)

* Amazon Elastic Kubernetes Service Update: Add multiple customer error code to handle customer caused failure when managing EKS node groups

* Release 2.20.113. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.114-SNAPSHOT

* Cleanup unused imports/members (#4234)

* Amazon Simple Queue Service Update: Documentation changes related to SQS APIs.

* Release 2.20.114. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.115-SNAPSHOT

* Managed Streaming for Kafka Update: Amazon MSK has introduced new versions of ListClusterOperations and DescribeClusterOperation APIs. These v2 APIs provide information and insights into the ongoing operations of both MSK Provisioned and MSK Serverless clusters.

* Amazon CloudFront Update: Add a new JavaScript runtime version for CloudFront Functions.

* Amazon Pinpoint Update: Added support for sending push notifications using the FCM v1 API with json credentials. Amazon Pinpoint customers can now deliver messages to Android devices using both FCM v1 API and the legacy FCM/GCM API

* Amazon Connect Service Update: This release adds support for new number types.

* Amazon CloudWatch Application Insights Update: This release enable customer to add/remove/update more than one workload for a component

* AWS CloudFormation Update: This SDK release is for the feature launch of AWS CloudFormation RetainExceptOnCreate. It adds a new parameter retainExceptOnCreate in the following APIs: CreateStack, UpdateStack, RollbackStack, ExecuteChangeSet.

* Updated endpoints.json and partitions.json.

* Release 2.20.115. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.116-SNAPSHOT

* AWS Amplify UI Builder Update: Amplify Studio releases GraphQL support for codegen job action.

* Elastic Disaster Recovery Service Update: Add support for in-aws right sizing

* AWS CodeStar connections Update: New integration with the Gitlab provider type.

* AWS Clean Rooms Service Update: This release introduces custom SQL queries - an expanded set of SQL you can run. This release adds analysis templates, a new resource for storing pre-defined custom SQL queries ahead of time. This release also adds the Custom analysis rule, which lets you approve analysis templates for querying.

* Amazon Omics Update: Add CreationType filter for ListReadSets

* Inspector2 Update: This release adds 1 new API: BatchGetFindingDetails to retrieve enhanced vulnerability intelligence details for findings.

* Amazon Relational Database Service Update: This release adds support for Aurora MySQL local write forwarding, which allows for forwarding of write operations from reader DB instances to the writer DB instance.

* Amazon Lookout for Equipment Update: This release includes new import resource, model versioning and resource policy features.

* Amazon EventBridge Scheduler Update: This release introduces automatic deletion of schedules in EventBridge Scheduler. If configured, EventBridge Scheduler automatically deletes a schedule after the schedule has completed its last invocation.

* Amazon Route 53 Update: Amazon Route 53 now supports the Israel (Tel Aviv) Region (il-central-1) for latency records, geoproximity records, and private DNS for Amazon VPCs in that region.

* Auto Scaling Update: You can now configure an instance refresh to set its status to 'failed' when it detects that a specified CloudWatch alarm has gone into the ALARM state. You can also choose to roll back the instance refresh automatically when the alarm threshold is met.

* Updated endpoints.json and partitions.json.

* Release 2.20.116. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.117-SNAPSHOT

* Amazon SageMaker Service Update: Add Stairs TrafficPattern and FlatInvocations to RecommendationJobStoppingConditions

* AWS Batch Update: This release adds support for price capacity optimized allocation strategy for Spot Instances.

* Amazon CloudWatch Internet Monitor Update: This release adds a new feature for Amazon CloudWatch Internet Monitor that enables customers to set custom thresholds, for performance and availability drops, for impact limited to a single city-network to trigger creation of a health event.

* Amazon Relational Database Service Update: Added support for deleted clusters PiTR.

* AWS Database Migration Service Update: Adding new API describe-engine-versions which provides information about the lifecycle of a replication instance's version.

* AWS Elemental MediaLive Update: AWS Elemental Link devices now report their Availability Zone. Link devices now support the ability to change their Availability Zone.

* Amazon Polly Update: Amazon Polly adds new French Belgian voice - Isabelle. Isabelle is available as Neural voice only.

* Updated endpoints.json and partitions.json.

* Release 2.20.117. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.118-SNAPSHOT

* AWS Resilience Hub Update: Drift Detection capability added when applications policy has moved from a meet to breach state. Customers will be able to exclude operational recommendations and receive credit in their resilience score. Customers can now add ARH permissions to an existing or new role.

* Amazon Cognito Identity Provider Update: New feature that logs Cognito user pool error messages to CloudWatch logs.

* AWS Glue Update: This release includes additional Glue Streaming KAKFA SASL property types.

* Amazon SageMaker Service Update: SageMaker Inference Recommender introduces a new API GetScalingConfigurationRecommendation to recommend auto scaling policies based on completed Inference Recommender jobs.

* AWS Budgets Update: As part of CAE tagging integration we need to update our budget names regex filter to prevent customers from using "/action/" in their budget names.

* Updated endpoints.json and partitions.json.

* Release 2.20.118. Updated CHANGELOG.md, README.md and all pom.xml.

* Fixed an issue in ChecksumCalculatingAsyncRequestBody where the posit… (#4244)

* Fixed an issue in ChecksumCalculatingAsyncRequestBody where the position of the ByteBuffer was not honored.

* Fix checkstyle

* rename methods and variables

* Add javadocs

* Update to next snapshot version: 2.20.119-SNAPSHOT

* Add Expect 100-continue for UploadPartRequest (#4252)

* Add Expect 100-continue for UploadPartRequest

* Fix typo

* Bump crt to 0.24.0 (#4256)

* Amazon SageMaker Service Update: Amazon SageMaker now supports running training jobs on p5.48xlarge instance types.

* Amazon Elastic Compute Cloud Update: This release adds new parameter isPrimaryIPv6 to allow assigning an IPv6 address as a primary IPv6 address to a network interface which cannot be changed to give equivalent functionality available for network interfaces with primary IPv4 address.

* Auto Scaling Update: Documentation changes related to Amazon EC2 Auto Scaling APIs.

* AWS Database Migration Service Update: The release makes public API for DMS Schema Conversion feature.

* AWS Cloud9 Update: Updated the deprecation date for Amazon Linux. Doc only update.

* Release 2.20.119. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.120-SNAPSHOT

* AWS Certificate Manager Private Certificate Authority Update: Documentation correction for AWS Private CA

* Amazon Connect Service Update: Added a new API UpdateRoutingProfileAgentAvailabilityTimer to update agent availability timer of a routing profile.

* Amazon SageMaker Service Update: Including DataCaptureConfig key in the Amazon Sagemaker Search's transform job object

* AWS DataSync Update: Display cloud storage used capacity at a cluster level.

* Amazon EC2 Container Service Update: This is a documentation update to address various tickets.

* Updated endpoints.json and partitions.json.

* Release 2.20.120. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.121-SNAPSHOT

* Java based S3 Multipart Client (#4254)

* Implement multipart upload in Java-based S3 async client (#4052)

* Implement multipart upload in Java-based S3 async client
Co-authored-by: Matthew Miller <millem@amazon.com>

* Iterate SdkFields to convert requests (#4177)

* Iterate SdkFields to convert requests

* Fix flaky test

* Rename convertion utils class

* Fix null content length in SplittingPublisher (#4173)

* Implement multipart copy in Java-based S3 async client (#4189)

* Create split method in AsyncRequestBody to return SplittingPublisher (#4188)

* Create split method in AsyncRequestBody to return SplittingPublisher

* Fix Javadoc and build

* Add more tests with ByteArrayAsyncRequestBody (#4214)

* Handle null response metadata (#4215)

* Handle null response metadata

* Fix build

* Support streaming with unknown content length (#4226)

* Support uploading with unknown content length

* Refactoring

* Create a configuration class for SdkPublisher#split (#4236)

* S3 Multipart API implementation (#4235)

* Multipart API
fix merge conflicts

* getObject(...) throw UnsupportedOperationException

* Use user agent for all requests in MultipartS3Client

* MultipartS3AsyncClient javadoc + API_NAME private

* use `maximumMemoryUsageInBytes`

* fix problem with UserAgent, cleanup

* move contextParam keys to S3AsyncClientDecorator

* javadoc

* more javadoc

* Use 4x part size as default apiCallBufferSize

* Fix test

* Guard against re-subscription in SplittingPublisher (#4253)

* guard against re-subscription in SplittingPublisher

* fix checkstyle

* Error msg

* Fix a race condition where the third upload part request was sent before the second one (#4260)

---------

Co-authored-by: Zoe Wang <33073555+zoewangg@users.noreply.github.com>

* Amazon Interactive Video Service RealTime Update: Add QUOTA_EXCEEDED and PUBLISHER_NOT_FOUND to EventErrorCode for stage health events.

* Amazon Kinesis Video Streams Update: This release enables minimum of Images SamplingInterval to be as low as 200 milliseconds in Kinesis Video Stream Image feature.

* Amazon Rekognition Update: This release adds code snippets for Amazon Rekognition Custom Labels.

* Amazon Kinesis Video Streams Archived Media Update: This release enables minimum of Images SamplingInterval to be as low as 200 milliseconds in Kinesis Video Stream Image feature.

* Amazon Detective Update: Updated the email validation regex to be in line with the TLD name specifications.

* Updated endpoints.json and partitions.json.

* Release 2.20.121. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.122-SNAPSHOT

* Update to next snapshot version: 2.20.122-SNAPSHOT (#4275)

* Update to next snapshot version: 2.20.122-SNAPSHOT

* Revert previous version number

* AWS Service Catalog Update: Introduce support for HashiCorp Terraform Cloud in Service Catalog by addying TERRAFORM_CLOUD product type in CreateProduct and CreateProvisioningArtifact API.

* AWS Backup Update: This release introduces a new logically air-gapped vault (Preview) in AWS Backup that stores immutable backup copies, which are locked by default and isolated with encryption using AWS owned keys. Logically air-gapped vault (Preview) allows secure recovery of application data across accounts.

* Amazon ElastiCache Update: Added support for cluster mode in online migration and test migration API

* Updated endpoints.json and partitions.json.

* Release 2.20.122. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.123-SNAPSHOT

* Add default methods to AwsServiceClientConfiguration.Builder and SdkServiceClientConfiguration.Builder. (#4263)

This allows older client versions to still compile with newer runtime versions.

* Expose thresholdSizeInBytes in AWS CRT-based S3 client (#4282)

* AWS Global Accelerator Update: Documentation update for dualstack EC2 endpoint support

* Amazon FSx Update: For FSx for Lustre, add new data repository task type, RELEASE_DATA_FROM_FILESYSTEM, to release files that have been archived to S3. For FSx for Windows, enable support for configuring and updating SSD IOPS, and for updating storage type. For FSx for OpenZFS, add new deployment type, MULTI_AZ_1.

* Amazon Chime SDK Voice Update: Updating CreatePhoneNumberOrder, UpdatePhoneNumber and BatchUpdatePhoneNumbers APIs, adding phone number name

* Amazon GuardDuty Update: Added autoEnable ALL to UpdateOrganizationConfiguration and DescribeOrganizationConfiguration APIs.

* Amazon SageMaker Service Update: This release adds support for cross account access for SageMaker Model Cards through AWS RAM.

* Updated endpoints.json and partitions.json.

* Release 2.20.123. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.124-SNAPSHOT

* Fix immutableCopyOf bug (#4266)

* Set limit when cloning ByteBuffer

* Add changelog

* Add L-Applin and breader124 to the all-contributors hall (#4276)

* Fix for Issue [#4156](https://github.com/aws/aws-sdk-java-v2/issues/4156) : Single quotes in toJson conversions for EnhancedDocuments are no longer being escaped. (#4277)

* Amazon Connect Service Update: This release adds APIs to provision agents that are global / available in multiple AWS regions and distribute them across these regions by percentage.

* AWS Secrets Manager Update: Add additional InvalidRequestException to list of possible exceptions for ListSecret.

* AWS CloudTrail Update: Documentation updates for CloudTrail.

* AWS Transfer Family Update: Documentation updates for AW Transfer Family

* Elastic Load Balancing Update: This release enables configuring security groups for Network Load Balancers

* Amazon Omics Update: This release adds instanceType to GetRunTask & ListRunTasks responses.

* Updated endpoints.json and partitions.json.

* Release 2.20.124. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.125-SNAPSHOT

* AmplifyBackend Update: Adds sensitive trait to required input shapes.

* AWS Config Update: Updated ResourceType enum with new resource types onboarded by AWS Config in July 2023.

* Amazon Elastic Compute Cloud Update: Amazon EC2 P5 instances, powered by the latest NVIDIA H100 Tensor Core GPUs, deliver the highest performance in EC2 for deep learning (DL) and HPC applications. M7i-flex and M7i instances are next-generation general purpose instances powered by custom 4th Generation Intel Xeon Scalable processors.

* Amazon Simple Email Service Update: Doc only updates to include: 1) Clarified which part of an email address where it's okay to have Punycode when it contains non-ASCII characters for the SendRawEmail action and other actions where this is applicable. 2) Updated S3Action description with new MB max bucket size from 30 to 40.

* Amazon Simple Workflow Service Update: This release adds new API parameters to override workflow task list for workflow executions.

* Amazon QuickSight Update: New Authentication method for Account subscription - IAM Identity Center. Hierarchy layout support, default column width support and related style properties for pivot table visuals. Non-additive topic field aggregations for Topic API

* Updated endpoints.json and partitions.json.

* Release 2.20.125. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.126-SNAPSHOT

* AWS Elemental MediaPackage Update: Fix SDK logging of certain fields.

* Amazon Omics Update: This release provides support for annotation store versioning and cross account sharing for Omics Analytics

* AWS Transfer Family Update: Documentation updates for AWS Transfer Family

* Updated endpoints.json and partitions.json.

* Release 2.20.126. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.127-SNAPSHOT

* S3 Benchmarks - support java-based multipart client (#4288)

S3 Benchmarks - support java-based multipart client

* Amazon Route 53 Domains Update: Provide explanation if CheckDomainTransferability return false. Provide requestId if a request is already submitted. Add sensitive protection for customer information

* AWS Glue Update: AWS Glue Crawlers can now accept SerDe overrides from a custom csv classifier. The two SerDe options are LazySimpleSerDe and OpenCSVSerDe. In case, the user wants crawler to do the selection, "None" can be selected for this purpose.

* Amazon SageMaker Service Update: SageMaker Inference Recommender now provides SupportedResponseMIMETypes from DescribeInferenceRecommendationsJob response

* AWS Performance Insights Update: AWS Performance Insights for Amazon RDS is launching Performance Analysis On Demand, a new feature that allows you to analyze database performance metrics and find out the performance issues. You can now use SDK to create, list, get, delete, and manage tags of performance analysis reports.

* Amazon Elastic Compute Cloud Update: Documentation updates for Elastic Compute Cloud (EC2).

* Amazon Chime SDK Meetings Update: Updated API documentation to include additional exceptions.

* Updated endpoints.json and partitions.json.

* Release 2.20.127. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.128-SNAPSHOT

* Fixed the issue where thresholdInBytes is not the same as minimalPart… (#4289)

* Fixed the issue where thresholdInBytes is not the same as minimalPartSizeInBytes if a custom minimalPartSizeInBytes is provided.

* Address feedback

* Add more test

* Update LaunchChangelog.md to add IAM Policy Builder (#4301)

* Add SERVICE_ENDPOINT metric (#4307)

* Implement SERVICE_ENDPOINT core metric

* Create CollectionStages for SERVICE_ENDPOINT

* Remove erviceEndpointMetricCollectionStages since they're unnecessary

* Move collection of SERVICE_ENDPOINT metric

Simplify by collecting in the API Call metric collection stages where other
request metrics are already being collected.

* Remove unused import

* Update changelog entry

* Fix test

* Remove unused class

---------

Co-authored-by: David Negrete <davidfn@amazon.com>

* Amazon CloudWatch Update: Doc-only update to incorporate several doc bug fixes

* Amazon Lex Model Building V2 Update: This release updates the Custom Vocabulary Weight field to support a value of 0.

* Release 2.20.128. Updated CHANGELOG.md, README.md and all pom.xml.

* Ensure onNext will be called even if publishing empty content and onC… (#4290)

* Ensure onNext will be called even if publishing empty content and onComplete is called directly

* Adding changelog and removing unnecessary override

* Update to next snapshot version: 2.20.129-SNAPSHOT

* Fix javadocs links - consumer request objects (#4310)

* Fix javadocs links - consumer request objects

* Use getShapeName instead of getC2jName

* Use fully qualified name

* Update codegen test classes

* changing terminology to more inclusive terms (#4115)

* Amazon Elastic Compute Cloud Update: Adds support for SubnetConfigurations to allow users to select their own IPv4 and IPv6 addresses for Interface VPC endpoints

* Amazon GameLift Update: Amazon GameLift updates its instance types support.

* Updated endpoints.json and partitions.json.

* Release 2.20.129. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.130-SNAPSHOT

* AWS SecurityHub Update: Added Inspector Lambda code Vulnerability section to ASFF, including GeneratorDetails, EpssScore, ExploitAvailable, and CodeVulnerabilities.

* AWS CodeCommit Update: Add new ListFileCommitHistory operation to retrieve commits which introduced changes to a specific file.

* Updated endpoints.json and partitions.json.

* Release 2.20.130. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.131-SNAPSHOT

* AWS Cloud9 Update: Doc only update to add Ubuntu 22.04 as an Image ID option for Cloud9

* Amazon Route 53 Domains Update: Fixed typos in description fields

* Amazon Elastic Compute Cloud Update: The DeleteKeyPair API has been updated to return the keyPairId when an existing key pair is deleted.

* Amazon Relational Database Service Update: Adding support for RDS Aurora Global Database Unplanned Failover

* FinSpace User Environment Management service Update: Allow customers to manage outbound traffic from their Kx Environment when attaching a transit gateway by providing network acl entries. Allow the customer to choose how they want to update the databases on a cluster allowing updates to possibly be faster than usual.

* Updated endpoints.json and partitions.json.

* Release 2.20.131. Updated CHANGELOG.md, README.md and all pom.xml.

* Corrected a minor JavaDoc typo in the DynamoDbBean class. (#4325)

* Remove unused address interceptor (#4316)

* Bump reactive-streams from 1.0.3 to 1.0.4 (#4322)

Signed-off-by: Chad Wilson <chadw@thoughtworks.com>

* Update to next snapshot version: 2.20.132-SNAPSHOT

* Modify ArnResource to handle more variants of resources (#4317)

* Changes default behavior for DynamoDb Enhanced atomic counter extension (#4314)

* Changes the default behavior for DynamoDb Enhanced atomic counter extension to filter out any counter attributes in the item map if present

* docs: add chadlwilson as a contributor for code (#4330)

* docs: update README.md [skip ci]

* docs: update .all-contributorsrc [skip ci]

---------

Co-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com>

* Amazon Verified Permissions Update: Documentation updates for Amazon Verified Permissions. Increases max results per page for ListPolicyStores, ListPolicies, and ListPolicyTemplates APIs from 20 to 50.

* AWS Cost Explorer Service Update: This release adds the LastUpdatedDate and LastUsedDate timestamps to help you manage your cost allocation tags.

* Amazon Relational Database Service Update: Adding parameters to CreateCustomDbEngineVersion reserved for future use.

* AWS Global Accelerator Update: Global Accelerator now supports Client Ip Preservation for Network Load Balancer endpoints.

* Updated endpoints.json and partitions.json.

* Release 2.20.132. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.133-SNAPSHOT

* Amazon API Gateway Update: This release adds RootResourceId to GetRestApi response.

* Amazon Polly Update: Amazon Polly adds 1 new voice - Zayd (ar-AE)

* Amazon Elastic Compute Cloud Update: Marking fields as sensitive on BundleTask and GetPasswordData

* Updated endpoints.json and partitions.json.

* Release 2.20.133. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.134-SNAPSHOT

* Add support for presigned DeleteObject (#4313)

* Add support for presigned DeleteObject

* Review comments

 - Add proper annotations
 - Add equals and hashCode

* Add auth-crt to bom (#4338)

* AWS Elemental MediaLive Update: MediaLive now supports passthrough of KLV data to a HLS output group with a TS container. MediaLive now supports setting an attenuation mode for AC3 audio when the coding mode is 3/2 LFE. MediaLive now supports specifying whether to include filler NAL units in RTMP output group settings.

* Amazon Relational Database Service Update: This release updates the supported versions for Percona XtraBackup in Aurora MySQL.

* AWS MediaTailor Update: Adds new source location AUTODETECT_SIGV4 access type.

* Amazon QuickSight Update: Excel support in Snapshot Export APIs. Removed Required trait for some insight Computations. Namespace-shared Folders support. Global Filters support. Table pin Column support.

* AWS S3 Control Update: Updates to endpoint ruleset tests to address Smithy validation issues and standardize the capitalization of DualStack.

* AWS Elemental MediaConvert Update: This release includes additional audio channel tags in Quicktime outputs, support for film grain synthesis for AV1 outputs, ability to create audio-only FLAC outputs, and ability to specify Amazon S3 destination storage class.

* Amazon Simple Storage Service Update: Updates to endpoint ruleset tests to address Smithy validation issues.

* AWS Glue Update: Added API attributes that help in the monitoring of sessions.

* Amazon Verified Permissions Update: Documentation updates for Amazon Verified Permissions.

* Amazon Elastic Compute Cloud Update: Amazon EC2 M7a instances, powered by 4th generation AMD EPYC processors, deliver up to 50% higher performance compared to M6a instances. Amazon EC2 Hpc7a instances, powered by 4th Gen AMD EPYC processors, deliver up to 2.5x better performance compared to Amazon EC2 Hpc6a instances.

* Updated endpoints.json and partitions.json.

* Release 2.20.134. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.135-SNAPSHOT

* fix IamPolicy code example docs. (#4324)

Co-authored-by: Debora N. Ito <476307+debora-ito@users.noreply.github.com>

* Add option to output all results to disk (#4344)

* docs: add ManishDait as a contributor for doc (#4343)

* docs: update README.md [skip ci]

* docs: update .all-contributorsrc [skip ci]

---------

Co-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com>

* Amazon Detective Update: Added protections to interacting with fields containing customer information.

* AWS CloudTrail Update: Add ThrottlingException with error code 429 to handle CloudTrail Delegated Admin request rate exceeded on organization resources.

* Amazon CloudWatch Update: Doc-only update to get doc bug fixes into the SDK docs

* Updated endpoints.json and partitions.json.

* Release 2.20.135. Updated CHANGELOG.md, README.md and all pom.xml.

* Revert "Modify ArnResource to handle more variants of resources (#4317)"

This reverts commit 0a37e9f4f58616c9e81da6c3a78c7bcb423c9a57.

* Update to next snapshot version: 2.20.136-SNAPSHOT

* Revert "Modify ArnResource to handle more variants of resources (#4317)" (#4349)

This reverts commit 0a37e9f4f58616c9e81da6c3a78c7bcb423c9a57.

* Use zoned date time in benchmark params (#4351)

This is useful when the results are processed across different systems.

* AWS Organizations Update: Documentation updates for permissions and links.

* AWS Backup Update: Add support for customizing time zone for backup window in backup plan rules.

* Amazon WorkSpaces Web Update: WorkSpaces Web now enables Admins to configure which cookies are synchronized from an end-user's local browser to the in-session browser. In conjunction with a browser extension, this feature enables enhanced Single-Sign On capability by reducing the number of times an end-user has to authenticate.

* Service Quotas Update: Service Quotas now supports viewing the applied quota value and requesting a quota increase for a specific resource in an AWS account.

* AWS Compute Optimizer Update: This release enables AWS Compute Optimizer to analyze and generate licensing optimization recommendations for sql server running on EC2 instances.

* Amazon Security Lake Update: Remove incorrect regex enforcement on pagination tokens.

* Updated endpoints.json and partitions.json.

* Release 2.20.136. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.137-SNAPSHOT

* Optimize file uploads by reading from file in parallel (#4331)

* Optimize file upload by reading from file in different offsets in parallel

* Override split in FileAsyncRequestBody

* Address feedback and fix the issue where doAfterOnComplete is invoked

* address feedback

* Fix issue reported by sonarcloud

* Upgrade jacoco to 0.8.10 (#4360)

* Upgrade jacoco to 0.8.10

* Fix test coverage reporting with java 17

* Amazon Simple Email Service Update: Adds support for the new Export and Message Insights features: create, get, list and cancel export jobs; get message insights.

* Amazon Omics Update: Add RetentionMode support for Runs.

* Amazon Cognito Identity Provider Update: Added API example requests and responses for several operations. Fixed the validation regex for user pools Identity Provider name.

* Amazon FSx Update: Documentation updates for project quotas.

* Release 2.20.137. Updated CHANGELOG.md, README.md and all pom.xml.

* Update to next snapshot version: 2.20.138-SNAPSHOT

---------

Signed-off-by: Chad Wilson <chadw@thoughtworks.com>
Co-authored-by: AWS <>
Co-authored-by: aws-sdk-java-automation <43143862+aws-sdk-java-automation@users.noreply.github.com>
Co-authored-by: Dongie Agnir <261310+dagnir@users.noreply.github.com>
Co-authored-by: Zoe Wang <33073555+zoewangg@users.noreply.github.com>
Co-authored-by: Olivier L Applin <olapplin@amazon.com>
Co-authored-by: Matthew Miller <millem@amazon.com>
Co-authored-by: Debora N. Ito <476307+debora-ito@users.noreply.github.com>
Co-authored-by: John Viegas <70235430+joviegas@users.noreply.github.com>
Co-authored-by: David Negrete <davidfn@amazon.com>
Co-authored-by: Anna-Karin Salander <salande@amazon.com>
Co-authored-by: Chad Wilson <chadw@thoughtworks.com>
Co-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com>
Co-authored-by: Manish Dait <90558243+ManishDait@users.noreply.github.com>

---------

Signed-off-by: Chad Wilson <chadw@thoughtworks.com>
Co-authored-by: aws-sdk-java-automation <43143862+aws-sdk-java-automation@users.noreply.github.com>
Co-authored-by: Matthew Miller <millem@amazon.com>
Co-authored-by: Dongie Agnir <261310+dagnir@users.noreply.github.com>
Co-authored-by: Zoe Wang <33073555+zoewangg@users.noreply.github.com>
Co-authored-by: Olivier L Applin <olapplin@amazon.com>
Co-authored-by: Debora N. Ito <476307+debora-ito@users.noreply.github.com>
Co-authored-by: John Viegas <70235430+joviegas@users.noreply.github.com>
Co-authored-by: David Negrete <davidfn@amazon.com>
Co-authored-by: Anna-Karin Salander <salande@amazon.com>
Co-authored-by: Chad Wilson <chadw@thoughtworks.com>
Co-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com>
Co-authored-by: Manish Dait <90558243+ManishDait@users.noreply.github.com>

* Add changelog

* Remove unused imports

* Update codegen test classes

* Remove old changelog

* Refactor MockAsyncHttpClient

* Remove comments

* Fix assertion

* Address comments

* Address comments

* Address comments

* Ensure container names are unique

* Fix Checkstyle line length

* Ensure container names are unique

---------

Signed-off-by: Chad Wilson <chadw@thoughtworks.com>
Co-authored-by: aws-sdk-java-automation <43143862+aws-sdk-java-automation@users.noreply.github.com>
Co-authored-by: Matthew Miller <millem@amazon.com>
Co-authored-by: Dongie Agnir <261310+dagnir@users.noreply.github.com>
Co-authored-by: Zoe Wang <33073555+zoewangg@users.noreply.github.com>
Co-authored-by: Olivier L Applin <olapplin@amazon.com>
Co-authored-by: Debora N. Ito <476307+debora-ito@users.noreply.github.com>
Co-authored-by: John Viegas <70235430+joviegas@users.noreply.github.com>
Co-authored-by: David Negrete <davidfn@amazon.com>
Co-authored-by: Anna-Karin Salander <salande@amazon.com>
Co-authored-by: Chad Wilson <chadw@thoughtworks.com>
Co-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com>
Co-authored-by: Manish Dait <90558243+ManishDait@users.noreply.github.com>
@jkbredsquiggles
Copy link

jkbredsquiggles commented Sep 14, 2023

In which package and version is this fixed?

I see similar behaviour from the toJson method in software.amazon.awssdk.enhanced.dynamodb.internal.document.DefaultEnhancedDocument
which is in software.amazon.awssdk:dynamodb-enhanced:2.20.123

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug This issue is a bug. p2 This is a standard priority issue pending-release This issue will be fixed by an approved PR that hasn't been released yet.
Projects
None yet
Development

No branches or pull requests

5 participants