From 80c60d02e80e93dc13f22700113c93fc7da8f5c4 Mon Sep 17 00:00:00 2001 From: Olivier L Applin Date: Tue, 25 Nov 2025 10:21:22 -0500 Subject: [PATCH 1/9] Parallel split for multipart GetObject File Download (#6425) Parallel split for multipart GetObject File Download --- .changes/next-release/feature-S3-12a0b55.json | 6 + .../core/async/AsyncResponseTransformer.java | 23 + .../AsyncResponseTransformerListener.java | 6 + ...ltAsyncResponseTransformerSplitResult.java | 25 +- .../internal/async/EmittingSubscription.java | 144 ++++++ .../async/FileAsyncResponseTransformer.java | 36 +- ...FileAsyncResponseTransformerPublisher.java | 196 ++++++++ ...ncResponseTransformerPublisherTckTest.java | 60 +++ ...AsyncResponseTransformerPublisherTest.java | 306 +++++++++++++ .../s3/internal/GenericS3TransferManager.java | 18 +- .../progress/TransferProgressUpdater.java | 91 +++- .../progress/ContentRangeParserTest.java | 20 +- ...partClientFileDownloadIntegrationTest.java | 136 ++++++ .../multipart/DownloadObjectHelper.java | 24 +- .../MultipartConfigurationResolver.java | 17 + .../multipart/MultipartS3AsyncClient.java | 3 +- ...ParallelMultipartDownloaderSubscriber.java | 375 ++++++++++++++++ .../s3/multipart/MultipartConfiguration.java | 50 +++ .../s3/multipart/ParallelConfiguration.java | 71 +++ .../MultipartConfigurationResolverTest.java | 28 +- ...lMultipartDownloaderSubscriberTckTest.java | 116 +++++ ...ipartDownloaderSubscriberWiremockTest.java | 146 ++++++ ...3MultipartClientGetObjectWiremockTest.java | 19 +- .../S3MultipartFileDownloadWiremockTest.java | 418 ++++++++++++++++++ .../utils/MultipartDownloadTestUtils.java | 22 +- .../4195d6e3-8849-4e5a-848d-04f810577cd3 | 2 +- .../awssdk/utils}/ContentRangeParser.java | 52 ++- 27 files changed, 2363 insertions(+), 47 deletions(-) create mode 100644 .changes/next-release/feature-S3-12a0b55.json create mode 100644 core/sdk-core/src/main/java/software/amazon/awssdk/core/internal/async/EmittingSubscription.java create mode 100644 core/sdk-core/src/main/java/software/amazon/awssdk/core/internal/async/FileAsyncResponseTransformerPublisher.java create mode 100644 core/sdk-core/src/test/java/software/amazon/awssdk/core/internal/async/FileAsyncResponseTransformerPublisherTckTest.java create mode 100644 core/sdk-core/src/test/java/software/amazon/awssdk/core/internal/async/FileAsyncResponseTransformerPublisherTest.java create mode 100644 services/s3/src/it/java/software/amazon/awssdk/services/s3/multipart/S3MultipartClientFileDownloadIntegrationTest.java create mode 100644 services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/multipart/ParallelMultipartDownloaderSubscriber.java create mode 100644 services/s3/src/main/java/software/amazon/awssdk/services/s3/multipart/ParallelConfiguration.java create mode 100644 services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/multipart/ParallelMultipartDownloaderSubscriberTckTest.java create mode 100644 services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/multipart/ParallelMultipartDownloaderSubscriberWiremockTest.java create mode 100644 services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/multipart/S3MultipartFileDownloadWiremockTest.java rename {services-custom/s3-transfer-manager/src/main/java/software/amazon/awssdk/transfer/s3/internal/progress => utils/src/main/java/software/amazon/awssdk/utils}/ContentRangeParser.java (58%) diff --git a/.changes/next-release/feature-S3-12a0b55.json b/.changes/next-release/feature-S3-12a0b55.json new file mode 100644 index 000000000000..0be1c7b5691e --- /dev/null +++ b/.changes/next-release/feature-S3-12a0b55.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "S3", + "contributor": "", + "description": "Add support for parallel download for individual part-get for multipart GetObject in s3 async client and Transfer Manager" +} diff --git a/core/sdk-core/src/main/java/software/amazon/awssdk/core/async/AsyncResponseTransformer.java b/core/sdk-core/src/main/java/software/amazon/awssdk/core/async/AsyncResponseTransformer.java index a7abf157a628..7470d59a3081 100644 --- a/core/sdk-core/src/main/java/software/amazon/awssdk/core/async/AsyncResponseTransformer.java +++ b/core/sdk-core/src/main/java/software/amazon/awssdk/core/async/AsyncResponseTransformer.java @@ -381,6 +381,15 @@ interface SplitResult */ CompletableFuture resultFuture(); + /** + * Indicates if the split async response transformer supports sending individual transformer non-serially and + * receiving back data from the many {@link AsyncResponseTransformer#onStream(SdkPublisher) publishers} non-serially. + * @return true if non-serial data is supported, false otherwise + */ + default Boolean parallelSplitSupported() { + return false; + } + static Builder builder() { return DefaultAsyncResponseTransformerSplitResult.builder(); } @@ -413,6 +422,20 @@ interface Builder * @return an instance of this Builder */ Builder resultFuture(CompletableFuture future); + + /** + * If the AsyncResponseTransformers returned by the {@link SplitResult#publisher()} support concurrent + * parallel streaming of multiple content body concurrently. + * @return + */ + Boolean parallelSplitSupported(); + + /** + * Sets whether the AsyncResponseTransformers returned by the {@link SplitResult#publisher()} support concurrent + * parallel streaming of multiple content body concurrently + * @return + */ + Builder parallelSplitSupported(Boolean parallelSplitSupported); } } diff --git a/core/sdk-core/src/main/java/software/amazon/awssdk/core/async/listener/AsyncResponseTransformerListener.java b/core/sdk-core/src/main/java/software/amazon/awssdk/core/async/listener/AsyncResponseTransformerListener.java index c7ee37690ca0..f1612e1b1f3e 100644 --- a/core/sdk-core/src/main/java/software/amazon/awssdk/core/async/listener/AsyncResponseTransformerListener.java +++ b/core/sdk-core/src/main/java/software/amazon/awssdk/core/async/listener/AsyncResponseTransformerListener.java @@ -20,6 +20,7 @@ import org.reactivestreams.Subscriber; import software.amazon.awssdk.annotations.SdkInternalApi; import software.amazon.awssdk.annotations.SdkProtectedApi; +import software.amazon.awssdk.core.SplittingTransformerConfiguration; import software.amazon.awssdk.core.async.AsyncResponseTransformer; import software.amazon.awssdk.core.async.SdkPublisher; import software.amazon.awssdk.utils.Logger; @@ -108,6 +109,11 @@ public String name() { return delegate.name(); } + @Override + public SplitResult split(SplittingTransformerConfiguration splitConfig) { + return delegate.split(splitConfig); + } + static void invoke(Runnable runnable, String callbackName) { try { runnable.run(); diff --git a/core/sdk-core/src/main/java/software/amazon/awssdk/core/internal/async/DefaultAsyncResponseTransformerSplitResult.java b/core/sdk-core/src/main/java/software/amazon/awssdk/core/internal/async/DefaultAsyncResponseTransformerSplitResult.java index ed64b1d8eae4..0b095a34e973 100644 --- a/core/sdk-core/src/main/java/software/amazon/awssdk/core/internal/async/DefaultAsyncResponseTransformerSplitResult.java +++ b/core/sdk-core/src/main/java/software/amazon/awssdk/core/internal/async/DefaultAsyncResponseTransformerSplitResult.java @@ -27,12 +27,14 @@ public final class DefaultAsyncResponseTransformerSplitResult> publisher; private final CompletableFuture future; + private final Boolean parallelSplitSupported; private DefaultAsyncResponseTransformerSplitResult(Builder builder) { this.publisher = Validate.paramNotNull( builder.publisher(), "asyncResponseTransformerPublisher"); this.future = Validate.paramNotNull( builder.resultFuture(), "future"); + this.parallelSplitSupported = Validate.getOrDefault(builder.parallelSplitSupported(), () -> false); } /** @@ -52,6 +54,11 @@ public CompletableFuture resultFuture() { return this.future; } + @Override + public Boolean parallelSplitSupported() { + return this.parallelSplitSupported; + } + @Override public AsyncResponseTransformer.SplitResult.Builder toBuilder() { return new DefaultBuilder<>(this); @@ -65,6 +72,7 @@ public static class DefaultBuilder implements AsyncResponseTransformer.SplitResult.Builder { private SdkPublisher> publisher; private CompletableFuture future; + private Boolean parallelSplitSupported; DefaultBuilder() { } @@ -72,6 +80,7 @@ public static class DefaultBuilder DefaultBuilder(DefaultAsyncResponseTransformerSplitResult split) { this.publisher = split.publisher; this.future = split.future; + this.parallelSplitSupported = split.parallelSplitSupported; } @Override @@ -92,14 +101,28 @@ public CompletableFuture resultFuture() { } @Override - public AsyncResponseTransformer.SplitResult.Builder resultFuture(CompletableFuture future) { + public AsyncResponseTransformer.SplitResult.Builder resultFuture( + CompletableFuture future) { this.future = future; return this; } + @Override + public Boolean parallelSplitSupported() { + return parallelSplitSupported; + } + + @Override + public AsyncResponseTransformer.SplitResult.Builder parallelSplitSupported( + Boolean parallelSplitSupported) { + this.parallelSplitSupported = parallelSplitSupported; + return this; + } + @Override public AsyncResponseTransformer.SplitResult build() { return new DefaultAsyncResponseTransformerSplitResult<>(this); } + } } diff --git a/core/sdk-core/src/main/java/software/amazon/awssdk/core/internal/async/EmittingSubscription.java b/core/sdk-core/src/main/java/software/amazon/awssdk/core/internal/async/EmittingSubscription.java new file mode 100644 index 000000000000..25f1a78705ca --- /dev/null +++ b/core/sdk-core/src/main/java/software/amazon/awssdk/core/internal/async/EmittingSubscription.java @@ -0,0 +1,144 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package software.amazon.awssdk.core.internal.async; + +import java.util.concurrent.atomic.AtomicBoolean; +import java.util.concurrent.atomic.AtomicLong; +import java.util.function.Supplier; +import org.reactivestreams.Subscriber; +import org.reactivestreams.Subscription; +import software.amazon.awssdk.annotations.SdkInternalApi; +import software.amazon.awssdk.annotations.ThreadSafe; +import software.amazon.awssdk.utils.Logger; + +/** + * Subscription which can emit {@link Subscriber#onNext(T)} signals to a subscriber, based on the demand received with the + * {@link Subscription#request(long)}. It tracks the outstandingDemand that has not yet been fulfilled and used a Supplier + * passed to it to create the object it needs to emit. + * @param the type of object to emit to the subscriber. + */ +@SdkInternalApi +@ThreadSafe +public final class EmittingSubscription implements Subscription { + private static final Logger log = Logger.loggerFor(EmittingSubscription.class); + + private Subscriber downstreamSubscriber; + private final AtomicBoolean emitting; + private final AtomicLong outstandingDemand; + private final Runnable onCancel; + private final AtomicBoolean isCancelled; + private final Supplier supplier; + + private EmittingSubscription(Builder builder) { + this.downstreamSubscriber = builder.downstreamSubscriber; + this.onCancel = builder.onCancel; + this.supplier = builder.supplier; + this.isCancelled = new AtomicBoolean(); + this.outstandingDemand = new AtomicLong(0); + this.emitting = new AtomicBoolean(); + } + + public static Builder builder() { + return new Builder<>(); + } + + @Override + public void request(long n) { + if (n <= 0) { + downstreamSubscriber.onError(new IllegalArgumentException("Amount requested must be positive")); + return; + } + long newDemand = outstandingDemand.updateAndGet(current -> { + if (Long.MAX_VALUE - current < n) { + return Long.MAX_VALUE; + } + return current + n; + }); + log.trace(() -> String.format("new outstanding demand: %s", newDemand)); + emit(); + } + + @Override + public void cancel() { + isCancelled.set(true); + downstreamSubscriber = null; + onCancel.run(); + } + + private void emit() { + do { + if (!emitting.compareAndSet(false, true)) { + return; + } + try { + if (doEmit()) { + return; + } + } finally { + emitting.compareAndSet(true, false); + } + } while (outstandingDemand.get() > 0); + } + + private boolean doEmit() { + long demand = outstandingDemand.get(); + + while (demand > 0) { + if (isCancelled.get()) { + return true; + } + if (outstandingDemand.get() > 0) { + demand = outstandingDemand.decrementAndGet(); + T value; + try { + value = supplier.get(); + } catch (Exception e) { + downstreamSubscriber.onError(e); + return true; + } + downstreamSubscriber.onNext(value); + } + } + return false; + } + + public static class Builder { + private Subscriber downstreamSubscriber; + private Runnable onCancel; + private Supplier supplier; + + public Builder downstreamSubscriber(Subscriber subscriber) { + this.downstreamSubscriber = subscriber; + return this; + } + + public Builder onCancel(Runnable onCancel) { + this.onCancel = onCancel; + return this; + } + + public Builder supplier(Supplier supplier) { + this.supplier = supplier; + return this; + } + + public EmittingSubscription build() { + return new EmittingSubscription<>(this); + } + } + + +} diff --git a/core/sdk-core/src/main/java/software/amazon/awssdk/core/internal/async/FileAsyncResponseTransformer.java b/core/sdk-core/src/main/java/software/amazon/awssdk/core/internal/async/FileAsyncResponseTransformer.java index 4348355fa5d8..dd915f90f293 100644 --- a/core/sdk-core/src/main/java/software/amazon/awssdk/core/internal/async/FileAsyncResponseTransformer.java +++ b/core/sdk-core/src/main/java/software/amazon/awssdk/core/internal/async/FileAsyncResponseTransformer.java @@ -41,6 +41,7 @@ import software.amazon.awssdk.annotations.SdkInternalApi; import software.amazon.awssdk.core.FileTransformerConfiguration; import software.amazon.awssdk.core.FileTransformerConfiguration.FailureBehavior; +import software.amazon.awssdk.core.SplittingTransformerConfiguration; import software.amazon.awssdk.core.async.AsyncResponseTransformer; import software.amazon.awssdk.core.async.SdkPublisher; import software.amazon.awssdk.core.exception.SdkClientException; @@ -76,6 +77,18 @@ private FileAsyncResponseTransformer(Path path, FileTransformerConfiguration fil this.position = position; } + FileTransformerConfiguration config() { + return configuration.toBuilder().build(); + } + + Path path() { + return path; + } + + long position() { + return position; + } + private static long determineFilePositionToWrite(Path path, FileTransformerConfiguration fileConfiguration) { if (fileConfiguration.fileWriteOption() == CREATE_OR_APPEND_TO_EXISTING) { try { @@ -89,7 +102,7 @@ private static long determineFilePositionToWrite(Path path, FileTransformerConfi if (fileConfiguration.fileWriteOption() == WRITE_TO_POSITION) { return Validate.getOrDefault(fileConfiguration.position(), () -> 0L); } - return 0L; + return 0L; } private AsynchronousFileChannel createChannel(Path path) throws IOException { @@ -183,6 +196,7 @@ static class FileSubscriber implements Subscriber { private final Path path; private final CompletableFuture future; private final Consumer onErrorMethod; + private final Object closeLock = new Object(); private volatile boolean writeInProgress = false; private volatile boolean closeOnLastWrite = false; @@ -228,7 +242,7 @@ public void completed(Integer result, ByteBuffer attachment) { if (byteBuffer.hasRemaining()) { performWrite(byteBuffer); } else { - synchronized (FileSubscriber.this) { + synchronized (closeLock) { writeInProgress = false; if (closeOnLastWrite) { close(); @@ -256,7 +270,7 @@ public void onError(Throwable t) { public void onComplete() { log.trace(() -> "onComplete"); // if write in progress, tell write to close on finish. - synchronized (this) { + synchronized (closeLock) { if (writeInProgress) { log.trace(() -> "writeInProgress = true, not closing"); closeOnLastWrite = true; @@ -284,4 +298,18 @@ public String toString() { return getClass() + ":" + path.toString(); } } -} \ No newline at end of file + + + @Override + public SplitResult split(SplittingTransformerConfiguration splitConfig) { + if (configuration.fileWriteOption() == CREATE_OR_APPEND_TO_EXISTING) { + return AsyncResponseTransformer.super.split(splitConfig); + } + CompletableFuture future = new CompletableFuture<>(); + return (SplitResult) SplitResult.builder() + .publisher(new FileAsyncResponseTransformerPublisher(this)) + .resultFuture(future) + .parallelSplitSupported(true) + .build(); + } +} diff --git a/core/sdk-core/src/main/java/software/amazon/awssdk/core/internal/async/FileAsyncResponseTransformerPublisher.java b/core/sdk-core/src/main/java/software/amazon/awssdk/core/internal/async/FileAsyncResponseTransformerPublisher.java new file mode 100644 index 000000000000..29208894cf31 --- /dev/null +++ b/core/sdk-core/src/main/java/software/amazon/awssdk/core/internal/async/FileAsyncResponseTransformerPublisher.java @@ -0,0 +1,196 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package software.amazon.awssdk.core.internal.async; + +import java.nio.ByteBuffer; +import java.nio.file.Path; +import java.util.Optional; +import java.util.concurrent.CompletableFuture; +import java.util.concurrent.atomic.AtomicLong; +import org.reactivestreams.Subscriber; +import software.amazon.awssdk.annotations.SdkInternalApi; +import software.amazon.awssdk.core.FileTransformerConfiguration; +import software.amazon.awssdk.core.SdkResponse; +import software.amazon.awssdk.core.async.AsyncResponseTransformer; +import software.amazon.awssdk.core.async.SdkPublisher; +import software.amazon.awssdk.utils.CompletableFutureUtils; +import software.amazon.awssdk.utils.ContentRangeParser; +import software.amazon.awssdk.utils.Logger; +import software.amazon.awssdk.utils.Pair; +import software.amazon.awssdk.utils.Validate; + +/** + * A publisher of {@link FileAsyncResponseTransformer} that uses the Content-Range header of a {@link SdkResponse} to write to the + * offset defined in the range of the Content-Range. Correspond to the {@link SplittingTransformer} for non-linear write cases. + */ +@SdkInternalApi +public class FileAsyncResponseTransformerPublisher + implements SdkPublisher> { + private static final Logger log = Logger.loggerFor(FileAsyncResponseTransformerPublisher.class); + + private final Path path; + private final FileTransformerConfiguration initialConfig; + private final long initialPosition; + private Subscriber subscriber; + private final AtomicLong transformerCount; + + + public FileAsyncResponseTransformerPublisher(FileAsyncResponseTransformer responseTransformer) { + this.path = Validate.paramNotNull(responseTransformer.path(), "path"); + Validate.isTrue(responseTransformer.config().fileWriteOption() + != FileTransformerConfiguration.FileWriteOption.CREATE_OR_APPEND_TO_EXISTING, + "CREATE_OR_APPEND_TO_EXISTING is not supported for non-serial operations"); + this.initialConfig = Validate.paramNotNull(responseTransformer.config(), "fileTransformerConfiguration"); + this.initialPosition = responseTransformer.position(); + this.transformerCount = new AtomicLong(0); + } + + @Override + public void subscribe(Subscriber> s) { + Validate.notNull(s, "Subscriber must not be null"); + this.subscriber = s; + s.onSubscribe(EmittingSubscription.>builder() + .downstreamSubscriber(s) + .onCancel(this::onCancel) + .supplier(this::createTransformer) + .build()); + } + + private AsyncResponseTransformer createTransformer() { + return new IndividualFileTransformer(); + } + + private void onCancel() { + subscriber = null; + } + + /** + * This is the AsyncResponseTransformer that will be used for each individual requests. + *

+ * We delegate to new instances of the already existing class {@link FileAsyncResponseTransformer} to perform the individual + * requests. This FileAsyncResponseTransformer will write the content of the request to the file at the offset taken from the + * Content-Range header ('x-amz-content-range'). As such, we don't need to manually manage the state of the + * AsyncResponseTransformer passed by the user, like we do for {@link SplittingTransformer}. Here, we know it is a + * FileAsyncResponseTransformer, so we can just ignore it, and instead rely on the individual FileAsyncResponseTransformer of + * every part. + *

+ * Note on retries: since we are delegating requests to {@link FileAsyncResponseTransformer}, each request made with this + * transformer will retry independently based on the retry configuration of the client it is used with. We only need to verify + * the completion state of the future of each individually + */ + private class IndividualFileTransformer implements AsyncResponseTransformer { + private AsyncResponseTransformer delegate; + private CompletableFuture future; + + @Override + public CompletableFuture prepare() { + this.future = new CompletableFuture<>(); + return this.future; + } + + @Override + public void onResponse(T response) { + Optional contentRangeList = response.sdkHttpResponse().firstMatchingHeader("x-amz-content-range"); + if (!contentRangeList.isPresent()) { + if (subscriber != null) { + IllegalStateException e = new IllegalStateException("Content range header is missing"); + handleError(e); + } + return; + } + + String contentRange = contentRangeList.get(); + Optional> contentRangePair = ContentRangeParser.range(contentRange); + if (!contentRangePair.isPresent()) { + if (subscriber != null) { + IllegalStateException e = new IllegalStateException("Could not parse content range header " + contentRange); + handleError(e); + } + return; + } + + this.delegate = getDelegateTransformer(contentRangePair.get().left()); + CompletableFuture delegateFuture = delegate.prepare(); + CompletableFutureUtils.forwardResultTo(delegateFuture, future); + CompletableFutureUtils.forwardExceptionTo(future, delegateFuture); + transformerCount.incrementAndGet(); + delegate.onResponse(response); + } + + private void handleError(Throwable e) { + subscriber.onError(e); + future.completeExceptionally(e); + } + + private AsyncResponseTransformer getDelegateTransformer(Long startAt) { + if (transformerCount.get() == 0) { + // On the first request we need to maintain the same config so + // that the file is actually created on disk if it doesn't exist (for example, if CREATE_NEW or + // CREATE_OR_REPLACE_EXISTING is used) + return AsyncResponseTransformer.toFile(path, initialConfig); + } + switch (initialConfig.fileWriteOption()) { + case CREATE_NEW: + case CREATE_OR_REPLACE_EXISTING: { + FileTransformerConfiguration newConfig = initialConfig.copy(c -> c + .fileWriteOption(FileTransformerConfiguration.FileWriteOption.WRITE_TO_POSITION) + .position(startAt)); + return AsyncResponseTransformer.toFile(path, newConfig); + } + case WRITE_TO_POSITION: { + long initialOffset = initialConfig.position(); + FileTransformerConfiguration newConfig = initialConfig.copy(c -> c + .fileWriteOption(FileTransformerConfiguration.FileWriteOption.WRITE_TO_POSITION) + .position(initialOffset + startAt)); + return AsyncResponseTransformer.toFile(path, newConfig); + } + // As per design specification, APPEND mode is not supported for non-serial operations + case CREATE_OR_APPEND_TO_EXISTING: + default: + throw new UnsupportedOperationException("Unsupported fileWriteOption: " + initialConfig.fileWriteOption()); + } + } + + @Override + public void onStream(SdkPublisher publisher) { + // should never be null as per AsyncResponseTransformer runtime contract, but we never know + if (delegate == null) { + if (future != null) { + future.completeExceptionally(new IllegalStateException("onStream called before onResponse")); + } + return; + } + delegate.onStream(publisher); + } + + @Override + public void exceptionOccurred(Throwable error) { + if (delegate != null) { + // do not call onError, because exceptionOccurred may be called multiple times due to retries, simply forward the + // error to the delegate async response transformer which will let the service call pipeline handle the error. + delegate.exceptionOccurred(error); + } else { + // If we received an error without even having a delegate, this means we have thrown an error before even + // getting a onResponse signal. We complete the prepared future, to let the + // service call pipeline handle the error + if (future != null) { + future.completeExceptionally(error); + } + } + } + } + +} diff --git a/core/sdk-core/src/test/java/software/amazon/awssdk/core/internal/async/FileAsyncResponseTransformerPublisherTckTest.java b/core/sdk-core/src/test/java/software/amazon/awssdk/core/internal/async/FileAsyncResponseTransformerPublisherTckTest.java new file mode 100644 index 000000000000..fbc0ae4662f5 --- /dev/null +++ b/core/sdk-core/src/test/java/software/amazon/awssdk/core/internal/async/FileAsyncResponseTransformerPublisherTckTest.java @@ -0,0 +1,60 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package software.amazon.awssdk.core.internal.async; + +import com.google.common.jimfs.Configuration; +import com.google.common.jimfs.Jimfs; +import java.nio.file.FileSystem; +import java.nio.file.Path; +import org.reactivestreams.Publisher; +import org.reactivestreams.tck.PublisherVerification; +import org.reactivestreams.tck.TestEnvironment; +import software.amazon.awssdk.core.SdkResponse; +import software.amazon.awssdk.core.async.AsyncResponseTransformer; +import software.amazon.awssdk.core.async.SdkPublisher; + +public class FileAsyncResponseTransformerPublisherTckTest extends PublisherVerification> { + + private final FileSystem fileSystem = Jimfs.newFileSystem(Configuration.unix()); + private final Path testFile = fileSystem.getPath("/test-file.txt"); + + + public FileAsyncResponseTransformerPublisherTckTest() { + super(new TestEnvironment()); + } + + @Override + public Publisher> createPublisher(long elements) { + FileAsyncResponseTransformer art = + (FileAsyncResponseTransformer) AsyncResponseTransformer.toFile(testFile); + FileAsyncResponseTransformerPublisher publisher = + new FileAsyncResponseTransformerPublisher<>(art); + + return SdkPublisher.adapt(publisher).limit((int) elements); + } + + @Override + public Publisher> createFailedPublisher() { + return null; + } + + @Override + public long maxElementsFromPublisher() { + return Long.MAX_VALUE; + } + +} diff --git a/core/sdk-core/src/test/java/software/amazon/awssdk/core/internal/async/FileAsyncResponseTransformerPublisherTest.java b/core/sdk-core/src/test/java/software/amazon/awssdk/core/internal/async/FileAsyncResponseTransformerPublisherTest.java new file mode 100644 index 000000000000..adfd4ecc3200 --- /dev/null +++ b/core/sdk-core/src/test/java/software/amazon/awssdk/core/internal/async/FileAsyncResponseTransformerPublisherTest.java @@ -0,0 +1,306 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package software.amazon.awssdk.core.internal.async; + +import static org.assertj.core.api.Assertions.assertThat; +import static org.assertj.core.api.Assertions.assertThatThrownBy; +import static org.assertj.core.api.Assertions.fail; +import static org.assertj.core.api.Assertions.in; +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.when; + +import com.google.common.jimfs.Jimfs; +import java.nio.ByteBuffer; +import java.nio.file.FileSystem; +import java.nio.file.Files; +import java.nio.file.Path; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.List; +import java.util.Optional; +import java.util.UUID; +import java.util.concurrent.CompletableFuture; +import java.util.concurrent.CountDownLatch; +import java.util.concurrent.TimeUnit; +import java.util.concurrent.atomic.AtomicInteger; +import java.util.concurrent.atomic.AtomicReference; +import java.util.function.Function; +import java.util.stream.Stream; +import org.junit.jupiter.api.AfterEach; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.TestInstance; +import org.junit.jupiter.params.ParameterizedTest; +import org.junit.jupiter.params.provider.MethodSource; +import org.reactivestreams.Subscriber; +import org.reactivestreams.Subscription; +import software.amazon.awssdk.core.FileTransformerConfiguration; +import software.amazon.awssdk.core.SdkResponse; +import software.amazon.awssdk.core.async.AsyncResponseTransformer; +import software.amazon.awssdk.core.async.SdkPublisher; +import software.amazon.awssdk.http.SdkHttpResponse; +import software.amazon.awssdk.utils.CompletableFutureUtils; + +class FileAsyncResponseTransformerPublisherTest { + + private FileSystem fileSystem; + private Path testFile; + + @BeforeEach + void setUp() throws Exception { + fileSystem = Jimfs.newFileSystem(); + testFile = fileSystem.getPath(String.format("/test-file-%s.txt", UUID.randomUUID())); + } + + @AfterEach + void tearDown() throws Exception { + fileSystem.close(); + } + + @ParameterizedTest + @MethodSource("transformers") + void singleDemand_shouldEmitOneTransformer( + Function> transformerFunction) throws Exception { + // Given + // FileAsyncResponseTransformer initialTransformer = + // (FileAsyncResponseTransformer) AsyncResponseTransformer.toFile(testFile); + + AsyncResponseTransformer initialTransformer = transformerFunction.apply(testFile); + createFileIfNeeded(initialTransformer); + + FileAsyncResponseTransformerPublisher publisher = + new FileAsyncResponseTransformerPublisher<>((FileAsyncResponseTransformer) initialTransformer); + + CountDownLatch latch = new CountDownLatch(1); + AtomicReference> receivedTransformer = new AtomicReference<>(); + CompletableFuture future = new CompletableFuture<>(); + + // When + publisher.subscribe(new Subscriber>() { + private Subscription subscription; + + @Override + public void onSubscribe(Subscription s) { + this.subscription = s; + s.request(1); + } + + @Override + public void onNext(AsyncResponseTransformer transformer) { + receivedTransformer.set(transformer); + + // Simulate response with content-range header + SdkResponse mockResponse = createMockResponseWithRange("bytes 0-9/10"); + CompletableFuture prepareFuture = transformer.prepare(); + CompletableFutureUtils.forwardResultTo(prepareFuture, future); + transformer.onResponse(mockResponse); + + // Simulate stream data + SdkPublisher mockPublisher = createMockPublisher(); + transformer.onStream(mockPublisher); + + latch.countDown(); + } + + @Override + public void onError(Throwable t) { + fail("Unexpected error with exception: " + t.getMessage()); + } + + @Override + public void onComplete() { + latch.countDown(); + } + }); + + // Then + assertThat(latch.await(5, TimeUnit.SECONDS)).isTrue(); + assertThat(receivedTransformer.get()).isNotNull(); + assertThat(Files.exists(testFile)).isTrue(); + assertThat(future).succeedsWithin(10, TimeUnit.SECONDS); + } + + private void createFileIfNeeded(AsyncResponseTransformer initialTransformer) throws Exception { + FileTransformerConfiguration.FileWriteOption fileWriteOption = + ((FileAsyncResponseTransformer) initialTransformer).config().fileWriteOption(); + if (fileWriteOption == FileTransformerConfiguration.FileWriteOption.WRITE_TO_POSITION) { + Files.createFile(testFile); + } + } + + private SdkPublisher createMockPublisher() { + return s -> s.onSubscribe(new Subscription() { + @Override + public void request(long n) { + s.onNext(ByteBuffer.wrap("test data".getBytes())); + s.onComplete(); + } + + @Override + public void cancel() { + } + }); + } + + @ParameterizedTest + @MethodSource("transformers") + void requestManyTransformers_withResponseContainingDifferentContentRanges_shouldWriteToFileAtThoseRanges( + Function> transformerFunction + ) throws Exception { + // Given + FileAsyncResponseTransformer initialTransformer = + (FileAsyncResponseTransformer) transformerFunction.apply(testFile); + createFileIfNeeded(initialTransformer); + + FileAsyncResponseTransformerPublisher publisher = + new FileAsyncResponseTransformerPublisher<>(initialTransformer); + + int numTransformers = 8; + CountDownLatch latch = new CountDownLatch(numTransformers); + AtomicInteger transformerCount = new AtomicInteger(0); + List> futures = new ArrayList<>(); + + // When + publisher.subscribe(new Subscriber>() { + @Override + public void onSubscribe(Subscription s) { + s.request(numTransformers); + } + + @Override + public void onNext(AsyncResponseTransformer transformer) { + int index = transformerCount.getAndIncrement(); + + // Each transformer gets a different 10-byte range + long startByte = index * 10L; + long endByte = startByte + 9; + String contentRange = String.format("bytes %d-%d/80", startByte, endByte); + byte[] data = new byte[10]; + for (int i = 0; i < 10; i++) { + data[i] = (byte) ((byte) startByte + i); + } + + SdkResponse mockResponse = createMockResponseWithRange(contentRange); + CompletableFuture future = transformer.prepare(); + futures.add(future); + + transformer.onResponse(mockResponse); + transformer.onStream(createMockPublisherWithData(data)); + + latch.countDown(); + } + + @Override + public void onError(Throwable t) { + for (int i = 0; i < numTransformers; i++) { + latch.countDown(); + } + } + + @Override + public void onComplete() { + } + }); + + // Then + assertThat(latch.await(10, TimeUnit.SECONDS)).isTrue(); + assertThat(transformerCount.get()).isEqualTo(numTransformers); + + CompletableFuture.allOf(futures.toArray(new CompletableFuture[0])).join(); + + assertThat(Files.exists(testFile)).isTrue(); + byte[] fileContent = Files.readAllBytes(testFile); + + int offset = + initialTransformer.config().fileWriteOption() == FileTransformerConfiguration.FileWriteOption.WRITE_TO_POSITION + ? (int) initialTransformer.position() + : 0; + assertThat(fileContent.length).isEqualTo(80 + offset); + for (int i = 0; i < numTransformers; i++) { + int startPos = i * 10; + byte[] expectedData = new byte[10]; + for (int j = 0; j < 10; j++) { + expectedData[j] = (byte) ((byte) startPos + j); + } + byte[] actualData = Arrays.copyOfRange(fileContent, startPos + offset, startPos + offset + 10); + assertThat(actualData).isEqualTo(expectedData); + } + } + + private SdkResponse createMockResponseWithRange(String contentRange) { + SdkResponse mockResponse = mock(SdkResponse.class); + SdkHttpResponse mockHttpResponse = mock(SdkHttpResponse.class); + + when(mockResponse.sdkHttpResponse()).thenReturn(mockHttpResponse); + when(mockHttpResponse.firstMatchingHeader("x-amz-content-range")).thenReturn(Optional.of(contentRange)); + + return mockResponse; + } + + private SdkPublisher createMockPublisherWithData(byte[] data) { + return s -> s.onSubscribe(new Subscription() { + @Override + public void request(long n) { + s.onNext(ByteBuffer.wrap(data)); + s.onComplete(); + } + + @Override + public void cancel() { + } + }); + } + + private static Stream>> transformers() { + return Stream.of( + AsyncResponseTransformer::toFile, + path -> AsyncResponseTransformer.toFile( + path, + FileTransformerConfiguration.builder() + .fileWriteOption(FileTransformerConfiguration.FileWriteOption.CREATE_NEW) + .failureBehavior(FileTransformerConfiguration.FailureBehavior.LEAVE) + .build()), + path -> AsyncResponseTransformer.toFile( + path, + FileTransformerConfiguration.builder() + .fileWriteOption(FileTransformerConfiguration.FileWriteOption.CREATE_OR_REPLACE_EXISTING) + .failureBehavior(FileTransformerConfiguration.FailureBehavior.LEAVE) + .build()), + path -> AsyncResponseTransformer.toFile( + path, + FileTransformerConfiguration.builder() + .fileWriteOption(FileTransformerConfiguration.FileWriteOption.WRITE_TO_POSITION) + .failureBehavior(FileTransformerConfiguration.FailureBehavior.LEAVE) + .position(10L) + .build()) + ); + } + + @Test + void createOrAppendToExisting_shouldThrowException() throws Exception { + AsyncResponseTransformer initialTransformer = AsyncResponseTransformer.toFile( + testFile, + FileTransformerConfiguration.builder() + .failureBehavior(FileTransformerConfiguration.FailureBehavior.DELETE) + .fileWriteOption(FileTransformerConfiguration.FileWriteOption.CREATE_OR_APPEND_TO_EXISTING) + .build()); + assertThatThrownBy(() -> new FileAsyncResponseTransformerPublisher<>((FileAsyncResponseTransformer) initialTransformer)) + .isInstanceOf(IllegalArgumentException.class) + .hasMessageContaining("CREATE_OR_APPEND_TO_EXISTING"); + + } + +} \ No newline at end of file diff --git a/services-custom/s3-transfer-manager/src/main/java/software/amazon/awssdk/transfer/s3/internal/GenericS3TransferManager.java b/services-custom/s3-transfer-manager/src/main/java/software/amazon/awssdk/transfer/s3/internal/GenericS3TransferManager.java index de7ffc6ca949..f65cabec1ee3 100644 --- a/services-custom/s3-transfer-manager/src/main/java/software/amazon/awssdk/transfer/s3/internal/GenericS3TransferManager.java +++ b/services-custom/s3-transfer-manager/src/main/java/software/amazon/awssdk/transfer/s3/internal/GenericS3TransferManager.java @@ -348,10 +348,18 @@ public final Download download(DownloadRequest downl TransferProgressUpdater progressUpdater = new TransferProgressUpdater(downloadRequest, null); progressUpdater.transferInitiated(); - responseTransformer = isS3ClientMultipartEnabled() - ? progressUpdater.wrapResponseTransformerForMultipartDownload( - responseTransformer, downloadRequest.getObjectRequest()) - : progressUpdater.wrapResponseTransformer(responseTransformer); + if (isS3ClientMultipartEnabled()) { + if (responseTransformer.split(b -> b.bufferSizeInBytes(1L)).parallelSplitSupported()) { + responseTransformer = + progressUpdater.wrapForNonSerialFileDownload(responseTransformer, downloadRequest.getObjectRequest()); + } else { + responseTransformer = + progressUpdater.wrapResponseTransformerForMultipartDownload( + responseTransformer, downloadRequest.getObjectRequest()); + } + } else { + responseTransformer = progressUpdater.wrapResponseTransformer(responseTransformer); + } progressUpdater.registerCompletion(returnFuture); try { @@ -402,7 +410,7 @@ private TransferProgressUpdater doDownloadFile( try { progressUpdater.transferInitiated(); responseTransformer = isS3ClientMultipartEnabled() - ? progressUpdater.wrapResponseTransformerForMultipartDownload( + ? progressUpdater.wrapForNonSerialFileDownload( responseTransformer, downloadRequest.getObjectRequest()) : progressUpdater.wrapResponseTransformer(responseTransformer); progressUpdater.registerCompletion(returnFuture); diff --git a/services-custom/s3-transfer-manager/src/main/java/software/amazon/awssdk/transfer/s3/internal/progress/TransferProgressUpdater.java b/services-custom/s3-transfer-manager/src/main/java/software/amazon/awssdk/transfer/s3/internal/progress/TransferProgressUpdater.java index 2cab45039d97..4d78530a45ce 100644 --- a/services-custom/s3-transfer-manager/src/main/java/software/amazon/awssdk/transfer/s3/internal/progress/TransferProgressUpdater.java +++ b/services-custom/s3-transfer-manager/src/main/java/software/amazon/awssdk/transfer/s3/internal/progress/TransferProgressUpdater.java @@ -22,8 +22,10 @@ import java.util.concurrent.atomic.AtomicBoolean; import org.reactivestreams.Subscriber; import software.amazon.awssdk.annotations.SdkInternalApi; +import software.amazon.awssdk.core.SplittingTransformerConfiguration; import software.amazon.awssdk.core.async.AsyncRequestBody; import software.amazon.awssdk.core.async.AsyncResponseTransformer; +import software.amazon.awssdk.core.async.SdkPublisher; import software.amazon.awssdk.core.async.listener.AsyncRequestBodyListener; import software.amazon.awssdk.core.async.listener.AsyncResponseTransformerListener; import software.amazon.awssdk.core.async.listener.PublisherListener; @@ -35,6 +37,7 @@ import software.amazon.awssdk.transfer.s3.progress.TransferListener; import software.amazon.awssdk.transfer.s3.progress.TransferProgress; import software.amazon.awssdk.transfer.s3.progress.TransferProgressSnapshot; +import software.amazon.awssdk.utils.ContentRangeParser; /** * An SDK-internal helper class that facilitates updating a {@link TransferProgress} and invoking {@link TransferListener}s. @@ -172,25 +175,85 @@ public AsyncResponseTransformer wrapRespon new BaseAsyncResponseTransformerListener() { @Override public void transformerOnResponse(GetObjectResponse response) { - // if the GetObjectRequest is a range-get, the Content-Length headers of the response needs to be used - // to update progress since the Content-Range would incorrectly upgrade progress with the whole object - // size. - if (request.range() != null) { - if (response.contentLength() != null) { - progress.updateAndGet(b -> b.totalBytes(response.contentLength()).sdkResponse(response)); - } - } else { - // if the GetObjectRequest is not a range-get, it might be a part-get. In that case, we need to parse - // the Content-Range header to get the correct totalByte amount. - ContentRangeParser - .totalBytes(response.contentRange()) - .ifPresent(totalBytes -> progress.updateAndGet(b -> b.totalBytes(totalBytes).sdkResponse(response))); - } + multipartDownloadOnResponse(request, response); } } ); } + private void multipartDownloadOnResponse(GetObjectRequest request, GetObjectResponse response) { + // if the GetObjectRequest is a range-get, the Content-Length headers of the response needs to be used + // to update progress since the Content-Range would incorrectly upgrade progress with the whole object + // size. + if (request.range() != null) { + if (response.contentLength() != null) { + progress.updateAndGet(b -> b.totalBytes(response.contentLength()).sdkResponse(response)); + } + } else { + // if the GetObjectRequest is not a range-get, it might be a part-get. In that case, we need to parse + // the Content-Range header to get the correct totalByte amount. + ContentRangeParser + .totalBytes(response.contentRange()) + .ifPresent(totalBytes -> progress.updateAndGet(b -> b.totalBytes(totalBytes).sdkResponse(response))); + } + } + + // upstream transformer + public AsyncResponseTransformer wrapForNonSerialFileDownload( + AsyncResponseTransformer responseTransformer, GetObjectRequest request) { + return new AsyncResponseTransformer() { + @Override + public CompletableFuture prepare() { + return responseTransformer.prepare(); + } + + @Override + public void onResponse(GetObjectResponse response) { + responseTransformer.onResponse(response); + } + + @Override + public void onStream(SdkPublisher publisher) { + responseTransformer.onStream(publisher); + } + + @Override + public void exceptionOccurred(Throwable error) { + responseTransformer.exceptionOccurred(error); + } + + @Override + public SplitResult split(SplittingTransformerConfiguration splitConfig) { + return responseTransformer + .split(splitConfig) + .copy(b -> b.publisher(wrapIndividualTransformer(b.publisher(), request))); + } + + @Override + public String name() { + return responseTransformer.name(); + } + }; + } + + private SdkPublisher> wrapIndividualTransformer( + SdkPublisher> publisher, GetObjectRequest request) { + // each of the individual transformer for multipart file download + return publisher.map(art -> AsyncResponseTransformerListener.wrap( + art, + new AsyncResponseTransformerListener() { + @Override + public void transformerOnResponse(GetObjectResponse response) { + multipartDownloadOnResponse(request, response); + } + + @Override + public void subscriberOnNext(ByteBuffer byteBuffer) { + incrementBytesTransferred(byteBuffer.limit()); + } + })); + } + public AsyncResponseTransformer wrapResponseTransformer( AsyncResponseTransformer responseTransformer) { return AsyncResponseTransformerListener.wrap( diff --git a/services-custom/s3-transfer-manager/src/test/java/software/amazon/awssdk/transfer/s3/internal/progress/ContentRangeParserTest.java b/services-custom/s3-transfer-manager/src/test/java/software/amazon/awssdk/transfer/s3/internal/progress/ContentRangeParserTest.java index 6dc7a7fc3ce8..b89b7ab3ce7f 100644 --- a/services-custom/s3-transfer-manager/src/test/java/software/amazon/awssdk/transfer/s3/internal/progress/ContentRangeParserTest.java +++ b/services-custom/s3-transfer-manager/src/test/java/software/amazon/awssdk/transfer/s3/internal/progress/ContentRangeParserTest.java @@ -17,12 +17,14 @@ import static org.assertj.core.api.Assertions.assertThat; +import java.util.Optional; import java.util.OptionalLong; import java.util.stream.Stream; -import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.params.ParameterizedTest; import org.junit.jupiter.params.provider.Arguments; import org.junit.jupiter.params.provider.MethodSource; +import software.amazon.awssdk.utils.ContentRangeParser; +import software.amazon.awssdk.utils.Pair; class ContentRangeParserTest { @@ -51,4 +53,18 @@ static Stream argumentProvider() { Arguments.of("bla bla bla", OptionalLong.empty())); } -} \ No newline at end of file + @ParameterizedTest + @MethodSource("testRange") + void testRange(String contentRange, Optional> expected) { + assertThat(ContentRangeParser.range(contentRange)).isEqualTo(expected); + } + + static Stream testRange() { + return Stream.of( + Arguments.of("bytes 0-9/10", Optional.of(Pair.of(0L, 9L))), + Arguments.of("bytes */10", Optional.empty()), + Arguments.of("bytes 12000000-17999999/30000000", Optional.of(Pair.of(12000000L, 17999999L))) + ); + } + +} diff --git a/services/s3/src/it/java/software/amazon/awssdk/services/s3/multipart/S3MultipartClientFileDownloadIntegrationTest.java b/services/s3/src/it/java/software/amazon/awssdk/services/s3/multipart/S3MultipartClientFileDownloadIntegrationTest.java new file mode 100644 index 000000000000..10823cb5937a --- /dev/null +++ b/services/s3/src/it/java/software/amazon/awssdk/services/s3/multipart/S3MultipartClientFileDownloadIntegrationTest.java @@ -0,0 +1,136 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package software.amazon.awssdk.services.s3.multipart; + +import static org.assertj.core.api.Assertions.assertThat; +import static software.amazon.awssdk.testutils.service.S3BucketUtils.temporaryBucketName; + +import java.nio.file.Files; +import java.nio.file.Path; +import java.nio.file.Paths; +import java.security.MessageDigest; +import java.util.ArrayList; +import java.util.List; +import java.util.UUID; +import java.util.concurrent.CompletableFuture; +import java.util.concurrent.TimeUnit; +import java.util.stream.Collectors; +import java.util.stream.IntStream; +import org.junit.jupiter.api.BeforeAll; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.Timeout; +import software.amazon.awssdk.core.FileTransformerConfiguration; +import software.amazon.awssdk.core.SdkRequest; +import software.amazon.awssdk.core.async.AsyncRequestBody; +import software.amazon.awssdk.core.async.AsyncResponseTransformer; +import software.amazon.awssdk.core.interceptor.Context; +import software.amazon.awssdk.core.interceptor.ExecutionAttributes; +import software.amazon.awssdk.core.interceptor.ExecutionInterceptor; +import software.amazon.awssdk.regions.Region; +import software.amazon.awssdk.services.s3.S3AsyncClient; +import software.amazon.awssdk.services.s3.S3IntegrationTestBase; +import software.amazon.awssdk.services.s3.model.GetObjectRequest; +import software.amazon.awssdk.services.s3.model.GetObjectResponse; +import software.amazon.awssdk.testutils.RandomTempFile; +import software.amazon.awssdk.utils.JavaSystemSetting; +import software.amazon.awssdk.utils.Logger; + +@Timeout(value = 5, unit = TimeUnit.MINUTES) +public class S3MultipartClientFileDownloadIntegrationTest extends S3IntegrationTestBase { + private static final Logger log = Logger.loggerFor(S3MultipartClientFileDownloadIntegrationTest.class); + private static final int MIB = 1024 * 1024; + private static final String TEST_BUCKET = temporaryBucketName(S3MultipartClientFileDownloadIntegrationTest.class); + private static final String TEST_KEY = "testfile.dat"; + private static final int OBJ_SIZE = 100 * MIB; + private static final long PART_SIZE = 5 * MIB; + + private static RandomTempFile localFile; + private S3AsyncClient s3Client; + private TestInterceptor interceptor; + + @BeforeAll + public static void setup() throws Exception { + log.info(() -> "setup"); + setUp(); + log.info(() -> "create bucket"); + createBucket(TEST_BUCKET); + localFile = new RandomTempFile(TEST_KEY, OBJ_SIZE); + localFile.deleteOnExit(); + S3AsyncClient s3Client = S3AsyncClient.builder() + .multipartEnabled(true) + .multipartConfiguration(c -> c.minimumPartSizeInBytes(PART_SIZE)) + .credentialsProvider(CREDENTIALS_PROVIDER_CHAIN) + .build(); + log.info(() -> "put multipart object"); + s3Client.putObject(r -> r.bucket(TEST_BUCKET).key(TEST_KEY), AsyncRequestBody.fromFile(localFile)) + .join(); + s3.close(); + } + + @BeforeEach + public void init() { + log.info(() -> "Initializing S3MultipartClientFileDownloadIntegrationTest"); + this.interceptor = new TestInterceptor(); + this.s3Client = S3AsyncClient.builder() + .multipartEnabled(true) + .overrideConfiguration(o -> o.addExecutionInterceptor(this.interceptor)) + .credentialsProvider(CREDENTIALS_PROVIDER_CHAIN) + .build(); + } + + @Test + void download_defaultCreateNewFile_shouldSucceed() throws Exception { + Path path = tmpPath().resolve(UUID.randomUUID().toString()); + CompletableFuture future = s3Client.getObject( + req -> req.bucket(TEST_BUCKET).key(TEST_KEY), + AsyncResponseTransformer.toFile(path, FileTransformerConfiguration.defaultCreateNew())); + future.join(); + assertSameContentWithChecksum(path); + int totalParts = OBJ_SIZE / (int) PART_SIZE; + assertThat(interceptor.parts.size()).isEqualTo(totalParts); + assertThat(interceptor.parts).hasSameElementsAs(IntStream.range(1, totalParts +1).boxed().collect(Collectors.toList())); + path.toFile().delete(); + } + + private Path tmpPath() { + return Paths.get(JavaSystemSetting.TEMP_DIRECTORY.getStringValueOrThrow()); + } + + private static final class TestInterceptor implements ExecutionInterceptor { + List parts = new ArrayList<>(); + + @Override + public void beforeTransmission(Context.BeforeTransmission context, ExecutionAttributes executionAttributes) { + SdkRequest request = context.request(); + if (request instanceof GetObjectRequest) { + log.info(() -> "Received GetObjectRequest for request " + request); + GetObjectRequest getObjectRequest = (GetObjectRequest) request; + parts.add(getObjectRequest.partNumber()); + } else { + log.warn(() -> "Unexpected request type: " + request.getClass()); + } + } + } + + private void assertSameContentWithChecksum(Path path) throws Exception { + MessageDigest md = MessageDigest.getInstance("SHA-256"); + byte[] downloadedHash = md.digest(Files.readAllBytes(path)); + md.reset(); + byte[] originalHash = md.digest(Files.readAllBytes(localFile.toPath())); + assertThat(downloadedHash).isEqualTo(originalHash); + } +} \ No newline at end of file diff --git a/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/multipart/DownloadObjectHelper.java b/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/multipart/DownloadObjectHelper.java index e09a065b29be..099ec7f7fb78 100644 --- a/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/multipart/DownloadObjectHelper.java +++ b/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/multipart/DownloadObjectHelper.java @@ -32,10 +32,12 @@ public class DownloadObjectHelper { private final S3AsyncClient s3AsyncClient; private final long bufferSizeInBytes; + private final int maxInFlightParts; - public DownloadObjectHelper(S3AsyncClient s3AsyncClient, long bufferSizeInBytes) { + public DownloadObjectHelper(S3AsyncClient s3AsyncClient, long bufferSizeInBytes, int maxInFlightParts) { this.s3AsyncClient = s3AsyncClient; this.bufferSizeInBytes = bufferSizeInBytes; + this.maxInFlightParts = maxInFlightParts; } public CompletableFuture downloadObject( @@ -48,6 +50,26 @@ public CompletableFuture downloadObject( asyncResponseTransformer.split(SplittingTransformerConfiguration.builder() .bufferSizeInBytes(bufferSizeInBytes) .build()); + if (!split.parallelSplitSupported()) { + return downloadPartsSerially(getObjectRequest, split); + } + + return downloadPartsNonSerially(getObjectRequest, split, maxInFlightParts); + + } + + private CompletableFuture downloadPartsNonSerially( + GetObjectRequest getObjectRequest, + AsyncResponseTransformer.SplitResult split, + int maxInFlight) { + ParallelMultipartDownloaderSubscriber subscriber = new ParallelMultipartDownloaderSubscriber( + s3AsyncClient, getObjectRequest, (CompletableFuture) split.resultFuture(), maxInFlight); + split.publisher().subscribe(subscriber); + return split.resultFuture(); + } + + private CompletableFuture downloadPartsSerially(GetObjectRequest getObjectRequest, + AsyncResponseTransformer.SplitResult split) { MultipartDownloaderSubscriber subscriber = subscriber(getObjectRequest); split.publisher().subscribe(subscriber); CompletableFuture splitFuture = split.resultFuture(); diff --git a/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/multipart/MultipartConfigurationResolver.java b/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/multipart/MultipartConfigurationResolver.java index 9fc199175bda..d5a302362b26 100644 --- a/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/multipart/MultipartConfigurationResolver.java +++ b/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/multipart/MultipartConfigurationResolver.java @@ -17,6 +17,7 @@ import software.amazon.awssdk.annotations.SdkInternalApi; import software.amazon.awssdk.services.s3.multipart.MultipartConfiguration; +import software.amazon.awssdk.services.s3.multipart.ParallelConfiguration; import software.amazon.awssdk.utils.Validate; /** @@ -26,9 +27,14 @@ public final class MultipartConfigurationResolver { private static final long DEFAULT_MIN_PART_SIZE = 8L * 1024 * 1024; + + // Using 50 as the default since maxConcurrency for http client is also 50 + private static final int DEFAULT_MAX_IN_FLIGHT_PARTS = 50; + private final long minimalPartSizeInBytes; private final long apiCallBufferSize; private final long thresholdInBytes; + private final int maxInFlightParts; public MultipartConfigurationResolver(MultipartConfiguration multipartConfiguration) { Validate.notNull(multipartConfiguration, "multipartConfiguration"); @@ -37,6 +43,13 @@ public MultipartConfigurationResolver(MultipartConfiguration multipartConfigurat this.apiCallBufferSize = Validate.getOrDefault(multipartConfiguration.apiCallBufferSizeInBytes(), () -> minimalPartSizeInBytes * 4); this.thresholdInBytes = Validate.getOrDefault(multipartConfiguration.thresholdInBytes(), () -> minimalPartSizeInBytes); + ParallelConfiguration parallelConfiguration = multipartConfiguration.parallelConfiguration(); + if (parallelConfiguration == null) { + this.maxInFlightParts = DEFAULT_MAX_IN_FLIGHT_PARTS; + } else { + this.maxInFlightParts = Validate.getOrDefault(multipartConfiguration.parallelConfiguration().maxInFlightParts(), + () -> DEFAULT_MAX_IN_FLIGHT_PARTS); + } } public long minimalPartSizeInBytes() { @@ -50,4 +63,8 @@ public long thresholdInBytes() { public long apiCallBufferSize() { return apiCallBufferSize; } + + public int maxInFlightParts() { + return maxInFlightParts; + } } diff --git a/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/multipart/MultipartS3AsyncClient.java b/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/multipart/MultipartS3AsyncClient.java index d638ca2f4b6a..499f36a6dd1b 100644 --- a/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/multipart/MultipartS3AsyncClient.java +++ b/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/multipart/MultipartS3AsyncClient.java @@ -62,9 +62,10 @@ private MultipartS3AsyncClient(S3AsyncClient delegate, MultipartConfiguration mu long minPartSizeInBytes = resolver.minimalPartSizeInBytes(); long threshold = resolver.thresholdInBytes(); long apiCallBufferSize = resolver.apiCallBufferSize(); + int maxInFlightParts = resolver.maxInFlightParts(); mpuHelper = new UploadObjectHelper(delegate, resolver); copyObjectHelper = new CopyObjectHelper(delegate, minPartSizeInBytes, threshold); - downloadObjectHelper = new DownloadObjectHelper(delegate, apiCallBufferSize); + downloadObjectHelper = new DownloadObjectHelper(delegate, apiCallBufferSize, maxInFlightParts); this.checksumEnabled = checksumEnabled; } diff --git a/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/multipart/ParallelMultipartDownloaderSubscriber.java b/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/multipart/ParallelMultipartDownloaderSubscriber.java new file mode 100644 index 000000000000..4c4423e72a5d --- /dev/null +++ b/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/multipart/ParallelMultipartDownloaderSubscriber.java @@ -0,0 +1,375 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package software.amazon.awssdk.services.s3.internal.multipart; + +import java.util.Map; +import java.util.Queue; +import java.util.concurrent.CompletableFuture; +import java.util.concurrent.ConcurrentHashMap; +import java.util.concurrent.ConcurrentLinkedQueue; +import java.util.concurrent.atomic.AtomicBoolean; +import java.util.concurrent.atomic.AtomicInteger; +import org.reactivestreams.Subscriber; +import org.reactivestreams.Subscription; +import software.amazon.awssdk.annotations.SdkInternalApi; +import software.amazon.awssdk.core.async.AsyncResponseTransformer; +import software.amazon.awssdk.services.s3.S3AsyncClient; +import software.amazon.awssdk.services.s3.model.GetObjectRequest; +import software.amazon.awssdk.services.s3.model.GetObjectResponse; +import software.amazon.awssdk.utils.CompletableFutureUtils; +import software.amazon.awssdk.utils.Logger; +import software.amazon.awssdk.utils.Pair; + +/** + * A subscriber implementation that will download all individual parts for a multipart get-object request in parallel, + * concurrently. The amount of concurrent get-object is limited by the {@code maxInFlightParts} configuration. It receives the + * individual {@link AsyncResponseTransformer} which will be used to perform the individual part requests. These + * AsyncResponseTransformer should be able to handle receiving data in parts potentially out of order, For example, the + * AsyncResponseTransformer for part 4 might may have any of its callback called before part 1, 2 or 3 if it finishes before. This + * is a 'one-shot' class, it should NOT be reused for more than one multipart download. + */ +@SdkInternalApi +public class ParallelMultipartDownloaderSubscriber + implements Subscriber> { + private static final Logger log = Logger.loggerFor(ParallelMultipartDownloaderSubscriber.class); + + /** + * Maximum number of concurrent GetObject requests + */ + private final int maxInFlightParts; + + /** + * The s3 client used to make the individual part requests + */ + private final S3AsyncClient s3; + + /** + * The GetObjectRequest that was provided when calling s3.getObject(...). It is copied for each individual request, and the + * copy has the partNumber field updated as more parts are downloaded. + */ + private final GetObjectRequest getObjectRequest; + + /** + * The total number of completed parts. A part is considered complete once the completable future associated with its request + * completes successfully. + */ + private final AtomicInteger completedParts = new AtomicInteger(); + + /** + * The future returned to the user when calling + * {@link S3AsyncClient#getObject(GetObjectRequest, AsyncResponseTransformer) getObject}. This will be completed once the last + * part finishes. Contrary to the linear code path, the future returned to the user is handled here so that we can complete it + * once the last part writting to the file is completed. + */ + private final CompletableFuture resultFuture; + + /** + * The {@link GetObjectResponse} to be returned in the completed future to the user. It corresponds to the response of first + * part GetObject + */ + private GetObjectResponse getObjectResponse; + + /** + * The subscription received from the publisher this subscriber subscribes to. + */ + private Subscription subscription; + + /** + * This value indicates the total number of parts of the object to get. If null, it means we don't know the total amount of + * parts, either because we haven't received a response from s3 yet to set it, or the object to get is not multipart. + */ + private CompletableFuture totalPartsFuture = new CompletableFuture<>(); + + /** + * The etag of the object being downloaded. + */ + private volatile String eTag; + + /** + * Lock around calls to the subscription + */ + private final Object subscriptionLock = new Object(); + + /** + * Tracks request that are currently in flights, waiting to be completed. Once completed, future are removed from the map + */ + private final Map> inFlightRequests = new ConcurrentHashMap<>(); + + /** + * Trasck the amount of in flight requests + */ + private final AtomicInteger inFlightRequestsNum = new AtomicInteger(0); + + /** + * Pending transformers received through onNext that are waiting to be executed. + */ + private final Queue>> pendingTransformers = + new ConcurrentLinkedQueue<>(); + + /** + * Amount of demand requested but not yet fulfilled by the subscription + */ + private final AtomicInteger outstandingDemand = new AtomicInteger(0); + + /** + * Indicates if we are currently processing pending transformer, which are waiting to be used to send requests + */ + private final AtomicBoolean processingPendingTransformers = new AtomicBoolean(false); + + /** + * The current part of the object to get + */ + private final AtomicInteger partNumber = new AtomicInteger(0); + + /** + * Tracks if one of the parts requests future completed exceptionally. If this occurs, it means all retries were + * attempted for that part, but it still failed. This is a failure state, the error should be reported back to the user + * and any more request should be ignored. + */ + private final AtomicBoolean isCompletedExceptionally = new AtomicBoolean(false); + + public ParallelMultipartDownloaderSubscriber(S3AsyncClient s3, + GetObjectRequest getObjectRequest, + CompletableFuture resultFuture, + int maxInFlightParts) { + this.s3 = s3; + this.getObjectRequest = getObjectRequest; + this.resultFuture = resultFuture; + this.maxInFlightParts = maxInFlightParts; + } + + @Override + public void onSubscribe(Subscription s) { + if (this.subscription != null) { + s.cancel(); + return; + } + this.subscription = s; + subscription.request(maxInFlightParts); + } + + @Override + public void onNext(AsyncResponseTransformer asyncResponseTransformer) { + if (asyncResponseTransformer == null) { + synchronized (subscriptionLock) { + subscription.cancel(); + } + throw new NullPointerException("onNext must not be called with null asyncResponseTransformer"); + } + + log.trace(() -> "On Next - Total in flight parts: " + inFlightRequests.size() + + " - Demand : " + outstandingDemand.get() + + " - Total completed parts: " + completedParts + + " - Total pending transformers: " + pendingTransformers.size() + + " - Current in flight requests: " + inFlightRequests.keySet()); + + int currentPartNum = partNumber.incrementAndGet(); + + if (currentPartNum == 1) { + sendFirstRequest(asyncResponseTransformer); + } else { + pendingTransformers.offer(Pair.of(currentPartNum, asyncResponseTransformer)); + totalPartsFuture.thenAccept( + totalParts -> processingRequests(asyncResponseTransformer, currentPartNum, totalParts)); + } + } + + private void processingRequests(AsyncResponseTransformer asyncResponseTransformer, + int currentPartNum, Integer totalParts) { + + if (currentPartNum > totalParts) { + // Do not process requests above total parts. + // Since we request for maxInFlight during onSubscribe, and the object might actually have less part than maxInFlight, + // there may be situations where we received more onNext signals than the amount of GetObjectRequest required to be + // made. + return; + } + + if (inFlightRequests.size() >= maxInFlightParts) { + pendingTransformers.offer(Pair.of(currentPartNum, asyncResponseTransformer)); + return; + } + + processPendingTransformers(totalParts); + } + + private void sendNextRequest(AsyncResponseTransformer asyncResponseTransformer, + int currentPartNumber, int totalParts) { + if (inFlightRequestsNum.get() + completedParts.get() >= totalParts) { + return; + } + + GetObjectRequest request = nextRequest(currentPartNumber); + log.debug(() -> "Sending next request for part: " + currentPartNumber); + + CompletableFuture response = s3.getObject(request, asyncResponseTransformer); + + inFlightRequestsNum.incrementAndGet(); + inFlightRequests.put(currentPartNumber, response); + CompletableFutureUtils.forwardExceptionTo(resultFuture, response); + + response.whenComplete((res, e) -> { + if (e != null || isCompletedExceptionally.get()) { + // Note on retries: When this future completes exceptionally, it means we did all retries and still failed for + // that part. We need to report back the failure to the user. + handlePartError(e, currentPartNumber); + return; + } + log.debug(() -> "Completed part: " + currentPartNumber); + + inFlightRequests.remove(currentPartNumber); + inFlightRequestsNum.decrementAndGet(); + completedParts.incrementAndGet(); + + if (completedParts.get() >= totalParts) { + if (completedParts.get() > totalParts) { + resultFuture.completeExceptionally(new IllegalStateException("Total parts exceeded")); + } else { + resultFuture.complete(getObjectResponse); + } + + synchronized (subscriptionLock) { + subscription.cancel(); + } + + } else { + processPendingTransformers(res.partsCount()); + synchronized (subscriptionLock) { + subscription.request(1); + } + } + }); + } + + private void sendFirstRequest(AsyncResponseTransformer asyncResponseTransformer) { + log.debug(() -> "Sending first request"); + GetObjectRequest request = nextRequest(1); + CompletableFuture responseFuture = s3.getObject(request, asyncResponseTransformer); + + // Propagate cancellation from user + CompletableFutureUtils.forwardExceptionTo(resultFuture, responseFuture); + + responseFuture.whenComplete((res, e) -> { + if (e != null || isCompletedExceptionally.get()) { + // Note on retries: When this future completes exceptionally, it means we did all retries and still failed for + // that part. We need to report back the failure to the user. + handlePartError(e, 1); + return; + } + + log.debug(() -> "Completed part: 1"); + completedParts.incrementAndGet(); + setInitialPartCountAndEtag(res); + + if (!isMultipartObject(res)) { + return; + } + + log.debug(() -> "Multipart object detected, performing multipart download"); + getObjectResponse = res; + + processPendingTransformers(res.partsCount()); + synchronized (subscriptionLock) { + subscription.request(1); + } + }); + } + + private boolean isMultipartObject(GetObjectResponse response) { + if (response.partsCount() == null || response.partsCount() == 1) { + // Single part object detected, skip multipart and complete everything now + log.debug(() -> "Single Part object detected, skipping multipart download"); + subscription.cancel(); + resultFuture.complete(response); + return false; + } + return true; + } + + private void setInitialPartCountAndEtag(GetObjectResponse response) { + Integer partCount = response.partsCount(); + eTag = response.eTag(); + if (partCount != null) { + log.debug(() -> String.format("Total amount of parts of the object to download: %d", partCount)); + totalPartsFuture.complete(partCount); + } else { + totalPartsFuture.complete(1); + } + } + + private void handlePartError(Throwable e, int part) { + isCompletedExceptionally.set(true); + log.debug(() -> "Error on part " + part, e); + resultFuture.completeExceptionally(e); + inFlightRequests.values().forEach(future -> future.cancel(true)); + } + + private void processPendingTransformers(int totalParts) { + do { + if (!processingPendingTransformers.compareAndSet(false, true)) { + return; + } + try { + doProcessPendingTransformers(totalParts); + } finally { + processingPendingTransformers.set(false); + } + + } while (shouldProcessPendingTransformers()); + + } + + private void doProcessPendingTransformers(int totalParts) { + while (shouldProcessPendingTransformers()) { + Pair> transformer = + pendingTransformers.poll(); + sendNextRequest(transformer.right(), transformer.left(), totalParts); + } + } + + private boolean shouldProcessPendingTransformers() { + if (pendingTransformers.isEmpty()) { + return false; + } + return maxInFlightParts - inFlightRequestsNum.get() > 0; + } + + @Override + public void onError(Throwable t) { + // Signal received from the publisher this is subscribed to + // (in the case of file download, that's FileAsyncResponseTransformerPublisher) + // Failed state, something really wrong has happened, cancel everything + inFlightRequests.values().forEach(future -> future.cancel(true)); + inFlightRequests.clear(); + resultFuture.completeExceptionally(t); + } + + @Override + public void onComplete() { + // We check for completion state when we receive the GetObjectResponse for last part. + // This Subscriber is responsible for its completed state, so we do nothing here. + } + + private GetObjectRequest nextRequest(int nextPartToGet) { + return getObjectRequest.copy(req -> { + req.partNumber(nextPartToGet); + if (eTag != null) { + req.ifMatch(eTag); + } + }); + } + +} diff --git a/services/s3/src/main/java/software/amazon/awssdk/services/s3/multipart/MultipartConfiguration.java b/services/s3/src/main/java/software/amazon/awssdk/services/s3/multipart/MultipartConfiguration.java index 7370a383b1cf..f1d5ff35c60c 100644 --- a/services/s3/src/main/java/software/amazon/awssdk/services/s3/multipart/MultipartConfiguration.java +++ b/services/s3/src/main/java/software/amazon/awssdk/services/s3/multipart/MultipartConfiguration.java @@ -15,6 +15,7 @@ package software.amazon.awssdk.services.s3.multipart; +import java.util.function.Consumer; import software.amazon.awssdk.annotations.SdkPublicApi; import software.amazon.awssdk.core.async.AsyncRequestBody; import software.amazon.awssdk.core.async.AsyncResponseTransformer; @@ -50,11 +51,13 @@ public final class MultipartConfiguration implements ToCopyableBuilder consumer); + + /** + * Configuration specifically related to parallel multipart operations. + * @return the configuration class + */ + ParallelConfiguration parallelConfiguration(); } private static class DefaultMultipartConfigBuilder implements Builder { private Long thresholdInBytes; private Long minimumPartSizeInBytes; private Long apiCallBufferSizeInBytes; + private ParallelConfiguration parallelConfiguration; @Override public Builder thresholdInBytes(Long thresholdInBytes) { @@ -205,6 +237,24 @@ public Long minimumPartSizeInBytes() { return this.minimumPartSizeInBytes; } + @Override + public Builder parallelConfiguration(ParallelConfiguration parallelConfiguration) { + this.parallelConfiguration = parallelConfiguration; + return this; + } + + @Override + public Builder parallelConfiguration(Consumer configuration) { + ParallelConfiguration.Builder builder = ParallelConfiguration.builder(); + configuration.accept(builder); + return parallelConfiguration(builder.build()); + } + + @Override + public ParallelConfiguration parallelConfiguration() { + return this.parallelConfiguration; + } + @Override public Builder apiCallBufferSizeInBytes(Long maximumMemoryUsageInBytes) { this.apiCallBufferSizeInBytes = maximumMemoryUsageInBytes; diff --git a/services/s3/src/main/java/software/amazon/awssdk/services/s3/multipart/ParallelConfiguration.java b/services/s3/src/main/java/software/amazon/awssdk/services/s3/multipart/ParallelConfiguration.java new file mode 100644 index 000000000000..a3816cd97fa2 --- /dev/null +++ b/services/s3/src/main/java/software/amazon/awssdk/services/s3/multipart/ParallelConfiguration.java @@ -0,0 +1,71 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package software.amazon.awssdk.services.s3.multipart; + +import software.amazon.awssdk.annotations.SdkPublicApi; +import software.amazon.awssdk.core.async.AsyncResponseTransformer; +import software.amazon.awssdk.services.s3.S3AsyncClient; +import software.amazon.awssdk.utils.builder.CopyableBuilder; +import software.amazon.awssdk.utils.builder.ToCopyableBuilder; + +/** + * Class that holds configuration properties related to multipart operations for a {@link S3AsyncClient}, related specifically + * to non-linear, parallel operations, that is, when the {@link AsyncResponseTransformer} supports non-serial split. + */ +@SdkPublicApi +public class ParallelConfiguration implements ToCopyableBuilder { + + private final Integer maxInFlightParts; + + public ParallelConfiguration(Builder builder) { + this.maxInFlightParts = builder.maxInFlightParts; + } + + public static Builder builder() { + return new Builder(); + } + + /** + * The maximum number of concurrent GetObject the that are allowed for multipart download. + * @return The value for the maximum number of concurrent GetObject the that are allowed for multipart download. + */ + public Integer maxInFlightParts() { + return maxInFlightParts; + } + + @Override + public Builder toBuilder() { + return builder().maxInFlightParts(maxInFlightParts); + } + + public static class Builder implements CopyableBuilder { + private int maxInFlightParts; + + public Builder maxInFlightParts(int maxInFlightParts) { + this.maxInFlightParts = maxInFlightParts; + return this; + } + + public int maxInFlightParts() { + return maxInFlightParts; + } + + @Override + public ParallelConfiguration build() { + return new ParallelConfiguration(this); + } + } +} diff --git a/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/multipart/MultipartConfigurationResolverTest.java b/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/multipart/MultipartConfigurationResolverTest.java index 99e929c09f4e..18e4348a247a 100644 --- a/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/multipart/MultipartConfigurationResolverTest.java +++ b/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/multipart/MultipartConfigurationResolverTest.java @@ -19,6 +19,7 @@ import org.junit.jupiter.api.Test; import software.amazon.awssdk.services.s3.multipart.MultipartConfiguration; +import software.amazon.awssdk.services.s3.multipart.ParallelConfiguration; public class MultipartConfigurationResolverTest { @@ -59,17 +60,32 @@ void resolveApiCallBufferSize_valueNotProvided_shouldComputeBasedOnPartSize() { assertThat(resolver.apiCallBufferSize()).isEqualTo(40L); } + @Test + void resolveMaxInFlightParts_valueProvidedWithBuilder_shouldHonor() { + MultipartConfiguration configuration = + MultipartConfiguration.builder() + .parallelConfiguration(p -> p.maxInFlightParts(1)) + .build(); + MultipartConfigurationResolver resolver = new MultipartConfigurationResolver(configuration); + assertThat(resolver.maxInFlightParts()).isEqualTo(1); + } + @Test void valueProvidedForAllFields_shouldHonor() { - MultipartConfiguration configuration = MultipartConfiguration.builder() - .minimumPartSizeInBytes(10L) - .thresholdInBytes(8L) - .apiCallBufferSizeInBytes(3L) - .build(); + MultipartConfiguration configuration = + MultipartConfiguration.builder() + .minimumPartSizeInBytes(10L) + .thresholdInBytes(8L) + .apiCallBufferSizeInBytes(3L) + .parallelConfiguration(ParallelConfiguration.builder() + .maxInFlightParts(1) + .build()) + .build(); MultipartConfigurationResolver resolver = new MultipartConfigurationResolver(configuration); assertThat(resolver.minimalPartSizeInBytes()).isEqualTo(10L); assertThat(resolver.thresholdInBytes()).isEqualTo(8L); assertThat(resolver.apiCallBufferSize()).isEqualTo(3L); + assertThat(resolver.maxInFlightParts()).isEqualTo(1); } @Test @@ -79,5 +95,7 @@ void noValueProvided_shouldUseDefault() { assertThat(resolver.minimalPartSizeInBytes()).isEqualTo(8L * 1024 * 1024); assertThat(resolver.thresholdInBytes()).isEqualTo(8L * 1024 * 1024); assertThat(resolver.apiCallBufferSize()).isEqualTo(8L * 1024 * 1024 * 4); + assertThat(resolver.maxInFlightParts()).isEqualTo(50); } + } diff --git a/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/multipart/ParallelMultipartDownloaderSubscriberTckTest.java b/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/multipart/ParallelMultipartDownloaderSubscriberTckTest.java new file mode 100644 index 000000000000..79c6b60bb077 --- /dev/null +++ b/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/multipart/ParallelMultipartDownloaderSubscriberTckTest.java @@ -0,0 +1,116 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package software.amazon.awssdk.services.s3.internal.multipart; + +import static org.mockito.ArgumentMatchers.any; +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.when; + +import java.nio.ByteBuffer; +import java.util.concurrent.CompletableFuture; +import org.reactivestreams.Subscriber; +import org.reactivestreams.Subscription; +import org.reactivestreams.tck.SubscriberWhiteboxVerification; +import org.reactivestreams.tck.TestEnvironment; +import software.amazon.awssdk.core.async.AsyncResponseTransformer; +import software.amazon.awssdk.core.async.SdkPublisher; +import software.amazon.awssdk.services.s3.S3AsyncClient; +import software.amazon.awssdk.services.s3.model.GetObjectRequest; +import software.amazon.awssdk.services.s3.model.GetObjectResponse; + +public class ParallelMultipartDownloaderSubscriberTckTest + extends SubscriberWhiteboxVerification> { + private S3AsyncClient s3Client; + private CompletableFuture future; + + public ParallelMultipartDownloaderSubscriberTckTest() { + super(new TestEnvironment()); + s3Client = mock(S3AsyncClient.class); + when(s3Client.getObject(any(GetObjectRequest.class), any(AsyncResponseTransformer.class))) + .thenReturn(CompletableFuture.completedFuture(GetObjectResponse.builder() + .partsCount(10) + .eTag("eTag") + .build())); + future = new CompletableFuture<>(); + } + + @Override + public Subscriber> createSubscriber( + WhiteboxSubscriberProbe> probe) { + return new ParallelMultipartDownloaderSubscriber(s3Client, GetObjectRequest.builder().build(), future, 50) { + @Override + public void onSubscribe(Subscription s) { + super.onSubscribe(s); + probe.registerOnSubscribe(new SubscriberWhiteboxVerification.SubscriberPuppet() { + + @Override + public void triggerRequest(long l) { + s.request(l); + } + + @Override + public void signalCancel() { + s.cancel(); + } + }); + } + + @Override + public void onNext(AsyncResponseTransformer item) { + super.onNext(item); + probe.registerOnNext(item); + } + + @Override + public void onError(Throwable t) { + super.onError(t); + probe.registerOnError(t); + } + + @Override + public void onComplete() { + super.onComplete(); + probe.registerOnComplete(); + } + + }; + } + + @Override + public AsyncResponseTransformer createElement(int element) { + return new AsyncResponseTransformer() { + @Override + public CompletableFuture prepare() { + return new CompletableFuture<>(); + } + + @Override + public void onResponse(GetObjectResponse response) { + // do nothing, test + } + + @Override + public void onStream(SdkPublisher publisher) { + // do nothing, test + } + + @Override + public void exceptionOccurred(Throwable error) { + // do nothing, test + } + }; + } +} \ No newline at end of file diff --git a/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/multipart/ParallelMultipartDownloaderSubscriberWiremockTest.java b/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/multipart/ParallelMultipartDownloaderSubscriberWiremockTest.java new file mode 100644 index 000000000000..54abbee78c64 --- /dev/null +++ b/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/multipart/ParallelMultipartDownloaderSubscriberWiremockTest.java @@ -0,0 +1,146 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package software.amazon.awssdk.services.s3.internal.multipart; + +import static org.assertj.core.api.Assertions.assertThat; + +import com.github.tomakehurst.wiremock.junit5.WireMockRuntimeInfo; +import com.github.tomakehurst.wiremock.junit5.WireMockTest; +import com.google.common.jimfs.Configuration; +import com.google.common.jimfs.Jimfs; +import java.net.URI; +import java.nio.file.FileSystem; +import java.nio.file.Files; +import java.nio.file.Path; +import java.util.concurrent.CompletableFuture; +import org.junit.jupiter.api.AfterEach; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.params.ParameterizedTest; +import org.junit.jupiter.params.provider.ValueSource; +import org.reactivestreams.Subscriber; +import software.amazon.awssdk.auth.credentials.AwsBasicCredentials; +import software.amazon.awssdk.auth.credentials.StaticCredentialsProvider; +import software.amazon.awssdk.core.FileTransformerConfiguration; +import software.amazon.awssdk.core.SplittingTransformerConfiguration; +import software.amazon.awssdk.core.async.AsyncResponseTransformer; +import software.amazon.awssdk.regions.Region; +import software.amazon.awssdk.services.s3.S3AsyncClient; +import software.amazon.awssdk.services.s3.S3Configuration; +import software.amazon.awssdk.services.s3.internal.multipart.utils.MultipartDownloadTestUtils; +import software.amazon.awssdk.services.s3.model.GetObjectRequest; +import software.amazon.awssdk.services.s3.model.GetObjectResponse; + +@WireMockTest +class ParallelMultipartDownloaderSubscriberWiremockTest { + + private final String testBucket = "test-bucket"; + private final String testKey = "test-key"; + + private S3AsyncClient s3AsyncClient; + private MultipartDownloadTestUtils utils; + private FileSystem fileSystem; + private Path testFile; + + @BeforeEach + public void init(WireMockRuntimeInfo wiremock) throws Exception { + s3AsyncClient = S3AsyncClient.builder() + .credentialsProvider(StaticCredentialsProvider.create( + AwsBasicCredentials.create("key", "secret"))) + .region(Region.US_WEST_2) + .endpointOverride(URI.create("http://localhost:" + wiremock.getHttpPort())) + .serviceConfiguration(S3Configuration.builder() + .pathStyleAccessEnabled(true) + .build()) + .build(); + utils = new MultipartDownloadTestUtils(testBucket, testKey, "test-etag"); + fileSystem = Jimfs.newFileSystem(Configuration.unix()); + testFile = fileSystem.getPath("/test-file.txt"); + Files.createDirectories(testFile.getParent()); + Files.createFile(testFile); + } + + @AfterEach + void tearDown() throws Exception { + fileSystem.close(); + } + + @ParameterizedTest + @ValueSource(ints = {2, 3, 4, 5, 6, 7, 8, 9, 10, 49}) + void happyPath_multipartDownload_partsLessThanMaxInFlight(int numParts) throws Exception { + int partSize = 1024; + byte[] expectedBody = utils.stubAllParts(testBucket, testKey, numParts, partSize); + + AsyncResponseTransformer transformer = + AsyncResponseTransformer.toFile(testFile, FileTransformerConfiguration.defaultCreateOrReplaceExisting()); + AsyncResponseTransformer.SplitResult split = transformer.split( + SplittingTransformerConfiguration.builder() + .bufferSizeInBytes(1024 * 32L) + .build()); + + CompletableFuture resultFuture = new CompletableFuture<>(); + Subscriber> subscriber = + new ParallelMultipartDownloaderSubscriber(s3AsyncClient, + GetObjectRequest.builder() + .bucket(testBucket) + .key(testKey) + .build(), + resultFuture, + 50); + + split.publisher().subscribe(subscriber); + GetObjectResponse getObjectResponse = resultFuture.join(); + + assertThat(Files.exists(testFile)).isTrue(); + byte[] actualBody = Files.readAllBytes(testFile); + assertThat(actualBody).isEqualTo(expectedBody); + assertThat(getObjectResponse).isNotNull(); + utils.verifyCorrectAmountOfRequestsMade(numParts); + } + + @Test + void singlePartObject_shouldCompleteWithoutMultipart() throws Exception { + int partSize = 1024; + byte[] expectedBody = utils.stubSinglePart(testBucket, testKey, partSize); + + AsyncResponseTransformer transformer = + AsyncResponseTransformer.toFile(testFile, FileTransformerConfiguration.defaultCreateOrReplaceExisting()); + AsyncResponseTransformer.SplitResult split = transformer.split( + SplittingTransformerConfiguration.builder() + .bufferSizeInBytes(1024 * 32L) + .build()); + + CompletableFuture resultFuture = new CompletableFuture<>(); + Subscriber> subscriber = + new ParallelMultipartDownloaderSubscriber(s3AsyncClient, + GetObjectRequest.builder() + .bucket(testBucket) + .key(testKey) + .build(), + resultFuture, + 50); + + split.publisher().subscribe(subscriber); + GetObjectResponse getObjectResponse = resultFuture.join(); + + assertThat(Files.exists(testFile)).isTrue(); + byte[] actualBody = Files.readAllBytes(testFile); + assertThat(actualBody).isEqualTo(expectedBody); + assertThat(getObjectResponse).isNotNull(); + utils.verifyCorrectAmountOfRequestsMade(1); + } + +} \ No newline at end of file diff --git a/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/multipart/S3MultipartClientGetObjectWiremockTest.java b/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/multipart/S3MultipartClientGetObjectWiremockTest.java index 66a1c593d56f..cd6a668f4c53 100644 --- a/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/multipart/S3MultipartClientGetObjectWiremockTest.java +++ b/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/multipart/S3MultipartClientGetObjectWiremockTest.java @@ -175,7 +175,11 @@ public void partCountValidationFailure_shouldThrowException( // Skip the lazy transformer since the error won't surface unless the content is consumed AsyncResponseTransformer transformer = supplier.transformer(); - if (transformer instanceof InputStreamResponseTransformer || transformer instanceof PublisherAsyncResponseTransformer) { + if (transformer instanceof InputStreamResponseTransformer + || transformer instanceof PublisherAsyncResponseTransformer + // FileAsyncResponseTransformer will be used with ParallelMultipartDownloaderSubscriber for which this test logic + // doesn't work + || transformer instanceof FileAsyncResponseTransformer) { return; } @@ -291,20 +295,21 @@ private static Stream partSizeAndTransformerParams() { } + + /** * Testing response transformers that are not retryable when * {@link AsyncResponseTransformer#split(SplittingTransformerConfiguration)} is invoked and used with - * {@link SplittingTransformer} - {@link PublisherAsyncResponseTransformer}, {@link InputStreamResponseTransformer}, and - * {@link FileAsyncResponseTransformer} + * {@link SplittingTransformer} - {@link PublisherAsyncResponseTransformer}, {@link InputStreamResponseTransformer} *

* - * Retry for multipart download is supported for {@link ByteArrayAsyncResponseTransformer}, tested in - * {@link S3MultipartClientGetObjectRetryBehaviorWiremockTest}. + * Retry for multipart download is supported for {@link ByteArrayAsyncResponseTransformer} + * and {@link FileAsyncResponseTransformer}, tested in {@link S3MultipartClientGetObjectRetryBehaviorWiremockTest} and + * {@link S3MultipartFileDownloadWiremockTest} respectively. */ private static Stream> nonRetryableResponseTransformers() { return Stream.of(new AsyncResponseTransformerTestSupplier.InputStreamArtSupplier(), - new AsyncResponseTransformerTestSupplier.PublisherArtSupplier(), - new AsyncResponseTransformerTestSupplier.FileArtSupplier()); + new AsyncResponseTransformerTestSupplier.PublisherArtSupplier()); } private CompletableFuture mock200Response(S3AsyncClient s3Client, int runNumber, diff --git a/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/multipart/S3MultipartFileDownloadWiremockTest.java b/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/multipart/S3MultipartFileDownloadWiremockTest.java new file mode 100644 index 000000000000..5d1edb4370fb --- /dev/null +++ b/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/multipart/S3MultipartFileDownloadWiremockTest.java @@ -0,0 +1,418 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package software.amazon.awssdk.services.s3.internal.multipart; + +import static com.github.tomakehurst.wiremock.client.WireMock.aResponse; +import static com.github.tomakehurst.wiremock.client.WireMock.exactly; +import static com.github.tomakehurst.wiremock.client.WireMock.get; +import static com.github.tomakehurst.wiremock.client.WireMock.getRequestedFor; +import static com.github.tomakehurst.wiremock.client.WireMock.stubFor; +import static com.github.tomakehurst.wiremock.client.WireMock.urlEqualTo; +import static com.github.tomakehurst.wiremock.client.WireMock.verify; +import static org.assertj.core.api.Assertions.assertThat; +import static software.amazon.awssdk.services.s3.internal.multipart.utils.MultipartDownloadTestUtils.contentRangeHeader; + +import com.github.tomakehurst.wiremock.junit5.WireMockRuntimeInfo; +import com.github.tomakehurst.wiremock.junit5.WireMockTest; +import com.google.common.jimfs.Configuration; +import com.google.common.jimfs.Jimfs; +import java.net.URI; +import java.nio.file.FileSystem; +import java.nio.file.Files; +import java.nio.file.Path; +import java.time.Duration; +import java.time.temporal.ChronoUnit; +import java.util.Random; +import java.util.concurrent.CompletableFuture; +import java.util.concurrent.ExecutionException; +import org.junit.jupiter.api.AfterEach; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import software.amazon.awssdk.auth.credentials.AwsBasicCredentials; +import software.amazon.awssdk.auth.credentials.StaticCredentialsProvider; +import software.amazon.awssdk.core.async.AsyncResponseTransformer; +import software.amazon.awssdk.regions.Region; +import software.amazon.awssdk.services.s3.S3AsyncClient; +import software.amazon.awssdk.services.s3.S3Configuration; +import software.amazon.awssdk.services.s3.internal.multipart.utils.MultipartDownloadTestUtils; +import software.amazon.awssdk.services.s3.model.GetObjectResponse; +import software.amazon.awssdk.services.s3.model.S3Exception; + +@WireMockTest +class S3MultipartFileDownloadWiremockTest { + + private final String testBucket = "test-bucket"; + private final String testKey = "test-key"; + + private S3AsyncClient s3AsyncClient; + private MultipartDownloadTestUtils util; + private FileSystem fileSystem; + private Path testFile; + + @BeforeEach + public void init(WireMockRuntimeInfo wiremock) throws Exception { + s3AsyncClient = S3AsyncClient.builder() + .credentialsProvider(StaticCredentialsProvider.create( + AwsBasicCredentials.create("key", "secret"))) + .region(Region.US_WEST_2) + .endpointOverride(URI.create("http://localhost:" + wiremock.getHttpPort())) + .multipartEnabled(true) + .serviceConfiguration(S3Configuration.builder() + .pathStyleAccessEnabled(true) + .build()) + .build(); + util = new MultipartDownloadTestUtils(testBucket, testKey, "test-etag"); + fileSystem = Jimfs.newFileSystem(Configuration.unix()); + testFile = fileSystem.getPath("test-file.txt"); + } + + @AfterEach + void tearDown() throws Exception { + fileSystem.close(); + } + + @Test + void happyPath_singlePart() throws Exception { + int partSize = 1024; + byte[] expectedBody = util.stubSinglePart(testBucket, testKey, partSize); + + CompletableFuture response = s3AsyncClient.getObject(b -> b + .bucket(testBucket) + .key(testKey) + .build(), + AsyncResponseTransformer.toFile(testFile)); + + assertThat(response).succeedsWithin(Duration.of(10, ChronoUnit.SECONDS)); + assertThat(Files.exists(testFile)).isTrue(); + byte[] actualBody = Files.readAllBytes(testFile); + assertThat(actualBody).isEqualTo(expectedBody); + assertThat(response).isNotNull(); + util.verifyCorrectAmountOfRequestsMade(1); + } + + @Test + void happyPath_multipart() throws Exception { + int numParts = 4; + int partSize = 1024; + byte[] expectedBody = util.stubAllParts(testBucket, testKey, numParts, partSize); + + CompletableFuture response = s3AsyncClient.getObject(b -> b + .bucket(testBucket) + .key(testKey) + .build(), + AsyncResponseTransformer.toFile(testFile)); + + assertThat(response).succeedsWithin(Duration.of(10, ChronoUnit.SECONDS)); + byte[] actualBody = Files.readAllBytes(testFile); + assertThat(actualBody).isEqualTo(expectedBody); + assertThat(response).isNotNull(); + util.verifyCorrectAmountOfRequestsMade(numParts); + } + + @Test + void errorOnFirstPart_nonRetryable() { + stubFor(get(urlEqualTo(String.format("/%s/%s?partNumber=1", testBucket, testKey))).willReturn( + aResponse() + .withStatus(403) + .withBody("AccessDeniedTest: Access denied!"))); + + CompletableFuture resp = s3AsyncClient.getObject(b -> b + .bucket(testBucket) + .key(testKey) + .build(), + AsyncResponseTransformer.toFile(testFile)); + assertThat(resp).failsWithin(Duration.of(10, ChronoUnit.SECONDS)) + .withThrowableOfType(ExecutionException.class) + .withCauseInstanceOf(S3Exception.class) + .withMessageContaining("Test: Access denied!"); + verify(exactly(1), getRequestedFor(urlEqualTo(String.format("/%s/%s?partNumber=1", testBucket, testKey)))); + } + + @Test + void errorOnFirstPart_retryable() { + stubFor(get(urlEqualTo(String.format("/%s/%s?partNumber=1", testBucket, testKey))) + .inScenario("retry") + .whenScenarioStateIs("Started") + .willReturn(aResponse() + .withStatus(500) + .withBody("InternalErrorInternal error 1")) + .willSetStateTo("retry1")); + + stubFor(get(urlEqualTo(String.format("/%s/%s?partNumber=1", testBucket, testKey))) + .inScenario("retry") + .whenScenarioStateIs("retry1") + .willReturn(aResponse() + .withStatus(500) + .withBody("InternalErrorInternal error 2")) + .willSetStateTo("retry2")); + + stubFor(get(urlEqualTo(String.format("/%s/%s?partNumber=1", testBucket, testKey))) + .inScenario("retry") + .whenScenarioStateIs("retry2") + .willReturn(aResponse() + .withStatus(500) + .withBody("InternalErrorInternal error 3")) + .willSetStateTo("retry3")); + + stubFor(get(urlEqualTo(String.format("/%s/%s?partNumber=1", testBucket, testKey))) + .inScenario("retry") + .whenScenarioStateIs("retry3") + .willReturn(aResponse() + .withStatus(500) + .withBody("InternalErrorInternal error 4"))); + + CompletableFuture resp = s3AsyncClient.getObject(b -> b + .bucket(testBucket) + .key(testKey) + .build(), + AsyncResponseTransformer.toFile(testFile)); + assertThat(resp).failsWithin(Duration.of(10, ChronoUnit.SECONDS)) + .withThrowableOfType(ExecutionException.class) + .withCauseInstanceOf(S3Exception.class) + .withMessageContaining("Internal error 4"); + verify(exactly(4), getRequestedFor(urlEqualTo(String.format("/%s/%s?partNumber=1", testBucket, testKey)))); + } + + @Test + void errorOnMiddlePart_nonRetryable() { + util.stubForPart(testBucket, testKey, 1, 3, 1024); + stubFor(get(urlEqualTo(String.format("/%s/%s?partNumber=2", testBucket, testKey))).willReturn( + aResponse() + .withStatus(403) + .withBody("AccessDeniedTest: Access denied!"))); + util.stubForPart(testBucket, testKey, 3, 3, 1024); + + CompletableFuture resp = s3AsyncClient.getObject(b -> b + .bucket(testBucket) + .key(testKey) + .build(), + AsyncResponseTransformer.toFile(testFile)); + + assertThat(resp).failsWithin(Duration.of(10, ChronoUnit.SECONDS)) + .withThrowableOfType(ExecutionException.class) + .withCauseInstanceOf(S3Exception.class) + .withMessageContaining("Test: Access denied!"); + verify(exactly(1), getRequestedFor(urlEqualTo(String.format("/%s/%s?partNumber=1", testBucket, testKey)))); + verify(exactly(1), getRequestedFor(urlEqualTo(String.format("/%s/%s?partNumber=2", testBucket, testKey)))); + } + + @Test + void errorOnMiddlePart_retryable() { + util.stubForPart(testBucket, testKey, 1, 3, 1024); + util.stubForPart(testBucket, testKey, 3, 3, 1024); + + stubFor(get(urlEqualTo(String.format("/%s/%s?partNumber=2", testBucket, testKey))) + .inScenario("retry") + .whenScenarioStateIs("Started") + .willReturn(aResponse() + .withStatus(500) + .withBody("InternalErrorInternal error 1")) + .willSetStateTo("retry1")); + + stubFor(get(urlEqualTo(String.format("/%s/%s?partNumber=2", testBucket, testKey))) + .inScenario("retry") + .whenScenarioStateIs("retry1") + .willReturn(aResponse() + .withStatus(500) + .withBody("InternalErrorInternal error 2")) + .willSetStateTo("retry2")); + + stubFor(get(urlEqualTo(String.format("/%s/%s?partNumber=2", testBucket, testKey))) + .inScenario("retry") + .whenScenarioStateIs("retry2") + .willReturn(aResponse() + .withStatus(500) + .withBody("InternalErrorInternal error 3")) + .willSetStateTo("retry3") + ); + + stubFor(get(urlEqualTo(String.format("/%s/%s?partNumber=2", testBucket, testKey))) + .inScenario("retry") + .whenScenarioStateIs("retry3") + .willReturn(aResponse() + .withStatus(500) + .withBody("InternalErrorInternal error 4"))); + + CompletableFuture resp = s3AsyncClient.getObject(b -> b + .bucket(testBucket) + .key(testKey) + .build(), + AsyncResponseTransformer.toFile(testFile)); + + assertThat(resp).failsWithin(Duration.of(10, ChronoUnit.SECONDS)) + .withThrowableOfType(ExecutionException.class) + .withCauseInstanceOf(S3Exception.class) + .withMessageContaining("Internal error 4"); + + verify(exactly(1), getRequestedFor(urlEqualTo(String.format("/%s/%s?partNumber=1", testBucket, testKey)))); + verify(exactly(4), getRequestedFor(urlEqualTo(String.format("/%s/%s?partNumber=2", testBucket, testKey)))); + } + + @Test + void errorOnFirstPart_retryable_thenSucceeds() throws Exception { + int partSize = 1024; + int totalPart = 3; + Random random = new Random(); + + stubFor(get(urlEqualTo(String.format("/%s/%s?partNumber=1", testBucket, testKey))) + .inScenario("retry") + .whenScenarioStateIs("Started") + .willReturn(aResponse() + .withStatus(500) + .withBody("InternalErrorInternal error 1")) + .willSetStateTo("retry1")); + + stubFor(get(urlEqualTo(String.format("/%s/%s?partNumber=1", testBucket, testKey))) + .inScenario("retry") + .whenScenarioStateIs("retry1") + .willReturn(aResponse() + .withStatus(500) + .withBody("InternalErrorInternal error 2")) + .willSetStateTo("retry2")); + + byte[] part1Data = new byte[partSize]; + random.nextBytes(part1Data); + stubFor(get(urlEqualTo(String.format("/%s/%s?partNumber=%d", testBucket, testKey, 1))) + .inScenario("retry") + .whenScenarioStateIs("retry2") + .willReturn(aResponse() + .withHeader("x-amz-mp-parts-count", totalPart + "") + .withHeader("x-amz-content-range", contentRangeHeader(1, totalPart, partSize)) + .withHeader("ETag", "test-etag") + .withBody(part1Data))); + + byte[] part2Data = new byte[partSize]; + random.nextBytes(part2Data); + stubFor(get(urlEqualTo(String.format("/%s/%s?partNumber=%d", testBucket, testKey, 2))) + .inScenario("retry") + .whenScenarioStateIs("retry2") + .willReturn(aResponse() + .withHeader("x-amz-mp-parts-count", totalPart + "") + .withHeader("x-amz-content-range", contentRangeHeader(2, totalPart, partSize)) + .withHeader("ETag", "test-etag") + .withBody(part2Data))); + + byte[] part3Data = new byte[partSize]; + random.nextBytes(part3Data); + stubFor(get(urlEqualTo(String.format("/%s/%s?partNumber=%d", testBucket, testKey, 3))) + .inScenario("retry") + .whenScenarioStateIs("retry2") + .willReturn(aResponse() + .withHeader("x-amz-mp-parts-count", totalPart + "") + .withHeader("x-amz-content-range", contentRangeHeader(3, totalPart, partSize)) + .withHeader("ETag", "test-etag") + .withBody(part3Data))); + + + } + + @Test + void errorOnMiddlePart_retryable_thenSucceeds() throws Exception { + int partSize = 1024; + int totalPart = 3; + Random random = new Random(); + byte[] part1Data = util.stubForPart(testBucket, testKey, 1, totalPart, partSize); + + stubFor(get(urlEqualTo(String.format("/%s/%s?partNumber=2", testBucket, testKey))) + .inScenario("retry") + .whenScenarioStateIs("Started") + .willReturn(aResponse() + .withStatus(500) + .withBody("InternalErrorInternal error 1")) + .willSetStateTo("retry1")); + + stubFor(get(urlEqualTo(String.format("/%s/%s?partNumber=2", testBucket, testKey))) + .inScenario("retry") + .whenScenarioStateIs("retry1") + .willReturn(aResponse() + .withStatus(500) + .withBody("InternalErrorInternal error 2")) + .willSetStateTo("retry2")); + + stubFor(get(urlEqualTo(String.format("/%s/%s?partNumber=2", testBucket, testKey))) + .inScenario("retry") + .whenScenarioStateIs("retry2") + .willReturn(aResponse() + .withStatus(500) + .withBody("InternalErrorInternal error 3")) + .willSetStateTo("retry3") + ); + + byte[] part2Data = new byte[partSize]; + random.nextBytes(part2Data); + stubFor(get(urlEqualTo(String.format("/%s/%s?partNumber=%d", testBucket, testKey, 2))) + .inScenario("retry") + .whenScenarioStateIs("retry3") + .willReturn(aResponse() + .withHeader("x-amz-mp-parts-count", totalPart + "") + .withHeader("x-amz-content-range", contentRangeHeader(2, totalPart, partSize)) + .withHeader("ETag", "test-etag") + .withBody(part2Data))); + + byte[] part3Data = new byte[partSize]; + random.nextBytes(part3Data); + + stubFor(get(urlEqualTo(String.format("/%s/%s?partNumber=%d", testBucket, testKey, 3))) + .willReturn(aResponse() + .withHeader("x-amz-mp-parts-count", totalPart + "") + .withHeader("x-amz-content-range", contentRangeHeader(3, totalPart, partSize)) + .withHeader("ETag", "test-etag") + .withBody(part3Data))); + + CompletableFuture resp = s3AsyncClient.getObject(b -> b + .bucket(testBucket) + .key(testKey) + .build(), + AsyncResponseTransformer.toFile(testFile)); + + assertThat(resp).succeedsWithin(Duration.of(10, ChronoUnit.SECONDS)); + + verify(exactly(1), getRequestedFor(urlEqualTo(String.format("/%s/%s?partNumber=1", testBucket, testKey)))); + verify(exactly(4), getRequestedFor(urlEqualTo(String.format("/%s/%s?partNumber=2", testBucket, testKey)))); + verify(exactly(1), getRequestedFor(urlEqualTo(String.format("/%s/%s?partNumber=3", testBucket, testKey)))); + + assertThat(Files.exists(testFile)).isTrue(); + byte[] actualBody = Files.readAllBytes(testFile); + byte[] expectedBody = new byte[partSize * totalPart]; + System.arraycopy(part1Data, 0, expectedBody, 0, partSize); + System.arraycopy(part2Data, 0, expectedBody, partSize, partSize); + System.arraycopy(part3Data, 0, expectedBody, partSize * 2, partSize); + assertThat(actualBody).isEqualTo(expectedBody); + + } + + @Test + void veryHighPartCount_shouldSucceed() throws Exception { + int numParts = 5000; + int partSize = 100; + + byte[] expectedBody = util.stubAllParts(testBucket, testKey, numParts, partSize); + + CompletableFuture response = s3AsyncClient.getObject(b -> b + .bucket(testBucket) + .key(testKey) + .build(), + AsyncResponseTransformer.toFile(testFile)); + + assertThat(response).succeedsWithin(Duration.of(5, ChronoUnit.MINUTES)); + response.join(); + byte[] actualBody = Files.readAllBytes(testFile); + assertThat(actualBody).isEqualTo(expectedBody); + assertThat(response).isNotNull(); + util.verifyCorrectAmountOfRequestsMade(numParts); + + } +} \ No newline at end of file diff --git a/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/multipart/utils/MultipartDownloadTestUtils.java b/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/multipart/utils/MultipartDownloadTestUtils.java index e12a7cee35a0..de7e442cea65 100644 --- a/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/multipart/utils/MultipartDownloadTestUtils.java +++ b/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/multipart/utils/MultipartDownloadTestUtils.java @@ -59,18 +59,26 @@ public byte[] stubAllParts(String testBucket, String testKey, int amountOfPartTo return expectedBody; } - public byte[] stubForPart(String testBucket, String testKey,int part, int totalPart, int partSize) { + public byte[] stubForPart(String testBucket, String testKey, int part, int totalPart, int partSize) { byte[] body = new byte[partSize]; random.nextBytes(body); stubFor(get(urlEqualTo(String.format("/%s/%s?partNumber=%d", testBucket, testKey, part))).willReturn( aResponse() .withHeader("x-amz-mp-parts-count", totalPart + "") + .withHeader("x-amz-content-range", contentRangeHeader(part, totalPart, partSize)) .withHeader("ETag", eTag) .withHeader("Content-Length", String.valueOf(body.length)) .withBody(body))); return body; } + public static String contentRangeHeader(int part, int totalPart, int partSize) { + long start = (part - 1) * (long) partSize; + long end = start + partSize - 1; + long total = totalPart * (long) partSize; + return String.format("bytes %d-%d/%d", start, end, total); + } + public void verifyCorrectAmountOfRequestsMade(int amountOfPartToTest) { String urlTemplate = ".*partNumber=%d.*"; for (int i = 1; i <= amountOfPartToTest; i++) { @@ -94,4 +102,16 @@ public static String internalErrorBody() { public static String slowdownErrorBody() { return errorBody("SlowDown", "Please reduce your request rate."); } + + public byte[] stubSinglePart(String testBucket, String testKey, int partSize) { + byte[] body = new byte[partSize]; + random.nextBytes(body); + stubFor(get(urlEqualTo(String.format("/%s/%s?partNumber=1", testBucket, testKey))).willReturn( + aResponse() + .withHeader("x-amz-mp-parts-count", "1") + .withHeader("x-amz-content-range", String.format("bytes %d-%d/%d", 0, partSize - 1, partSize)) + .withHeader("ETag", eTag) + .withBody(body))); + return body; + } } diff --git a/test/architecture-tests/archunit_store/4195d6e3-8849-4e5a-848d-04f810577cd3 b/test/architecture-tests/archunit_store/4195d6e3-8849-4e5a-848d-04f810577cd3 index dd81179f8903..abf18b7d902b 100644 --- a/test/architecture-tests/archunit_store/4195d6e3-8849-4e5a-848d-04f810577cd3 +++ b/test/architecture-tests/archunit_store/4195d6e3-8849-4e5a-848d-04f810577cd3 @@ -44,7 +44,7 @@ Method calls method in (ReceiveSqsMessageHelper.java:132) Method calls method in (AsyncBufferingSubscriber.java:67) Method calls method in (PauseResumeHelper.java:59) -Method calls method in (ContentRangeParser.java:71) +Method calls method in (ContentRangeParser.java:71) Method calls method in (LoggingTransferListener.java:76) Method calls method in (Logger.java:205) Method calls method in (AddingTrailingDataSubscriber.java:73) diff --git a/services-custom/s3-transfer-manager/src/main/java/software/amazon/awssdk/transfer/s3/internal/progress/ContentRangeParser.java b/utils/src/main/java/software/amazon/awssdk/utils/ContentRangeParser.java similarity index 58% rename from services-custom/s3-transfer-manager/src/main/java/software/amazon/awssdk/transfer/s3/internal/progress/ContentRangeParser.java rename to utils/src/main/java/software/amazon/awssdk/utils/ContentRangeParser.java index 03e67c402a56..3b4d2433c91b 100644 --- a/services-custom/s3-transfer-manager/src/main/java/software/amazon/awssdk/transfer/s3/internal/progress/ContentRangeParser.java +++ b/utils/src/main/java/software/amazon/awssdk/utils/ContentRangeParser.java @@ -13,12 +13,11 @@ * permissions and limitations under the License. */ -package software.amazon.awssdk.transfer.s3.internal.progress; +package software.amazon.awssdk.utils; +import java.util.Optional; import java.util.OptionalLong; -import software.amazon.awssdk.annotations.SdkInternalApi; -import software.amazon.awssdk.utils.Logger; -import software.amazon.awssdk.utils.StringUtils; +import software.amazon.awssdk.annotations.SdkProtectedApi; /** * Parse a Content-Range header value into a total byte count. The expected format is the following:

@@ -27,7 +26,7 @@ *

* The only supported {@code } is the {@code bytes} value. */ -@SdkInternalApi +@SdkProtectedApi public final class ContentRangeParser { private static final Logger log = Logger.loggerFor(ContentRangeParser.class); @@ -72,4 +71,47 @@ public static OptionalLong totalBytes(String contentRange) { return OptionalLong.empty(); } } + + /** + * Parse the Content-Range to extract the byte range from the content. Only supports the {@code bytes} unit, any + * other unit will result in an empty OptionalLong. If byte range in unknown, which is represented by a {@code *} symbol + * in the header value, an empty OptionalLong will be returned. + * + * @param contentRange the value of the Content-Range header to be parsed. + * @return The total number of bytes in the content range or an empty optional if the contentRange is null, empty or if the + * total length is not a valid long. + */ + public static Optional> range(String contentRange) { + if (StringUtils.isEmpty(contentRange)) { + return Optional.empty(); + } + + String trimmed = contentRange.trim(); + if (!trimmed.startsWith("bytes ")) { + return Optional.empty(); + } + String withoutBytes = trimmed.substring("bytes ".length()); + if (withoutBytes.startsWith("*")) { + return Optional.empty(); + } + int hyphen = withoutBytes.indexOf('-'); + if (hyphen == -1) { + return Optional.empty(); + } + String begin = withoutBytes.substring(0, hyphen); + int slash = withoutBytes.indexOf('/'); + if (slash == -1) { + return Optional.empty(); + } + String end = withoutBytes.substring(hyphen + 1, slash); + try { + long startInt = Long.parseLong(begin); + long endInt = Long.parseLong(end); + return Optional.of(Pair.of(startInt, endInt)); + } catch (Exception e) { + log.debug(() -> "failed to parse content range", e); + return Optional.empty(); + } + } + } From 2976428b8bdfbb22c14f8629a1ba8fd9e0a91616 Mon Sep 17 00:00:00 2001 From: Olivier Lepage-Applin Date: Tue, 25 Nov 2025 11:17:51 -0500 Subject: [PATCH 2/9] merge branch 'olapplin/large-object-merge' into 'feature/master/large-object-dl' --- ...FileAsyncResponseTransformerPublisher.java | 24 +++-- ...artDownloadPauseResumeIntegrationTest.java | 19 ++++ .../s3/internal/GenericS3TransferManager.java | 2 +- .../utils/ResumableRequestConverter.java | 6 +- ...ParallelMultipartDownloaderSubscriber.java | 98 ++++++++++++++++--- ...ipartDownloaderSubscriberWiremockTest.java | 7 +- ...3MultipartClientGetObjectWiremockTest.java | 5 +- 7 files changed, 130 insertions(+), 31 deletions(-) diff --git a/core/sdk-core/src/main/java/software/amazon/awssdk/core/internal/async/FileAsyncResponseTransformerPublisher.java b/core/sdk-core/src/main/java/software/amazon/awssdk/core/internal/async/FileAsyncResponseTransformerPublisher.java index 29208894cf31..678e5638ef9e 100644 --- a/core/sdk-core/src/main/java/software/amazon/awssdk/core/internal/async/FileAsyncResponseTransformerPublisher.java +++ b/core/sdk-core/src/main/java/software/amazon/awssdk/core/internal/async/FileAsyncResponseTransformerPublisher.java @@ -103,16 +103,20 @@ public CompletableFuture prepare() { @Override public void onResponse(T response) { - Optional contentRangeList = response.sdkHttpResponse().firstMatchingHeader("x-amz-content-range"); - if (!contentRangeList.isPresent()) { - if (subscriber != null) { - IllegalStateException e = new IllegalStateException("Content range header is missing"); - handleError(e); + Optional contentRangeOpt; + contentRangeOpt = response.sdkHttpResponse().firstMatchingHeader("x-amz-content-range"); + if (!contentRangeOpt.isPresent()) { + contentRangeOpt = response.sdkHttpResponse().firstMatchingHeader("content-range"); + if (!contentRangeOpt.isPresent()) { + // Bad state! This is intended to cancel everything + if (subscriber != null) { + subscriber.onError(new IllegalStateException("Content range header is missing")); + } + return; } - return; } - String contentRange = contentRangeList.get(); + String contentRange = contentRangeOpt.get(); Optional> contentRangePair = ContentRangeParser.range(contentRange); if (!contentRangePair.isPresent()) { if (subscriber != null) { @@ -136,10 +140,10 @@ private void handleError(Throwable e) { } private AsyncResponseTransformer getDelegateTransformer(Long startAt) { - if (transformerCount.get() == 0) { + if (transformerCount.get() == 0 && + initialConfig.fileWriteOption() != FileTransformerConfiguration.FileWriteOption.WRITE_TO_POSITION) { // On the first request we need to maintain the same config so - // that the file is actually created on disk if it doesn't exist (for example, if CREATE_NEW or - // CREATE_OR_REPLACE_EXISTING is used) + // that the file is actually created on disk if it doesn't exist (for CREATE_NEW or CREATE_OR_REPLACE_EXISTING) return AsyncResponseTransformer.toFile(path, initialConfig); } switch (initialConfig.fileWriteOption()) { diff --git a/services-custom/s3-transfer-manager/src/it/java/software/amazon/awssdk/transfer/s3/S3TransferManagerMultipartDownloadPauseResumeIntegrationTest.java b/services-custom/s3-transfer-manager/src/it/java/software/amazon/awssdk/transfer/s3/S3TransferManagerMultipartDownloadPauseResumeIntegrationTest.java index dcbace143b5f..e81de03b9f90 100644 --- a/services-custom/s3-transfer-manager/src/it/java/software/amazon/awssdk/transfer/s3/S3TransferManagerMultipartDownloadPauseResumeIntegrationTest.java +++ b/services-custom/s3-transfer-manager/src/it/java/software/amazon/awssdk/transfer/s3/S3TransferManagerMultipartDownloadPauseResumeIntegrationTest.java @@ -17,6 +17,7 @@ import static org.assertj.core.api.Assertions.assertThat; import static software.amazon.awssdk.testutils.service.S3BucketUtils.temporaryBucketName; +import static software.amazon.awssdk.transfer.s3.SizeConstant.KB; import static software.amazon.awssdk.transfer.s3.SizeConstant.MB; import java.io.File; @@ -82,6 +83,24 @@ void pauseAndResume_shouldResumeDownload() { assertThat(path.toFile()).hasSameBinaryContentAs(sourceFile); } + @Test + void pauseAndResume_beforeFirstPartCompletes_shouldResumeDownload() { + Path path = RandomTempFile.randomUncreatedFile().toPath(); + DownloadFileRequest request = DownloadFileRequest.builder() + .getObjectRequest(b -> b.bucket(BUCKET).key(KEY)) + .destination(path) + .build(); + FileDownload download = tmJava.downloadFile(request); + + // stop before we complete first part, so only wait for an amount of bytes much lower than 1 part, 1 KiB should do it + waitUntilAmountTransferred(download, KB); + ResumableFileDownload resumableFileDownload = download.pause(); + FileDownload resumed = tmJava.resumeDownloadFile(resumableFileDownload); + resumed.completionFuture().join(); + assertThat(path.toFile()).hasSameBinaryContentAs(sourceFile); + } + + @Test void pauseAndResume_whenAlreadyComplete_shouldHandleGracefully() { Path path = RandomTempFile.randomUncreatedFile().toPath(); diff --git a/services-custom/s3-transfer-manager/src/main/java/software/amazon/awssdk/transfer/s3/internal/GenericS3TransferManager.java b/services-custom/s3-transfer-manager/src/main/java/software/amazon/awssdk/transfer/s3/internal/GenericS3TransferManager.java index f65cabec1ee3..695550480af4 100644 --- a/services-custom/s3-transfer-manager/src/main/java/software/amazon/awssdk/transfer/s3/internal/GenericS3TransferManager.java +++ b/services-custom/s3-transfer-manager/src/main/java/software/amazon/awssdk/transfer/s3/internal/GenericS3TransferManager.java @@ -409,7 +409,7 @@ private TransferProgressUpdater doDownloadFile( TransferProgressUpdater progressUpdater = new TransferProgressUpdater(downloadRequest, null); try { progressUpdater.transferInitiated(); - responseTransformer = isS3ClientMultipartEnabled() + responseTransformer = isS3ClientMultipartEnabled() && downloadRequest.getObjectRequest().range() == null ? progressUpdater.wrapForNonSerialFileDownload( responseTransformer, downloadRequest.getObjectRequest()) : progressUpdater.wrapResponseTransformer(responseTransformer); diff --git a/services-custom/s3-transfer-manager/src/main/java/software/amazon/awssdk/transfer/s3/internal/utils/ResumableRequestConverter.java b/services-custom/s3-transfer-manager/src/main/java/software/amazon/awssdk/transfer/s3/internal/utils/ResumableRequestConverter.java index 7e55a3f22560..a61da15e7a5d 100644 --- a/services-custom/s3-transfer-manager/src/main/java/software/amazon/awssdk/transfer/s3/internal/utils/ResumableRequestConverter.java +++ b/services-custom/s3-transfer-manager/src/main/java/software/amazon/awssdk/transfer/s3/internal/utils/ResumableRequestConverter.java @@ -84,15 +84,11 @@ private ResumableRequestConverter() { if (hasRemainingParts(getObjectRequest)) { log.debug(() -> "The paused download was performed with part GET, now resuming download of remaining parts"); - Long positionToWriteFrom = - MultipartDownloadUtils.multipartDownloadResumeContext(originalDownloadRequest.getObjectRequest()) - .map(MultipartDownloadResumeContext::bytesToLastCompletedParts) - .orElse(0L); AsyncResponseTransformer responseTransformer = AsyncResponseTransformer.toFile(originalDownloadRequest.destination(), FileTransformerConfiguration.builder() .fileWriteOption(WRITE_TO_POSITION) - .position(positionToWriteFrom) + .position(0L) .failureBehavior(LEAVE) .build()); return Pair.of(originalDownloadRequest, responseTransformer); diff --git a/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/multipart/ParallelMultipartDownloaderSubscriber.java b/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/multipart/ParallelMultipartDownloaderSubscriber.java index 4c4423e72a5d..624966fe543f 100644 --- a/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/multipart/ParallelMultipartDownloaderSubscriber.java +++ b/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/multipart/ParallelMultipartDownloaderSubscriber.java @@ -15,8 +15,12 @@ package software.amazon.awssdk.services.s3.internal.multipart; +import java.util.Collections; +import java.util.HashSet; import java.util.Map; +import java.util.Optional; import java.util.Queue; +import java.util.Set; import java.util.concurrent.CompletableFuture; import java.util.concurrent.ConcurrentHashMap; import java.util.concurrent.ConcurrentLinkedQueue; @@ -30,6 +34,7 @@ import software.amazon.awssdk.services.s3.model.GetObjectRequest; import software.amazon.awssdk.services.s3.model.GetObjectResponse; import software.amazon.awssdk.utils.CompletableFutureUtils; +import software.amazon.awssdk.utils.ContentRangeParser; import software.amazon.awssdk.utils.Logger; import software.amazon.awssdk.utils.Pair; @@ -66,7 +71,7 @@ public class ParallelMultipartDownloaderSubscriber * The total number of completed parts. A part is considered complete once the completable future associated with its request * completes successfully. */ - private final AtomicInteger completedParts = new AtomicInteger(); + private final AtomicInteger completedParts; /** * The future returned to the user when calling @@ -80,7 +85,7 @@ public class ParallelMultipartDownloaderSubscriber * The {@link GetObjectResponse} to be returned in the completed future to the user. It corresponds to the response of first * part GetObject */ - private GetObjectResponse getObjectResponse; + private volatile GetObjectResponse getObjectResponse; /** * The subscription received from the publisher this subscriber subscribes to. @@ -135,12 +140,17 @@ public class ParallelMultipartDownloaderSubscriber private final AtomicInteger partNumber = new AtomicInteger(0); /** - * Tracks if one of the parts requests future completed exceptionally. If this occurs, it means all retries were - * attempted for that part, but it still failed. This is a failure state, the error should be reported back to the user - * and any more request should be ignored. + * Tracks if one of the parts requests future completed exceptionally. If this occurs, it means all retries were attempted for + * that part, but it still failed. This is a failure state, the error should be reported back to the user and any more request + * should be ignored. */ private final AtomicBoolean isCompletedExceptionally = new AtomicBoolean(false); + /** + * When resuming a paused download, indicates which parts were already completed before pausing. + */ + private final Set initialCompletedParts; + public ParallelMultipartDownloaderSubscriber(S3AsyncClient s3, GetObjectRequest getObjectRequest, CompletableFuture resultFuture, @@ -149,6 +159,36 @@ public ParallelMultipartDownloaderSubscriber(S3AsyncClient s3, this.getObjectRequest = getObjectRequest; this.resultFuture = resultFuture; this.maxInFlightParts = maxInFlightParts; + this.initialCompletedParts = initialCompletedParts(getObjectRequest); + this.completedParts = new AtomicInteger(initialCompletedParts.size()); + + if (resumingDownload()) { + int totalPartsFromInitialRequest = MultipartDownloadUtils.multipartDownloadResumeContext(getObjectRequest) + .map(MultipartDownloadResumeContext::totalParts) + .orElse(0); + if (totalPartsFromInitialRequest > 0) { + totalPartsFuture.complete(totalPartsFromInitialRequest); + } + getObjectResponse = MultipartDownloadUtils.multipartDownloadResumeContext(getObjectRequest) + .map(MultipartDownloadResumeContext::response) + .orElse(null); + } + } + + private static Set initialCompletedParts(GetObjectRequest getObjectRequest) { + return Collections.unmodifiableSet( + MultipartDownloadUtils.multipartDownloadResumeContext(getObjectRequest) + .map(MultipartDownloadResumeContext::completedParts) + .>map(HashSet::new) + .orElse(Collections.emptySet()) + ); + } + + private boolean resumingDownload() { + Optional hasAlreadyCompletedParts = + MultipartDownloadUtils.multipartDownloadResumeContext(getObjectRequest) + .map(ctx -> !ctx.completedParts().isEmpty()); + return hasAlreadyCompletedParts.orElse(false); } @Override @@ -176,7 +216,7 @@ public void onNext(AsyncResponseTransformer asyncResponseTransformer, - int currentPartNum, Integer totalParts) { + int currentPartNum, int totalParts) { if (currentPartNum > totalParts) { // Do not process requests above total parts. @@ -203,6 +243,7 @@ private void processingRequests(AsyncResponseTransformer ctx.addCompletedPart(currentPartNumber)); if (completedParts.get() >= totalParts) { if (completedParts.get() > totalParts) { resultFuture.completeExceptionally(new IllegalStateException("Total parts exceeded")); } else { + updateResumeContextForCompletion(res); resultFuture.complete(getObjectResponse); } @@ -254,6 +298,14 @@ private void sendNextRequest(AsyncResponseTransformer MultipartDownloadUtils + .multipartDownloadResumeContext(getObjectRequest) + .ifPresent(ctx -> + ctx.addToBytesToLastCompletedParts(total))); + } + private void sendFirstRequest(AsyncResponseTransformer asyncResponseTransformer) { log.debug(() -> "Sending first request"); GetObjectRequest request = nextRequest(1); @@ -282,6 +334,13 @@ private void sendFirstRequest(AsyncResponseTransformer { + ctx.addCompletedPart(1); + ctx.response(res); + ctx.totalParts(res.partsCount()); + }); + synchronized (subscriptionLock) { subscription.request(1); } @@ -312,7 +371,7 @@ private void setInitialPartCountAndEtag(GetObjectResponse response) { private void handlePartError(Throwable e, int part) { isCompletedExceptionally.set(true); - log.debug(() -> "Error on part " + part, e); + log.debug(() -> "Error on part " + part, e); resultFuture.completeExceptionally(e); inFlightRequests.values().forEach(future -> future.cancel(true)); } @@ -334,9 +393,12 @@ private void processPendingTransformers(int totalParts) { private void doProcessPendingTransformers(int totalParts) { while (shouldProcessPendingTransformers()) { - Pair> transformer = - pendingTransformers.poll(); - sendNextRequest(transformer.right(), transformer.left(), totalParts); + Pair> pair = pendingTransformers.poll(); + Integer part = pair.left(); + AsyncResponseTransformer transformer = pair.right(); + if (part <= totalParts) { + sendNextRequest(transformer, part, totalParts); + } } } @@ -372,4 +434,18 @@ private GetObjectRequest nextRequest(int nextPartToGet) { }); } + private int nextPart() { + if (initialCompletedParts.isEmpty()) { + return partNumber.incrementAndGet(); + } + + synchronized (initialCompletedParts) { + int part = partNumber.incrementAndGet(); + while (initialCompletedParts.contains(part)) { + part = partNumber.incrementAndGet(); + } + return part; + } + } + } diff --git a/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/multipart/ParallelMultipartDownloaderSubscriberWiremockTest.java b/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/multipart/ParallelMultipartDownloaderSubscriberWiremockTest.java index 54abbee78c64..1a74e32d04fe 100644 --- a/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/multipart/ParallelMultipartDownloaderSubscriberWiremockTest.java +++ b/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/multipart/ParallelMultipartDownloaderSubscriberWiremockTest.java @@ -79,8 +79,11 @@ void tearDown() throws Exception { } @ParameterizedTest - @ValueSource(ints = {2, 3, 4, 5, 6, 7, 8, 9, 10, 49}) - void happyPath_multipartDownload_partsLessThanMaxInFlight(int numParts) throws Exception { + @ValueSource(ints = {2, 3, 4, 5, 6, 7, 8, 9, 10, 49, // less than maxInFlightParts + 50, // == maxInFlightParts + 51, 100, 101 // more than maxInFlightParts + }) + void happyPath_multipartDownload(int numParts) throws Exception { int partSize = 1024; byte[] expectedBody = utils.stubAllParts(testBucket, testKey, numParts, partSize); diff --git a/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/multipart/S3MultipartClientGetObjectWiremockTest.java b/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/multipart/S3MultipartClientGetObjectWiremockTest.java index cd6a668f4c53..a7b592b2785f 100644 --- a/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/multipart/S3MultipartClientGetObjectWiremockTest.java +++ b/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/multipart/S3MultipartClientGetObjectWiremockTest.java @@ -147,8 +147,9 @@ public void errorOnThirdPart_shouldCompleteExceptionallyOnlyPartsGreaterThan } } - @ParameterizedTest - @MethodSource("partSizeAndTransformerParams") + // todo temporary, remove when support for resume is added to multipart file download + // @ParameterizedTest + // @MethodSource("partSizeAndTransformerParams") public void partCountValidationFailure_shouldThrowException( AsyncResponseTransformerTestSupplier supplier, int partSize) { From 6a7f9aee9617f5b134ffbfec5375679026f297fa Mon Sep 17 00:00:00 2001 From: Olivier Lepage-Applin Date: Thu, 27 Nov 2025 12:32:00 -0500 Subject: [PATCH 3/9] fix merge conflict resolution --- .../ParallelMultipartDownloaderSubscriber.java | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/multipart/ParallelMultipartDownloaderSubscriber.java b/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/multipart/ParallelMultipartDownloaderSubscriber.java index 624966fe543f..10f2b839288d 100644 --- a/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/multipart/ParallelMultipartDownloaderSubscriber.java +++ b/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/multipart/ParallelMultipartDownloaderSubscriber.java @@ -114,7 +114,7 @@ public class ParallelMultipartDownloaderSubscriber private final Map> inFlightRequests = new ConcurrentHashMap<>(); /** - * Trasck the amount of in flight requests + * Track the amount of in flight requests */ private final AtomicInteger inFlightRequestsNum = new AtomicInteger(0); @@ -221,9 +221,12 @@ public void onNext(AsyncResponseTransformer processingRequests(asyncResponseTransformer, currentPartNum, totalParts)); + totalParts -> { + if (currentPartNum <= totalParts) { + processingRequests(asyncResponseTransformer, currentPartNum, totalParts); + } + }); } } @@ -258,7 +261,6 @@ private void sendNextRequest(AsyncResponseTransformer response = s3.getObject(request, asyncResponseTransformer); - inFlightRequestsNum.incrementAndGet(); inFlightRequests.put(currentPartNumber, response); CompletableFutureUtils.forwardExceptionTo(resultFuture, response); @@ -272,7 +274,6 @@ private void sendNextRequest(AsyncResponseTransformer "Completed part: " + currentPartNumber); inFlightRequests.remove(currentPartNumber); - inFlightRequestsNum.decrementAndGet(); completedParts.incrementAndGet(); MultipartDownloadUtils.multipartDownloadResumeContext(getObjectRequest) .ifPresent(ctx -> ctx.addCompletedPart(currentPartNumber)); From 3895c792e7f2f602bbc0c4c8393b6f5fb0ab15ad Mon Sep 17 00:00:00 2001 From: Olivier Lepage-Applin Date: Thu, 27 Nov 2025 13:52:03 -0500 Subject: [PATCH 4/9] Add completed part log. Make Sonar happy - remove unused fields - remove unused test imports and comments - uncomment test - add missing asserts --- ...FileAsyncResponseTransformerPublisher.java | 3 - ...AsyncResponseTransformerPublisherTest.java | 12 ++- ...ParallelMultipartDownloaderSubscriber.java | 2 + ...ipartDownloaderSubscriberWiremockTest.java | 89 ++++++++++++++++++- ...3MultipartClientGetObjectWiremockTest.java | 5 +- .../S3MultipartFileDownloadWiremockTest.java | 20 ++++- 6 files changed, 116 insertions(+), 15 deletions(-) diff --git a/core/sdk-core/src/main/java/software/amazon/awssdk/core/internal/async/FileAsyncResponseTransformerPublisher.java b/core/sdk-core/src/main/java/software/amazon/awssdk/core/internal/async/FileAsyncResponseTransformerPublisher.java index 678e5638ef9e..2b7295755a02 100644 --- a/core/sdk-core/src/main/java/software/amazon/awssdk/core/internal/async/FileAsyncResponseTransformerPublisher.java +++ b/core/sdk-core/src/main/java/software/amazon/awssdk/core/internal/async/FileAsyncResponseTransformerPublisher.java @@ -39,11 +39,9 @@ @SdkInternalApi public class FileAsyncResponseTransformerPublisher implements SdkPublisher> { - private static final Logger log = Logger.loggerFor(FileAsyncResponseTransformerPublisher.class); private final Path path; private final FileTransformerConfiguration initialConfig; - private final long initialPosition; private Subscriber subscriber; private final AtomicLong transformerCount; @@ -54,7 +52,6 @@ public FileAsyncResponseTransformerPublisher(FileAsyncResponseTransformer res != FileTransformerConfiguration.FileWriteOption.CREATE_OR_APPEND_TO_EXISTING, "CREATE_OR_APPEND_TO_EXISTING is not supported for non-serial operations"); this.initialConfig = Validate.paramNotNull(responseTransformer.config(), "fileTransformerConfiguration"); - this.initialPosition = responseTransformer.position(); this.transformerCount = new AtomicLong(0); } diff --git a/core/sdk-core/src/test/java/software/amazon/awssdk/core/internal/async/FileAsyncResponseTransformerPublisherTest.java b/core/sdk-core/src/test/java/software/amazon/awssdk/core/internal/async/FileAsyncResponseTransformerPublisherTest.java index adfd4ecc3200..cf4f6a27ffe4 100644 --- a/core/sdk-core/src/test/java/software/amazon/awssdk/core/internal/async/FileAsyncResponseTransformerPublisherTest.java +++ b/core/sdk-core/src/test/java/software/amazon/awssdk/core/internal/async/FileAsyncResponseTransformerPublisherTest.java @@ -18,7 +18,6 @@ import static org.assertj.core.api.Assertions.assertThat; import static org.assertj.core.api.Assertions.assertThatThrownBy; import static org.assertj.core.api.Assertions.fail; -import static org.assertj.core.api.Assertions.in; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.when; @@ -42,7 +41,6 @@ import org.junit.jupiter.api.AfterEach; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; -import org.junit.jupiter.api.TestInstance; import org.junit.jupiter.params.ParameterizedTest; import org.junit.jupiter.params.provider.MethodSource; import org.reactivestreams.Subscriber; @@ -60,7 +58,7 @@ class FileAsyncResponseTransformerPublisherTest { private Path testFile; @BeforeEach - void setUp() throws Exception { + void setUp() { fileSystem = Jimfs.newFileSystem(); testFile = fileSystem.getPath(String.format("/test-file-%s.txt", UUID.randomUUID())); } @@ -75,8 +73,6 @@ void tearDown() throws Exception { void singleDemand_shouldEmitOneTransformer( Function> transformerFunction) throws Exception { // Given - // FileAsyncResponseTransformer initialTransformer = - // (FileAsyncResponseTransformer) AsyncResponseTransformer.toFile(testFile); AsyncResponseTransformer initialTransformer = transformerFunction.apply(testFile); createFileIfNeeded(initialTransformer); @@ -151,6 +147,7 @@ public void request(long n) { @Override public void cancel() { + // unused for tests } }); } @@ -212,6 +209,7 @@ public void onError(Throwable t) { @Override public void onComplete() { + // unused for test } }); @@ -228,7 +226,7 @@ public void onComplete() { initialTransformer.config().fileWriteOption() == FileTransformerConfiguration.FileWriteOption.WRITE_TO_POSITION ? (int) initialTransformer.position() : 0; - assertThat(fileContent.length).isEqualTo(80 + offset); + assertThat(fileContent).hasSize(80 + offset); for (int i = 0; i < numTransformers; i++) { int startPos = i * 10; byte[] expectedData = new byte[10]; @@ -290,7 +288,7 @@ private static Stream initialTransformer = AsyncResponseTransformer.toFile( testFile, FileTransformerConfiguration.builder() diff --git a/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/multipart/ParallelMultipartDownloaderSubscriber.java b/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/multipart/ParallelMultipartDownloaderSubscriber.java index 10f2b839288d..11d5c682884b 100644 --- a/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/multipart/ParallelMultipartDownloaderSubscriber.java +++ b/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/multipart/ParallelMultipartDownloaderSubscriber.java @@ -443,6 +443,8 @@ private int nextPart() { synchronized (initialCompletedParts) { int part = partNumber.incrementAndGet(); while (initialCompletedParts.contains(part)) { + final int finalPart = part; + log.debug(() -> "skipping part " + finalPart + " because already completed"); part = partNumber.incrementAndGet(); } return part; diff --git a/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/multipart/ParallelMultipartDownloaderSubscriberWiremockTest.java b/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/multipart/ParallelMultipartDownloaderSubscriberWiremockTest.java index 1a74e32d04fe..aaa067b5d0e4 100644 --- a/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/multipart/ParallelMultipartDownloaderSubscriberWiremockTest.java +++ b/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/multipart/ParallelMultipartDownloaderSubscriberWiremockTest.java @@ -15,7 +15,11 @@ package software.amazon.awssdk.services.s3.internal.multipart; +import static com.github.tomakehurst.wiremock.client.WireMock.getRequestedFor; +import static com.github.tomakehurst.wiremock.client.WireMock.urlMatching; +import static com.github.tomakehurst.wiremock.client.WireMock.verify; import static org.assertj.core.api.Assertions.assertThat; +import static software.amazon.awssdk.services.s3.multipart.S3MultipartExecutionAttribute.MULTIPART_DOWNLOAD_RESUME_CONTEXT; import com.github.tomakehurst.wiremock.junit5.WireMockRuntimeInfo; import com.github.tomakehurst.wiremock.junit5.WireMockTest; @@ -25,6 +29,7 @@ import java.nio.file.FileSystem; import java.nio.file.Files; import java.nio.file.Path; +import java.util.Set; import java.util.concurrent.CompletableFuture; import org.junit.jupiter.api.AfterEach; import org.junit.jupiter.api.BeforeEach; @@ -32,6 +37,7 @@ import org.junit.jupiter.params.ParameterizedTest; import org.junit.jupiter.params.provider.ValueSource; import org.reactivestreams.Subscriber; +import org.testng.collections.Sets; import software.amazon.awssdk.auth.credentials.AwsBasicCredentials; import software.amazon.awssdk.auth.credentials.StaticCredentialsProvider; import software.amazon.awssdk.core.FileTransformerConfiguration; @@ -56,7 +62,7 @@ class ParallelMultipartDownloaderSubscriberWiremockTest { private Path testFile; @BeforeEach - public void init(WireMockRuntimeInfo wiremock) throws Exception { + void init(WireMockRuntimeInfo wiremock) throws Exception { s3AsyncClient = S3AsyncClient.builder() .credentialsProvider(StaticCredentialsProvider.create( AwsBasicCredentials.create("key", "secret"))) @@ -146,4 +152,85 @@ void singlePartObject_shouldCompleteWithoutMultipart() throws Exception { utils.verifyCorrectAmountOfRequestsMade(1); } + @Test + void whenPartsAlreadyCompleted_shouldDownloadOnlyMissingParts() throws Exception { + int partSize = 1024; + int numParts = 90; + + // make sure the file contains all zero + Files.write(testFile, new byte[partSize * numParts]); + + Set completedParts = Sets.newHashSet(5, 12, 23, 34, 45, 56, 67, 78, 81, 89); + byte[] expectedBody = stubAllPartsWithCompleted(testBucket, testKey, numParts, partSize, completedParts); + + FileTransformerConfiguration fileTransformerConfiguration = FileTransformerConfiguration + .builder() + .fileWriteOption(FileTransformerConfiguration.FileWriteOption.WRITE_TO_POSITION) + .failureBehavior(FileTransformerConfiguration.FailureBehavior.DELETE) + .position(0L) + .build(); + + AsyncResponseTransformer transformer = + AsyncResponseTransformer.toFile(testFile, fileTransformerConfiguration); + + AsyncResponseTransformer.SplitResult split = transformer.split( + SplittingTransformerConfiguration.builder() + .bufferSizeInBytes(1024 * 32L) + .build()); + + MultipartDownloadResumeContext context = new MultipartDownloadResumeContext(completedParts, 0L); + CompletableFuture resultFuture = new CompletableFuture<>(); + Subscriber> subscriber = + new ParallelMultipartDownloaderSubscriber( + s3AsyncClient, + GetObjectRequest.builder() + .overrideConfiguration(c -> c.putExecutionAttribute(MULTIPART_DOWNLOAD_RESUME_CONTEXT, context)) + .bucket(testBucket) + .key(testKey) + .build(), + resultFuture, + 50); + + split.publisher().subscribe(subscriber); + GetObjectResponse getObjectResponse = resultFuture.join(); + + assertThat(Files.exists(testFile)).isTrue(); + byte[] actualBody = Files.readAllBytes(testFile); + assertThat(actualBody).isEqualTo(expectedBody); + assertThat(getObjectResponse).isNotNull(); + + verifyCorrectRequestsMade(numParts, completedParts); + } + + private void verifyCorrectRequestsMade(int numParts, Set completedParts) { + String urlTemplate = ".*partNumber=%d\\b.*"; + for (int i = 1; i <= numParts; i++) { + if (completedParts.contains(i)) { + verify(0, getRequestedFor(urlMatching(String.format(urlTemplate, i)))); + } else { + verify(getRequestedFor(urlMatching(String.format(urlTemplate, i)))); + } + } + verify(0, getRequestedFor(urlMatching(String.format(urlTemplate, numParts + 1)))); + + } + + private byte[] stubAllPartsWithCompleted(String testBucket, String testKey, int amountOfPartToTest, int partSize, + Set completedParts) { + byte[] expectedBody = new byte[amountOfPartToTest * partSize]; + for (int i = 0; i < amountOfPartToTest; i++) { + if (completedParts.contains(i + 1)) { + // fill with zero + byte[] individualBody = new byte[partSize]; + System.arraycopy(individualBody, 0, expectedBody, i * partSize, individualBody.length); + } else { + byte[] individualBody = utils.stubForPart(testBucket, testKey, i + 1, amountOfPartToTest, partSize); + System.arraycopy(individualBody, 0, expectedBody, i * partSize, individualBody.length); + } + } + return expectedBody; + + } + + } \ No newline at end of file diff --git a/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/multipart/S3MultipartClientGetObjectWiremockTest.java b/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/multipart/S3MultipartClientGetObjectWiremockTest.java index a7b592b2785f..cd6a668f4c53 100644 --- a/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/multipart/S3MultipartClientGetObjectWiremockTest.java +++ b/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/multipart/S3MultipartClientGetObjectWiremockTest.java @@ -147,9 +147,8 @@ public void errorOnThirdPart_shouldCompleteExceptionallyOnlyPartsGreaterThan } } - // todo temporary, remove when support for resume is added to multipart file download - // @ParameterizedTest - // @MethodSource("partSizeAndTransformerParams") + @ParameterizedTest + @MethodSource("partSizeAndTransformerParams") public void partCountValidationFailure_shouldThrowException( AsyncResponseTransformerTestSupplier supplier, int partSize) { diff --git a/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/multipart/S3MultipartFileDownloadWiremockTest.java b/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/multipart/S3MultipartFileDownloadWiremockTest.java index 5d1edb4370fb..9d98af56ba8f 100644 --- a/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/multipart/S3MultipartFileDownloadWiremockTest.java +++ b/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/multipart/S3MultipartFileDownloadWiremockTest.java @@ -63,7 +63,7 @@ class S3MultipartFileDownloadWiremockTest { private Path testFile; @BeforeEach - public void init(WireMockRuntimeInfo wiremock) throws Exception { + void init(WireMockRuntimeInfo wiremock) { s3AsyncClient = S3AsyncClient.builder() .credentialsProvider(StaticCredentialsProvider.create( AwsBasicCredentials.create("key", "secret"))) @@ -316,7 +316,25 @@ void errorOnFirstPart_retryable_thenSucceeds() throws Exception { .withHeader("ETag", "test-etag") .withBody(part3Data))); + CompletableFuture resp = s3AsyncClient.getObject(b -> b + .bucket(testBucket) + .key(testKey) + .build(), + AsyncResponseTransformer.toFile(testFile)); + assertThat(resp).succeedsWithin(Duration.of(10, ChronoUnit.SECONDS)); + + verify(exactly(3), getRequestedFor(urlEqualTo(String.format("/%s/%s?partNumber=1", testBucket, testKey)))); + verify(exactly(1), getRequestedFor(urlEqualTo(String.format("/%s/%s?partNumber=2", testBucket, testKey)))); + verify(exactly(1), getRequestedFor(urlEqualTo(String.format("/%s/%s?partNumber=3", testBucket, testKey)))); + + assertThat(Files.exists(testFile)).isTrue(); + byte[] actualBody = Files.readAllBytes(testFile); + byte[] expectedBody = new byte[partSize * totalPart]; + System.arraycopy(part1Data, 0, expectedBody, 0, partSize); + System.arraycopy(part2Data, 0, expectedBody, partSize, partSize); + System.arraycopy(part3Data, 0, expectedBody, partSize * 2, partSize); + assertThat(actualBody).isEqualTo(expectedBody); } @Test From 81dd5207738b09115772ddeb102db5a01883bc50 Mon Sep 17 00:00:00 2001 From: Olivier Lepage-Applin Date: Thu, 27 Nov 2025 14:20:56 -0500 Subject: [PATCH 5/9] checkstyle --- .../internal/async/FileAsyncResponseTransformerPublisher.java | 1 - 1 file changed, 1 deletion(-) diff --git a/core/sdk-core/src/main/java/software/amazon/awssdk/core/internal/async/FileAsyncResponseTransformerPublisher.java b/core/sdk-core/src/main/java/software/amazon/awssdk/core/internal/async/FileAsyncResponseTransformerPublisher.java index 2b7295755a02..74f391c99982 100644 --- a/core/sdk-core/src/main/java/software/amazon/awssdk/core/internal/async/FileAsyncResponseTransformerPublisher.java +++ b/core/sdk-core/src/main/java/software/amazon/awssdk/core/internal/async/FileAsyncResponseTransformerPublisher.java @@ -28,7 +28,6 @@ import software.amazon.awssdk.core.async.SdkPublisher; import software.amazon.awssdk.utils.CompletableFutureUtils; import software.amazon.awssdk.utils.ContentRangeParser; -import software.amazon.awssdk.utils.Logger; import software.amazon.awssdk.utils.Pair; import software.amazon.awssdk.utils.Validate; From c72cb3059b6d26c2bd557312285e34876a091088 Mon Sep 17 00:00:00 2001 From: Olivier Lepage-Applin Date: Thu, 27 Nov 2025 14:55:41 -0500 Subject: [PATCH 6/9] checkstyle --- .../multipart/ParallelMultipartDownloaderSubscriber.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/multipart/ParallelMultipartDownloaderSubscriber.java b/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/multipart/ParallelMultipartDownloaderSubscriber.java index 11d5c682884b..a0550d2a10f1 100644 --- a/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/multipart/ParallelMultipartDownloaderSubscriber.java +++ b/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/multipart/ParallelMultipartDownloaderSubscriber.java @@ -443,7 +443,7 @@ private int nextPart() { synchronized (initialCompletedParts) { int part = partNumber.incrementAndGet(); while (initialCompletedParts.contains(part)) { - final int finalPart = part; + int finalPart = part; log.debug(() -> "skipping part " + finalPart + " because already completed"); part = partNumber.incrementAndGet(); } From e8a307033d1bf19839fddd4a7117c5fc371f3679 Mon Sep 17 00:00:00 2001 From: Olivier L Applin Date: Fri, 28 Nov 2025 12:38:27 -0500 Subject: [PATCH 7/9] minor version bump to 2.40.0 (#6597) --- .changes/{ => 2.39.x}/2.39.0.json | 0 .changes/{ => 2.39.x}/2.39.1.json | 0 .changes/{ => 2.39.x}/2.39.2.json | 0 .changes/{ => 2.39.x}/2.39.3.json | 0 .changes/{ => 2.39.x}/2.39.4.json | 0 .changes/{ => 2.39.x}/2.39.5.json | 0 CHANGELOG.md | 495 ----------------- archetypes/archetype-app-quickstart/pom.xml | 2 +- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/archetype-tools/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/pom.xml | 2 +- bundle-logging-bridge/pom.xml | 2 +- bundle-sdk/pom.xml | 2 +- bundle/pom.xml | 2 +- changelogs/2.39.x-CHANGELOG.md | 496 ++++++++++++++++++ codegen-lite-maven-plugin/pom.xml | 2 +- codegen-lite/pom.xml | 2 +- codegen-maven-plugin/pom.xml | 2 +- codegen/pom.xml | 2 +- core/annotations/pom.xml | 2 +- core/arns/pom.xml | 2 +- core/auth-crt/pom.xml | 2 +- core/auth/pom.xml | 2 +- core/aws-core/pom.xml | 2 +- core/checksums-spi/pom.xml | 2 +- core/checksums/pom.xml | 2 +- core/crt-core/pom.xml | 2 +- core/endpoints-spi/pom.xml | 2 +- core/http-auth-aws-crt/pom.xml | 2 +- core/http-auth-aws-eventstream/pom.xml | 2 +- core/http-auth-aws/pom.xml | 2 +- core/http-auth-spi/pom.xml | 2 +- core/http-auth/pom.xml | 2 +- core/identity-spi/pom.xml | 2 +- core/imds/pom.xml | 2 +- core/json-utils/pom.xml | 2 +- core/metrics-spi/pom.xml | 2 +- core/pom.xml | 2 +- core/profiles/pom.xml | 2 +- core/protocols/aws-cbor-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/protocols/smithy-rpcv2-protocol/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/retries-spi/pom.xml | 2 +- core/retries/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/apache5-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- .../cloudwatch-metric-publisher/pom.xml | 2 +- .../emf-metric-logging-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/iam-policy-builder/pom.xml | 2 +- services-custom/pom.xml | 2 +- .../s3-event-notifications/pom.xml | 2 +- services-custom/s3-transfer-manager/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/account/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/aiops/pom.xml | 2 +- services/amp/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/amplifybackend/pom.xml | 2 +- services/amplifyuibuilder/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appconfigdata/pom.xml | 2 +- services/appfabric/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/appintegrations/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationcostprofiler/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/applicationsignals/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/apprunner/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/arcregionswitch/pom.xml | 2 +- services/arczonalshift/pom.xml | 2 +- services/artifact/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/auditmanager/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/b2bi/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/backupgateway/pom.xml | 2 +- services/backupsearch/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/bcmdashboards/pom.xml | 2 +- services/bcmdataexports/pom.xml | 2 +- services/bcmpricingcalculator/pom.xml | 2 +- services/bcmrecommendedactions/pom.xml | 2 +- services/bedrock/pom.xml | 2 +- services/bedrockagent/pom.xml | 2 +- services/bedrockagentcore/pom.xml | 2 +- services/bedrockagentcorecontrol/pom.xml | 2 +- services/bedrockagentruntime/pom.xml | 2 +- services/bedrockdataautomation/pom.xml | 2 +- services/bedrockdataautomationruntime/pom.xml | 2 +- services/bedrockruntime/pom.xml | 2 +- services/billing/pom.xml | 2 +- services/billingconductor/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chatbot/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/chimesdkidentity/pom.xml | 2 +- services/chimesdkmediapipelines/pom.xml | 2 +- services/chimesdkmeetings/pom.xml | 2 +- services/chimesdkmessaging/pom.xml | 2 +- services/chimesdkvoice/pom.xml | 2 +- services/cleanrooms/pom.xml | 2 +- services/cleanroomsml/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/cloudcontrol/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/pom.xml | 2 +- services/cloudfrontkeyvaluestore/pom.xml | 2 +- services/cloudhsm/pom.xml | 2 +- services/cloudhsmv2/pom.xml | 2 +- services/cloudsearch/pom.xml | 2 +- services/cloudsearchdomain/pom.xml | 2 +- services/cloudtrail/pom.xml | 2 +- services/cloudtraildata/pom.xml | 2 +- services/cloudwatch/pom.xml | 2 +- services/cloudwatchevents/pom.xml | 2 +- services/cloudwatchlogs/pom.xml | 2 +- services/codeartifact/pom.xml | 2 +- services/codebuild/pom.xml | 2 +- services/codecatalyst/pom.xml | 2 +- services/codecommit/pom.xml | 2 +- services/codeconnections/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codegurusecurity/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/computeoptimizerautomation/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectcampaigns/pom.xml | 2 +- services/connectcampaignsv2/pom.xml | 2 +- services/connectcases/pom.xml | 2 +- services/connectcontactlens/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/controlcatalog/pom.xml | 2 +- services/controltower/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/pom.xml | 2 +- services/costoptimizationhub/pom.xml | 2 +- services/customerprofiles/pom.xml | 2 +- services/databasemigration/pom.xml | 2 +- services/databrew/pom.xml | 2 +- services/dataexchange/pom.xml | 2 +- services/datapipeline/pom.xml | 2 +- services/datasync/pom.xml | 2 +- services/datazone/pom.xml | 2 +- services/dax/pom.xml | 2 +- services/deadline/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/devopsguru/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/directoryservicedata/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/pom.xml | 2 +- services/docdbelastic/pom.xml | 2 +- services/drs/pom.xml | 2 +- services/dsql/pom.xml | 2 +- services/dynamodb/pom.xml | 2 +- services/ebs/pom.xml | 2 +- services/ec2/pom.xml | 2 +- services/ec2instanceconnect/pom.xml | 2 +- services/ecr/pom.xml | 2 +- services/ecrpublic/pom.xml | 2 +- services/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/pom.xml | 2 +- services/eksauth/pom.xml | 2 +- services/elasticache/pom.xml | 2 +- services/elasticbeanstalk/pom.xml | 2 +- services/elasticloadbalancing/pom.xml | 2 +- services/elasticloadbalancingv2/pom.xml | 2 +- services/elasticsearch/pom.xml | 2 +- services/elastictranscoder/pom.xml | 2 +- services/emr/pom.xml | 2 +- services/emrcontainers/pom.xml | 2 +- services/emrserverless/pom.xml | 2 +- services/entityresolution/pom.xml | 2 +- services/eventbridge/pom.xml | 2 +- services/evidently/pom.xml | 2 +- services/evs/pom.xml | 2 +- services/finspace/pom.xml | 2 +- services/finspacedata/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fis/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/freetier/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/gameliftstreams/pom.xml | 2 +- services/geomaps/pom.xml | 2 +- services/geoplaces/pom.xml | 2 +- services/georoutes/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/grafana/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/greengrassv2/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/healthlake/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/inspector2/pom.xml | 2 +- services/inspectorscan/pom.xml | 2 +- services/internetmonitor/pom.xml | 2 +- services/invoicing/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotdeviceadvisor/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotfleetwise/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotmanagedintegrations/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/iottwinmaker/pom.xml | 2 +- services/iotwireless/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/ivschat/pom.xml | 2 +- services/ivsrealtime/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kafkaconnect/pom.xml | 2 +- services/kendra/pom.xml | 2 +- services/kendraranking/pom.xml | 2 +- services/keyspaces/pom.xml | 2 +- services/keyspacesstreams/pom.xml | 2 +- services/kinesis/pom.xml | 2 +- services/kinesisanalytics/pom.xml | 2 +- services/kinesisanalyticsv2/pom.xml | 2 +- services/kinesisvideo/pom.xml | 2 +- services/kinesisvideoarchivedmedia/pom.xml | 2 +- services/kinesisvideomedia/pom.xml | 2 +- services/kinesisvideosignaling/pom.xml | 2 +- services/kinesisvideowebrtcstorage/pom.xml | 2 +- services/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/launchwizard/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexmodelsv2/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/lexruntimev2/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- .../licensemanagerlinuxsubscriptions/pom.xml | 2 +- .../licensemanagerusersubscriptions/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/location/pom.xml | 2 +- services/lookoutequipment/pom.xml | 2 +- services/m2/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/mailmanager/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/managedblockchainquery/pom.xml | 2 +- services/marketplaceagreement/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplacedeployment/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/marketplacereporting/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagev2/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/medicalimaging/pom.xml | 2 +- services/memorydb/pom.xml | 2 +- services/mgn/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/migrationhuborchestrator/pom.xml | 2 +- services/migrationhubrefactorspaces/pom.xml | 2 +- services/migrationhubstrategy/pom.xml | 2 +- services/mpa/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/mwaa/pom.xml | 2 +- services/mwaaserverless/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/neptunedata/pom.xml | 2 +- services/neptunegraph/pom.xml | 2 +- services/networkfirewall/pom.xml | 2 +- services/networkflowmonitor/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/networkmonitor/pom.xml | 2 +- services/notifications/pom.xml | 2 +- services/notificationscontacts/pom.xml | 2 +- services/oam/pom.xml | 2 +- services/observabilityadmin/pom.xml | 2 +- services/odb/pom.xml | 2 +- services/omics/pom.xml | 2 +- services/opensearch/pom.xml | 2 +- services/opensearchserverless/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/osis/pom.xml | 2 +- services/outposts/pom.xml | 2 +- services/panorama/pom.xml | 2 +- services/partnercentralchannel/pom.xml | 2 +- services/partnercentralselling/pom.xml | 2 +- services/paymentcryptography/pom.xml | 2 +- services/paymentcryptographydata/pom.xml | 2 +- services/pcaconnectorad/pom.xml | 2 +- services/pcaconnectorscep/pom.xml | 2 +- services/pcs/pom.xml | 2 +- services/personalize/pom.xml | 2 +- services/personalizeevents/pom.xml | 2 +- services/personalizeruntime/pom.xml | 2 +- services/pi/pom.xml | 2 +- services/pinpoint/pom.xml | 2 +- services/pinpointemail/pom.xml | 2 +- services/pinpointsmsvoice/pom.xml | 2 +- services/pinpointsmsvoicev2/pom.xml | 2 +- services/pipes/pom.xml | 2 +- services/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/proton/pom.xml | 2 +- services/qapps/pom.xml | 2 +- services/qbusiness/pom.xml | 2 +- services/qconnect/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rbin/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/redshiftserverless/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/repostspace/pom.xml | 2 +- services/resiliencehub/pom.xml | 2 +- services/resourceexplorer2/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/rolesanywhere/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53profiles/pom.xml | 2 +- services/route53recoverycluster/pom.xml | 2 +- services/route53recoverycontrolconfig/pom.xml | 2 +- services/route53recoveryreadiness/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/rtbfabric/pom.xml | 2 +- services/rum/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/s3tables/pom.xml | 2 +- services/s3vectors/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakeredge/pom.xml | 2 +- services/sagemakerfeaturestoreruntime/pom.xml | 2 +- services/sagemakergeospatial/pom.xml | 2 +- services/sagemakermetrics/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/sagemakerruntimehttp2/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/scheduler/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/pom.xml | 2 +- services/securityir/pom.xml | 2 +- services/securitylake/pom.xml | 2 +- .../serverlessapplicationrepository/pom.xml | 2 +- services/servicecatalog/pom.xml | 2 +- services/servicecatalogappregistry/pom.xml | 2 +- services/servicediscovery/pom.xml | 2 +- services/servicequotas/pom.xml | 2 +- services/ses/pom.xml | 2 +- services/sesv2/pom.xml | 2 +- services/sfn/pom.xml | 2 +- services/shield/pom.xml | 2 +- services/signer/pom.xml | 2 +- services/signin/pom.xml | 2 +- services/simspaceweaver/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/snowdevicemanagement/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/socialmessaging/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/pom.xml | 2 +- services/ssmcontacts/pom.xml | 2 +- services/ssmguiconnect/pom.xml | 2 +- services/ssmincidents/pom.xml | 2 +- services/ssmquicksetup/pom.xml | 2 +- services/ssmsap/pom.xml | 2 +- services/sso/pom.xml | 2 +- services/ssoadmin/pom.xml | 2 +- services/ssooidc/pom.xml | 2 +- services/storagegateway/pom.xml | 2 +- services/sts/pom.xml | 2 +- services/supplychain/pom.xml | 2 +- services/support/pom.xml | 2 +- services/supportapp/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/taxsettings/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreaminfluxdb/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/tnb/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/trustedadvisor/pom.xml | 2 +- services/verifiedpermissions/pom.xml | 2 +- services/voiceid/pom.xml | 2 +- services/vpclattice/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/wellarchitected/pom.xml | 2 +- services/wisdom/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/workspacesinstances/pom.xml | 2 +- services/workspacesthinclient/pom.xml | 2 +- services/workspacesweb/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/architecture-tests/pom.xml | 2 +- test/auth-tests/pom.xml | 2 +- .../pom.xml | 2 +- test/bundle-shading-tests/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/crt-unavailable-tests/pom.xml | 2 +- test/http-client-benchmarks/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- .../pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/region-testing/pom.xml | 2 +- test/ruleset-testing-core/pom.xml | 2 +- test/s3-benchmarks/pom.xml | 2 +- test/s3-tests/pom.xml | 2 +- test/sdk-benchmarks/pom.xml | 2 +- test/sdk-native-image-test/pom.xml | 2 +- test/service-test-utils/pom.xml | 2 +- test/stability-tests/pom.xml | 2 +- test/test-utils/pom.xml | 2 +- test/tests-coverage-reporting/pom.xml | 2 +- test/v2-migration-tests/pom.xml | 2 +- third-party/pom.xml | 2 +- third-party/third-party-jackson-core/pom.xml | 2 +- .../pom.xml | 2 +- third-party/third-party-slf4j-api/pom.xml | 2 +- utils-lite/pom.xml | 2 +- utils/pom.xml | 2 +- v2-migration/pom.xml | 2 +- 510 files changed, 998 insertions(+), 997 deletions(-) rename .changes/{ => 2.39.x}/2.39.0.json (100%) rename .changes/{ => 2.39.x}/2.39.1.json (100%) rename .changes/{ => 2.39.x}/2.39.2.json (100%) rename .changes/{ => 2.39.x}/2.39.3.json (100%) rename .changes/{ => 2.39.x}/2.39.4.json (100%) rename .changes/{ => 2.39.x}/2.39.5.json (100%) create mode 100644 changelogs/2.39.x-CHANGELOG.md diff --git a/.changes/2.39.0.json b/.changes/2.39.x/2.39.0.json similarity index 100% rename from .changes/2.39.0.json rename to .changes/2.39.x/2.39.0.json diff --git a/.changes/2.39.1.json b/.changes/2.39.x/2.39.1.json similarity index 100% rename from .changes/2.39.1.json rename to .changes/2.39.x/2.39.1.json diff --git a/.changes/2.39.2.json b/.changes/2.39.x/2.39.2.json similarity index 100% rename from .changes/2.39.2.json rename to .changes/2.39.x/2.39.2.json diff --git a/.changes/2.39.3.json b/.changes/2.39.x/2.39.3.json similarity index 100% rename from .changes/2.39.3.json rename to .changes/2.39.x/2.39.3.json diff --git a/.changes/2.39.4.json b/.changes/2.39.x/2.39.4.json similarity index 100% rename from .changes/2.39.4.json rename to .changes/2.39.x/2.39.4.json diff --git a/.changes/2.39.5.json b/.changes/2.39.x/2.39.5.json similarity index 100% rename from .changes/2.39.5.json rename to .changes/2.39.x/2.39.5.json diff --git a/CHANGELOG.md b/CHANGELOG.md index 59df3ee901dc..a9233d91ad29 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,496 +1 @@ #### 👋 _Looking for changelogs for older versions? You can find them in the [changelogs](./changelogs) directory._ -# __2.39.5__ __2025-11-26__ -## __AWS Compute Optimizer__ - - ### Features - - Compute Optimizer now identifies idle NAT Gateway resources for cost optimization based on traffic patterns and backup configuration analysis. Access recommendations via the GetIdleRecommendations API. - -## __Amazon Bedrock Runtime__ - - ### Features - - Bedrock Runtime Reserved Service Support - -## __Apache5 HTTP Client (Preview)__ - - ### Bugfixes - - Fix bug where Basic proxy authentication fails with credentials not found. - - Fix bug where preemptive Basic authentication was not honored for proxies. Similar to fix for Apache 4.x in [#6333](https://github.com/aws/aws-sdk-java-v2/issues/6333). - -## __Cost Optimization Hub__ - - ### Features - - This release enables AWS Cost Optimization Hub to show cost optimization recommendations for NAT Gateway. - -## __s3__ - - ### Features - - Add CRT shouldStream config as CRT_MEMORY_BUFFER_DISABLED SDK advanced client option - -# __2.39.4__ __2025-11-25__ -## __AWS Network Firewall__ - - ### Features - - Network Firewall release of the Proxy feature. - -## __AWS Organizations__ - - ### Features - - Add support for policy operations on the S3_POLICY and BEDROCK_POLICY policy type. - -## __AWS SDK for Java v2__ - - ### Features - - Updated endpoint and partition metadata. - -## __Amazon DynamoDB Enhanced Client__ - - ### Features - - Add support for GSI composite key to handle up to 4 partition and 4 sort keys - -## __Amazon Elastic Compute Cloud__ - - ### Features - - This release adds support to view Network firewall proxy appliances attached to an existing NAT Gateway via DescribeNatGateways API NatGatewayAttachedAppliance structure. - -## __Amazon Route 53__ - - ### Features - - Adds support for new route53 feature: accelerated recovery. - -# __2.39.3__ __2025-11-24__ -## __Amazon CloudFront__ - - ### Features - - Add TrustStore, ConnectionFunction APIs to CloudFront SDK - -## __Amazon CloudWatch Logs__ - - ### Features - - New CloudWatch Logs feature - LogGroup Deletion Protection, a capability that allows customers to safeguard their critical CloudWatch log groups from accidental or unintended deletion. - -# __2.39.2__ __2025-11-21__ -## __AWS CloudFormation__ - - ### Features - - Adds the DependsOn field to the AutoDeployment configuration parameter for CreateStackSet, UpdateStackSet, and DescribeStackSet APIs, allowing users to set and read auto-deployment dependencies between StackSets - -## __AWS Control Tower__ - - ### Features - - The manifest field is now optional for the AWS Control Tower CreateLandingZone and UpdateLandingZone APIs for Landing Zone version 4.0 - -## __AWS Elemental MediaPackage v2__ - - ### Features - - Adds support for excluding session key tags from HLS multivariant playlists - -## __AWS Invoicing__ - - ### Features - - Added the CreateProcurementPortalPreference, GetProcurementPortalPreference, PutProcurementPortalPreference, UpdateProcurementPortalPreferenceStatus, ListProcurementPortalPreferences and DeleteProcurementPortalPreference APIs for procurement portal preference management. - -## __AWS Key Management Service__ - - ### Features - - Support for on-demand rotation of AWS KMS Multi-Region keys with imported key material - -## __AWS Lambda__ - - ### Features - - Launching Enhanced Error Handling and ESM Grouping capabilities for Kafka ESMs - -## __AWS Marketplace Entitlement Service__ - - ### Features - - Endpoint update for new region - -## __AWS Organizations__ - - ### Features - - Add support for policy operations on the UPGRADE_ROLLOUT_POLICY policy type. - -## __AWS SDK for Java v2__ - - ### Features - - Updated endpoint and partition metadata. - -## __AWS Transfer Family__ - - ### Features - - Adds support for creating Webapps accessible from a VPC. - -## __AWSMarketplace Metering__ - - ### Features - - Endpoint update for new region - -## __Amazon API Gateway__ - - ### Features - - API Gateway supports VPC link V2 for REST APIs. - -## __Amazon Athena__ - - ### Features - - Introduces Spark workgroup features including log persistence, S3/CloudWatch delivery, UI and History Server APIs, and SparkConnect 3.5.6 support. Adds DPU usage limits at workgroup and query levels as well as DPU usage tracking for Capacity Reservation queries to optimize performance and costs. - -## __Amazon Bedrock__ - - ### Features - - Add support to automatically enforce safeguards across accounts within an AWS Organization. - -## __Amazon Bedrock AgentCore Control__ - - ### Features - - Support for agentcore gateway interceptor configurations and NONE authorizer type - -## __Amazon Bedrock Runtime__ - - ### Features - - Add support to automatically enforce safeguards across accounts within an AWS Organization. - -## __Amazon Connect Service__ - - ### Features - - New APIs to support aliases and versions for ContactFlowModule. Updated ContactFlowModule APIs to support custom blocks. - -## __Amazon Elastic Compute Cloud__ - - ### Features - - This release adds a new capability to create and manage interruptible EC2 Capacity Reservations. - -## __Amazon Elastic Container Registry__ - - ### Features - - Add support for ECR managed signing - -## __Amazon Elastic Kubernetes Service__ - - ### Features - - Adds support for controlPlaneScalingConfig on EKS Clusters. - -## __Amazon Kinesis Video Streams__ - - ### Features - - This release adds support for Tiered Storage - -## __Amazon Lex Model Building V2__ - - ### Features - - Adds support for Intent Disambiguation, allowing resolution of ambiguous user inputs when multiple intents match by presenting clarifying questions to users. Also adds Speech Detection Sensitivity configuration for optimizing voice activity detection sensitivity levels in various noise environments. - -## __Amazon Q Connect__ - - ### Features - - This release introduces two new messaging channel subtypes: Push, WhatsApp, under MessageTemplate which is a resource in Amazon Q in Connect. - -## __Amazon QuickSight__ - - ### Features - - Amazon Quick Suite now supports QuickChat as an embedding type when calling the GenerateEmbedUrlForRegisteredUser API, enabling developers to embed conversational AI agents directly into their applications. - -## __Amazon Redshift__ - - ### Features - - Added support for Amazon Redshift Federated Permissions and AWS IAM Identity Center trusted identity propagation. - -## __Amazon Relational Database Service__ - - ### Features - - Add support for Upgrade Rollout Order - -## __Amazon SageMaker Runtime HTTP2__ - - ### Features - - Add support for bidirectional streaming invocations on SageMaker AI real-time endpoints - -## __Amazon SageMaker Service__ - - ### Features - - Enhanced SageMaker HyperPod instance groups with support for MinInstanceCount, CapacityRequirements (Spot/On-Demand), and KubernetesConfig (labels and taints). Also Added speculative decoding and MaxInstanceCount for model optimization jobs. - -## __Amazon Simple Email Service__ - - ### Features - - Added support for new SES regions - Asia Pacific (Malaysia) and Canada (Calgary) - -## __Compute Optimizer Automation__ - - ### Features - - Initial release of AWS Compute Optimizer Automation. Create automation rules to implement recommended actions on a recurring schedule based on your specified criteria. Supported actions include: snapshot and delete unattached EBS volumes and upgrade volume types to the latest generation. - -## __Elastic Load Balancing__ - - ### Features - - This release adds the health check log feature in ALB, allowing customers to send detailed target health check log data directly to their designated Amazon S3 bucket. - -## __MailManager__ - - ### Features - - Add support for resources in the aws-eusc partition. - -## __Redshift Serverless__ - - ### Features - - Added UpdateLakehouseConfiguration API to manage Amazon Redshift Federated Permissions and AWS IAM Identity Center trusted identity propagation for namespaces. - -## __Runtime for Amazon Bedrock Data Automation__ - - ### Features - - Adding new fields to GetDataAutomationStatus: jobSubmissionTime, jobCompletionTime, and jobDurationInSeconds - -## __Security Incident Response__ - - ### Features - - Add ListInvestigations and SendFeedback APIs to support SecurityIR AI agents - -## __odb__ - - ### Features - - Adds AssociateIamRoleToResource and DisassociateIamRoleFromResource APIs for managing IAM roles. Enhances CreateOdbNetwork and UpdateOdbNetwork APIs with KMS, STS, and cross-region S3 parameters. Adds OCI identity domain support to InitializeService API. - -# __2.39.1__ __2025-11-20__ -## __AWS Budgets__ - - ### Features - - Add BillingViewHealthStatusException to DescribeBudgetPerformanceHistory and ServiceQuotaExceededException to UpdateBudget for improved error handling with Billing Views. - -## __AWS CloudTrail__ - - ### Features - - AWS launches CloudTrail aggregated events to simplify monitoring of data events at scale. This feature delivers both granular and summarized data events for resources like S3/Lambda, helping security teams identify patterns without custom aggregation logic. - -## __AWS DataSync__ - - ### Features - - The partition value "aws-eusc" is now permitted for ARN (Amazon Resource Name) fields. - -## __AWS Database Migration Service__ - - ### Features - - Added support for customer-managed KMS key (CMK) for encryption for import private key certificate. Additionally added Amazon SageMaker Lakehouse endpoint used for zero-ETL integrations with data warehouses. - -## __AWS Device Farm__ - - ### Features - - Add support for environment variables and an IAM execution role. - -## __AWS Glue__ - - ### Features - - Added FunctionType parameter to Glue GetuserDefinedFunctions. - -## __AWS Lake Formation__ - - ### Features - - Added ServiceIntegrations as a request parameter for CreateLakeFormationIdentityCenterConfigurationRequest and UpdateLakeFormationIdentityCenterConfigurationRequest and response parameter for DescribeLakeFormationIdentityCenterConfigurationResponse - -## __AWS License Manager__ - - ### Features - - Added cross-account resource aggregation via license asset groups and expiry tracking for Self-Managed Licenses. Extended Org-Wide View to Self-Managed Licenses, added reporting for license asset groups, and removed Athena/Glue dependencies for cross-account resource discovery in commercial regions. - -## __AWS Network Manager__ - - ### Features - - This release adds support for Cloud WAN Routing Policy providing customers sophisticated routing controls to better manage their global networks - -## __AWS Organizations__ - - ### Features - - Added new APIs for Billing Transfer, new policy type INSPECTOR_POLICY, and allow an account to transfer between organizations - -## __AWS SDK for Java v2__ - - ### Features - - Updated endpoint and partition metadata. - -## __AWS SecurityHub__ - - ### Features - - Release Findings and Resources Trends APIs- GetFindingsTrendsV2 and GetResourcesTrendsV2. This supports time-series aggregated counts with composite filtering for 1-year of historical data analysis of Findings and Resources. - -## __AWS Signin__ - - ### Features - - Add the LoginCredentialsProvider which allows use of AWS credentials vended by AWS Sign-In that correspond to an AWS Console session. AWS Sign-In credentials will be used automatically by the Credential resolution chain when `login_session` is set in the profile. - -## __Amazon Aurora DSQL__ - - ### Features - - Added clusterVpcEndpoint field to GetVpcEndpointServiceName API response, returning the VPC connection endpoint for the cluster - -## __Amazon Bedrock AgentCore__ - - ### Features - - Bedrock AgentCore Memory release for redriving memory extraction jobs (StartMemoryExtractionJob and ListMemoryExtractionJob) - -## __Amazon CloudFront__ - - ### Features - - This release adds support for bring your own IP (BYOIP) to CloudFront's CreateAnycastIpList API through an optional IpamCidrConfigs field. - -## __Amazon CloudWatch Application Signals__ - - ### Features - - Amazon CloudWatch Application Signals now supports un-instrumented services discovery, cross-account views, and change history, helping SRE and DevOps teams monitor and troubleshoot their large-scale distributed applications. - -## __Amazon Connect Service__ - - ### Features - - Add optional ability to exclude users from send notification actions for Contact Lens Rules. - -## __Amazon EC2 Container Service__ - - ### Features - - Launching Amazon ECS Express Mode - a new feature that enables developers to quickly launch highly available, scalable containerized applications with a single command. - -## __Amazon EMR__ - - ### Features - - Add support for configuring S3 destination for step logs on a per-step basis. - -## __Amazon Elastic Compute Cloud__ - - ### Features - - This release adds support for multiple features including: VPC Encryption Control for the status of traffic flow; S2S VPN BGP Logging; TGW Flexible Costs; IPAM allocation of static IPs from IPAM pools to CF Anycast IP lists used on CloudFront distribution; and EBS Volume Integration with Recycle Bin - -## __Amazon Kinesis__ - - ### Features - - Kinesis Data Streams now supports up to 50 Enhance Fan-out consumers for On-demand Advantage Streams. On-demand Standard and Provisioned streams will continue with the existing limit of 20 consumers for Enhanced Fan-out. - -## __Amazon QuickSight__ - - ### Features - - Introducing comprehensive theme styling controls. New features include border customization (radius, width, color), flexible padding controls, background styling for cards and sheets, centralized typography management, and visual-level override support across layouts. - -## __Amazon Recycle Bin__ - - ### Features - - Add support for EBS volume in Recycle Bin - -## __Amazon Relational Database Service__ - - ### Features - - Add support for VPC Encryption Controls. - -## __Amazon SageMaker Service__ - - ### Features - - Added training plan support for inference endpoints. Added HyperPod task governance with accelerator partition-based quota allocation. Added BatchRebootClusterNodes and BatchReplaceClusterNodes APIs. Updated ListClusterNodes to include privateDnsHostName. - -## __Amazon Simple Storage Service__ - - ### Features - - Enable / Disable ABAC on a general purpose bucket. - -## __Auto Scaling__ - - ### Features - - This release adds support for three new features: 1) Image ID overrides in mixed instances policy, 2) Replace Root Volume - a new strategy for Instance Refresh, and 3) Instance Lifecycle Policy for enhanced instance lifecycle management. - -## __Braket__ - - ### Features - - Add support for Braket spending limits. - -## __Data Automation for Amazon Bedrock__ - - ### Features - - Added support for Synchronous project type and PII Detection and Redaction - -## __EC2 Image Builder__ - - ### Features - - EC2 Image Builder now enables the distribution of existing AMIs, retry distribution, and define distribution workflows. It also supports automatic versioning for recipes and components, allowing automatic version increments and dynamic referencing in pipelines. - -## __Elastic Load Balancing__ - - ### Features - - This release adds the target optimizer feature in ALB, enabling strict concurrency enforcement on targets. - -## __Redshift Data API Service__ - - ### Features - - Increasing the length limit of Statement Name from 500 to 2048. - -## __Runtime for Amazon Bedrock Data Automation__ - - ### Features - - Bedrock Data Automation Runtime Sync API - -# __2.39.0__ __2025-11-19__ -## __AWS Backup__ - - ### Features - - Amazon GuardDuty Malware Protection now supports AWS Backup, extending malware detection capabilities to EC2, EBS, and S3 backups. - -## __AWS Billing__ - - ### Features - - Added name filtering support to ListBillingViews API through the new names parameter to efficiently filter billing views by name. - -## __AWS Billing and Cost Management Pricing Calculator__ - - ### Features - - Add GroupSharingPreference, CostCategoryGroupSharingPreferenceArn, and CostCategoryGroupSharingPreferenceEffectiveDate to Bill Estimate. Add GroupSharingPreference and CostCategoryGroupSharingPreferenceArn to Bill Scenario. - -## __AWS CloudTrail__ - - ### Features - - AWS CloudTrail now supports Insights for data events, expanding beyond management events to automatically detect unusual activity on data plane operations. - -## __AWS Cost Explorer Service__ - - ### Features - - Add support for COST_CATEGORY, TAG, and LINKED_ACCOUNT AWS managed cost anomaly detection monitors - -## __AWS Elemental MediaLive__ - - ### Features - - MediaLive is adding support for MediaConnect Router by supporting a new input type called MEDIACONNECT_ROUTER. This new input type will provide seamless encrypted transport between MediaConnect Router and your MediaLive channel. - -## __AWS Health APIs and Notifications__ - - ### Features - - Adds actionability and personas properties to Health events exposed through DescribeEvents, DescribeEventsForOrganization, DescribeEventDetails, and DescribeEventTypes APIs. Adds filtering by actionabilities and personas in EventFilter, OrganizationEventFilter, EventTypeFilter. - -## __AWS Identity and Access Management__ - - ### Features - - Added the EnableOutboundWebIdentityFederation, DisableOutboundWebIdentityFederation and GetOutboundWebIdentityFederationInfo APIs for the IAM outbound federation feature. - -## __AWS Invoicing__ - - ### Features - - Add support for adding Billing transfers in Invoice configuration - -## __AWS Lambda__ - - ### Features - - Added support for creating and invoking Tenant Isolated functions in AWS Lambda APIs. - -## __AWS MediaConnect__ - - ### Features - - This release adds support for global routing in AWS Elemental MediaConnect. You can now use router inputs and router outputs to manage global video and audio routing workflows both within the AWS-Cloud and over the public internet. - -## __AWS Network Firewall__ - - ### Features - - Partner Managed Rulegroup feature support - -## __AWS Secrets Manager__ - - ### Features - - Adds support to create, update, retrieve, rotate, and delete managed external secrets. - -## __AWS Security Token Service__ - - ### Features - - IAM now supports outbound identity federation via the STS GetWebIdentityToken API, enabling AWS workloads to securely authenticate with external services using short-lived JSON Web Tokens. - -## __AWS Sign-In Service__ - - ### Features - - AWS Sign-In manages authentication for AWS services. This service provides secure authentication flows for accessing AWS resources from the console and developer tools. This release adds the CreateOAuth2Token API, which can be used to fetch OAuth2 access tokens and refresh tokens from Sign-In. - -## __AWS Step Functions__ - - ### Features - - Adds support to TestState for mocked results and exceptions, along with additional inspection data. - -## __AWSBillingConductor__ - - ### Features - - This release adds support for Billing Transfers, enabling management of billing transfers with billing groups on AWS Billing Conductor. - -## __Amazon API Gateway__ - - ### Features - - API Gateway now supports response streaming and new security policies for REST APIs and custom domain names. - -## __Amazon Bedrock Runtime__ - - ### Features - - This release includes support for Search Results. - -## __Amazon CloudWatch Logs__ - - ### Features - - Adding support for ocsf version 1.5, add optional parameter MappingVersion - -## __Amazon DataZone__ - - ### Features - - Amazon DataZone now supports business metadata (readme and metadata forms) at the individual attribute (column) level, a new rule type for glossary terms, and the ability to update the owner of the root domain unit. - -## __Amazon DynamoDB__ - - ### Features - - Extended Global Secondary Index (GSI) composite keys to support up to 8 attributes. - -## __Amazon EC2 Container Service__ - - ### Features - - Added support for Amazon ECS Managed Instances infrastructure optimization configuration. - -## __Amazon EMR__ - - ### Features - - Add CloudWatch Logs integration for Spark driver, executor and step logs - -## __Amazon Elastic Compute Cloud__ - - ### Features - - This launch adds support for two new features: Regional NAT Gateway and IPAM Policies. IPAM policies offers customers central control for public IPv4 assignments across AWS services. Regional NAT is a single NAT Gateway that automatically expands across AZs in a VPC to maintain high availability. - -## __Amazon Elastic Container Registry__ - - ### Features - - Add support for ECR archival storage class and Inspector org policy for scanning - -## __Amazon FSx__ - - ### Features - - Adding File Server Resource Manager configuration to FSx Windows - -## __Amazon GuardDuty__ - - ### Features - - Add support for scanning and viewing scan results for backup resource types - -## __Amazon Route 53__ - - ### Features - - Add dual-stack endpoint support for Route53 - -## __Amazon SageMaker Service__ - - ### Features - - Added support for enhanced metrics for SageMaker AI Endpoints. This features provides Utilization Metrics at instance and container granularity and also provides easy configuration of metric publish frequency from 10 sec -> 5 mins - -## __Amazon Simple Storage Service__ - - ### Features - - Adds support for blocking SSE-C writes to general purpose buckets. - -## __Amazon Transcribe Streaming Service__ - - ### Features - - This release adds support for additional locales in AWS transcribe streaming. - -## __AmazonApiGatewayV2__ - - ### Features - - Support for API Gateway portals and portal products. - -## __AmazonConnectCampaignServiceV2__ - - ### Features - - This release added support for ring timer configuration for campaign calls. - -## __CloudWatch RUM__ - - ### Features - - CloudWatch RUM now supports mobile application monitoring for Android and iOS platforms - -## __Cost Optimization Hub__ - - ### Features - - Release ListEfficiencyMetrics API - -## __Inspector2__ - - ### Features - - This release introduces BLOCKED_BY_ORGANIZATION_POLICY error code and IMAGE_ARCHIVED scanStatusReason. BLOCKED_BY_ORGANIZATION_POLICY error code is returned when an operation is blocked by an AWS Organizations policy. IMAGE_ARCHIVED scanStatusReason is returned when an Image is archived in ECR. - -## __Network Flow Monitor__ - - ### Features - - Added new enum value (AWS::EKS::Cluster) for type field under MonitorLocalResource - -## __Partner Central Channel API__ - - ### Features - - Initial GA launch of Partner Central Channel - diff --git a/archetypes/archetype-app-quickstart/pom.xml b/archetypes/archetype-app-quickstart/pom.xml index a84932dff7c0..9ddcb572f5fb 100644 --- a/archetypes/archetype-app-quickstart/pom.xml +++ b/archetypes/archetype-app-quickstart/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index cbb6e1581ffe..83c7d745f9b0 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 archetype-lambda diff --git a/archetypes/archetype-tools/pom.xml b/archetypes/archetype-tools/pom.xml index c4137efb1901..577bc9cdfbf7 100644 --- a/archetypes/archetype-tools/pom.xml +++ b/archetypes/archetype-tools/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 diff --git a/archetypes/pom.xml b/archetypes/pom.xml index b7924442155a..eba119ca522e 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index e97c38081e84..67fab4fca750 100644 --- a/aws-sdk-java/pom.xml +++ b/aws-sdk-java/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index 252461e1af64..0be5a4c137fe 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index e1c310e1e6fe..673680a6c26d 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT ../pom.xml bom diff --git a/bundle-logging-bridge/pom.xml b/bundle-logging-bridge/pom.xml index 821ad4a95ed4..d5e184560782 100644 --- a/bundle-logging-bridge/pom.xml +++ b/bundle-logging-bridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT bundle-logging-bridge jar diff --git a/bundle-sdk/pom.xml b/bundle-sdk/pom.xml index 0cd800458299..6fdb4feda7f5 100644 --- a/bundle-sdk/pom.xml +++ b/bundle-sdk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT bundle-sdk jar diff --git a/bundle/pom.xml b/bundle/pom.xml index cbc4f27d36ba..d9c0c5b99f8b 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT bundle jar diff --git a/changelogs/2.39.x-CHANGELOG.md b/changelogs/2.39.x-CHANGELOG.md new file mode 100644 index 000000000000..59df3ee901dc --- /dev/null +++ b/changelogs/2.39.x-CHANGELOG.md @@ -0,0 +1,496 @@ + #### 👋 _Looking for changelogs for older versions? You can find them in the [changelogs](./changelogs) directory._ +# __2.39.5__ __2025-11-26__ +## __AWS Compute Optimizer__ + - ### Features + - Compute Optimizer now identifies idle NAT Gateway resources for cost optimization based on traffic patterns and backup configuration analysis. Access recommendations via the GetIdleRecommendations API. + +## __Amazon Bedrock Runtime__ + - ### Features + - Bedrock Runtime Reserved Service Support + +## __Apache5 HTTP Client (Preview)__ + - ### Bugfixes + - Fix bug where Basic proxy authentication fails with credentials not found. + - Fix bug where preemptive Basic authentication was not honored for proxies. Similar to fix for Apache 4.x in [#6333](https://github.com/aws/aws-sdk-java-v2/issues/6333). + +## __Cost Optimization Hub__ + - ### Features + - This release enables AWS Cost Optimization Hub to show cost optimization recommendations for NAT Gateway. + +## __s3__ + - ### Features + - Add CRT shouldStream config as CRT_MEMORY_BUFFER_DISABLED SDK advanced client option + +# __2.39.4__ __2025-11-25__ +## __AWS Network Firewall__ + - ### Features + - Network Firewall release of the Proxy feature. + +## __AWS Organizations__ + - ### Features + - Add support for policy operations on the S3_POLICY and BEDROCK_POLICY policy type. + +## __AWS SDK for Java v2__ + - ### Features + - Updated endpoint and partition metadata. + +## __Amazon DynamoDB Enhanced Client__ + - ### Features + - Add support for GSI composite key to handle up to 4 partition and 4 sort keys + +## __Amazon Elastic Compute Cloud__ + - ### Features + - This release adds support to view Network firewall proxy appliances attached to an existing NAT Gateway via DescribeNatGateways API NatGatewayAttachedAppliance structure. + +## __Amazon Route 53__ + - ### Features + - Adds support for new route53 feature: accelerated recovery. + +# __2.39.3__ __2025-11-24__ +## __Amazon CloudFront__ + - ### Features + - Add TrustStore, ConnectionFunction APIs to CloudFront SDK + +## __Amazon CloudWatch Logs__ + - ### Features + - New CloudWatch Logs feature - LogGroup Deletion Protection, a capability that allows customers to safeguard their critical CloudWatch log groups from accidental or unintended deletion. + +# __2.39.2__ __2025-11-21__ +## __AWS CloudFormation__ + - ### Features + - Adds the DependsOn field to the AutoDeployment configuration parameter for CreateStackSet, UpdateStackSet, and DescribeStackSet APIs, allowing users to set and read auto-deployment dependencies between StackSets + +## __AWS Control Tower__ + - ### Features + - The manifest field is now optional for the AWS Control Tower CreateLandingZone and UpdateLandingZone APIs for Landing Zone version 4.0 + +## __AWS Elemental MediaPackage v2__ + - ### Features + - Adds support for excluding session key tags from HLS multivariant playlists + +## __AWS Invoicing__ + - ### Features + - Added the CreateProcurementPortalPreference, GetProcurementPortalPreference, PutProcurementPortalPreference, UpdateProcurementPortalPreferenceStatus, ListProcurementPortalPreferences and DeleteProcurementPortalPreference APIs for procurement portal preference management. + +## __AWS Key Management Service__ + - ### Features + - Support for on-demand rotation of AWS KMS Multi-Region keys with imported key material + +## __AWS Lambda__ + - ### Features + - Launching Enhanced Error Handling and ESM Grouping capabilities for Kafka ESMs + +## __AWS Marketplace Entitlement Service__ + - ### Features + - Endpoint update for new region + +## __AWS Organizations__ + - ### Features + - Add support for policy operations on the UPGRADE_ROLLOUT_POLICY policy type. + +## __AWS SDK for Java v2__ + - ### Features + - Updated endpoint and partition metadata. + +## __AWS Transfer Family__ + - ### Features + - Adds support for creating Webapps accessible from a VPC. + +## __AWSMarketplace Metering__ + - ### Features + - Endpoint update for new region + +## __Amazon API Gateway__ + - ### Features + - API Gateway supports VPC link V2 for REST APIs. + +## __Amazon Athena__ + - ### Features + - Introduces Spark workgroup features including log persistence, S3/CloudWatch delivery, UI and History Server APIs, and SparkConnect 3.5.6 support. Adds DPU usage limits at workgroup and query levels as well as DPU usage tracking for Capacity Reservation queries to optimize performance and costs. + +## __Amazon Bedrock__ + - ### Features + - Add support to automatically enforce safeguards across accounts within an AWS Organization. + +## __Amazon Bedrock AgentCore Control__ + - ### Features + - Support for agentcore gateway interceptor configurations and NONE authorizer type + +## __Amazon Bedrock Runtime__ + - ### Features + - Add support to automatically enforce safeguards across accounts within an AWS Organization. + +## __Amazon Connect Service__ + - ### Features + - New APIs to support aliases and versions for ContactFlowModule. Updated ContactFlowModule APIs to support custom blocks. + +## __Amazon Elastic Compute Cloud__ + - ### Features + - This release adds a new capability to create and manage interruptible EC2 Capacity Reservations. + +## __Amazon Elastic Container Registry__ + - ### Features + - Add support for ECR managed signing + +## __Amazon Elastic Kubernetes Service__ + - ### Features + - Adds support for controlPlaneScalingConfig on EKS Clusters. + +## __Amazon Kinesis Video Streams__ + - ### Features + - This release adds support for Tiered Storage + +## __Amazon Lex Model Building V2__ + - ### Features + - Adds support for Intent Disambiguation, allowing resolution of ambiguous user inputs when multiple intents match by presenting clarifying questions to users. Also adds Speech Detection Sensitivity configuration for optimizing voice activity detection sensitivity levels in various noise environments. + +## __Amazon Q Connect__ + - ### Features + - This release introduces two new messaging channel subtypes: Push, WhatsApp, under MessageTemplate which is a resource in Amazon Q in Connect. + +## __Amazon QuickSight__ + - ### Features + - Amazon Quick Suite now supports QuickChat as an embedding type when calling the GenerateEmbedUrlForRegisteredUser API, enabling developers to embed conversational AI agents directly into their applications. + +## __Amazon Redshift__ + - ### Features + - Added support for Amazon Redshift Federated Permissions and AWS IAM Identity Center trusted identity propagation. + +## __Amazon Relational Database Service__ + - ### Features + - Add support for Upgrade Rollout Order + +## __Amazon SageMaker Runtime HTTP2__ + - ### Features + - Add support for bidirectional streaming invocations on SageMaker AI real-time endpoints + +## __Amazon SageMaker Service__ + - ### Features + - Enhanced SageMaker HyperPod instance groups with support for MinInstanceCount, CapacityRequirements (Spot/On-Demand), and KubernetesConfig (labels and taints). Also Added speculative decoding and MaxInstanceCount for model optimization jobs. + +## __Amazon Simple Email Service__ + - ### Features + - Added support for new SES regions - Asia Pacific (Malaysia) and Canada (Calgary) + +## __Compute Optimizer Automation__ + - ### Features + - Initial release of AWS Compute Optimizer Automation. Create automation rules to implement recommended actions on a recurring schedule based on your specified criteria. Supported actions include: snapshot and delete unattached EBS volumes and upgrade volume types to the latest generation. + +## __Elastic Load Balancing__ + - ### Features + - This release adds the health check log feature in ALB, allowing customers to send detailed target health check log data directly to their designated Amazon S3 bucket. + +## __MailManager__ + - ### Features + - Add support for resources in the aws-eusc partition. + +## __Redshift Serverless__ + - ### Features + - Added UpdateLakehouseConfiguration API to manage Amazon Redshift Federated Permissions and AWS IAM Identity Center trusted identity propagation for namespaces. + +## __Runtime for Amazon Bedrock Data Automation__ + - ### Features + - Adding new fields to GetDataAutomationStatus: jobSubmissionTime, jobCompletionTime, and jobDurationInSeconds + +## __Security Incident Response__ + - ### Features + - Add ListInvestigations and SendFeedback APIs to support SecurityIR AI agents + +## __odb__ + - ### Features + - Adds AssociateIamRoleToResource and DisassociateIamRoleFromResource APIs for managing IAM roles. Enhances CreateOdbNetwork and UpdateOdbNetwork APIs with KMS, STS, and cross-region S3 parameters. Adds OCI identity domain support to InitializeService API. + +# __2.39.1__ __2025-11-20__ +## __AWS Budgets__ + - ### Features + - Add BillingViewHealthStatusException to DescribeBudgetPerformanceHistory and ServiceQuotaExceededException to UpdateBudget for improved error handling with Billing Views. + +## __AWS CloudTrail__ + - ### Features + - AWS launches CloudTrail aggregated events to simplify monitoring of data events at scale. This feature delivers both granular and summarized data events for resources like S3/Lambda, helping security teams identify patterns without custom aggregation logic. + +## __AWS DataSync__ + - ### Features + - The partition value "aws-eusc" is now permitted for ARN (Amazon Resource Name) fields. + +## __AWS Database Migration Service__ + - ### Features + - Added support for customer-managed KMS key (CMK) for encryption for import private key certificate. Additionally added Amazon SageMaker Lakehouse endpoint used for zero-ETL integrations with data warehouses. + +## __AWS Device Farm__ + - ### Features + - Add support for environment variables and an IAM execution role. + +## __AWS Glue__ + - ### Features + - Added FunctionType parameter to Glue GetuserDefinedFunctions. + +## __AWS Lake Formation__ + - ### Features + - Added ServiceIntegrations as a request parameter for CreateLakeFormationIdentityCenterConfigurationRequest and UpdateLakeFormationIdentityCenterConfigurationRequest and response parameter for DescribeLakeFormationIdentityCenterConfigurationResponse + +## __AWS License Manager__ + - ### Features + - Added cross-account resource aggregation via license asset groups and expiry tracking for Self-Managed Licenses. Extended Org-Wide View to Self-Managed Licenses, added reporting for license asset groups, and removed Athena/Glue dependencies for cross-account resource discovery in commercial regions. + +## __AWS Network Manager__ + - ### Features + - This release adds support for Cloud WAN Routing Policy providing customers sophisticated routing controls to better manage their global networks + +## __AWS Organizations__ + - ### Features + - Added new APIs for Billing Transfer, new policy type INSPECTOR_POLICY, and allow an account to transfer between organizations + +## __AWS SDK for Java v2__ + - ### Features + - Updated endpoint and partition metadata. + +## __AWS SecurityHub__ + - ### Features + - Release Findings and Resources Trends APIs- GetFindingsTrendsV2 and GetResourcesTrendsV2. This supports time-series aggregated counts with composite filtering for 1-year of historical data analysis of Findings and Resources. + +## __AWS Signin__ + - ### Features + - Add the LoginCredentialsProvider which allows use of AWS credentials vended by AWS Sign-In that correspond to an AWS Console session. AWS Sign-In credentials will be used automatically by the Credential resolution chain when `login_session` is set in the profile. + +## __Amazon Aurora DSQL__ + - ### Features + - Added clusterVpcEndpoint field to GetVpcEndpointServiceName API response, returning the VPC connection endpoint for the cluster + +## __Amazon Bedrock AgentCore__ + - ### Features + - Bedrock AgentCore Memory release for redriving memory extraction jobs (StartMemoryExtractionJob and ListMemoryExtractionJob) + +## __Amazon CloudFront__ + - ### Features + - This release adds support for bring your own IP (BYOIP) to CloudFront's CreateAnycastIpList API through an optional IpamCidrConfigs field. + +## __Amazon CloudWatch Application Signals__ + - ### Features + - Amazon CloudWatch Application Signals now supports un-instrumented services discovery, cross-account views, and change history, helping SRE and DevOps teams monitor and troubleshoot their large-scale distributed applications. + +## __Amazon Connect Service__ + - ### Features + - Add optional ability to exclude users from send notification actions for Contact Lens Rules. + +## __Amazon EC2 Container Service__ + - ### Features + - Launching Amazon ECS Express Mode - a new feature that enables developers to quickly launch highly available, scalable containerized applications with a single command. + +## __Amazon EMR__ + - ### Features + - Add support for configuring S3 destination for step logs on a per-step basis. + +## __Amazon Elastic Compute Cloud__ + - ### Features + - This release adds support for multiple features including: VPC Encryption Control for the status of traffic flow; S2S VPN BGP Logging; TGW Flexible Costs; IPAM allocation of static IPs from IPAM pools to CF Anycast IP lists used on CloudFront distribution; and EBS Volume Integration with Recycle Bin + +## __Amazon Kinesis__ + - ### Features + - Kinesis Data Streams now supports up to 50 Enhance Fan-out consumers for On-demand Advantage Streams. On-demand Standard and Provisioned streams will continue with the existing limit of 20 consumers for Enhanced Fan-out. + +## __Amazon QuickSight__ + - ### Features + - Introducing comprehensive theme styling controls. New features include border customization (radius, width, color), flexible padding controls, background styling for cards and sheets, centralized typography management, and visual-level override support across layouts. + +## __Amazon Recycle Bin__ + - ### Features + - Add support for EBS volume in Recycle Bin + +## __Amazon Relational Database Service__ + - ### Features + - Add support for VPC Encryption Controls. + +## __Amazon SageMaker Service__ + - ### Features + - Added training plan support for inference endpoints. Added HyperPod task governance with accelerator partition-based quota allocation. Added BatchRebootClusterNodes and BatchReplaceClusterNodes APIs. Updated ListClusterNodes to include privateDnsHostName. + +## __Amazon Simple Storage Service__ + - ### Features + - Enable / Disable ABAC on a general purpose bucket. + +## __Auto Scaling__ + - ### Features + - This release adds support for three new features: 1) Image ID overrides in mixed instances policy, 2) Replace Root Volume - a new strategy for Instance Refresh, and 3) Instance Lifecycle Policy for enhanced instance lifecycle management. + +## __Braket__ + - ### Features + - Add support for Braket spending limits. + +## __Data Automation for Amazon Bedrock__ + - ### Features + - Added support for Synchronous project type and PII Detection and Redaction + +## __EC2 Image Builder__ + - ### Features + - EC2 Image Builder now enables the distribution of existing AMIs, retry distribution, and define distribution workflows. It also supports automatic versioning for recipes and components, allowing automatic version increments and dynamic referencing in pipelines. + +## __Elastic Load Balancing__ + - ### Features + - This release adds the target optimizer feature in ALB, enabling strict concurrency enforcement on targets. + +## __Redshift Data API Service__ + - ### Features + - Increasing the length limit of Statement Name from 500 to 2048. + +## __Runtime for Amazon Bedrock Data Automation__ + - ### Features + - Bedrock Data Automation Runtime Sync API + +# __2.39.0__ __2025-11-19__ +## __AWS Backup__ + - ### Features + - Amazon GuardDuty Malware Protection now supports AWS Backup, extending malware detection capabilities to EC2, EBS, and S3 backups. + +## __AWS Billing__ + - ### Features + - Added name filtering support to ListBillingViews API through the new names parameter to efficiently filter billing views by name. + +## __AWS Billing and Cost Management Pricing Calculator__ + - ### Features + - Add GroupSharingPreference, CostCategoryGroupSharingPreferenceArn, and CostCategoryGroupSharingPreferenceEffectiveDate to Bill Estimate. Add GroupSharingPreference and CostCategoryGroupSharingPreferenceArn to Bill Scenario. + +## __AWS CloudTrail__ + - ### Features + - AWS CloudTrail now supports Insights for data events, expanding beyond management events to automatically detect unusual activity on data plane operations. + +## __AWS Cost Explorer Service__ + - ### Features + - Add support for COST_CATEGORY, TAG, and LINKED_ACCOUNT AWS managed cost anomaly detection monitors + +## __AWS Elemental MediaLive__ + - ### Features + - MediaLive is adding support for MediaConnect Router by supporting a new input type called MEDIACONNECT_ROUTER. This new input type will provide seamless encrypted transport between MediaConnect Router and your MediaLive channel. + +## __AWS Health APIs and Notifications__ + - ### Features + - Adds actionability and personas properties to Health events exposed through DescribeEvents, DescribeEventsForOrganization, DescribeEventDetails, and DescribeEventTypes APIs. Adds filtering by actionabilities and personas in EventFilter, OrganizationEventFilter, EventTypeFilter. + +## __AWS Identity and Access Management__ + - ### Features + - Added the EnableOutboundWebIdentityFederation, DisableOutboundWebIdentityFederation and GetOutboundWebIdentityFederationInfo APIs for the IAM outbound federation feature. + +## __AWS Invoicing__ + - ### Features + - Add support for adding Billing transfers in Invoice configuration + +## __AWS Lambda__ + - ### Features + - Added support for creating and invoking Tenant Isolated functions in AWS Lambda APIs. + +## __AWS MediaConnect__ + - ### Features + - This release adds support for global routing in AWS Elemental MediaConnect. You can now use router inputs and router outputs to manage global video and audio routing workflows both within the AWS-Cloud and over the public internet. + +## __AWS Network Firewall__ + - ### Features + - Partner Managed Rulegroup feature support + +## __AWS Secrets Manager__ + - ### Features + - Adds support to create, update, retrieve, rotate, and delete managed external secrets. + +## __AWS Security Token Service__ + - ### Features + - IAM now supports outbound identity federation via the STS GetWebIdentityToken API, enabling AWS workloads to securely authenticate with external services using short-lived JSON Web Tokens. + +## __AWS Sign-In Service__ + - ### Features + - AWS Sign-In manages authentication for AWS services. This service provides secure authentication flows for accessing AWS resources from the console and developer tools. This release adds the CreateOAuth2Token API, which can be used to fetch OAuth2 access tokens and refresh tokens from Sign-In. + +## __AWS Step Functions__ + - ### Features + - Adds support to TestState for mocked results and exceptions, along with additional inspection data. + +## __AWSBillingConductor__ + - ### Features + - This release adds support for Billing Transfers, enabling management of billing transfers with billing groups on AWS Billing Conductor. + +## __Amazon API Gateway__ + - ### Features + - API Gateway now supports response streaming and new security policies for REST APIs and custom domain names. + +## __Amazon Bedrock Runtime__ + - ### Features + - This release includes support for Search Results. + +## __Amazon CloudWatch Logs__ + - ### Features + - Adding support for ocsf version 1.5, add optional parameter MappingVersion + +## __Amazon DataZone__ + - ### Features + - Amazon DataZone now supports business metadata (readme and metadata forms) at the individual attribute (column) level, a new rule type for glossary terms, and the ability to update the owner of the root domain unit. + +## __Amazon DynamoDB__ + - ### Features + - Extended Global Secondary Index (GSI) composite keys to support up to 8 attributes. + +## __Amazon EC2 Container Service__ + - ### Features + - Added support for Amazon ECS Managed Instances infrastructure optimization configuration. + +## __Amazon EMR__ + - ### Features + - Add CloudWatch Logs integration for Spark driver, executor and step logs + +## __Amazon Elastic Compute Cloud__ + - ### Features + - This launch adds support for two new features: Regional NAT Gateway and IPAM Policies. IPAM policies offers customers central control for public IPv4 assignments across AWS services. Regional NAT is a single NAT Gateway that automatically expands across AZs in a VPC to maintain high availability. + +## __Amazon Elastic Container Registry__ + - ### Features + - Add support for ECR archival storage class and Inspector org policy for scanning + +## __Amazon FSx__ + - ### Features + - Adding File Server Resource Manager configuration to FSx Windows + +## __Amazon GuardDuty__ + - ### Features + - Add support for scanning and viewing scan results for backup resource types + +## __Amazon Route 53__ + - ### Features + - Add dual-stack endpoint support for Route53 + +## __Amazon SageMaker Service__ + - ### Features + - Added support for enhanced metrics for SageMaker AI Endpoints. This features provides Utilization Metrics at instance and container granularity and also provides easy configuration of metric publish frequency from 10 sec -> 5 mins + +## __Amazon Simple Storage Service__ + - ### Features + - Adds support for blocking SSE-C writes to general purpose buckets. + +## __Amazon Transcribe Streaming Service__ + - ### Features + - This release adds support for additional locales in AWS transcribe streaming. + +## __AmazonApiGatewayV2__ + - ### Features + - Support for API Gateway portals and portal products. + +## __AmazonConnectCampaignServiceV2__ + - ### Features + - This release added support for ring timer configuration for campaign calls. + +## __CloudWatch RUM__ + - ### Features + - CloudWatch RUM now supports mobile application monitoring for Android and iOS platforms + +## __Cost Optimization Hub__ + - ### Features + - Release ListEfficiencyMetrics API + +## __Inspector2__ + - ### Features + - This release introduces BLOCKED_BY_ORGANIZATION_POLICY error code and IMAGE_ARCHIVED scanStatusReason. BLOCKED_BY_ORGANIZATION_POLICY error code is returned when an operation is blocked by an AWS Organizations policy. IMAGE_ARCHIVED scanStatusReason is returned when an Image is archived in ECR. + +## __Network Flow Monitor__ + - ### Features + - Added new enum value (AWS::EKS::Cluster) for type field under MonitorLocalResource + +## __Partner Central Channel API__ + - ### Features + - Initial GA launch of Partner Central Channel + diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index 60c028560cf3..d18c36c840b8 100644 --- a/codegen-lite-maven-plugin/pom.xml +++ b/codegen-lite-maven-plugin/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index 897bf4c6ab3d..216d5cc02fc8 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index 9cc04fbee62c..a31b7c4693e8 100644 --- a/codegen-maven-plugin/pom.xml +++ b/codegen-maven-plugin/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index c6fbe1b71ee5..ba7326e07cea 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index 4cc143075a6f..4ce867bc303d 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index 1fa20874a674..173acd1f84d4 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 diff --git a/core/auth-crt/pom.xml b/core/auth-crt/pom.xml index 381b8d1781fe..8bf3539c654c 100644 --- a/core/auth-crt/pom.xml +++ b/core/auth-crt/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT auth-crt diff --git a/core/auth/pom.xml b/core/auth/pom.xml index 6a64ceb35efb..bd878d94a5dd 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index 7aae85f69056..4ed4cf399b0d 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT aws-core diff --git a/core/checksums-spi/pom.xml b/core/checksums-spi/pom.xml index 2c528a1d87f6..74052cde9f42 100644 --- a/core/checksums-spi/pom.xml +++ b/core/checksums-spi/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT checksums-spi diff --git a/core/checksums/pom.xml b/core/checksums/pom.xml index de45d7a2ec26..7d16d679dfbb 100644 --- a/core/checksums/pom.xml +++ b/core/checksums/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT checksums diff --git a/core/crt-core/pom.xml b/core/crt-core/pom.xml index ef1486578568..00d7b2129b90 100644 --- a/core/crt-core/pom.xml +++ b/core/crt-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT crt-core diff --git a/core/endpoints-spi/pom.xml b/core/endpoints-spi/pom.xml index 1a571526be0a..a8be3e652f97 100644 --- a/core/endpoints-spi/pom.xml +++ b/core/endpoints-spi/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 diff --git a/core/http-auth-aws-crt/pom.xml b/core/http-auth-aws-crt/pom.xml index 47d08056d25c..49521517d0b3 100644 --- a/core/http-auth-aws-crt/pom.xml +++ b/core/http-auth-aws-crt/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT http-auth-aws-crt diff --git a/core/http-auth-aws-eventstream/pom.xml b/core/http-auth-aws-eventstream/pom.xml index 2295a675ea8c..d79ebdbd3009 100644 --- a/core/http-auth-aws-eventstream/pom.xml +++ b/core/http-auth-aws-eventstream/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT http-auth-aws-eventstream diff --git a/core/http-auth-aws/pom.xml b/core/http-auth-aws/pom.xml index 693fe1c1caab..ff2a98b61e0d 100644 --- a/core/http-auth-aws/pom.xml +++ b/core/http-auth-aws/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT http-auth-aws diff --git a/core/http-auth-spi/pom.xml b/core/http-auth-spi/pom.xml index aac02ef46805..46927e453d7a 100644 --- a/core/http-auth-spi/pom.xml +++ b/core/http-auth-spi/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT http-auth-spi diff --git a/core/http-auth/pom.xml b/core/http-auth/pom.xml index 22c14ffecc02..64291c451bd5 100644 --- a/core/http-auth/pom.xml +++ b/core/http-auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT http-auth diff --git a/core/identity-spi/pom.xml b/core/identity-spi/pom.xml index 041895fba1e3..130cc0df36df 100644 --- a/core/identity-spi/pom.xml +++ b/core/identity-spi/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT identity-spi diff --git a/core/imds/pom.xml b/core/imds/pom.xml index 23ee5afc2ef9..782002e66b77 100644 --- a/core/imds/pom.xml +++ b/core/imds/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 imds diff --git a/core/json-utils/pom.xml b/core/json-utils/pom.xml index cd1e7bd1b39e..f8c19a6c4055 100644 --- a/core/json-utils/pom.xml +++ b/core/json-utils/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index 189660275b2d..9fd96f8be478 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index 2144eeca3d19..426ae7ec97ec 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index 904c5e4b4e69..af7b532db878 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index c941c81b8401..791bb686089e 100644 --- a/core/protocols/aws-cbor-protocol/pom.xml +++ b/core/protocols/aws-cbor-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index 49bf4fa2a349..13a4f8254e2a 100644 --- a/core/protocols/aws-json-protocol/pom.xml +++ b/core/protocols/aws-json-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index 0ce4921308db..ba45926d0123 100644 --- a/core/protocols/aws-query-protocol/pom.xml +++ b/core/protocols/aws-query-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index 67af2bfcf0b7..e0662a871bcd 100644 --- a/core/protocols/aws-xml-protocol/pom.xml +++ b/core/protocols/aws-xml-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index 55687d5f698d..63bf31f4a476 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index 6b9ba4a49449..208e3891764d 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 diff --git a/core/protocols/smithy-rpcv2-protocol/pom.xml b/core/protocols/smithy-rpcv2-protocol/pom.xml index 876e595d7929..8b2a4713a960 100644 --- a/core/protocols/smithy-rpcv2-protocol/pom.xml +++ b/core/protocols/smithy-rpcv2-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index 66d6e69470f4..86e1226e2e54 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT regions diff --git a/core/retries-spi/pom.xml b/core/retries-spi/pom.xml index f72a6ebf3f64..571e1edbb7fd 100644 --- a/core/retries-spi/pom.xml +++ b/core/retries-spi/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 diff --git a/core/retries/pom.xml b/core/retries/pom.xml index d6160e590554..c83f8be5b693 100644 --- a/core/retries/pom.xml +++ b/core/retries/pom.xml @@ -21,7 +21,7 @@ core software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index 3cd3fc789c13..5d58d6af45af 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index 10adff4425fb..4ba4a9be7df1 100644 --- a/http-client-spi/pom.xml +++ b/http-client-spi/pom.xml @@ -22,7 +22,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT http-client-spi AWS Java SDK :: HTTP Client Interface diff --git a/http-clients/apache-client/pom.xml b/http-clients/apache-client/pom.xml index f52619be2c5d..c1f1b09e2287 100644 --- a/http-clients/apache-client/pom.xml +++ b/http-clients/apache-client/pom.xml @@ -21,7 +21,7 @@ http-clients software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT apache-client diff --git a/http-clients/apache5-client/pom.xml b/http-clients/apache5-client/pom.xml index 46c9b7caa0f4..a990d023a222 100644 --- a/http-clients/apache5-client/pom.xml +++ b/http-clients/apache5-client/pom.xml @@ -21,7 +21,7 @@ http-clients software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT apache5-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index 3e7e967805b9..eb05fe74d6f7 100644 --- a/http-clients/aws-crt-client/pom.xml +++ b/http-clients/aws-crt-client/pom.xml @@ -21,7 +21,7 @@ http-clients software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index 0c3a6c4a8f68..79d1f092cae9 100644 --- a/http-clients/netty-nio-client/pom.xml +++ b/http-clients/netty-nio-client/pom.xml @@ -20,7 +20,7 @@ http-clients software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index bef0fc7dfc6a..7e0a55d8688b 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index 045bb6469b2b..da50b2d39905 100644 --- a/http-clients/url-connection-client/pom.xml +++ b/http-clients/url-connection-client/pom.xml @@ -20,7 +20,7 @@ http-clients software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index 7326e868b919..c6c15f920f4b 100644 --- a/metric-publishers/cloudwatch-metric-publisher/pom.xml +++ b/metric-publishers/cloudwatch-metric-publisher/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk metric-publishers - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT cloudwatch-metric-publisher diff --git a/metric-publishers/emf-metric-logging-publisher/pom.xml b/metric-publishers/emf-metric-logging-publisher/pom.xml index 729036072ade..7e84a91c2d30 100644 --- a/metric-publishers/emf-metric-logging-publisher/pom.xml +++ b/metric-publishers/emf-metric-logging-publisher/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk metric-publishers - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT emf-metric-logging-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index d978eb033597..9189797a8ccc 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT metric-publishers diff --git a/pom.xml b/pom.xml index 75dc5be34cc0..fa4e853dd1a2 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT pom AWS Java SDK :: Parent The Amazon Web Services SDK for Java provides Java APIs diff --git a/release-scripts/pom.xml b/release-scripts/pom.xml index d82e9b1bc5d2..fc619c825b9b 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index c4cd0b84aaed..29e015e00a93 100644 --- a/services-custom/dynamodb-enhanced/pom.xml +++ b/services-custom/dynamodb-enhanced/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services-custom - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT dynamodb-enhanced AWS Java SDK :: DynamoDB :: Enhanced Client diff --git a/services-custom/iam-policy-builder/pom.xml b/services-custom/iam-policy-builder/pom.xml index 6f859b58404b..c90692408b79 100644 --- a/services-custom/iam-policy-builder/pom.xml +++ b/services-custom/iam-policy-builder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT ../../pom.xml iam-policy-builder diff --git a/services-custom/pom.xml b/services-custom/pom.xml index 47d0c4ff6e30..325d3e7867ee 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT services-custom AWS Java SDK :: Custom Services diff --git a/services-custom/s3-event-notifications/pom.xml b/services-custom/s3-event-notifications/pom.xml index 31fb5419bdc1..54c1b173be52 100644 --- a/services-custom/s3-event-notifications/pom.xml +++ b/services-custom/s3-event-notifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT ../../pom.xml s3-event-notifications diff --git a/services-custom/s3-transfer-manager/pom.xml b/services-custom/s3-transfer-manager/pom.xml index d861c250488f..dcee2fd165a1 100644 --- a/services-custom/s3-transfer-manager/pom.xml +++ b/services-custom/s3-transfer-manager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT ../../pom.xml s3-transfer-manager diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index 3156fc58bb62..d40faa0146c8 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/account/pom.xml b/services/account/pom.xml index 9f4f5b3ff364..3c9dc474e146 100644 --- a/services/account/pom.xml +++ b/services/account/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT account AWS Java SDK :: Services :: Account diff --git a/services/acm/pom.xml b/services/acm/pom.xml index 6d34e8695bf5..bf114fcd2862 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index d2a3100863aa..0d81ea9a4c4c 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/aiops/pom.xml b/services/aiops/pom.xml index 70a6be49ffd4..455bf44d2a01 100644 --- a/services/aiops/pom.xml +++ b/services/aiops/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT aiops AWS Java SDK :: Services :: AI Ops diff --git a/services/amp/pom.xml b/services/amp/pom.xml index c04dc21aa9de..2e227ee7649e 100644 --- a/services/amp/pom.xml +++ b/services/amp/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT amp AWS Java SDK :: Services :: Amp diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index 3072d3120364..7a08d9219db7 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT amplify AWS Java SDK :: Services :: Amplify diff --git a/services/amplifybackend/pom.xml b/services/amplifybackend/pom.xml index 1448bed9dbf6..e0e15e7e34dc 100644 --- a/services/amplifybackend/pom.xml +++ b/services/amplifybackend/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT amplifybackend AWS Java SDK :: Services :: Amplify Backend diff --git a/services/amplifyuibuilder/pom.xml b/services/amplifyuibuilder/pom.xml index e06293809d7b..9abd1cbf1cc4 100644 --- a/services/amplifyuibuilder/pom.xml +++ b/services/amplifyuibuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT amplifyuibuilder AWS Java SDK :: Services :: Amplify UI Builder diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index 1e51ab633c1f..d8c79808c803 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index 2edc7d350af5..dacb4ca2ba0d 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index 7cac742230df..39e4a35be5f1 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index fa53d0d57277..c66770bb88a0 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appconfigdata/pom.xml b/services/appconfigdata/pom.xml index 3d22b32ea2bb..4a3cc0f4723f 100644 --- a/services/appconfigdata/pom.xml +++ b/services/appconfigdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT appconfigdata AWS Java SDK :: Services :: App Config Data diff --git a/services/appfabric/pom.xml b/services/appfabric/pom.xml index 4fd35de55704..334c94f149ec 100644 --- a/services/appfabric/pom.xml +++ b/services/appfabric/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT appfabric AWS Java SDK :: Services :: App Fabric diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index f7f93907af39..a3d1da7b4e7e 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT appflow AWS Java SDK :: Services :: Appflow diff --git a/services/appintegrations/pom.xml b/services/appintegrations/pom.xml index d25efb4d4d72..8ad98a0aa118 100644 --- a/services/appintegrations/pom.xml +++ b/services/appintegrations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT appintegrations AWS Java SDK :: Services :: App Integrations diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index b0b71b1692e6..61c3e954ca14 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationcostprofiler/pom.xml b/services/applicationcostprofiler/pom.xml index fd47b680affe..36b07b62fd1a 100644 --- a/services/applicationcostprofiler/pom.xml +++ b/services/applicationcostprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT applicationcostprofiler AWS Java SDK :: Services :: Application Cost Profiler diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index 9702181ae9e7..4dea2c2959a2 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index 833756a77265..aaa848f0bb70 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/applicationsignals/pom.xml b/services/applicationsignals/pom.xml index 5b9b74491db3..ad8381a585c2 100644 --- a/services/applicationsignals/pom.xml +++ b/services/applicationsignals/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT applicationsignals AWS Java SDK :: Services :: Application Signals diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index b528f8df4a25..5d906514ea2b 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/apprunner/pom.xml b/services/apprunner/pom.xml index 9bdad00557c3..af1dc85445c5 100644 --- a/services/apprunner/pom.xml +++ b/services/apprunner/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT apprunner AWS Java SDK :: Services :: App Runner diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index 70ea5bc72c96..16ff57267068 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index 812dbff49ae5..3f053b1f2bb8 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT appsync diff --git a/services/arcregionswitch/pom.xml b/services/arcregionswitch/pom.xml index 89c0b0ed7740..f4701aef2492 100644 --- a/services/arcregionswitch/pom.xml +++ b/services/arcregionswitch/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT arcregionswitch AWS Java SDK :: Services :: ARC Region Switch diff --git a/services/arczonalshift/pom.xml b/services/arczonalshift/pom.xml index b674312c9fe0..5eff5ec37d46 100644 --- a/services/arczonalshift/pom.xml +++ b/services/arczonalshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT arczonalshift AWS Java SDK :: Services :: ARC Zonal Shift diff --git a/services/artifact/pom.xml b/services/artifact/pom.xml index 70b3fc1848e4..781d7244441c 100644 --- a/services/artifact/pom.xml +++ b/services/artifact/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT artifact AWS Java SDK :: Services :: Artifact diff --git a/services/athena/pom.xml b/services/athena/pom.xml index ee799c8f956d..53d135e13963 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/auditmanager/pom.xml b/services/auditmanager/pom.xml index 2ff229d82ea9..62a26ad8c1c7 100644 --- a/services/auditmanager/pom.xml +++ b/services/auditmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT auditmanager AWS Java SDK :: Services :: Audit Manager diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index 3731e0f8a7ad..e2fdf51461da 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index 2bacb73bcc56..fd275af4fa55 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/b2bi/pom.xml b/services/b2bi/pom.xml index 623e2b522c86..5697ac7557be 100644 --- a/services/b2bi/pom.xml +++ b/services/b2bi/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT b2bi AWS Java SDK :: Services :: B2 Bi diff --git a/services/backup/pom.xml b/services/backup/pom.xml index e11a62cfeda4..bc1950bdf06d 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT backup AWS Java SDK :: Services :: Backup diff --git a/services/backupgateway/pom.xml b/services/backupgateway/pom.xml index 041ea2c9f568..683595c9fde1 100644 --- a/services/backupgateway/pom.xml +++ b/services/backupgateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT backupgateway AWS Java SDK :: Services :: Backup Gateway diff --git a/services/backupsearch/pom.xml b/services/backupsearch/pom.xml index 0ccfd748d232..28e4a60524dc 100644 --- a/services/backupsearch/pom.xml +++ b/services/backupsearch/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT backupsearch AWS Java SDK :: Services :: Backup Search diff --git a/services/batch/pom.xml b/services/batch/pom.xml index 1400d2f1ab98..1f8ca27f5fe3 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/bcmdashboards/pom.xml b/services/bcmdashboards/pom.xml index 2df128bc43a2..a6d7f45e4dcf 100644 --- a/services/bcmdashboards/pom.xml +++ b/services/bcmdashboards/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT bcmdashboards AWS Java SDK :: Services :: BCM Dashboards diff --git a/services/bcmdataexports/pom.xml b/services/bcmdataexports/pom.xml index 7e48e7df38c6..4fc5891a1682 100644 --- a/services/bcmdataexports/pom.xml +++ b/services/bcmdataexports/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT bcmdataexports AWS Java SDK :: Services :: BCM Data Exports diff --git a/services/bcmpricingcalculator/pom.xml b/services/bcmpricingcalculator/pom.xml index acf694af1ca4..6b83732a2342 100644 --- a/services/bcmpricingcalculator/pom.xml +++ b/services/bcmpricingcalculator/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT bcmpricingcalculator AWS Java SDK :: Services :: BCM Pricing Calculator diff --git a/services/bcmrecommendedactions/pom.xml b/services/bcmrecommendedactions/pom.xml index 09bfc24a9b80..12c0d9aea696 100644 --- a/services/bcmrecommendedactions/pom.xml +++ b/services/bcmrecommendedactions/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT bcmrecommendedactions AWS Java SDK :: Services :: BCM Recommended Actions diff --git a/services/bedrock/pom.xml b/services/bedrock/pom.xml index 26741d3341a1..1ea1b2be1ddb 100644 --- a/services/bedrock/pom.xml +++ b/services/bedrock/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT bedrock AWS Java SDK :: Services :: Bedrock diff --git a/services/bedrockagent/pom.xml b/services/bedrockagent/pom.xml index ae56309f3776..a0d52661ebc1 100644 --- a/services/bedrockagent/pom.xml +++ b/services/bedrockagent/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT bedrockagent AWS Java SDK :: Services :: Bedrock Agent diff --git a/services/bedrockagentcore/pom.xml b/services/bedrockagentcore/pom.xml index 8f07f0e75643..b05c7cbc6962 100644 --- a/services/bedrockagentcore/pom.xml +++ b/services/bedrockagentcore/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT bedrockagentcore AWS Java SDK :: Services :: Bedrock Agent Core diff --git a/services/bedrockagentcorecontrol/pom.xml b/services/bedrockagentcorecontrol/pom.xml index 950e43b02529..12296326e4bf 100644 --- a/services/bedrockagentcorecontrol/pom.xml +++ b/services/bedrockagentcorecontrol/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT bedrockagentcorecontrol AWS Java SDK :: Services :: Bedrock Agent Core Control diff --git a/services/bedrockagentruntime/pom.xml b/services/bedrockagentruntime/pom.xml index 6a769968f775..0a00922a992b 100644 --- a/services/bedrockagentruntime/pom.xml +++ b/services/bedrockagentruntime/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT bedrockagentruntime AWS Java SDK :: Services :: Bedrock Agent Runtime diff --git a/services/bedrockdataautomation/pom.xml b/services/bedrockdataautomation/pom.xml index 84742b263ed6..808c5a918fb0 100644 --- a/services/bedrockdataautomation/pom.xml +++ b/services/bedrockdataautomation/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT bedrockdataautomation AWS Java SDK :: Services :: Bedrock Data Automation diff --git a/services/bedrockdataautomationruntime/pom.xml b/services/bedrockdataautomationruntime/pom.xml index c5f9d3b73c13..54cfdb982e3c 100644 --- a/services/bedrockdataautomationruntime/pom.xml +++ b/services/bedrockdataautomationruntime/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT bedrockdataautomationruntime AWS Java SDK :: Services :: Bedrock Data Automation Runtime diff --git a/services/bedrockruntime/pom.xml b/services/bedrockruntime/pom.xml index 128d333f93e7..2fa6e9fb63e8 100644 --- a/services/bedrockruntime/pom.xml +++ b/services/bedrockruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT bedrockruntime AWS Java SDK :: Services :: Bedrock Runtime diff --git a/services/billing/pom.xml b/services/billing/pom.xml index 310f0b2b6754..c24592dc9c05 100644 --- a/services/billing/pom.xml +++ b/services/billing/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT billing AWS Java SDK :: Services :: Billing diff --git a/services/billingconductor/pom.xml b/services/billingconductor/pom.xml index eba8bc8c1267..ac1100003b3b 100644 --- a/services/billingconductor/pom.xml +++ b/services/billingconductor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT billingconductor AWS Java SDK :: Services :: Billingconductor diff --git a/services/braket/pom.xml b/services/braket/pom.xml index 8ceaa2b8ca3b..08661b790f01 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index d86c9ba747a9..efc3f555f00c 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chatbot/pom.xml b/services/chatbot/pom.xml index 09970e0baf5e..82ca540bb103 100644 --- a/services/chatbot/pom.xml +++ b/services/chatbot/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT chatbot AWS Java SDK :: Services :: Chatbot diff --git a/services/chime/pom.xml b/services/chime/pom.xml index 6c5ead14047f..71ee338b3c0d 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT chime AWS Java SDK :: Services :: Chime diff --git a/services/chimesdkidentity/pom.xml b/services/chimesdkidentity/pom.xml index bbf1bfc4f193..00f06321ae02 100644 --- a/services/chimesdkidentity/pom.xml +++ b/services/chimesdkidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT chimesdkidentity AWS Java SDK :: Services :: Chime SDK Identity diff --git a/services/chimesdkmediapipelines/pom.xml b/services/chimesdkmediapipelines/pom.xml index 040cc6e15d79..a3a26bbfe10d 100644 --- a/services/chimesdkmediapipelines/pom.xml +++ b/services/chimesdkmediapipelines/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT chimesdkmediapipelines AWS Java SDK :: Services :: Chime SDK Media Pipelines diff --git a/services/chimesdkmeetings/pom.xml b/services/chimesdkmeetings/pom.xml index 75e7e477db02..c8016d633e99 100644 --- a/services/chimesdkmeetings/pom.xml +++ b/services/chimesdkmeetings/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT chimesdkmeetings AWS Java SDK :: Services :: Chime SDK Meetings diff --git a/services/chimesdkmessaging/pom.xml b/services/chimesdkmessaging/pom.xml index 2c86b929774c..6523b3cd3928 100644 --- a/services/chimesdkmessaging/pom.xml +++ b/services/chimesdkmessaging/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT chimesdkmessaging AWS Java SDK :: Services :: Chime SDK Messaging diff --git a/services/chimesdkvoice/pom.xml b/services/chimesdkvoice/pom.xml index 06926690e774..70fc3e5e2e3d 100644 --- a/services/chimesdkvoice/pom.xml +++ b/services/chimesdkvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT chimesdkvoice AWS Java SDK :: Services :: Chime SDK Voice diff --git a/services/cleanrooms/pom.xml b/services/cleanrooms/pom.xml index 16d7cd235c92..8dd9e0297545 100644 --- a/services/cleanrooms/pom.xml +++ b/services/cleanrooms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT cleanrooms AWS Java SDK :: Services :: Clean Rooms diff --git a/services/cleanroomsml/pom.xml b/services/cleanroomsml/pom.xml index 6ea14be5c64d..3fa93109cd2d 100644 --- a/services/cleanroomsml/pom.xml +++ b/services/cleanroomsml/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT cleanroomsml AWS Java SDK :: Services :: Clean Rooms ML diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index e919507da891..aac8b8cf7748 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 cloud9 diff --git a/services/cloudcontrol/pom.xml b/services/cloudcontrol/pom.xml index 61443385120b..88d42504ff50 100644 --- a/services/cloudcontrol/pom.xml +++ b/services/cloudcontrol/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT cloudcontrol AWS Java SDK :: Services :: Cloud Control diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index a7b1b4068481..a61e40828213 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index c1279305af02..f01cafdcb8c4 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index 07cd52fa4b27..8e34d62f80fd 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudfrontkeyvaluestore/pom.xml b/services/cloudfrontkeyvaluestore/pom.xml index f25bc91aefe5..042a98b4854d 100644 --- a/services/cloudfrontkeyvaluestore/pom.xml +++ b/services/cloudfrontkeyvaluestore/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT cloudfrontkeyvaluestore AWS Java SDK :: Services :: Cloud Front Key Value Store diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index dc06f4ea479d..1584895e064d 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index f040c2f9c8ba..e276308483f6 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index 3f2d48745cdf..423d96797b3a 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index 7ea264dc5ccb..707503c93bc0 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index 648dbcf1c731..9fead37cd3c5 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudtraildata/pom.xml b/services/cloudtraildata/pom.xml index 71336533aaba..3d86e0c980b9 100644 --- a/services/cloudtraildata/pom.xml +++ b/services/cloudtraildata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT cloudtraildata AWS Java SDK :: Services :: Cloud Trail Data diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index bc0fdea6eb5b..97ca2c0838dd 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index 23f1d9ca39d7..15cae54a12ff 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index 8b036f896e09..d153e93c964f 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index 418c260e6ad2..13e7c7211a99 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index 1f3f9b20d648..42154d03df98 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecatalyst/pom.xml b/services/codecatalyst/pom.xml index 983f72abec2c..75a75829d2e4 100644 --- a/services/codecatalyst/pom.xml +++ b/services/codecatalyst/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT codecatalyst AWS Java SDK :: Services :: Code Catalyst diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index 23646a9c59fe..17b854589018 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codeconnections/pom.xml b/services/codeconnections/pom.xml index deb729f73dfe..c8c69601d7e6 100644 --- a/services/codeconnections/pom.xml +++ b/services/codeconnections/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT codeconnections AWS Java SDK :: Services :: Code Connections diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index fef3eec55182..3eac4b859b40 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index d306ff5389f0..d0f6cb615689 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index 72e21ee875fc..7a75427d1a1f 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codegurusecurity/pom.xml b/services/codegurusecurity/pom.xml index 123813980957..b0169eff9254 100644 --- a/services/codegurusecurity/pom.xml +++ b/services/codegurusecurity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT codegurusecurity AWS Java SDK :: Services :: Code Guru Security diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index c4093a32dcf4..ed64b836fb10 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index 4aa51f3749fc..48066d5c12ae 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index 8c89ca110669..d05ecad59513 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index 59250ebf176f..4fec62af99dc 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index 61f1e3e61d49..ca13c9211d06 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index 566ef412a337..1c5676ec50c8 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index 8aef503a0788..2a81d52f7143 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index 33aed637ba55..b58cc4a4a730 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index 1e85a8cc28dd..40d5ca4e3a7b 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/computeoptimizerautomation/pom.xml b/services/computeoptimizerautomation/pom.xml index 0b4113e67c02..4f20fe626e39 100644 --- a/services/computeoptimizerautomation/pom.xml +++ b/services/computeoptimizerautomation/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT computeoptimizerautomation AWS Java SDK :: Services :: Compute Optimizer Automation diff --git a/services/config/pom.xml b/services/config/pom.xml index 7be228b450a8..24276a691099 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index afc6d7f6b6dd..7071f786bce9 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT connect AWS Java SDK :: Services :: Connect diff --git a/services/connectcampaigns/pom.xml b/services/connectcampaigns/pom.xml index 31f70e389466..ee5c4a0149f3 100644 --- a/services/connectcampaigns/pom.xml +++ b/services/connectcampaigns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT connectcampaigns AWS Java SDK :: Services :: Connect Campaigns diff --git a/services/connectcampaignsv2/pom.xml b/services/connectcampaignsv2/pom.xml index 8f7066b10899..755a1f1a87f0 100644 --- a/services/connectcampaignsv2/pom.xml +++ b/services/connectcampaignsv2/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT connectcampaignsv2 AWS Java SDK :: Services :: Connect Campaigns V2 diff --git a/services/connectcases/pom.xml b/services/connectcases/pom.xml index d26005a73c69..809bab13243c 100644 --- a/services/connectcases/pom.xml +++ b/services/connectcases/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT connectcases AWS Java SDK :: Services :: Connect Cases diff --git a/services/connectcontactlens/pom.xml b/services/connectcontactlens/pom.xml index ddf83a07c218..c817b8e2e6b1 100644 --- a/services/connectcontactlens/pom.xml +++ b/services/connectcontactlens/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT connectcontactlens AWS Java SDK :: Services :: Connect Contact Lens diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index 87954cdee637..121b5510f9a7 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/controlcatalog/pom.xml b/services/controlcatalog/pom.xml index 005e4eb7cfb9..d522b310269d 100644 --- a/services/controlcatalog/pom.xml +++ b/services/controlcatalog/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT controlcatalog AWS Java SDK :: Services :: Control Catalog diff --git a/services/controltower/pom.xml b/services/controltower/pom.xml index 8c09455a35c8..a4615a96574a 100644 --- a/services/controltower/pom.xml +++ b/services/controltower/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT controltower AWS Java SDK :: Services :: Control Tower diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index 2d06fc400fd1..29921fad6010 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index dfce56866300..9812fb9210df 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 costexplorer diff --git a/services/costoptimizationhub/pom.xml b/services/costoptimizationhub/pom.xml index f481409e7d7a..5a792f7b9150 100644 --- a/services/costoptimizationhub/pom.xml +++ b/services/costoptimizationhub/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT costoptimizationhub AWS Java SDK :: Services :: Cost Optimization Hub diff --git a/services/customerprofiles/pom.xml b/services/customerprofiles/pom.xml index 136fd1fbd008..29ff54403e27 100644 --- a/services/customerprofiles/pom.xml +++ b/services/customerprofiles/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT customerprofiles AWS Java SDK :: Services :: Customer Profiles diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index 1074174599e7..0301455d6622 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/databrew/pom.xml b/services/databrew/pom.xml index 4f55d33fa43c..6b5a8703a254 100644 --- a/services/databrew/pom.xml +++ b/services/databrew/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT databrew AWS Java SDK :: Services :: Data Brew diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index 94d29b422304..055700b0f9fc 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index 481b598833e1..77c01911796c 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index d62b73f6615d..460d478a3462 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT datasync AWS Java SDK :: Services :: DataSync diff --git a/services/datazone/pom.xml b/services/datazone/pom.xml index 6afcd1552e3b..494c4b80715b 100644 --- a/services/datazone/pom.xml +++ b/services/datazone/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT datazone AWS Java SDK :: Services :: Data Zone diff --git a/services/dax/pom.xml b/services/dax/pom.xml index 3b423ce11bd8..477ec8db0e24 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/deadline/pom.xml b/services/deadline/pom.xml index 5318e44615e5..271e97b14bc2 100644 --- a/services/deadline/pom.xml +++ b/services/deadline/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT deadline AWS Java SDK :: Services :: Deadline diff --git a/services/detective/pom.xml b/services/detective/pom.xml index 8ebe0d4dca20..536e900b431d 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index 38501f164bd3..cf7513fc773c 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/devopsguru/pom.xml b/services/devopsguru/pom.xml index b79fca4b2846..d0678d8545cc 100644 --- a/services/devopsguru/pom.xml +++ b/services/devopsguru/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT devopsguru AWS Java SDK :: Services :: Dev Ops Guru diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index c156609f8ee2..bf8bebc85c30 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index 03dbbe7b7e36..51688ae22cf3 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/directoryservicedata/pom.xml b/services/directoryservicedata/pom.xml index 45a82c31ff31..d156c420e550 100644 --- a/services/directoryservicedata/pom.xml +++ b/services/directoryservicedata/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT directoryservicedata AWS Java SDK :: Services :: Directory Service Data diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index e4a68603e4c3..59b9ad3a1e90 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index ce8c117e5689..57d17c2b16c3 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT docdb AWS Java SDK :: Services :: DocDB diff --git a/services/docdbelastic/pom.xml b/services/docdbelastic/pom.xml index 1e53fab08844..cdf7b349068e 100644 --- a/services/docdbelastic/pom.xml +++ b/services/docdbelastic/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT docdbelastic AWS Java SDK :: Services :: Doc DB Elastic diff --git a/services/drs/pom.xml b/services/drs/pom.xml index 8c255fa5a129..032c04f18366 100644 --- a/services/drs/pom.xml +++ b/services/drs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT drs AWS Java SDK :: Services :: Drs diff --git a/services/dsql/pom.xml b/services/dsql/pom.xml index 5a308df31258..32d0b3e41912 100644 --- a/services/dsql/pom.xml +++ b/services/dsql/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT dsql AWS Java SDK :: Services :: DSQL diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index 6208d810efb6..5f590cde4180 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index 70dc6f51f841..471d4c6f5392 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index 3142bc7424e9..d3e7e26c1be6 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index 980899afbd79..bc707030d739 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index 9236149042bd..fb918a7d4e58 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecrpublic/pom.xml b/services/ecrpublic/pom.xml index 71195647fc23..0292944ad7f0 100644 --- a/services/ecrpublic/pom.xml +++ b/services/ecrpublic/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT ecrpublic AWS Java SDK :: Services :: ECR PUBLIC diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index c2569b29daa2..eb2fe0676901 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index 3743928a2ab1..4029b71e0beb 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index 7072717097bd..d6e8bc4ecf9a 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT eks AWS Java SDK :: Services :: EKS diff --git a/services/eksauth/pom.xml b/services/eksauth/pom.xml index 18ee95383b6a..618b7a1767b4 100644 --- a/services/eksauth/pom.xml +++ b/services/eksauth/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT eksauth AWS Java SDK :: Services :: EKS Auth diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index 004f27d3dab0..4046d07e4d0d 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index 9b0e6eb89d78..f4d88d6bf2cb 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index 8d142140fa15..03fded5cbc27 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index 00810304683d..eea0b36bc823 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index 2b948cf80761..1fe0e9bf791d 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index 1e11e4bc8194..72ddb7b264bc 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index 3555feb4590e..6e82c6bd99da 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/emrcontainers/pom.xml b/services/emrcontainers/pom.xml index e482d56003b7..1586dd323bc9 100644 --- a/services/emrcontainers/pom.xml +++ b/services/emrcontainers/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT emrcontainers AWS Java SDK :: Services :: EMR Containers diff --git a/services/emrserverless/pom.xml b/services/emrserverless/pom.xml index 3f634c1f3375..3bfdf3f0fe26 100644 --- a/services/emrserverless/pom.xml +++ b/services/emrserverless/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT emrserverless AWS Java SDK :: Services :: EMR Serverless diff --git a/services/entityresolution/pom.xml b/services/entityresolution/pom.xml index f6165aa3fca5..40c1bcf1fbfc 100644 --- a/services/entityresolution/pom.xml +++ b/services/entityresolution/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT entityresolution AWS Java SDK :: Services :: Entity Resolution diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index fc1ae94acaa2..c4abd39aa522 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/evidently/pom.xml b/services/evidently/pom.xml index f612fb1ebc2e..e4891127e768 100644 --- a/services/evidently/pom.xml +++ b/services/evidently/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT evidently AWS Java SDK :: Services :: Evidently diff --git a/services/evs/pom.xml b/services/evs/pom.xml index e783879f101b..c0fa3115fee9 100644 --- a/services/evs/pom.xml +++ b/services/evs/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT evs AWS Java SDK :: Services :: Evs diff --git a/services/finspace/pom.xml b/services/finspace/pom.xml index a2f93ac46f58..c95e9fae963f 100644 --- a/services/finspace/pom.xml +++ b/services/finspace/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT finspace AWS Java SDK :: Services :: Finspace diff --git a/services/finspacedata/pom.xml b/services/finspacedata/pom.xml index 166e197646bd..300bcfec9616 100644 --- a/services/finspacedata/pom.xml +++ b/services/finspacedata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT finspacedata AWS Java SDK :: Services :: Finspace Data diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index c70714a0c33f..46ee017e422c 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fis/pom.xml b/services/fis/pom.xml index 2b3d914a1759..84b82865216b 100644 --- a/services/fis/pom.xml +++ b/services/fis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT fis AWS Java SDK :: Services :: Fis diff --git a/services/fms/pom.xml b/services/fms/pom.xml index f962dd4afbe2..9006dd185465 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index 38a0c1712f75..f223c067f310 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index 08af78b430e4..40836fc16d0c 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index 36bbd452af67..53e56334dc26 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/freetier/pom.xml b/services/freetier/pom.xml index 32f6c1e81b6e..f2ccd8ee301d 100644 --- a/services/freetier/pom.xml +++ b/services/freetier/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT freetier AWS Java SDK :: Services :: Free Tier diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index fb985604b945..49e6eec6087e 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index d647f09c4606..47c4426b373d 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/gameliftstreams/pom.xml b/services/gameliftstreams/pom.xml index e93c2745d80b..ee708dc319b5 100644 --- a/services/gameliftstreams/pom.xml +++ b/services/gameliftstreams/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT gameliftstreams AWS Java SDK :: Services :: Game Lift Streams diff --git a/services/geomaps/pom.xml b/services/geomaps/pom.xml index 4d187d344dbe..56ad92fc37b9 100644 --- a/services/geomaps/pom.xml +++ b/services/geomaps/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT geomaps AWS Java SDK :: Services :: Geo Maps diff --git a/services/geoplaces/pom.xml b/services/geoplaces/pom.xml index 912f2706feb5..4c3af1c6b7d8 100644 --- a/services/geoplaces/pom.xml +++ b/services/geoplaces/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT geoplaces AWS Java SDK :: Services :: Geo Places diff --git a/services/georoutes/pom.xml b/services/georoutes/pom.xml index eb5202b71fbb..fad3ea4e98c7 100644 --- a/services/georoutes/pom.xml +++ b/services/georoutes/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT georoutes AWS Java SDK :: Services :: Geo Routes diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index 7b07d484f995..1e1a6313f5c5 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index a81bee953fe1..21fa5bc69854 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index f65a96c2f2d4..5520b8e14d0a 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 glue diff --git a/services/grafana/pom.xml b/services/grafana/pom.xml index de016016f1f7..5ed7b1d6d498 100644 --- a/services/grafana/pom.xml +++ b/services/grafana/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT grafana AWS Java SDK :: Services :: Grafana diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index f6beb7cd1884..7633558b8d70 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/greengrassv2/pom.xml b/services/greengrassv2/pom.xml index c4ff00910859..32c36e0f7cae 100644 --- a/services/greengrassv2/pom.xml +++ b/services/greengrassv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT greengrassv2 AWS Java SDK :: Services :: Greengrass V2 diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index 75e296ee30aa..acd0de38614c 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index 879ceaf5ec35..086341702f46 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index ea82900ecd26..e8b137714e8e 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/healthlake/pom.xml b/services/healthlake/pom.xml index e5a1c2c4d5cd..a4b41a075380 100644 --- a/services/healthlake/pom.xml +++ b/services/healthlake/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT healthlake AWS Java SDK :: Services :: Health Lake diff --git a/services/iam/pom.xml b/services/iam/pom.xml index a88b8b69d5c0..3b27b3b0b346 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index c4b485914c15..03273d435d38 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index 133afe5c594f..d5dc53754f16 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index d4de0da407b8..2455090e4e3f 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/inspector2/pom.xml b/services/inspector2/pom.xml index 6ce36906a924..47258b8c0cb3 100644 --- a/services/inspector2/pom.xml +++ b/services/inspector2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT inspector2 AWS Java SDK :: Services :: Inspector2 diff --git a/services/inspectorscan/pom.xml b/services/inspectorscan/pom.xml index f42d4c7231b9..039597f9bce0 100644 --- a/services/inspectorscan/pom.xml +++ b/services/inspectorscan/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT inspectorscan AWS Java SDK :: Services :: Inspector Scan diff --git a/services/internetmonitor/pom.xml b/services/internetmonitor/pom.xml index 00a5c249c83a..0262279dee37 100644 --- a/services/internetmonitor/pom.xml +++ b/services/internetmonitor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT internetmonitor AWS Java SDK :: Services :: Internet Monitor diff --git a/services/invoicing/pom.xml b/services/invoicing/pom.xml index b4b0633a897f..81605742fdd7 100644 --- a/services/invoicing/pom.xml +++ b/services/invoicing/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT invoicing AWS Java SDK :: Services :: Invoicing diff --git a/services/iot/pom.xml b/services/iot/pom.xml index 93f877eee4b9..576a7d59b792 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index e30438b3e466..c26c869312cd 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index c5705ef252e9..410e0061e75e 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotdeviceadvisor/pom.xml b/services/iotdeviceadvisor/pom.xml index 5e34a6666e51..3ca74166d1c4 100644 --- a/services/iotdeviceadvisor/pom.xml +++ b/services/iotdeviceadvisor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT iotdeviceadvisor AWS Java SDK :: Services :: Iot Device Advisor diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index 02940232daa1..574f7b9e7722 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index 5488652cc804..639659758d89 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotfleetwise/pom.xml b/services/iotfleetwise/pom.xml index 45528839f920..f22cea813916 100644 --- a/services/iotfleetwise/pom.xml +++ b/services/iotfleetwise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT iotfleetwise AWS Java SDK :: Services :: Io T Fleet Wise diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index 704d57d2dd01..8e9e7977aea7 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotmanagedintegrations/pom.xml b/services/iotmanagedintegrations/pom.xml index 7ee7ec394494..4923022a04a5 100644 --- a/services/iotmanagedintegrations/pom.xml +++ b/services/iotmanagedintegrations/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT iotmanagedintegrations AWS Java SDK :: Services :: IoT Managed Integrations diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index bd591ed0973f..e4909fa3a342 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index d9b1e31407dd..0c6038dd8270 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index 32e6384d2795..24b5547dd288 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/iottwinmaker/pom.xml b/services/iottwinmaker/pom.xml index 510d0994c1a0..fc988028cf9c 100644 --- a/services/iottwinmaker/pom.xml +++ b/services/iottwinmaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT iottwinmaker AWS Java SDK :: Services :: Io T Twin Maker diff --git a/services/iotwireless/pom.xml b/services/iotwireless/pom.xml index b35623acebaf..af3d2dbb88fd 100644 --- a/services/iotwireless/pom.xml +++ b/services/iotwireless/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT iotwireless AWS Java SDK :: Services :: IoT Wireless diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index 2686cd9c9b62..191065fdfe85 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT ivs AWS Java SDK :: Services :: Ivs diff --git a/services/ivschat/pom.xml b/services/ivschat/pom.xml index dd53ed044069..d6f79e2bea0d 100644 --- a/services/ivschat/pom.xml +++ b/services/ivschat/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT ivschat AWS Java SDK :: Services :: Ivschat diff --git a/services/ivsrealtime/pom.xml b/services/ivsrealtime/pom.xml index f855bdff2a2c..60e82c4fb4e7 100644 --- a/services/ivsrealtime/pom.xml +++ b/services/ivsrealtime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT ivsrealtime AWS Java SDK :: Services :: IVS Real Time diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index d2fb11abfff6..ae51f1e65dc7 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kafkaconnect/pom.xml b/services/kafkaconnect/pom.xml index fbc2d7992920..7db666df2347 100644 --- a/services/kafkaconnect/pom.xml +++ b/services/kafkaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT kafkaconnect AWS Java SDK :: Services :: Kafka Connect diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index 8aa997fee7ea..06550e568a7b 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kendraranking/pom.xml b/services/kendraranking/pom.xml index 894b212c2a3b..c06f59d040d0 100644 --- a/services/kendraranking/pom.xml +++ b/services/kendraranking/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT kendraranking AWS Java SDK :: Services :: Kendra Ranking diff --git a/services/keyspaces/pom.xml b/services/keyspaces/pom.xml index 7e2a04b9cc1a..e2d38420dfa6 100644 --- a/services/keyspaces/pom.xml +++ b/services/keyspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT keyspaces AWS Java SDK :: Services :: Keyspaces diff --git a/services/keyspacesstreams/pom.xml b/services/keyspacesstreams/pom.xml index 0e38a8a5899b..ea8ff9b6a52b 100644 --- a/services/keyspacesstreams/pom.xml +++ b/services/keyspacesstreams/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT keyspacesstreams AWS Java SDK :: Services :: Keyspaces Streams diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index d5cb580f99a4..64945bf13c74 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index 6e6aaa6a4574..92b3a8bf17df 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index 4e2ba0e9c337..5d16239fc5fe 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index a98de61a44e9..27109511628a 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index bb8c2eee68d2..9a17807c7e3b 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index afcef5b086cb..7989616b3273 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index a15800f5b5fd..b0b081e179cc 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kinesisvideowebrtcstorage/pom.xml b/services/kinesisvideowebrtcstorage/pom.xml index 136c8e906ca5..82a12bf54f0d 100644 --- a/services/kinesisvideowebrtcstorage/pom.xml +++ b/services/kinesisvideowebrtcstorage/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT kinesisvideowebrtcstorage AWS Java SDK :: Services :: Kinesis Video Web RTC Storage diff --git a/services/kms/pom.xml b/services/kms/pom.xml index 534ed8e4af27..996345252125 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index b10959cd5e6e..e09d372a9cf0 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index bd691d3d9070..95f56e5bafb7 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/launchwizard/pom.xml b/services/launchwizard/pom.xml index 0d68c07a2238..caecbe2af302 100644 --- a/services/launchwizard/pom.xml +++ b/services/launchwizard/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT launchwizard AWS Java SDK :: Services :: Launch Wizard diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index 77f30313fdc7..a5e756e43a30 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexmodelsv2/pom.xml b/services/lexmodelsv2/pom.xml index 82e23d6d9dc7..7f90418adb30 100644 --- a/services/lexmodelsv2/pom.xml +++ b/services/lexmodelsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT lexmodelsv2 AWS Java SDK :: Services :: Lex Models V2 diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index 92ed4fc4380b..dc6e57ce76e0 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/lexruntimev2/pom.xml b/services/lexruntimev2/pom.xml index c7a4bc6aa049..1c83d7890f7e 100644 --- a/services/lexruntimev2/pom.xml +++ b/services/lexruntimev2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT lexruntimev2 AWS Java SDK :: Services :: Lex Runtime V2 diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index a89b0b3d4226..f3c97d4ece0b 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/licensemanagerlinuxsubscriptions/pom.xml b/services/licensemanagerlinuxsubscriptions/pom.xml index 1ca1d414d7cc..5bc8fa78312a 100644 --- a/services/licensemanagerlinuxsubscriptions/pom.xml +++ b/services/licensemanagerlinuxsubscriptions/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT licensemanagerlinuxsubscriptions AWS Java SDK :: Services :: License Manager Linux Subscriptions diff --git a/services/licensemanagerusersubscriptions/pom.xml b/services/licensemanagerusersubscriptions/pom.xml index 0d01e2675783..5f542e0e5108 100644 --- a/services/licensemanagerusersubscriptions/pom.xml +++ b/services/licensemanagerusersubscriptions/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT licensemanagerusersubscriptions AWS Java SDK :: Services :: License Manager User Subscriptions diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index 8b29120df76f..601c2690819c 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/location/pom.xml b/services/location/pom.xml index 59bf6fdc2fe4..420abd01fc55 100644 --- a/services/location/pom.xml +++ b/services/location/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT location AWS Java SDK :: Services :: Location diff --git a/services/lookoutequipment/pom.xml b/services/lookoutequipment/pom.xml index 33ec93df9e1d..dd5500a4ed2e 100644 --- a/services/lookoutequipment/pom.xml +++ b/services/lookoutequipment/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT lookoutequipment AWS Java SDK :: Services :: Lookout Equipment diff --git a/services/m2/pom.xml b/services/m2/pom.xml index f67b77f6ab74..cce69dc98157 100644 --- a/services/m2/pom.xml +++ b/services/m2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT m2 AWS Java SDK :: Services :: M2 diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index f18782799c83..bcf8eec883cf 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index ba48366dc56b..e6900028e372 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/mailmanager/pom.xml b/services/mailmanager/pom.xml index ee994d4a0a45..29f8f1b47e7a 100644 --- a/services/mailmanager/pom.xml +++ b/services/mailmanager/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT mailmanager AWS Java SDK :: Services :: Mail Manager diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index 7f05d17d53af..fbc86a92dda3 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/managedblockchainquery/pom.xml b/services/managedblockchainquery/pom.xml index 37e0d46aa413..69d0cae48ff7 100644 --- a/services/managedblockchainquery/pom.xml +++ b/services/managedblockchainquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT managedblockchainquery AWS Java SDK :: Services :: Managed Blockchain Query diff --git a/services/marketplaceagreement/pom.xml b/services/marketplaceagreement/pom.xml index 4de0c4dd0c22..13c732888dff 100644 --- a/services/marketplaceagreement/pom.xml +++ b/services/marketplaceagreement/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT marketplaceagreement AWS Java SDK :: Services :: Marketplace Agreement diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index d953380bac60..51b41fbe9ca2 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index c3779aa1a396..dde568dd24c1 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplacedeployment/pom.xml b/services/marketplacedeployment/pom.xml index 82874e72b138..06e36828137e 100644 --- a/services/marketplacedeployment/pom.xml +++ b/services/marketplacedeployment/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT marketplacedeployment AWS Java SDK :: Services :: Marketplace Deployment diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index c31f57cb473f..4d199a42915c 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index 22af69a7fa1f..7904c20445b4 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/marketplacereporting/pom.xml b/services/marketplacereporting/pom.xml index 92186451df30..ea0f7d23a264 100644 --- a/services/marketplacereporting/pom.xml +++ b/services/marketplacereporting/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT marketplacereporting AWS Java SDK :: Services :: Marketplace Reporting diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index 09f394a6cb63..75aace376cce 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index 536a3b171533..8b90304fe372 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index 60d91a1ff1fa..4c98c17ad589 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index ad3a10ceb5c9..148dc4dcd948 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 mediapackage diff --git a/services/mediapackagev2/pom.xml b/services/mediapackagev2/pom.xml index 14cbbbd740d3..ea05ef816651 100644 --- a/services/mediapackagev2/pom.xml +++ b/services/mediapackagev2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT mediapackagev2 AWS Java SDK :: Services :: Media Package V2 diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index e25916699dc5..b8a0df82d3f8 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index fc17240661ba..b4b983887ceb 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index 36c57698780d..13651a17d514 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index a19450c684a8..675d9dec1639 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/medicalimaging/pom.xml b/services/medicalimaging/pom.xml index ab6d9c615650..5918e6f342bf 100644 --- a/services/medicalimaging/pom.xml +++ b/services/medicalimaging/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT medicalimaging AWS Java SDK :: Services :: Medical Imaging diff --git a/services/memorydb/pom.xml b/services/memorydb/pom.xml index c8e5a4bbb10c..7fb649e6850e 100644 --- a/services/memorydb/pom.xml +++ b/services/memorydb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT memorydb AWS Java SDK :: Services :: Memory DB diff --git a/services/mgn/pom.xml b/services/mgn/pom.xml index 581d0449e187..341cce33e694 100644 --- a/services/mgn/pom.xml +++ b/services/mgn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT mgn AWS Java SDK :: Services :: Mgn diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index b59c16e8058f..262a36484d39 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index e2f0dc534821..2872afe4ae1c 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/migrationhuborchestrator/pom.xml b/services/migrationhuborchestrator/pom.xml index 54b62fd59abf..f285ec7bb6c3 100644 --- a/services/migrationhuborchestrator/pom.xml +++ b/services/migrationhuborchestrator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT migrationhuborchestrator AWS Java SDK :: Services :: Migration Hub Orchestrator diff --git a/services/migrationhubrefactorspaces/pom.xml b/services/migrationhubrefactorspaces/pom.xml index af9068f2ccde..40f2d6845308 100644 --- a/services/migrationhubrefactorspaces/pom.xml +++ b/services/migrationhubrefactorspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT migrationhubrefactorspaces AWS Java SDK :: Services :: Migration Hub Refactor Spaces diff --git a/services/migrationhubstrategy/pom.xml b/services/migrationhubstrategy/pom.xml index cc54cfec92f9..313eb8b03a3d 100644 --- a/services/migrationhubstrategy/pom.xml +++ b/services/migrationhubstrategy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT migrationhubstrategy AWS Java SDK :: Services :: Migration Hub Strategy diff --git a/services/mpa/pom.xml b/services/mpa/pom.xml index a42ad542dbbf..05f79c05c4c9 100644 --- a/services/mpa/pom.xml +++ b/services/mpa/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT mpa AWS Java SDK :: Services :: MPA diff --git a/services/mq/pom.xml b/services/mq/pom.xml index 4fa6c7fe401e..9b183978d9c1 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index 165c60cd4fc7..99e79aa17d2d 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/mwaa/pom.xml b/services/mwaa/pom.xml index bba386266945..db47a1351bb4 100644 --- a/services/mwaa/pom.xml +++ b/services/mwaa/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT mwaa AWS Java SDK :: Services :: MWAA diff --git a/services/mwaaserverless/pom.xml b/services/mwaaserverless/pom.xml index 15c0bb6030c4..cd7b9033fcca 100644 --- a/services/mwaaserverless/pom.xml +++ b/services/mwaaserverless/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT mwaaserverless AWS Java SDK :: Services :: MWAA Serverless diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index 28b4b7480455..640bf331c8ec 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT neptune AWS Java SDK :: Services :: Neptune diff --git a/services/neptunedata/pom.xml b/services/neptunedata/pom.xml index 4735e64cff2e..0f5c622ca521 100644 --- a/services/neptunedata/pom.xml +++ b/services/neptunedata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT neptunedata AWS Java SDK :: Services :: Neptunedata diff --git a/services/neptunegraph/pom.xml b/services/neptunegraph/pom.xml index 389c69c52397..b0a33e7fe191 100644 --- a/services/neptunegraph/pom.xml +++ b/services/neptunegraph/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT neptunegraph AWS Java SDK :: Services :: Neptune Graph diff --git a/services/networkfirewall/pom.xml b/services/networkfirewall/pom.xml index 9562a2ec16e4..cd4ec5b64cfa 100644 --- a/services/networkfirewall/pom.xml +++ b/services/networkfirewall/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT networkfirewall AWS Java SDK :: Services :: Network Firewall diff --git a/services/networkflowmonitor/pom.xml b/services/networkflowmonitor/pom.xml index 51043c686394..8c5fbd6212e7 100644 --- a/services/networkflowmonitor/pom.xml +++ b/services/networkflowmonitor/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT networkflowmonitor AWS Java SDK :: Services :: Network Flow Monitor diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index 89760893ed93..6934026d2088 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/networkmonitor/pom.xml b/services/networkmonitor/pom.xml index 9bdd5c0f28aa..e5ac5c452626 100644 --- a/services/networkmonitor/pom.xml +++ b/services/networkmonitor/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT networkmonitor AWS Java SDK :: Services :: Network Monitor diff --git a/services/notifications/pom.xml b/services/notifications/pom.xml index 460de19d9735..f4ba41777449 100644 --- a/services/notifications/pom.xml +++ b/services/notifications/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT notifications AWS Java SDK :: Services :: Notifications diff --git a/services/notificationscontacts/pom.xml b/services/notificationscontacts/pom.xml index c9fee3ec3e2c..3e61310223ac 100644 --- a/services/notificationscontacts/pom.xml +++ b/services/notificationscontacts/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT notificationscontacts AWS Java SDK :: Services :: Notifications Contacts diff --git a/services/oam/pom.xml b/services/oam/pom.xml index a87ac9590d75..f8a327d87b2a 100644 --- a/services/oam/pom.xml +++ b/services/oam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT oam AWS Java SDK :: Services :: OAM diff --git a/services/observabilityadmin/pom.xml b/services/observabilityadmin/pom.xml index 14cde4dcc102..66d6faaea2a7 100644 --- a/services/observabilityadmin/pom.xml +++ b/services/observabilityadmin/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT observabilityadmin AWS Java SDK :: Services :: Observability Admin diff --git a/services/odb/pom.xml b/services/odb/pom.xml index 9f0a02881d66..92944ea5dd9c 100644 --- a/services/odb/pom.xml +++ b/services/odb/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT odb AWS Java SDK :: Services :: Odb diff --git a/services/omics/pom.xml b/services/omics/pom.xml index 207375e4068b..ff1e5d2cb48b 100644 --- a/services/omics/pom.xml +++ b/services/omics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT omics AWS Java SDK :: Services :: Omics diff --git a/services/opensearch/pom.xml b/services/opensearch/pom.xml index 47ed73a0c107..fc0709cb9355 100644 --- a/services/opensearch/pom.xml +++ b/services/opensearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT opensearch AWS Java SDK :: Services :: Open Search diff --git a/services/opensearchserverless/pom.xml b/services/opensearchserverless/pom.xml index 60dfb21d4cb7..b3868718fb2f 100644 --- a/services/opensearchserverless/pom.xml +++ b/services/opensearchserverless/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT opensearchserverless AWS Java SDK :: Services :: Open Search Serverless diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index 19304eed2a0f..c9794f464195 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/osis/pom.xml b/services/osis/pom.xml index da284652936a..b6b8843642f1 100644 --- a/services/osis/pom.xml +++ b/services/osis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT osis AWS Java SDK :: Services :: OSIS diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index 31de282e6e6a..35820a685961 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT outposts AWS Java SDK :: Services :: Outposts diff --git a/services/panorama/pom.xml b/services/panorama/pom.xml index 81b9c1a95e79..857b4cc4a8a3 100644 --- a/services/panorama/pom.xml +++ b/services/panorama/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT panorama AWS Java SDK :: Services :: Panorama diff --git a/services/partnercentralchannel/pom.xml b/services/partnercentralchannel/pom.xml index 12e44a0f1b65..bcabb3b0bced 100644 --- a/services/partnercentralchannel/pom.xml +++ b/services/partnercentralchannel/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT partnercentralchannel AWS Java SDK :: Services :: Partner Central Channel diff --git a/services/partnercentralselling/pom.xml b/services/partnercentralselling/pom.xml index 9e97a4e97805..275d2aeb8bc7 100644 --- a/services/partnercentralselling/pom.xml +++ b/services/partnercentralselling/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT partnercentralselling AWS Java SDK :: Services :: Partner Central Selling diff --git a/services/paymentcryptography/pom.xml b/services/paymentcryptography/pom.xml index fa7830512a93..3a10ef62f6ad 100644 --- a/services/paymentcryptography/pom.xml +++ b/services/paymentcryptography/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT paymentcryptography AWS Java SDK :: Services :: Payment Cryptography diff --git a/services/paymentcryptographydata/pom.xml b/services/paymentcryptographydata/pom.xml index 2205abc23b27..e7f486e0a86d 100644 --- a/services/paymentcryptographydata/pom.xml +++ b/services/paymentcryptographydata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT paymentcryptographydata AWS Java SDK :: Services :: Payment Cryptography Data diff --git a/services/pcaconnectorad/pom.xml b/services/pcaconnectorad/pom.xml index 944d7a3efcef..90a11bf43bef 100644 --- a/services/pcaconnectorad/pom.xml +++ b/services/pcaconnectorad/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT pcaconnectorad AWS Java SDK :: Services :: Pca Connector Ad diff --git a/services/pcaconnectorscep/pom.xml b/services/pcaconnectorscep/pom.xml index 108929c7f01c..a2d115269529 100644 --- a/services/pcaconnectorscep/pom.xml +++ b/services/pcaconnectorscep/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT pcaconnectorscep AWS Java SDK :: Services :: Pca Connector Scep diff --git a/services/pcs/pom.xml b/services/pcs/pom.xml index df06b0be0a24..f39f80e355dd 100644 --- a/services/pcs/pom.xml +++ b/services/pcs/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT pcs AWS Java SDK :: Services :: PCS diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index 4c1f9ddd6f92..35428666ffb4 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index caad01e79857..e7abf81677f3 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index 63f109b99c13..37d55aafbaf6 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index 0c4f134157ff..25776ed3220d 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index 18c83b98392d..972f913474bf 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index 576f1d5309bf..919e471ef1b5 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index 99121b19c38d..cd3104facf96 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/pinpointsmsvoicev2/pom.xml b/services/pinpointsmsvoicev2/pom.xml index e6ae9adef76a..2ea130fb94be 100644 --- a/services/pinpointsmsvoicev2/pom.xml +++ b/services/pinpointsmsvoicev2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT pinpointsmsvoicev2 AWS Java SDK :: Services :: Pinpoint SMS Voice V2 diff --git a/services/pipes/pom.xml b/services/pipes/pom.xml index 580e855d2081..f972246cbec6 100644 --- a/services/pipes/pom.xml +++ b/services/pipes/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT pipes AWS Java SDK :: Services :: Pipes diff --git a/services/polly/pom.xml b/services/polly/pom.xml index 6eff620d8996..334595835c09 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index 8f96048c4709..5ed4e473cc82 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index 1564edb4c91d..cc6d198ecce7 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 pricing diff --git a/services/proton/pom.xml b/services/proton/pom.xml index 3bdca9e237ed..d098d42002b5 100644 --- a/services/proton/pom.xml +++ b/services/proton/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT proton AWS Java SDK :: Services :: Proton diff --git a/services/qapps/pom.xml b/services/qapps/pom.xml index 68ca6feaed9c..9410885b7949 100644 --- a/services/qapps/pom.xml +++ b/services/qapps/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT qapps AWS Java SDK :: Services :: Q Apps diff --git a/services/qbusiness/pom.xml b/services/qbusiness/pom.xml index 44d05a045d76..476a9bd74822 100644 --- a/services/qbusiness/pom.xml +++ b/services/qbusiness/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT qbusiness AWS Java SDK :: Services :: Q Business diff --git a/services/qconnect/pom.xml b/services/qconnect/pom.xml index 731a2e011708..c89a641310a9 100644 --- a/services/qconnect/pom.xml +++ b/services/qconnect/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT qconnect AWS Java SDK :: Services :: Q Connect diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index 92d1eb7b438f..bbf64a410681 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index 54b4efd01354..68e7739ae1d0 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT ram AWS Java SDK :: Services :: RAM diff --git a/services/rbin/pom.xml b/services/rbin/pom.xml index 8db98fcfb8b1..a0a5072f7d92 100644 --- a/services/rbin/pom.xml +++ b/services/rbin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT rbin AWS Java SDK :: Services :: Rbin diff --git a/services/rds/pom.xml b/services/rds/pom.xml index 330beebd48d0..67480875f143 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index 4b105734b3a7..e5821ac55101 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index 818f9774998a..038ee1c86eef 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index 88e33d61b054..8736ae0f42b7 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/redshiftserverless/pom.xml b/services/redshiftserverless/pom.xml index 1c79e5fe4e59..27b61cf84310 100644 --- a/services/redshiftserverless/pom.xml +++ b/services/redshiftserverless/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT redshiftserverless AWS Java SDK :: Services :: Redshift Serverless diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index 879836c1bfba..3c58f7335300 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/repostspace/pom.xml b/services/repostspace/pom.xml index aeb869f261a0..24a59b91c74e 100644 --- a/services/repostspace/pom.xml +++ b/services/repostspace/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT repostspace AWS Java SDK :: Services :: Repostspace diff --git a/services/resiliencehub/pom.xml b/services/resiliencehub/pom.xml index aebc0fffff42..26ec72e2c3ff 100644 --- a/services/resiliencehub/pom.xml +++ b/services/resiliencehub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT resiliencehub AWS Java SDK :: Services :: Resiliencehub diff --git a/services/resourceexplorer2/pom.xml b/services/resourceexplorer2/pom.xml index 2fa4dc1763b8..53918763412f 100644 --- a/services/resourceexplorer2/pom.xml +++ b/services/resourceexplorer2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT resourceexplorer2 AWS Java SDK :: Services :: Resource Explorer 2 diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index 9a8852514ce3..72c3463a69c0 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index f4a77ed704aa..7fcf7ccb6eb1 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/rolesanywhere/pom.xml b/services/rolesanywhere/pom.xml index 1db4f598e3e3..599b97149823 100644 --- a/services/rolesanywhere/pom.xml +++ b/services/rolesanywhere/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT rolesanywhere AWS Java SDK :: Services :: Roles Anywhere diff --git a/services/route53/pom.xml b/services/route53/pom.xml index 7eab1c70a5bc..e65b11bf7732 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index 6ed2a23c8a64..4767553a76da 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53profiles/pom.xml b/services/route53profiles/pom.xml index 8ec9e97b2014..e4def893a8ac 100644 --- a/services/route53profiles/pom.xml +++ b/services/route53profiles/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT route53profiles AWS Java SDK :: Services :: Route53 Profiles diff --git a/services/route53recoverycluster/pom.xml b/services/route53recoverycluster/pom.xml index 9ee0268167e6..12e62142e10c 100644 --- a/services/route53recoverycluster/pom.xml +++ b/services/route53recoverycluster/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT route53recoverycluster AWS Java SDK :: Services :: Route53 Recovery Cluster diff --git a/services/route53recoverycontrolconfig/pom.xml b/services/route53recoverycontrolconfig/pom.xml index 857079fb0078..6bf5b34934c4 100644 --- a/services/route53recoverycontrolconfig/pom.xml +++ b/services/route53recoverycontrolconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT route53recoverycontrolconfig AWS Java SDK :: Services :: Route53 Recovery Control Config diff --git a/services/route53recoveryreadiness/pom.xml b/services/route53recoveryreadiness/pom.xml index 4b9f8bc9e629..0bf08f083140 100644 --- a/services/route53recoveryreadiness/pom.xml +++ b/services/route53recoveryreadiness/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT route53recoveryreadiness AWS Java SDK :: Services :: Route53 Recovery Readiness diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index ae641d21dcbe..b5ef897085e7 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/rtbfabric/pom.xml b/services/rtbfabric/pom.xml index 0f05cf979e80..6dae06df7411 100644 --- a/services/rtbfabric/pom.xml +++ b/services/rtbfabric/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT rtbfabric AWS Java SDK :: Services :: RTB Fabric diff --git a/services/rum/pom.xml b/services/rum/pom.xml index 95e61054897e..0372f181c9e4 100644 --- a/services/rum/pom.xml +++ b/services/rum/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT rum AWS Java SDK :: Services :: RUM diff --git a/services/s3/pom.xml b/services/s3/pom.xml index 6aa8689c25cf..e5ea7fe6181e 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index 9ed1a69ec803..d35a6b4225ca 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index 38e5db54c0e1..f9a94e5a9773 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/s3tables/pom.xml b/services/s3tables/pom.xml index a059b58ccf1f..a17e79b18bf8 100644 --- a/services/s3tables/pom.xml +++ b/services/s3tables/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT s3tables AWS Java SDK :: Services :: S3 Tables diff --git a/services/s3vectors/pom.xml b/services/s3vectors/pom.xml index f02d710da480..077c51c45599 100644 --- a/services/s3vectors/pom.xml +++ b/services/s3vectors/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT s3vectors AWS Java SDK :: Services :: S3 Vectors diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index 3c1a7c88bfb6..3593673e81c6 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index 9b1f4945c477..0f56e8f659b1 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakeredge/pom.xml b/services/sagemakeredge/pom.xml index e6c4c3e0118b..e8ea0459f972 100644 --- a/services/sagemakeredge/pom.xml +++ b/services/sagemakeredge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT sagemakeredge AWS Java SDK :: Services :: Sagemaker Edge diff --git a/services/sagemakerfeaturestoreruntime/pom.xml b/services/sagemakerfeaturestoreruntime/pom.xml index a2406c6c20c9..882874857dd2 100644 --- a/services/sagemakerfeaturestoreruntime/pom.xml +++ b/services/sagemakerfeaturestoreruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT sagemakerfeaturestoreruntime AWS Java SDK :: Services :: Sage Maker Feature Store Runtime diff --git a/services/sagemakergeospatial/pom.xml b/services/sagemakergeospatial/pom.xml index ac579f0cffaa..404d7f59ec6d 100644 --- a/services/sagemakergeospatial/pom.xml +++ b/services/sagemakergeospatial/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT sagemakergeospatial AWS Java SDK :: Services :: Sage Maker Geospatial diff --git a/services/sagemakermetrics/pom.xml b/services/sagemakermetrics/pom.xml index 83f9ed0ab4b8..ee828751816b 100644 --- a/services/sagemakermetrics/pom.xml +++ b/services/sagemakermetrics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT sagemakermetrics AWS Java SDK :: Services :: Sage Maker Metrics diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index f795ae3beaad..f9e43bad42c4 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/sagemakerruntimehttp2/pom.xml b/services/sagemakerruntimehttp2/pom.xml index c8693be0297e..8cad92deb6be 100644 --- a/services/sagemakerruntimehttp2/pom.xml +++ b/services/sagemakerruntimehttp2/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT sagemakerruntimehttp2 AWS Java SDK :: Services :: Sage Maker Runtime HTTP2 diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index 15008c59cc63..5227517fa8c3 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/scheduler/pom.xml b/services/scheduler/pom.xml index 2cd24eb3351a..09d366e33d13 100644 --- a/services/scheduler/pom.xml +++ b/services/scheduler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT scheduler AWS Java SDK :: Services :: Scheduler diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index f171d4235250..6f6dab12308b 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index 1b788aed2aa6..0c1926d10943 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index e1d5e5febdd0..caa00f39a329 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/securityir/pom.xml b/services/securityir/pom.xml index 791dee59d988..83a308b08c51 100644 --- a/services/securityir/pom.xml +++ b/services/securityir/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT securityir AWS Java SDK :: Services :: Security IR diff --git a/services/securitylake/pom.xml b/services/securitylake/pom.xml index 44e418168e18..e896eb5f72e9 100644 --- a/services/securitylake/pom.xml +++ b/services/securitylake/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT securitylake AWS Java SDK :: Services :: Security Lake diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index e46948168f8e..d51822132268 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index a8499eecd4f0..42b3463d02e3 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicecatalogappregistry/pom.xml b/services/servicecatalogappregistry/pom.xml index a93242fd5403..b43af91b1dc6 100644 --- a/services/servicecatalogappregistry/pom.xml +++ b/services/servicecatalogappregistry/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT servicecatalogappregistry AWS Java SDK :: Services :: Service Catalog App Registry diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index 75d472cc9025..191eca2c7880 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index feef29d78c69..97782a370fa9 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index bb26f84a28b2..119da71cce55 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index 3741273b188f..7ed9acd5e6ab 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index 53b8ac7c1c95..981857c77e2a 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index 77434e0e3878..a8a4ec9dac83 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index 1644a095fc93..2a894cedde76 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT signer AWS Java SDK :: Services :: Signer diff --git a/services/signin/pom.xml b/services/signin/pom.xml index 1f49388fdb98..eada99ed416e 100644 --- a/services/signin/pom.xml +++ b/services/signin/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT signin AWS Java SDK :: Services :: Signin diff --git a/services/simspaceweaver/pom.xml b/services/simspaceweaver/pom.xml index 57c7a921d9af..bae6a0cb114d 100644 --- a/services/simspaceweaver/pom.xml +++ b/services/simspaceweaver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT simspaceweaver AWS Java SDK :: Services :: Sim Space Weaver diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index d5581803792f..53bb2b1c2111 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/snowdevicemanagement/pom.xml b/services/snowdevicemanagement/pom.xml index bada22ad8115..94a07327b960 100644 --- a/services/snowdevicemanagement/pom.xml +++ b/services/snowdevicemanagement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT snowdevicemanagement AWS Java SDK :: Services :: Snow Device Management diff --git a/services/sns/pom.xml b/services/sns/pom.xml index 60de9a8d36bb..86cdb61438b9 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/socialmessaging/pom.xml b/services/socialmessaging/pom.xml index 8f7b06a70416..be0919ec1018 100644 --- a/services/socialmessaging/pom.xml +++ b/services/socialmessaging/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT socialmessaging AWS Java SDK :: Services :: Social Messaging diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index 4d00eeece8a2..809b23fdc1db 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index 96954306a180..7b67b2f69962 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/ssmcontacts/pom.xml b/services/ssmcontacts/pom.xml index ef7efa90b1ac..a26837006c3b 100644 --- a/services/ssmcontacts/pom.xml +++ b/services/ssmcontacts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT ssmcontacts AWS Java SDK :: Services :: SSM Contacts diff --git a/services/ssmguiconnect/pom.xml b/services/ssmguiconnect/pom.xml index 0ce377dca391..ea288fcc1346 100644 --- a/services/ssmguiconnect/pom.xml +++ b/services/ssmguiconnect/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT ssmguiconnect AWS Java SDK :: Services :: SSM Gui Connect diff --git a/services/ssmincidents/pom.xml b/services/ssmincidents/pom.xml index adcd5918a891..148903e7df9c 100644 --- a/services/ssmincidents/pom.xml +++ b/services/ssmincidents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT ssmincidents AWS Java SDK :: Services :: SSM Incidents diff --git a/services/ssmquicksetup/pom.xml b/services/ssmquicksetup/pom.xml index b8907cd18604..4da6a4ebeb03 100644 --- a/services/ssmquicksetup/pom.xml +++ b/services/ssmquicksetup/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT ssmquicksetup AWS Java SDK :: Services :: SSM Quick Setup diff --git a/services/ssmsap/pom.xml b/services/ssmsap/pom.xml index 63948219fd38..04137c21af48 100644 --- a/services/ssmsap/pom.xml +++ b/services/ssmsap/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT ssmsap AWS Java SDK :: Services :: Ssm Sap diff --git a/services/sso/pom.xml b/services/sso/pom.xml index e023f72b3ca5..2f396a532a76 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index 90c90aa06b54..bf6384fbd305 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index 0271b1f91b83..b472086bc1e8 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index 261d54992ca9..e79ac304d9c8 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index c4c121244b31..9d5c2f8d6ca4 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT sts AWS Java SDK :: Services :: AWS STS diff --git a/services/supplychain/pom.xml b/services/supplychain/pom.xml index d9a9f36bdee4..a14cf8bf104b 100644 --- a/services/supplychain/pom.xml +++ b/services/supplychain/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT supplychain AWS Java SDK :: Services :: Supply Chain diff --git a/services/support/pom.xml b/services/support/pom.xml index 3552595fe6ce..f0b6b9bd21e0 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT support AWS Java SDK :: Services :: AWS Support diff --git a/services/supportapp/pom.xml b/services/supportapp/pom.xml index d2877ae85431..770838b9edd9 100644 --- a/services/supportapp/pom.xml +++ b/services/supportapp/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT supportapp AWS Java SDK :: Services :: Support App diff --git a/services/swf/pom.xml b/services/swf/pom.xml index 9d069d6e006b..f3dfcd6161ed 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index 73bead9b5c2f..46888d9dd67b 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/taxsettings/pom.xml b/services/taxsettings/pom.xml index 1cc7b91da579..7c27b9d4c60c 100644 --- a/services/taxsettings/pom.xml +++ b/services/taxsettings/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT taxsettings AWS Java SDK :: Services :: Tax Settings diff --git a/services/textract/pom.xml b/services/textract/pom.xml index e25912ba7bbf..86d43a01b882 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreaminfluxdb/pom.xml b/services/timestreaminfluxdb/pom.xml index 568a7ae7d9ca..f6cfb2872c69 100644 --- a/services/timestreaminfluxdb/pom.xml +++ b/services/timestreaminfluxdb/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT timestreaminfluxdb AWS Java SDK :: Services :: Timestream Influx DB diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index cb8b5932961f..1d0d8f833eca 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index 5df4fa63cb2b..95a3be2c48d9 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/tnb/pom.xml b/services/tnb/pom.xml index ab537883a258..0f517b03d9cf 100644 --- a/services/tnb/pom.xml +++ b/services/tnb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT tnb AWS Java SDK :: Services :: Tnb diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index 7ddeca1d6403..de8d06860eb3 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index 82f54a1e72c0..f83545ab09ad 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index 64182395333f..0e36fce021d9 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index 96cf161d4e7a..61219bf435ea 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 translate diff --git a/services/trustedadvisor/pom.xml b/services/trustedadvisor/pom.xml index 9817e180f09d..29a21cdc1bbd 100644 --- a/services/trustedadvisor/pom.xml +++ b/services/trustedadvisor/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT trustedadvisor AWS Java SDK :: Services :: Trusted Advisor diff --git a/services/verifiedpermissions/pom.xml b/services/verifiedpermissions/pom.xml index e3f591f6584b..d1172b39908d 100644 --- a/services/verifiedpermissions/pom.xml +++ b/services/verifiedpermissions/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT verifiedpermissions AWS Java SDK :: Services :: Verified Permissions diff --git a/services/voiceid/pom.xml b/services/voiceid/pom.xml index 36e671e6ffee..778af365b2ae 100644 --- a/services/voiceid/pom.xml +++ b/services/voiceid/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT voiceid AWS Java SDK :: Services :: Voice ID diff --git a/services/vpclattice/pom.xml b/services/vpclattice/pom.xml index ce4a906da112..c8e1e7c5c7e7 100644 --- a/services/vpclattice/pom.xml +++ b/services/vpclattice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT vpclattice AWS Java SDK :: Services :: VPC Lattice diff --git a/services/waf/pom.xml b/services/waf/pom.xml index 7c1a453d3e52..4e165805a023 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index 4e5941bb9f54..8eab7d9a8fb4 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/wellarchitected/pom.xml b/services/wellarchitected/pom.xml index de1161b1643e..32d82a5cd8a4 100644 --- a/services/wellarchitected/pom.xml +++ b/services/wellarchitected/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT wellarchitected AWS Java SDK :: Services :: Well Architected diff --git a/services/wisdom/pom.xml b/services/wisdom/pom.xml index 7e58c57213b7..d538f7e70b98 100644 --- a/services/wisdom/pom.xml +++ b/services/wisdom/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT wisdom AWS Java SDK :: Services :: Wisdom diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index aeb6d4877c53..6514614947c3 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index e93bfcc6cf70..a8fa2a827bc9 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index 5fa1a45610de..8c1f0db63a91 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index 6be16c8624ad..1975cd080458 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/workspacesinstances/pom.xml b/services/workspacesinstances/pom.xml index cc99b97d3eff..1d3811dcff20 100644 --- a/services/workspacesinstances/pom.xml +++ b/services/workspacesinstances/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT workspacesinstances AWS Java SDK :: Services :: Workspaces Instances diff --git a/services/workspacesthinclient/pom.xml b/services/workspacesthinclient/pom.xml index 3e53e90bdb44..f09ddd666715 100644 --- a/services/workspacesthinclient/pom.xml +++ b/services/workspacesthinclient/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT workspacesthinclient AWS Java SDK :: Services :: Work Spaces Thin Client diff --git a/services/workspacesweb/pom.xml b/services/workspacesweb/pom.xml index 1608025b7952..8171473ce0b7 100644 --- a/services/workspacesweb/pom.xml +++ b/services/workspacesweb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT workspacesweb AWS Java SDK :: Services :: Work Spaces Web diff --git a/services/xray/pom.xml b/services/xray/pom.xml index 71c27a280d53..efecf60765e2 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/architecture-tests/pom.xml b/test/architecture-tests/pom.xml index 310429773520..878a4fb8f331 100644 --- a/test/architecture-tests/pom.xml +++ b/test/architecture-tests/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT ../../pom.xml diff --git a/test/auth-tests/pom.xml b/test/auth-tests/pom.xml index fd7291b679fc..ce09ed4a350f 100644 --- a/test/auth-tests/pom.xml +++ b/test/auth-tests/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/bundle-logging-bridge-binding-test/pom.xml b/test/bundle-logging-bridge-binding-test/pom.xml index e884a78f4f9e..b741347aefab 100644 --- a/test/bundle-logging-bridge-binding-test/pom.xml +++ b/test/bundle-logging-bridge-binding-test/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/bundle-shading-tests/pom.xml b/test/bundle-shading-tests/pom.xml index d24acfba8a58..029a182f5764 100644 --- a/test/bundle-shading-tests/pom.xml +++ b/test/bundle-shading-tests/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index bb5112eb8def..6c9812ff14e3 100644 --- a/test/codegen-generated-classes-test/pom.xml +++ b/test/codegen-generated-classes-test/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT ../../pom.xml diff --git a/test/crt-unavailable-tests/pom.xml b/test/crt-unavailable-tests/pom.xml index 855a07e23d67..3314b4041bae 100644 --- a/test/crt-unavailable-tests/pom.xml +++ b/test/crt-unavailable-tests/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/http-client-benchmarks/pom.xml b/test/http-client-benchmarks/pom.xml index cd062541a915..884a7b6490a4 100644 --- a/test/http-client-benchmarks/pom.xml +++ b/test/http-client-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index 0c0f24ed5e70..423ae0b895d0 100644 --- a/test/http-client-tests/pom.xml +++ b/test/http-client-tests/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index 0c31b6e1d233..bcd622fe6430 100644 --- a/test/module-path-tests/pom.xml +++ b/test/module-path-tests/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/old-client-version-compatibility-test/pom.xml b/test/old-client-version-compatibility-test/pom.xml index 7ba4e23a732e..5c756c843cc5 100644 --- a/test/old-client-version-compatibility-test/pom.xml +++ b/test/old-client-version-compatibility-test/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT ../../pom.xml diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index 0974f789443b..d043b0d519b4 100644 --- a/test/protocol-tests-core/pom.xml +++ b/test/protocol-tests-core/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index b273be16dae9..8049dc1af8b6 100644 --- a/test/protocol-tests/pom.xml +++ b/test/protocol-tests/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/region-testing/pom.xml b/test/region-testing/pom.xml index 2247d659da28..eba70c3040b3 100644 --- a/test/region-testing/pom.xml +++ b/test/region-testing/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/ruleset-testing-core/pom.xml b/test/ruleset-testing-core/pom.xml index efc2dd2c6e76..e551dcaebce2 100644 --- a/test/ruleset-testing-core/pom.xml +++ b/test/ruleset-testing-core/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/s3-benchmarks/pom.xml b/test/s3-benchmarks/pom.xml index f718bf22de00..b88705c532f3 100644 --- a/test/s3-benchmarks/pom.xml +++ b/test/s3-benchmarks/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/s3-tests/pom.xml b/test/s3-tests/pom.xml index 53caf889ecb7..b00630bf0a88 100644 --- a/test/s3-tests/pom.xml +++ b/test/s3-tests/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index 9ba05055daaf..1b4c35451662 100644 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT ../../pom.xml diff --git a/test/sdk-native-image-test/pom.xml b/test/sdk-native-image-test/pom.xml index 0e35a9cc3196..b63c37f356f3 100644 --- a/test/sdk-native-image-test/pom.xml +++ b/test/sdk-native-image-test/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index 6ca663b8bfcf..23880e4ea871 100644 --- a/test/service-test-utils/pom.xml +++ b/test/service-test-utils/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index 8da878b8e393..cfb8ff3e72b3 100644 --- a/test/stability-tests/pom.xml +++ b/test/stability-tests/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index d68aad519b39..bcb3f0d370b6 100644 --- a/test/test-utils/pom.xml +++ b/test/test-utils/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index f311f758e1bd..88208958385d 100644 --- a/test/tests-coverage-reporting/pom.xml +++ b/test/tests-coverage-reporting/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/v2-migration-tests/pom.xml b/test/v2-migration-tests/pom.xml index 56d1759d5f97..6f5ca395093e 100644 --- a/test/v2-migration-tests/pom.xml +++ b/test/v2-migration-tests/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT ../.. diff --git a/third-party/pom.xml b/third-party/pom.xml index 45128030ea5e..7765c503b97f 100644 --- a/third-party/pom.xml +++ b/third-party/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT third-party diff --git a/third-party/third-party-jackson-core/pom.xml b/third-party/third-party-jackson-core/pom.xml index 46ed45852293..2e9106b407a4 100644 --- a/third-party/third-party-jackson-core/pom.xml +++ b/third-party/third-party-jackson-core/pom.xml @@ -20,7 +20,7 @@ third-party software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 diff --git a/third-party/third-party-jackson-dataformat-cbor/pom.xml b/third-party/third-party-jackson-dataformat-cbor/pom.xml index e4fc14e46c3f..bf09877858cf 100644 --- a/third-party/third-party-jackson-dataformat-cbor/pom.xml +++ b/third-party/third-party-jackson-dataformat-cbor/pom.xml @@ -20,7 +20,7 @@ third-party software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 diff --git a/third-party/third-party-slf4j-api/pom.xml b/third-party/third-party-slf4j-api/pom.xml index 87d491d7ff4d..66e4462e9d66 100644 --- a/third-party/third-party-slf4j-api/pom.xml +++ b/third-party/third-party-slf4j-api/pom.xml @@ -20,7 +20,7 @@ third-party software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 diff --git a/utils-lite/pom.xml b/utils-lite/pom.xml index 824bce2a0a7b..bc0f50e64541 100644 --- a/utils-lite/pom.xml +++ b/utils-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT utils-lite AWS Java SDK :: Utils Lite diff --git a/utils/pom.xml b/utils/pom.xml index 518872cd852e..8b95c86bc1a8 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 diff --git a/v2-migration/pom.xml b/v2-migration/pom.xml index cdefa8469240..4597bc0e3004 100644 --- a/v2-migration/pom.xml +++ b/v2-migration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.39.6-SNAPSHOT + 2.40.0-SNAPSHOT ../pom.xml From 03d5f53b264ed7c297463b3b891bd51db2795a38 Mon Sep 17 00:00:00 2001 From: Olivier Lepage-Applin Date: Mon, 1 Dec 2025 09:54:52 -0500 Subject: [PATCH 8/9] Revert "minor version bump to 2.40.0 (#6597)" This reverts commit e8a307033d1bf19839fddd4a7117c5fc371f3679. --- .changes/{2.39.x => }/2.39.0.json | 0 .changes/{2.39.x => }/2.39.1.json | 0 .changes/{2.39.x => }/2.39.2.json | 0 .changes/{2.39.x => }/2.39.3.json | 0 .changes/{2.39.x => }/2.39.4.json | 0 .changes/{2.39.x => }/2.39.5.json | 0 CHANGELOG.md | 495 +++++++++++++++++ archetypes/archetype-app-quickstart/pom.xml | 2 +- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/archetype-tools/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/pom.xml | 2 +- bundle-logging-bridge/pom.xml | 2 +- bundle-sdk/pom.xml | 2 +- bundle/pom.xml | 2 +- changelogs/2.39.x-CHANGELOG.md | 496 ------------------ codegen-lite-maven-plugin/pom.xml | 2 +- codegen-lite/pom.xml | 2 +- codegen-maven-plugin/pom.xml | 2 +- codegen/pom.xml | 2 +- core/annotations/pom.xml | 2 +- core/arns/pom.xml | 2 +- core/auth-crt/pom.xml | 2 +- core/auth/pom.xml | 2 +- core/aws-core/pom.xml | 2 +- core/checksums-spi/pom.xml | 2 +- core/checksums/pom.xml | 2 +- core/crt-core/pom.xml | 2 +- core/endpoints-spi/pom.xml | 2 +- core/http-auth-aws-crt/pom.xml | 2 +- core/http-auth-aws-eventstream/pom.xml | 2 +- core/http-auth-aws/pom.xml | 2 +- core/http-auth-spi/pom.xml | 2 +- core/http-auth/pom.xml | 2 +- core/identity-spi/pom.xml | 2 +- core/imds/pom.xml | 2 +- core/json-utils/pom.xml | 2 +- core/metrics-spi/pom.xml | 2 +- core/pom.xml | 2 +- core/profiles/pom.xml | 2 +- core/protocols/aws-cbor-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/protocols/smithy-rpcv2-protocol/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/retries-spi/pom.xml | 2 +- core/retries/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/apache5-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- .../cloudwatch-metric-publisher/pom.xml | 2 +- .../emf-metric-logging-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/iam-policy-builder/pom.xml | 2 +- services-custom/pom.xml | 2 +- .../s3-event-notifications/pom.xml | 2 +- services-custom/s3-transfer-manager/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/account/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/aiops/pom.xml | 2 +- services/amp/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/amplifybackend/pom.xml | 2 +- services/amplifyuibuilder/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appconfigdata/pom.xml | 2 +- services/appfabric/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/appintegrations/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationcostprofiler/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/applicationsignals/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/apprunner/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/arcregionswitch/pom.xml | 2 +- services/arczonalshift/pom.xml | 2 +- services/artifact/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/auditmanager/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/b2bi/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/backupgateway/pom.xml | 2 +- services/backupsearch/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/bcmdashboards/pom.xml | 2 +- services/bcmdataexports/pom.xml | 2 +- services/bcmpricingcalculator/pom.xml | 2 +- services/bcmrecommendedactions/pom.xml | 2 +- services/bedrock/pom.xml | 2 +- services/bedrockagent/pom.xml | 2 +- services/bedrockagentcore/pom.xml | 2 +- services/bedrockagentcorecontrol/pom.xml | 2 +- services/bedrockagentruntime/pom.xml | 2 +- services/bedrockdataautomation/pom.xml | 2 +- services/bedrockdataautomationruntime/pom.xml | 2 +- services/bedrockruntime/pom.xml | 2 +- services/billing/pom.xml | 2 +- services/billingconductor/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chatbot/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/chimesdkidentity/pom.xml | 2 +- services/chimesdkmediapipelines/pom.xml | 2 +- services/chimesdkmeetings/pom.xml | 2 +- services/chimesdkmessaging/pom.xml | 2 +- services/chimesdkvoice/pom.xml | 2 +- services/cleanrooms/pom.xml | 2 +- services/cleanroomsml/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/cloudcontrol/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/pom.xml | 2 +- services/cloudfrontkeyvaluestore/pom.xml | 2 +- services/cloudhsm/pom.xml | 2 +- services/cloudhsmv2/pom.xml | 2 +- services/cloudsearch/pom.xml | 2 +- services/cloudsearchdomain/pom.xml | 2 +- services/cloudtrail/pom.xml | 2 +- services/cloudtraildata/pom.xml | 2 +- services/cloudwatch/pom.xml | 2 +- services/cloudwatchevents/pom.xml | 2 +- services/cloudwatchlogs/pom.xml | 2 +- services/codeartifact/pom.xml | 2 +- services/codebuild/pom.xml | 2 +- services/codecatalyst/pom.xml | 2 +- services/codecommit/pom.xml | 2 +- services/codeconnections/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codegurusecurity/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/computeoptimizerautomation/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectcampaigns/pom.xml | 2 +- services/connectcampaignsv2/pom.xml | 2 +- services/connectcases/pom.xml | 2 +- services/connectcontactlens/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/controlcatalog/pom.xml | 2 +- services/controltower/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/pom.xml | 2 +- services/costoptimizationhub/pom.xml | 2 +- services/customerprofiles/pom.xml | 2 +- services/databasemigration/pom.xml | 2 +- services/databrew/pom.xml | 2 +- services/dataexchange/pom.xml | 2 +- services/datapipeline/pom.xml | 2 +- services/datasync/pom.xml | 2 +- services/datazone/pom.xml | 2 +- services/dax/pom.xml | 2 +- services/deadline/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/devopsguru/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/directoryservicedata/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/pom.xml | 2 +- services/docdbelastic/pom.xml | 2 +- services/drs/pom.xml | 2 +- services/dsql/pom.xml | 2 +- services/dynamodb/pom.xml | 2 +- services/ebs/pom.xml | 2 +- services/ec2/pom.xml | 2 +- services/ec2instanceconnect/pom.xml | 2 +- services/ecr/pom.xml | 2 +- services/ecrpublic/pom.xml | 2 +- services/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/pom.xml | 2 +- services/eksauth/pom.xml | 2 +- services/elasticache/pom.xml | 2 +- services/elasticbeanstalk/pom.xml | 2 +- services/elasticloadbalancing/pom.xml | 2 +- services/elasticloadbalancingv2/pom.xml | 2 +- services/elasticsearch/pom.xml | 2 +- services/elastictranscoder/pom.xml | 2 +- services/emr/pom.xml | 2 +- services/emrcontainers/pom.xml | 2 +- services/emrserverless/pom.xml | 2 +- services/entityresolution/pom.xml | 2 +- services/eventbridge/pom.xml | 2 +- services/evidently/pom.xml | 2 +- services/evs/pom.xml | 2 +- services/finspace/pom.xml | 2 +- services/finspacedata/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fis/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/freetier/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/gameliftstreams/pom.xml | 2 +- services/geomaps/pom.xml | 2 +- services/geoplaces/pom.xml | 2 +- services/georoutes/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/grafana/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/greengrassv2/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/healthlake/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/inspector2/pom.xml | 2 +- services/inspectorscan/pom.xml | 2 +- services/internetmonitor/pom.xml | 2 +- services/invoicing/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotdeviceadvisor/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotfleetwise/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotmanagedintegrations/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/iottwinmaker/pom.xml | 2 +- services/iotwireless/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/ivschat/pom.xml | 2 +- services/ivsrealtime/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kafkaconnect/pom.xml | 2 +- services/kendra/pom.xml | 2 +- services/kendraranking/pom.xml | 2 +- services/keyspaces/pom.xml | 2 +- services/keyspacesstreams/pom.xml | 2 +- services/kinesis/pom.xml | 2 +- services/kinesisanalytics/pom.xml | 2 +- services/kinesisanalyticsv2/pom.xml | 2 +- services/kinesisvideo/pom.xml | 2 +- services/kinesisvideoarchivedmedia/pom.xml | 2 +- services/kinesisvideomedia/pom.xml | 2 +- services/kinesisvideosignaling/pom.xml | 2 +- services/kinesisvideowebrtcstorage/pom.xml | 2 +- services/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/launchwizard/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexmodelsv2/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/lexruntimev2/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- .../licensemanagerlinuxsubscriptions/pom.xml | 2 +- .../licensemanagerusersubscriptions/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/location/pom.xml | 2 +- services/lookoutequipment/pom.xml | 2 +- services/m2/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/mailmanager/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/managedblockchainquery/pom.xml | 2 +- services/marketplaceagreement/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplacedeployment/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/marketplacereporting/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagev2/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/medicalimaging/pom.xml | 2 +- services/memorydb/pom.xml | 2 +- services/mgn/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/migrationhuborchestrator/pom.xml | 2 +- services/migrationhubrefactorspaces/pom.xml | 2 +- services/migrationhubstrategy/pom.xml | 2 +- services/mpa/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/mwaa/pom.xml | 2 +- services/mwaaserverless/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/neptunedata/pom.xml | 2 +- services/neptunegraph/pom.xml | 2 +- services/networkfirewall/pom.xml | 2 +- services/networkflowmonitor/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/networkmonitor/pom.xml | 2 +- services/notifications/pom.xml | 2 +- services/notificationscontacts/pom.xml | 2 +- services/oam/pom.xml | 2 +- services/observabilityadmin/pom.xml | 2 +- services/odb/pom.xml | 2 +- services/omics/pom.xml | 2 +- services/opensearch/pom.xml | 2 +- services/opensearchserverless/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/osis/pom.xml | 2 +- services/outposts/pom.xml | 2 +- services/panorama/pom.xml | 2 +- services/partnercentralchannel/pom.xml | 2 +- services/partnercentralselling/pom.xml | 2 +- services/paymentcryptography/pom.xml | 2 +- services/paymentcryptographydata/pom.xml | 2 +- services/pcaconnectorad/pom.xml | 2 +- services/pcaconnectorscep/pom.xml | 2 +- services/pcs/pom.xml | 2 +- services/personalize/pom.xml | 2 +- services/personalizeevents/pom.xml | 2 +- services/personalizeruntime/pom.xml | 2 +- services/pi/pom.xml | 2 +- services/pinpoint/pom.xml | 2 +- services/pinpointemail/pom.xml | 2 +- services/pinpointsmsvoice/pom.xml | 2 +- services/pinpointsmsvoicev2/pom.xml | 2 +- services/pipes/pom.xml | 2 +- services/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/proton/pom.xml | 2 +- services/qapps/pom.xml | 2 +- services/qbusiness/pom.xml | 2 +- services/qconnect/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rbin/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/redshiftserverless/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/repostspace/pom.xml | 2 +- services/resiliencehub/pom.xml | 2 +- services/resourceexplorer2/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/rolesanywhere/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53profiles/pom.xml | 2 +- services/route53recoverycluster/pom.xml | 2 +- services/route53recoverycontrolconfig/pom.xml | 2 +- services/route53recoveryreadiness/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/rtbfabric/pom.xml | 2 +- services/rum/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/s3tables/pom.xml | 2 +- services/s3vectors/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakeredge/pom.xml | 2 +- services/sagemakerfeaturestoreruntime/pom.xml | 2 +- services/sagemakergeospatial/pom.xml | 2 +- services/sagemakermetrics/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/sagemakerruntimehttp2/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/scheduler/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/pom.xml | 2 +- services/securityir/pom.xml | 2 +- services/securitylake/pom.xml | 2 +- .../serverlessapplicationrepository/pom.xml | 2 +- services/servicecatalog/pom.xml | 2 +- services/servicecatalogappregistry/pom.xml | 2 +- services/servicediscovery/pom.xml | 2 +- services/servicequotas/pom.xml | 2 +- services/ses/pom.xml | 2 +- services/sesv2/pom.xml | 2 +- services/sfn/pom.xml | 2 +- services/shield/pom.xml | 2 +- services/signer/pom.xml | 2 +- services/signin/pom.xml | 2 +- services/simspaceweaver/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/snowdevicemanagement/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/socialmessaging/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/pom.xml | 2 +- services/ssmcontacts/pom.xml | 2 +- services/ssmguiconnect/pom.xml | 2 +- services/ssmincidents/pom.xml | 2 +- services/ssmquicksetup/pom.xml | 2 +- services/ssmsap/pom.xml | 2 +- services/sso/pom.xml | 2 +- services/ssoadmin/pom.xml | 2 +- services/ssooidc/pom.xml | 2 +- services/storagegateway/pom.xml | 2 +- services/sts/pom.xml | 2 +- services/supplychain/pom.xml | 2 +- services/support/pom.xml | 2 +- services/supportapp/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/taxsettings/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreaminfluxdb/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/tnb/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/trustedadvisor/pom.xml | 2 +- services/verifiedpermissions/pom.xml | 2 +- services/voiceid/pom.xml | 2 +- services/vpclattice/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/wellarchitected/pom.xml | 2 +- services/wisdom/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/workspacesinstances/pom.xml | 2 +- services/workspacesthinclient/pom.xml | 2 +- services/workspacesweb/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/architecture-tests/pom.xml | 2 +- test/auth-tests/pom.xml | 2 +- .../pom.xml | 2 +- test/bundle-shading-tests/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/crt-unavailable-tests/pom.xml | 2 +- test/http-client-benchmarks/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- .../pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/region-testing/pom.xml | 2 +- test/ruleset-testing-core/pom.xml | 2 +- test/s3-benchmarks/pom.xml | 2 +- test/s3-tests/pom.xml | 2 +- test/sdk-benchmarks/pom.xml | 2 +- test/sdk-native-image-test/pom.xml | 2 +- test/service-test-utils/pom.xml | 2 +- test/stability-tests/pom.xml | 2 +- test/test-utils/pom.xml | 2 +- test/tests-coverage-reporting/pom.xml | 2 +- test/v2-migration-tests/pom.xml | 2 +- third-party/pom.xml | 2 +- third-party/third-party-jackson-core/pom.xml | 2 +- .../pom.xml | 2 +- third-party/third-party-slf4j-api/pom.xml | 2 +- utils-lite/pom.xml | 2 +- utils/pom.xml | 2 +- v2-migration/pom.xml | 2 +- 510 files changed, 997 insertions(+), 998 deletions(-) rename .changes/{2.39.x => }/2.39.0.json (100%) rename .changes/{2.39.x => }/2.39.1.json (100%) rename .changes/{2.39.x => }/2.39.2.json (100%) rename .changes/{2.39.x => }/2.39.3.json (100%) rename .changes/{2.39.x => }/2.39.4.json (100%) rename .changes/{2.39.x => }/2.39.5.json (100%) delete mode 100644 changelogs/2.39.x-CHANGELOG.md diff --git a/.changes/2.39.x/2.39.0.json b/.changes/2.39.0.json similarity index 100% rename from .changes/2.39.x/2.39.0.json rename to .changes/2.39.0.json diff --git a/.changes/2.39.x/2.39.1.json b/.changes/2.39.1.json similarity index 100% rename from .changes/2.39.x/2.39.1.json rename to .changes/2.39.1.json diff --git a/.changes/2.39.x/2.39.2.json b/.changes/2.39.2.json similarity index 100% rename from .changes/2.39.x/2.39.2.json rename to .changes/2.39.2.json diff --git a/.changes/2.39.x/2.39.3.json b/.changes/2.39.3.json similarity index 100% rename from .changes/2.39.x/2.39.3.json rename to .changes/2.39.3.json diff --git a/.changes/2.39.x/2.39.4.json b/.changes/2.39.4.json similarity index 100% rename from .changes/2.39.x/2.39.4.json rename to .changes/2.39.4.json diff --git a/.changes/2.39.x/2.39.5.json b/.changes/2.39.5.json similarity index 100% rename from .changes/2.39.x/2.39.5.json rename to .changes/2.39.5.json diff --git a/CHANGELOG.md b/CHANGELOG.md index a9233d91ad29..59df3ee901dc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1 +1,496 @@ #### 👋 _Looking for changelogs for older versions? You can find them in the [changelogs](./changelogs) directory._ +# __2.39.5__ __2025-11-26__ +## __AWS Compute Optimizer__ + - ### Features + - Compute Optimizer now identifies idle NAT Gateway resources for cost optimization based on traffic patterns and backup configuration analysis. Access recommendations via the GetIdleRecommendations API. + +## __Amazon Bedrock Runtime__ + - ### Features + - Bedrock Runtime Reserved Service Support + +## __Apache5 HTTP Client (Preview)__ + - ### Bugfixes + - Fix bug where Basic proxy authentication fails with credentials not found. + - Fix bug where preemptive Basic authentication was not honored for proxies. Similar to fix for Apache 4.x in [#6333](https://github.com/aws/aws-sdk-java-v2/issues/6333). + +## __Cost Optimization Hub__ + - ### Features + - This release enables AWS Cost Optimization Hub to show cost optimization recommendations for NAT Gateway. + +## __s3__ + - ### Features + - Add CRT shouldStream config as CRT_MEMORY_BUFFER_DISABLED SDK advanced client option + +# __2.39.4__ __2025-11-25__ +## __AWS Network Firewall__ + - ### Features + - Network Firewall release of the Proxy feature. + +## __AWS Organizations__ + - ### Features + - Add support for policy operations on the S3_POLICY and BEDROCK_POLICY policy type. + +## __AWS SDK for Java v2__ + - ### Features + - Updated endpoint and partition metadata. + +## __Amazon DynamoDB Enhanced Client__ + - ### Features + - Add support for GSI composite key to handle up to 4 partition and 4 sort keys + +## __Amazon Elastic Compute Cloud__ + - ### Features + - This release adds support to view Network firewall proxy appliances attached to an existing NAT Gateway via DescribeNatGateways API NatGatewayAttachedAppliance structure. + +## __Amazon Route 53__ + - ### Features + - Adds support for new route53 feature: accelerated recovery. + +# __2.39.3__ __2025-11-24__ +## __Amazon CloudFront__ + - ### Features + - Add TrustStore, ConnectionFunction APIs to CloudFront SDK + +## __Amazon CloudWatch Logs__ + - ### Features + - New CloudWatch Logs feature - LogGroup Deletion Protection, a capability that allows customers to safeguard their critical CloudWatch log groups from accidental or unintended deletion. + +# __2.39.2__ __2025-11-21__ +## __AWS CloudFormation__ + - ### Features + - Adds the DependsOn field to the AutoDeployment configuration parameter for CreateStackSet, UpdateStackSet, and DescribeStackSet APIs, allowing users to set and read auto-deployment dependencies between StackSets + +## __AWS Control Tower__ + - ### Features + - The manifest field is now optional for the AWS Control Tower CreateLandingZone and UpdateLandingZone APIs for Landing Zone version 4.0 + +## __AWS Elemental MediaPackage v2__ + - ### Features + - Adds support for excluding session key tags from HLS multivariant playlists + +## __AWS Invoicing__ + - ### Features + - Added the CreateProcurementPortalPreference, GetProcurementPortalPreference, PutProcurementPortalPreference, UpdateProcurementPortalPreferenceStatus, ListProcurementPortalPreferences and DeleteProcurementPortalPreference APIs for procurement portal preference management. + +## __AWS Key Management Service__ + - ### Features + - Support for on-demand rotation of AWS KMS Multi-Region keys with imported key material + +## __AWS Lambda__ + - ### Features + - Launching Enhanced Error Handling and ESM Grouping capabilities for Kafka ESMs + +## __AWS Marketplace Entitlement Service__ + - ### Features + - Endpoint update for new region + +## __AWS Organizations__ + - ### Features + - Add support for policy operations on the UPGRADE_ROLLOUT_POLICY policy type. + +## __AWS SDK for Java v2__ + - ### Features + - Updated endpoint and partition metadata. + +## __AWS Transfer Family__ + - ### Features + - Adds support for creating Webapps accessible from a VPC. + +## __AWSMarketplace Metering__ + - ### Features + - Endpoint update for new region + +## __Amazon API Gateway__ + - ### Features + - API Gateway supports VPC link V2 for REST APIs. + +## __Amazon Athena__ + - ### Features + - Introduces Spark workgroup features including log persistence, S3/CloudWatch delivery, UI and History Server APIs, and SparkConnect 3.5.6 support. Adds DPU usage limits at workgroup and query levels as well as DPU usage tracking for Capacity Reservation queries to optimize performance and costs. + +## __Amazon Bedrock__ + - ### Features + - Add support to automatically enforce safeguards across accounts within an AWS Organization. + +## __Amazon Bedrock AgentCore Control__ + - ### Features + - Support for agentcore gateway interceptor configurations and NONE authorizer type + +## __Amazon Bedrock Runtime__ + - ### Features + - Add support to automatically enforce safeguards across accounts within an AWS Organization. + +## __Amazon Connect Service__ + - ### Features + - New APIs to support aliases and versions for ContactFlowModule. Updated ContactFlowModule APIs to support custom blocks. + +## __Amazon Elastic Compute Cloud__ + - ### Features + - This release adds a new capability to create and manage interruptible EC2 Capacity Reservations. + +## __Amazon Elastic Container Registry__ + - ### Features + - Add support for ECR managed signing + +## __Amazon Elastic Kubernetes Service__ + - ### Features + - Adds support for controlPlaneScalingConfig on EKS Clusters. + +## __Amazon Kinesis Video Streams__ + - ### Features + - This release adds support for Tiered Storage + +## __Amazon Lex Model Building V2__ + - ### Features + - Adds support for Intent Disambiguation, allowing resolution of ambiguous user inputs when multiple intents match by presenting clarifying questions to users. Also adds Speech Detection Sensitivity configuration for optimizing voice activity detection sensitivity levels in various noise environments. + +## __Amazon Q Connect__ + - ### Features + - This release introduces two new messaging channel subtypes: Push, WhatsApp, under MessageTemplate which is a resource in Amazon Q in Connect. + +## __Amazon QuickSight__ + - ### Features + - Amazon Quick Suite now supports QuickChat as an embedding type when calling the GenerateEmbedUrlForRegisteredUser API, enabling developers to embed conversational AI agents directly into their applications. + +## __Amazon Redshift__ + - ### Features + - Added support for Amazon Redshift Federated Permissions and AWS IAM Identity Center trusted identity propagation. + +## __Amazon Relational Database Service__ + - ### Features + - Add support for Upgrade Rollout Order + +## __Amazon SageMaker Runtime HTTP2__ + - ### Features + - Add support for bidirectional streaming invocations on SageMaker AI real-time endpoints + +## __Amazon SageMaker Service__ + - ### Features + - Enhanced SageMaker HyperPod instance groups with support for MinInstanceCount, CapacityRequirements (Spot/On-Demand), and KubernetesConfig (labels and taints). Also Added speculative decoding and MaxInstanceCount for model optimization jobs. + +## __Amazon Simple Email Service__ + - ### Features + - Added support for new SES regions - Asia Pacific (Malaysia) and Canada (Calgary) + +## __Compute Optimizer Automation__ + - ### Features + - Initial release of AWS Compute Optimizer Automation. Create automation rules to implement recommended actions on a recurring schedule based on your specified criteria. Supported actions include: snapshot and delete unattached EBS volumes and upgrade volume types to the latest generation. + +## __Elastic Load Balancing__ + - ### Features + - This release adds the health check log feature in ALB, allowing customers to send detailed target health check log data directly to their designated Amazon S3 bucket. + +## __MailManager__ + - ### Features + - Add support for resources in the aws-eusc partition. + +## __Redshift Serverless__ + - ### Features + - Added UpdateLakehouseConfiguration API to manage Amazon Redshift Federated Permissions and AWS IAM Identity Center trusted identity propagation for namespaces. + +## __Runtime for Amazon Bedrock Data Automation__ + - ### Features + - Adding new fields to GetDataAutomationStatus: jobSubmissionTime, jobCompletionTime, and jobDurationInSeconds + +## __Security Incident Response__ + - ### Features + - Add ListInvestigations and SendFeedback APIs to support SecurityIR AI agents + +## __odb__ + - ### Features + - Adds AssociateIamRoleToResource and DisassociateIamRoleFromResource APIs for managing IAM roles. Enhances CreateOdbNetwork and UpdateOdbNetwork APIs with KMS, STS, and cross-region S3 parameters. Adds OCI identity domain support to InitializeService API. + +# __2.39.1__ __2025-11-20__ +## __AWS Budgets__ + - ### Features + - Add BillingViewHealthStatusException to DescribeBudgetPerformanceHistory and ServiceQuotaExceededException to UpdateBudget for improved error handling with Billing Views. + +## __AWS CloudTrail__ + - ### Features + - AWS launches CloudTrail aggregated events to simplify monitoring of data events at scale. This feature delivers both granular and summarized data events for resources like S3/Lambda, helping security teams identify patterns without custom aggregation logic. + +## __AWS DataSync__ + - ### Features + - The partition value "aws-eusc" is now permitted for ARN (Amazon Resource Name) fields. + +## __AWS Database Migration Service__ + - ### Features + - Added support for customer-managed KMS key (CMK) for encryption for import private key certificate. Additionally added Amazon SageMaker Lakehouse endpoint used for zero-ETL integrations with data warehouses. + +## __AWS Device Farm__ + - ### Features + - Add support for environment variables and an IAM execution role. + +## __AWS Glue__ + - ### Features + - Added FunctionType parameter to Glue GetuserDefinedFunctions. + +## __AWS Lake Formation__ + - ### Features + - Added ServiceIntegrations as a request parameter for CreateLakeFormationIdentityCenterConfigurationRequest and UpdateLakeFormationIdentityCenterConfigurationRequest and response parameter for DescribeLakeFormationIdentityCenterConfigurationResponse + +## __AWS License Manager__ + - ### Features + - Added cross-account resource aggregation via license asset groups and expiry tracking for Self-Managed Licenses. Extended Org-Wide View to Self-Managed Licenses, added reporting for license asset groups, and removed Athena/Glue dependencies for cross-account resource discovery in commercial regions. + +## __AWS Network Manager__ + - ### Features + - This release adds support for Cloud WAN Routing Policy providing customers sophisticated routing controls to better manage their global networks + +## __AWS Organizations__ + - ### Features + - Added new APIs for Billing Transfer, new policy type INSPECTOR_POLICY, and allow an account to transfer between organizations + +## __AWS SDK for Java v2__ + - ### Features + - Updated endpoint and partition metadata. + +## __AWS SecurityHub__ + - ### Features + - Release Findings and Resources Trends APIs- GetFindingsTrendsV2 and GetResourcesTrendsV2. This supports time-series aggregated counts with composite filtering for 1-year of historical data analysis of Findings and Resources. + +## __AWS Signin__ + - ### Features + - Add the LoginCredentialsProvider which allows use of AWS credentials vended by AWS Sign-In that correspond to an AWS Console session. AWS Sign-In credentials will be used automatically by the Credential resolution chain when `login_session` is set in the profile. + +## __Amazon Aurora DSQL__ + - ### Features + - Added clusterVpcEndpoint field to GetVpcEndpointServiceName API response, returning the VPC connection endpoint for the cluster + +## __Amazon Bedrock AgentCore__ + - ### Features + - Bedrock AgentCore Memory release for redriving memory extraction jobs (StartMemoryExtractionJob and ListMemoryExtractionJob) + +## __Amazon CloudFront__ + - ### Features + - This release adds support for bring your own IP (BYOIP) to CloudFront's CreateAnycastIpList API through an optional IpamCidrConfigs field. + +## __Amazon CloudWatch Application Signals__ + - ### Features + - Amazon CloudWatch Application Signals now supports un-instrumented services discovery, cross-account views, and change history, helping SRE and DevOps teams monitor and troubleshoot their large-scale distributed applications. + +## __Amazon Connect Service__ + - ### Features + - Add optional ability to exclude users from send notification actions for Contact Lens Rules. + +## __Amazon EC2 Container Service__ + - ### Features + - Launching Amazon ECS Express Mode - a new feature that enables developers to quickly launch highly available, scalable containerized applications with a single command. + +## __Amazon EMR__ + - ### Features + - Add support for configuring S3 destination for step logs on a per-step basis. + +## __Amazon Elastic Compute Cloud__ + - ### Features + - This release adds support for multiple features including: VPC Encryption Control for the status of traffic flow; S2S VPN BGP Logging; TGW Flexible Costs; IPAM allocation of static IPs from IPAM pools to CF Anycast IP lists used on CloudFront distribution; and EBS Volume Integration with Recycle Bin + +## __Amazon Kinesis__ + - ### Features + - Kinesis Data Streams now supports up to 50 Enhance Fan-out consumers for On-demand Advantage Streams. On-demand Standard and Provisioned streams will continue with the existing limit of 20 consumers for Enhanced Fan-out. + +## __Amazon QuickSight__ + - ### Features + - Introducing comprehensive theme styling controls. New features include border customization (radius, width, color), flexible padding controls, background styling for cards and sheets, centralized typography management, and visual-level override support across layouts. + +## __Amazon Recycle Bin__ + - ### Features + - Add support for EBS volume in Recycle Bin + +## __Amazon Relational Database Service__ + - ### Features + - Add support for VPC Encryption Controls. + +## __Amazon SageMaker Service__ + - ### Features + - Added training plan support for inference endpoints. Added HyperPod task governance with accelerator partition-based quota allocation. Added BatchRebootClusterNodes and BatchReplaceClusterNodes APIs. Updated ListClusterNodes to include privateDnsHostName. + +## __Amazon Simple Storage Service__ + - ### Features + - Enable / Disable ABAC on a general purpose bucket. + +## __Auto Scaling__ + - ### Features + - This release adds support for three new features: 1) Image ID overrides in mixed instances policy, 2) Replace Root Volume - a new strategy for Instance Refresh, and 3) Instance Lifecycle Policy for enhanced instance lifecycle management. + +## __Braket__ + - ### Features + - Add support for Braket spending limits. + +## __Data Automation for Amazon Bedrock__ + - ### Features + - Added support for Synchronous project type and PII Detection and Redaction + +## __EC2 Image Builder__ + - ### Features + - EC2 Image Builder now enables the distribution of existing AMIs, retry distribution, and define distribution workflows. It also supports automatic versioning for recipes and components, allowing automatic version increments and dynamic referencing in pipelines. + +## __Elastic Load Balancing__ + - ### Features + - This release adds the target optimizer feature in ALB, enabling strict concurrency enforcement on targets. + +## __Redshift Data API Service__ + - ### Features + - Increasing the length limit of Statement Name from 500 to 2048. + +## __Runtime for Amazon Bedrock Data Automation__ + - ### Features + - Bedrock Data Automation Runtime Sync API + +# __2.39.0__ __2025-11-19__ +## __AWS Backup__ + - ### Features + - Amazon GuardDuty Malware Protection now supports AWS Backup, extending malware detection capabilities to EC2, EBS, and S3 backups. + +## __AWS Billing__ + - ### Features + - Added name filtering support to ListBillingViews API through the new names parameter to efficiently filter billing views by name. + +## __AWS Billing and Cost Management Pricing Calculator__ + - ### Features + - Add GroupSharingPreference, CostCategoryGroupSharingPreferenceArn, and CostCategoryGroupSharingPreferenceEffectiveDate to Bill Estimate. Add GroupSharingPreference and CostCategoryGroupSharingPreferenceArn to Bill Scenario. + +## __AWS CloudTrail__ + - ### Features + - AWS CloudTrail now supports Insights for data events, expanding beyond management events to automatically detect unusual activity on data plane operations. + +## __AWS Cost Explorer Service__ + - ### Features + - Add support for COST_CATEGORY, TAG, and LINKED_ACCOUNT AWS managed cost anomaly detection monitors + +## __AWS Elemental MediaLive__ + - ### Features + - MediaLive is adding support for MediaConnect Router by supporting a new input type called MEDIACONNECT_ROUTER. This new input type will provide seamless encrypted transport between MediaConnect Router and your MediaLive channel. + +## __AWS Health APIs and Notifications__ + - ### Features + - Adds actionability and personas properties to Health events exposed through DescribeEvents, DescribeEventsForOrganization, DescribeEventDetails, and DescribeEventTypes APIs. Adds filtering by actionabilities and personas in EventFilter, OrganizationEventFilter, EventTypeFilter. + +## __AWS Identity and Access Management__ + - ### Features + - Added the EnableOutboundWebIdentityFederation, DisableOutboundWebIdentityFederation and GetOutboundWebIdentityFederationInfo APIs for the IAM outbound federation feature. + +## __AWS Invoicing__ + - ### Features + - Add support for adding Billing transfers in Invoice configuration + +## __AWS Lambda__ + - ### Features + - Added support for creating and invoking Tenant Isolated functions in AWS Lambda APIs. + +## __AWS MediaConnect__ + - ### Features + - This release adds support for global routing in AWS Elemental MediaConnect. You can now use router inputs and router outputs to manage global video and audio routing workflows both within the AWS-Cloud and over the public internet. + +## __AWS Network Firewall__ + - ### Features + - Partner Managed Rulegroup feature support + +## __AWS Secrets Manager__ + - ### Features + - Adds support to create, update, retrieve, rotate, and delete managed external secrets. + +## __AWS Security Token Service__ + - ### Features + - IAM now supports outbound identity federation via the STS GetWebIdentityToken API, enabling AWS workloads to securely authenticate with external services using short-lived JSON Web Tokens. + +## __AWS Sign-In Service__ + - ### Features + - AWS Sign-In manages authentication for AWS services. This service provides secure authentication flows for accessing AWS resources from the console and developer tools. This release adds the CreateOAuth2Token API, which can be used to fetch OAuth2 access tokens and refresh tokens from Sign-In. + +## __AWS Step Functions__ + - ### Features + - Adds support to TestState for mocked results and exceptions, along with additional inspection data. + +## __AWSBillingConductor__ + - ### Features + - This release adds support for Billing Transfers, enabling management of billing transfers with billing groups on AWS Billing Conductor. + +## __Amazon API Gateway__ + - ### Features + - API Gateway now supports response streaming and new security policies for REST APIs and custom domain names. + +## __Amazon Bedrock Runtime__ + - ### Features + - This release includes support for Search Results. + +## __Amazon CloudWatch Logs__ + - ### Features + - Adding support for ocsf version 1.5, add optional parameter MappingVersion + +## __Amazon DataZone__ + - ### Features + - Amazon DataZone now supports business metadata (readme and metadata forms) at the individual attribute (column) level, a new rule type for glossary terms, and the ability to update the owner of the root domain unit. + +## __Amazon DynamoDB__ + - ### Features + - Extended Global Secondary Index (GSI) composite keys to support up to 8 attributes. + +## __Amazon EC2 Container Service__ + - ### Features + - Added support for Amazon ECS Managed Instances infrastructure optimization configuration. + +## __Amazon EMR__ + - ### Features + - Add CloudWatch Logs integration for Spark driver, executor and step logs + +## __Amazon Elastic Compute Cloud__ + - ### Features + - This launch adds support for two new features: Regional NAT Gateway and IPAM Policies. IPAM policies offers customers central control for public IPv4 assignments across AWS services. Regional NAT is a single NAT Gateway that automatically expands across AZs in a VPC to maintain high availability. + +## __Amazon Elastic Container Registry__ + - ### Features + - Add support for ECR archival storage class and Inspector org policy for scanning + +## __Amazon FSx__ + - ### Features + - Adding File Server Resource Manager configuration to FSx Windows + +## __Amazon GuardDuty__ + - ### Features + - Add support for scanning and viewing scan results for backup resource types + +## __Amazon Route 53__ + - ### Features + - Add dual-stack endpoint support for Route53 + +## __Amazon SageMaker Service__ + - ### Features + - Added support for enhanced metrics for SageMaker AI Endpoints. This features provides Utilization Metrics at instance and container granularity and also provides easy configuration of metric publish frequency from 10 sec -> 5 mins + +## __Amazon Simple Storage Service__ + - ### Features + - Adds support for blocking SSE-C writes to general purpose buckets. + +## __Amazon Transcribe Streaming Service__ + - ### Features + - This release adds support for additional locales in AWS transcribe streaming. + +## __AmazonApiGatewayV2__ + - ### Features + - Support for API Gateway portals and portal products. + +## __AmazonConnectCampaignServiceV2__ + - ### Features + - This release added support for ring timer configuration for campaign calls. + +## __CloudWatch RUM__ + - ### Features + - CloudWatch RUM now supports mobile application monitoring for Android and iOS platforms + +## __Cost Optimization Hub__ + - ### Features + - Release ListEfficiencyMetrics API + +## __Inspector2__ + - ### Features + - This release introduces BLOCKED_BY_ORGANIZATION_POLICY error code and IMAGE_ARCHIVED scanStatusReason. BLOCKED_BY_ORGANIZATION_POLICY error code is returned when an operation is blocked by an AWS Organizations policy. IMAGE_ARCHIVED scanStatusReason is returned when an Image is archived in ECR. + +## __Network Flow Monitor__ + - ### Features + - Added new enum value (AWS::EKS::Cluster) for type field under MonitorLocalResource + +## __Partner Central Channel API__ + - ### Features + - Initial GA launch of Partner Central Channel + diff --git a/archetypes/archetype-app-quickstart/pom.xml b/archetypes/archetype-app-quickstart/pom.xml index 9ddcb572f5fb..a84932dff7c0 100644 --- a/archetypes/archetype-app-quickstart/pom.xml +++ b/archetypes/archetype-app-quickstart/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT 4.0.0 diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index 83c7d745f9b0..cbb6e1581ffe 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT 4.0.0 archetype-lambda diff --git a/archetypes/archetype-tools/pom.xml b/archetypes/archetype-tools/pom.xml index 577bc9cdfbf7..c4137efb1901 100644 --- a/archetypes/archetype-tools/pom.xml +++ b/archetypes/archetype-tools/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT 4.0.0 diff --git a/archetypes/pom.xml b/archetypes/pom.xml index eba119ca522e..b7924442155a 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index 67fab4fca750..e97c38081e84 100644 --- a/aws-sdk-java/pom.xml +++ b/aws-sdk-java/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index 0be5a4c137fe..252461e1af64 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index 673680a6c26d..e1c310e1e6fe 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT ../pom.xml bom diff --git a/bundle-logging-bridge/pom.xml b/bundle-logging-bridge/pom.xml index d5e184560782..821ad4a95ed4 100644 --- a/bundle-logging-bridge/pom.xml +++ b/bundle-logging-bridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT bundle-logging-bridge jar diff --git a/bundle-sdk/pom.xml b/bundle-sdk/pom.xml index 6fdb4feda7f5..0cd800458299 100644 --- a/bundle-sdk/pom.xml +++ b/bundle-sdk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT bundle-sdk jar diff --git a/bundle/pom.xml b/bundle/pom.xml index d9c0c5b99f8b..cbc4f27d36ba 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT bundle jar diff --git a/changelogs/2.39.x-CHANGELOG.md b/changelogs/2.39.x-CHANGELOG.md deleted file mode 100644 index 59df3ee901dc..000000000000 --- a/changelogs/2.39.x-CHANGELOG.md +++ /dev/null @@ -1,496 +0,0 @@ - #### 👋 _Looking for changelogs for older versions? You can find them in the [changelogs](./changelogs) directory._ -# __2.39.5__ __2025-11-26__ -## __AWS Compute Optimizer__ - - ### Features - - Compute Optimizer now identifies idle NAT Gateway resources for cost optimization based on traffic patterns and backup configuration analysis. Access recommendations via the GetIdleRecommendations API. - -## __Amazon Bedrock Runtime__ - - ### Features - - Bedrock Runtime Reserved Service Support - -## __Apache5 HTTP Client (Preview)__ - - ### Bugfixes - - Fix bug where Basic proxy authentication fails with credentials not found. - - Fix bug where preemptive Basic authentication was not honored for proxies. Similar to fix for Apache 4.x in [#6333](https://github.com/aws/aws-sdk-java-v2/issues/6333). - -## __Cost Optimization Hub__ - - ### Features - - This release enables AWS Cost Optimization Hub to show cost optimization recommendations for NAT Gateway. - -## __s3__ - - ### Features - - Add CRT shouldStream config as CRT_MEMORY_BUFFER_DISABLED SDK advanced client option - -# __2.39.4__ __2025-11-25__ -## __AWS Network Firewall__ - - ### Features - - Network Firewall release of the Proxy feature. - -## __AWS Organizations__ - - ### Features - - Add support for policy operations on the S3_POLICY and BEDROCK_POLICY policy type. - -## __AWS SDK for Java v2__ - - ### Features - - Updated endpoint and partition metadata. - -## __Amazon DynamoDB Enhanced Client__ - - ### Features - - Add support for GSI composite key to handle up to 4 partition and 4 sort keys - -## __Amazon Elastic Compute Cloud__ - - ### Features - - This release adds support to view Network firewall proxy appliances attached to an existing NAT Gateway via DescribeNatGateways API NatGatewayAttachedAppliance structure. - -## __Amazon Route 53__ - - ### Features - - Adds support for new route53 feature: accelerated recovery. - -# __2.39.3__ __2025-11-24__ -## __Amazon CloudFront__ - - ### Features - - Add TrustStore, ConnectionFunction APIs to CloudFront SDK - -## __Amazon CloudWatch Logs__ - - ### Features - - New CloudWatch Logs feature - LogGroup Deletion Protection, a capability that allows customers to safeguard their critical CloudWatch log groups from accidental or unintended deletion. - -# __2.39.2__ __2025-11-21__ -## __AWS CloudFormation__ - - ### Features - - Adds the DependsOn field to the AutoDeployment configuration parameter for CreateStackSet, UpdateStackSet, and DescribeStackSet APIs, allowing users to set and read auto-deployment dependencies between StackSets - -## __AWS Control Tower__ - - ### Features - - The manifest field is now optional for the AWS Control Tower CreateLandingZone and UpdateLandingZone APIs for Landing Zone version 4.0 - -## __AWS Elemental MediaPackage v2__ - - ### Features - - Adds support for excluding session key tags from HLS multivariant playlists - -## __AWS Invoicing__ - - ### Features - - Added the CreateProcurementPortalPreference, GetProcurementPortalPreference, PutProcurementPortalPreference, UpdateProcurementPortalPreferenceStatus, ListProcurementPortalPreferences and DeleteProcurementPortalPreference APIs for procurement portal preference management. - -## __AWS Key Management Service__ - - ### Features - - Support for on-demand rotation of AWS KMS Multi-Region keys with imported key material - -## __AWS Lambda__ - - ### Features - - Launching Enhanced Error Handling and ESM Grouping capabilities for Kafka ESMs - -## __AWS Marketplace Entitlement Service__ - - ### Features - - Endpoint update for new region - -## __AWS Organizations__ - - ### Features - - Add support for policy operations on the UPGRADE_ROLLOUT_POLICY policy type. - -## __AWS SDK for Java v2__ - - ### Features - - Updated endpoint and partition metadata. - -## __AWS Transfer Family__ - - ### Features - - Adds support for creating Webapps accessible from a VPC. - -## __AWSMarketplace Metering__ - - ### Features - - Endpoint update for new region - -## __Amazon API Gateway__ - - ### Features - - API Gateway supports VPC link V2 for REST APIs. - -## __Amazon Athena__ - - ### Features - - Introduces Spark workgroup features including log persistence, S3/CloudWatch delivery, UI and History Server APIs, and SparkConnect 3.5.6 support. Adds DPU usage limits at workgroup and query levels as well as DPU usage tracking for Capacity Reservation queries to optimize performance and costs. - -## __Amazon Bedrock__ - - ### Features - - Add support to automatically enforce safeguards across accounts within an AWS Organization. - -## __Amazon Bedrock AgentCore Control__ - - ### Features - - Support for agentcore gateway interceptor configurations and NONE authorizer type - -## __Amazon Bedrock Runtime__ - - ### Features - - Add support to automatically enforce safeguards across accounts within an AWS Organization. - -## __Amazon Connect Service__ - - ### Features - - New APIs to support aliases and versions for ContactFlowModule. Updated ContactFlowModule APIs to support custom blocks. - -## __Amazon Elastic Compute Cloud__ - - ### Features - - This release adds a new capability to create and manage interruptible EC2 Capacity Reservations. - -## __Amazon Elastic Container Registry__ - - ### Features - - Add support for ECR managed signing - -## __Amazon Elastic Kubernetes Service__ - - ### Features - - Adds support for controlPlaneScalingConfig on EKS Clusters. - -## __Amazon Kinesis Video Streams__ - - ### Features - - This release adds support for Tiered Storage - -## __Amazon Lex Model Building V2__ - - ### Features - - Adds support for Intent Disambiguation, allowing resolution of ambiguous user inputs when multiple intents match by presenting clarifying questions to users. Also adds Speech Detection Sensitivity configuration for optimizing voice activity detection sensitivity levels in various noise environments. - -## __Amazon Q Connect__ - - ### Features - - This release introduces two new messaging channel subtypes: Push, WhatsApp, under MessageTemplate which is a resource in Amazon Q in Connect. - -## __Amazon QuickSight__ - - ### Features - - Amazon Quick Suite now supports QuickChat as an embedding type when calling the GenerateEmbedUrlForRegisteredUser API, enabling developers to embed conversational AI agents directly into their applications. - -## __Amazon Redshift__ - - ### Features - - Added support for Amazon Redshift Federated Permissions and AWS IAM Identity Center trusted identity propagation. - -## __Amazon Relational Database Service__ - - ### Features - - Add support for Upgrade Rollout Order - -## __Amazon SageMaker Runtime HTTP2__ - - ### Features - - Add support for bidirectional streaming invocations on SageMaker AI real-time endpoints - -## __Amazon SageMaker Service__ - - ### Features - - Enhanced SageMaker HyperPod instance groups with support for MinInstanceCount, CapacityRequirements (Spot/On-Demand), and KubernetesConfig (labels and taints). Also Added speculative decoding and MaxInstanceCount for model optimization jobs. - -## __Amazon Simple Email Service__ - - ### Features - - Added support for new SES regions - Asia Pacific (Malaysia) and Canada (Calgary) - -## __Compute Optimizer Automation__ - - ### Features - - Initial release of AWS Compute Optimizer Automation. Create automation rules to implement recommended actions on a recurring schedule based on your specified criteria. Supported actions include: snapshot and delete unattached EBS volumes and upgrade volume types to the latest generation. - -## __Elastic Load Balancing__ - - ### Features - - This release adds the health check log feature in ALB, allowing customers to send detailed target health check log data directly to their designated Amazon S3 bucket. - -## __MailManager__ - - ### Features - - Add support for resources in the aws-eusc partition. - -## __Redshift Serverless__ - - ### Features - - Added UpdateLakehouseConfiguration API to manage Amazon Redshift Federated Permissions and AWS IAM Identity Center trusted identity propagation for namespaces. - -## __Runtime for Amazon Bedrock Data Automation__ - - ### Features - - Adding new fields to GetDataAutomationStatus: jobSubmissionTime, jobCompletionTime, and jobDurationInSeconds - -## __Security Incident Response__ - - ### Features - - Add ListInvestigations and SendFeedback APIs to support SecurityIR AI agents - -## __odb__ - - ### Features - - Adds AssociateIamRoleToResource and DisassociateIamRoleFromResource APIs for managing IAM roles. Enhances CreateOdbNetwork and UpdateOdbNetwork APIs with KMS, STS, and cross-region S3 parameters. Adds OCI identity domain support to InitializeService API. - -# __2.39.1__ __2025-11-20__ -## __AWS Budgets__ - - ### Features - - Add BillingViewHealthStatusException to DescribeBudgetPerformanceHistory and ServiceQuotaExceededException to UpdateBudget for improved error handling with Billing Views. - -## __AWS CloudTrail__ - - ### Features - - AWS launches CloudTrail aggregated events to simplify monitoring of data events at scale. This feature delivers both granular and summarized data events for resources like S3/Lambda, helping security teams identify patterns without custom aggregation logic. - -## __AWS DataSync__ - - ### Features - - The partition value "aws-eusc" is now permitted for ARN (Amazon Resource Name) fields. - -## __AWS Database Migration Service__ - - ### Features - - Added support for customer-managed KMS key (CMK) for encryption for import private key certificate. Additionally added Amazon SageMaker Lakehouse endpoint used for zero-ETL integrations with data warehouses. - -## __AWS Device Farm__ - - ### Features - - Add support for environment variables and an IAM execution role. - -## __AWS Glue__ - - ### Features - - Added FunctionType parameter to Glue GetuserDefinedFunctions. - -## __AWS Lake Formation__ - - ### Features - - Added ServiceIntegrations as a request parameter for CreateLakeFormationIdentityCenterConfigurationRequest and UpdateLakeFormationIdentityCenterConfigurationRequest and response parameter for DescribeLakeFormationIdentityCenterConfigurationResponse - -## __AWS License Manager__ - - ### Features - - Added cross-account resource aggregation via license asset groups and expiry tracking for Self-Managed Licenses. Extended Org-Wide View to Self-Managed Licenses, added reporting for license asset groups, and removed Athena/Glue dependencies for cross-account resource discovery in commercial regions. - -## __AWS Network Manager__ - - ### Features - - This release adds support for Cloud WAN Routing Policy providing customers sophisticated routing controls to better manage their global networks - -## __AWS Organizations__ - - ### Features - - Added new APIs for Billing Transfer, new policy type INSPECTOR_POLICY, and allow an account to transfer between organizations - -## __AWS SDK for Java v2__ - - ### Features - - Updated endpoint and partition metadata. - -## __AWS SecurityHub__ - - ### Features - - Release Findings and Resources Trends APIs- GetFindingsTrendsV2 and GetResourcesTrendsV2. This supports time-series aggregated counts with composite filtering for 1-year of historical data analysis of Findings and Resources. - -## __AWS Signin__ - - ### Features - - Add the LoginCredentialsProvider which allows use of AWS credentials vended by AWS Sign-In that correspond to an AWS Console session. AWS Sign-In credentials will be used automatically by the Credential resolution chain when `login_session` is set in the profile. - -## __Amazon Aurora DSQL__ - - ### Features - - Added clusterVpcEndpoint field to GetVpcEndpointServiceName API response, returning the VPC connection endpoint for the cluster - -## __Amazon Bedrock AgentCore__ - - ### Features - - Bedrock AgentCore Memory release for redriving memory extraction jobs (StartMemoryExtractionJob and ListMemoryExtractionJob) - -## __Amazon CloudFront__ - - ### Features - - This release adds support for bring your own IP (BYOIP) to CloudFront's CreateAnycastIpList API through an optional IpamCidrConfigs field. - -## __Amazon CloudWatch Application Signals__ - - ### Features - - Amazon CloudWatch Application Signals now supports un-instrumented services discovery, cross-account views, and change history, helping SRE and DevOps teams monitor and troubleshoot their large-scale distributed applications. - -## __Amazon Connect Service__ - - ### Features - - Add optional ability to exclude users from send notification actions for Contact Lens Rules. - -## __Amazon EC2 Container Service__ - - ### Features - - Launching Amazon ECS Express Mode - a new feature that enables developers to quickly launch highly available, scalable containerized applications with a single command. - -## __Amazon EMR__ - - ### Features - - Add support for configuring S3 destination for step logs on a per-step basis. - -## __Amazon Elastic Compute Cloud__ - - ### Features - - This release adds support for multiple features including: VPC Encryption Control for the status of traffic flow; S2S VPN BGP Logging; TGW Flexible Costs; IPAM allocation of static IPs from IPAM pools to CF Anycast IP lists used on CloudFront distribution; and EBS Volume Integration with Recycle Bin - -## __Amazon Kinesis__ - - ### Features - - Kinesis Data Streams now supports up to 50 Enhance Fan-out consumers for On-demand Advantage Streams. On-demand Standard and Provisioned streams will continue with the existing limit of 20 consumers for Enhanced Fan-out. - -## __Amazon QuickSight__ - - ### Features - - Introducing comprehensive theme styling controls. New features include border customization (radius, width, color), flexible padding controls, background styling for cards and sheets, centralized typography management, and visual-level override support across layouts. - -## __Amazon Recycle Bin__ - - ### Features - - Add support for EBS volume in Recycle Bin - -## __Amazon Relational Database Service__ - - ### Features - - Add support for VPC Encryption Controls. - -## __Amazon SageMaker Service__ - - ### Features - - Added training plan support for inference endpoints. Added HyperPod task governance with accelerator partition-based quota allocation. Added BatchRebootClusterNodes and BatchReplaceClusterNodes APIs. Updated ListClusterNodes to include privateDnsHostName. - -## __Amazon Simple Storage Service__ - - ### Features - - Enable / Disable ABAC on a general purpose bucket. - -## __Auto Scaling__ - - ### Features - - This release adds support for three new features: 1) Image ID overrides in mixed instances policy, 2) Replace Root Volume - a new strategy for Instance Refresh, and 3) Instance Lifecycle Policy for enhanced instance lifecycle management. - -## __Braket__ - - ### Features - - Add support for Braket spending limits. - -## __Data Automation for Amazon Bedrock__ - - ### Features - - Added support for Synchronous project type and PII Detection and Redaction - -## __EC2 Image Builder__ - - ### Features - - EC2 Image Builder now enables the distribution of existing AMIs, retry distribution, and define distribution workflows. It also supports automatic versioning for recipes and components, allowing automatic version increments and dynamic referencing in pipelines. - -## __Elastic Load Balancing__ - - ### Features - - This release adds the target optimizer feature in ALB, enabling strict concurrency enforcement on targets. - -## __Redshift Data API Service__ - - ### Features - - Increasing the length limit of Statement Name from 500 to 2048. - -## __Runtime for Amazon Bedrock Data Automation__ - - ### Features - - Bedrock Data Automation Runtime Sync API - -# __2.39.0__ __2025-11-19__ -## __AWS Backup__ - - ### Features - - Amazon GuardDuty Malware Protection now supports AWS Backup, extending malware detection capabilities to EC2, EBS, and S3 backups. - -## __AWS Billing__ - - ### Features - - Added name filtering support to ListBillingViews API through the new names parameter to efficiently filter billing views by name. - -## __AWS Billing and Cost Management Pricing Calculator__ - - ### Features - - Add GroupSharingPreference, CostCategoryGroupSharingPreferenceArn, and CostCategoryGroupSharingPreferenceEffectiveDate to Bill Estimate. Add GroupSharingPreference and CostCategoryGroupSharingPreferenceArn to Bill Scenario. - -## __AWS CloudTrail__ - - ### Features - - AWS CloudTrail now supports Insights for data events, expanding beyond management events to automatically detect unusual activity on data plane operations. - -## __AWS Cost Explorer Service__ - - ### Features - - Add support for COST_CATEGORY, TAG, and LINKED_ACCOUNT AWS managed cost anomaly detection monitors - -## __AWS Elemental MediaLive__ - - ### Features - - MediaLive is adding support for MediaConnect Router by supporting a new input type called MEDIACONNECT_ROUTER. This new input type will provide seamless encrypted transport between MediaConnect Router and your MediaLive channel. - -## __AWS Health APIs and Notifications__ - - ### Features - - Adds actionability and personas properties to Health events exposed through DescribeEvents, DescribeEventsForOrganization, DescribeEventDetails, and DescribeEventTypes APIs. Adds filtering by actionabilities and personas in EventFilter, OrganizationEventFilter, EventTypeFilter. - -## __AWS Identity and Access Management__ - - ### Features - - Added the EnableOutboundWebIdentityFederation, DisableOutboundWebIdentityFederation and GetOutboundWebIdentityFederationInfo APIs for the IAM outbound federation feature. - -## __AWS Invoicing__ - - ### Features - - Add support for adding Billing transfers in Invoice configuration - -## __AWS Lambda__ - - ### Features - - Added support for creating and invoking Tenant Isolated functions in AWS Lambda APIs. - -## __AWS MediaConnect__ - - ### Features - - This release adds support for global routing in AWS Elemental MediaConnect. You can now use router inputs and router outputs to manage global video and audio routing workflows both within the AWS-Cloud and over the public internet. - -## __AWS Network Firewall__ - - ### Features - - Partner Managed Rulegroup feature support - -## __AWS Secrets Manager__ - - ### Features - - Adds support to create, update, retrieve, rotate, and delete managed external secrets. - -## __AWS Security Token Service__ - - ### Features - - IAM now supports outbound identity federation via the STS GetWebIdentityToken API, enabling AWS workloads to securely authenticate with external services using short-lived JSON Web Tokens. - -## __AWS Sign-In Service__ - - ### Features - - AWS Sign-In manages authentication for AWS services. This service provides secure authentication flows for accessing AWS resources from the console and developer tools. This release adds the CreateOAuth2Token API, which can be used to fetch OAuth2 access tokens and refresh tokens from Sign-In. - -## __AWS Step Functions__ - - ### Features - - Adds support to TestState for mocked results and exceptions, along with additional inspection data. - -## __AWSBillingConductor__ - - ### Features - - This release adds support for Billing Transfers, enabling management of billing transfers with billing groups on AWS Billing Conductor. - -## __Amazon API Gateway__ - - ### Features - - API Gateway now supports response streaming and new security policies for REST APIs and custom domain names. - -## __Amazon Bedrock Runtime__ - - ### Features - - This release includes support for Search Results. - -## __Amazon CloudWatch Logs__ - - ### Features - - Adding support for ocsf version 1.5, add optional parameter MappingVersion - -## __Amazon DataZone__ - - ### Features - - Amazon DataZone now supports business metadata (readme and metadata forms) at the individual attribute (column) level, a new rule type for glossary terms, and the ability to update the owner of the root domain unit. - -## __Amazon DynamoDB__ - - ### Features - - Extended Global Secondary Index (GSI) composite keys to support up to 8 attributes. - -## __Amazon EC2 Container Service__ - - ### Features - - Added support for Amazon ECS Managed Instances infrastructure optimization configuration. - -## __Amazon EMR__ - - ### Features - - Add CloudWatch Logs integration for Spark driver, executor and step logs - -## __Amazon Elastic Compute Cloud__ - - ### Features - - This launch adds support for two new features: Regional NAT Gateway and IPAM Policies. IPAM policies offers customers central control for public IPv4 assignments across AWS services. Regional NAT is a single NAT Gateway that automatically expands across AZs in a VPC to maintain high availability. - -## __Amazon Elastic Container Registry__ - - ### Features - - Add support for ECR archival storage class and Inspector org policy for scanning - -## __Amazon FSx__ - - ### Features - - Adding File Server Resource Manager configuration to FSx Windows - -## __Amazon GuardDuty__ - - ### Features - - Add support for scanning and viewing scan results for backup resource types - -## __Amazon Route 53__ - - ### Features - - Add dual-stack endpoint support for Route53 - -## __Amazon SageMaker Service__ - - ### Features - - Added support for enhanced metrics for SageMaker AI Endpoints. This features provides Utilization Metrics at instance and container granularity and also provides easy configuration of metric publish frequency from 10 sec -> 5 mins - -## __Amazon Simple Storage Service__ - - ### Features - - Adds support for blocking SSE-C writes to general purpose buckets. - -## __Amazon Transcribe Streaming Service__ - - ### Features - - This release adds support for additional locales in AWS transcribe streaming. - -## __AmazonApiGatewayV2__ - - ### Features - - Support for API Gateway portals and portal products. - -## __AmazonConnectCampaignServiceV2__ - - ### Features - - This release added support for ring timer configuration for campaign calls. - -## __CloudWatch RUM__ - - ### Features - - CloudWatch RUM now supports mobile application monitoring for Android and iOS platforms - -## __Cost Optimization Hub__ - - ### Features - - Release ListEfficiencyMetrics API - -## __Inspector2__ - - ### Features - - This release introduces BLOCKED_BY_ORGANIZATION_POLICY error code and IMAGE_ARCHIVED scanStatusReason. BLOCKED_BY_ORGANIZATION_POLICY error code is returned when an operation is blocked by an AWS Organizations policy. IMAGE_ARCHIVED scanStatusReason is returned when an Image is archived in ECR. - -## __Network Flow Monitor__ - - ### Features - - Added new enum value (AWS::EKS::Cluster) for type field under MonitorLocalResource - -## __Partner Central Channel API__ - - ### Features - - Initial GA launch of Partner Central Channel - diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index d18c36c840b8..60c028560cf3 100644 --- a/codegen-lite-maven-plugin/pom.xml +++ b/codegen-lite-maven-plugin/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index 216d5cc02fc8..897bf4c6ab3d 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index a31b7c4693e8..9cc04fbee62c 100644 --- a/codegen-maven-plugin/pom.xml +++ b/codegen-maven-plugin/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index ba7326e07cea..c6fbe1b71ee5 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index 4ce867bc303d..4cc143075a6f 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index 173acd1f84d4..1fa20874a674 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT 4.0.0 diff --git a/core/auth-crt/pom.xml b/core/auth-crt/pom.xml index 8bf3539c654c..381b8d1781fe 100644 --- a/core/auth-crt/pom.xml +++ b/core/auth-crt/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT auth-crt diff --git a/core/auth/pom.xml b/core/auth/pom.xml index bd878d94a5dd..6a64ceb35efb 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index 4ed4cf399b0d..7aae85f69056 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT aws-core diff --git a/core/checksums-spi/pom.xml b/core/checksums-spi/pom.xml index 74052cde9f42..2c528a1d87f6 100644 --- a/core/checksums-spi/pom.xml +++ b/core/checksums-spi/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT checksums-spi diff --git a/core/checksums/pom.xml b/core/checksums/pom.xml index 7d16d679dfbb..de45d7a2ec26 100644 --- a/core/checksums/pom.xml +++ b/core/checksums/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT checksums diff --git a/core/crt-core/pom.xml b/core/crt-core/pom.xml index 00d7b2129b90..ef1486578568 100644 --- a/core/crt-core/pom.xml +++ b/core/crt-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT crt-core diff --git a/core/endpoints-spi/pom.xml b/core/endpoints-spi/pom.xml index a8be3e652f97..1a571526be0a 100644 --- a/core/endpoints-spi/pom.xml +++ b/core/endpoints-spi/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT 4.0.0 diff --git a/core/http-auth-aws-crt/pom.xml b/core/http-auth-aws-crt/pom.xml index 49521517d0b3..47d08056d25c 100644 --- a/core/http-auth-aws-crt/pom.xml +++ b/core/http-auth-aws-crt/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT http-auth-aws-crt diff --git a/core/http-auth-aws-eventstream/pom.xml b/core/http-auth-aws-eventstream/pom.xml index d79ebdbd3009..2295a675ea8c 100644 --- a/core/http-auth-aws-eventstream/pom.xml +++ b/core/http-auth-aws-eventstream/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT http-auth-aws-eventstream diff --git a/core/http-auth-aws/pom.xml b/core/http-auth-aws/pom.xml index ff2a98b61e0d..693fe1c1caab 100644 --- a/core/http-auth-aws/pom.xml +++ b/core/http-auth-aws/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT http-auth-aws diff --git a/core/http-auth-spi/pom.xml b/core/http-auth-spi/pom.xml index 46927e453d7a..aac02ef46805 100644 --- a/core/http-auth-spi/pom.xml +++ b/core/http-auth-spi/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT http-auth-spi diff --git a/core/http-auth/pom.xml b/core/http-auth/pom.xml index 64291c451bd5..22c14ffecc02 100644 --- a/core/http-auth/pom.xml +++ b/core/http-auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT http-auth diff --git a/core/identity-spi/pom.xml b/core/identity-spi/pom.xml index 130cc0df36df..041895fba1e3 100644 --- a/core/identity-spi/pom.xml +++ b/core/identity-spi/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT identity-spi diff --git a/core/imds/pom.xml b/core/imds/pom.xml index 782002e66b77..23ee5afc2ef9 100644 --- a/core/imds/pom.xml +++ b/core/imds/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT 4.0.0 imds diff --git a/core/json-utils/pom.xml b/core/json-utils/pom.xml index f8c19a6c4055..cd1e7bd1b39e 100644 --- a/core/json-utils/pom.xml +++ b/core/json-utils/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT 4.0.0 diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index 9fd96f8be478..189660275b2d 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index 426ae7ec97ec..2144eeca3d19 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index af7b532db878..904c5e4b4e69 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index 791bb686089e..c941c81b8401 100644 --- a/core/protocols/aws-cbor-protocol/pom.xml +++ b/core/protocols/aws-cbor-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index 13a4f8254e2a..49bf4fa2a349 100644 --- a/core/protocols/aws-json-protocol/pom.xml +++ b/core/protocols/aws-json-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index ba45926d0123..0ce4921308db 100644 --- a/core/protocols/aws-query-protocol/pom.xml +++ b/core/protocols/aws-query-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index e0662a871bcd..67af2bfcf0b7 100644 --- a/core/protocols/aws-xml-protocol/pom.xml +++ b/core/protocols/aws-xml-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index 63bf31f4a476..55687d5f698d 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index 208e3891764d..6b9ba4a49449 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT 4.0.0 diff --git a/core/protocols/smithy-rpcv2-protocol/pom.xml b/core/protocols/smithy-rpcv2-protocol/pom.xml index 8b2a4713a960..876e595d7929 100644 --- a/core/protocols/smithy-rpcv2-protocol/pom.xml +++ b/core/protocols/smithy-rpcv2-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index 86e1226e2e54..66d6e69470f4 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT regions diff --git a/core/retries-spi/pom.xml b/core/retries-spi/pom.xml index 571e1edbb7fd..f72a6ebf3f64 100644 --- a/core/retries-spi/pom.xml +++ b/core/retries-spi/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT 4.0.0 diff --git a/core/retries/pom.xml b/core/retries/pom.xml index c83f8be5b693..d6160e590554 100644 --- a/core/retries/pom.xml +++ b/core/retries/pom.xml @@ -21,7 +21,7 @@ core software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT 4.0.0 diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index 5d58d6af45af..3cd3fc789c13 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index 4ba4a9be7df1..10adff4425fb 100644 --- a/http-client-spi/pom.xml +++ b/http-client-spi/pom.xml @@ -22,7 +22,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT http-client-spi AWS Java SDK :: HTTP Client Interface diff --git a/http-clients/apache-client/pom.xml b/http-clients/apache-client/pom.xml index c1f1b09e2287..f52619be2c5d 100644 --- a/http-clients/apache-client/pom.xml +++ b/http-clients/apache-client/pom.xml @@ -21,7 +21,7 @@ http-clients software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT apache-client diff --git a/http-clients/apache5-client/pom.xml b/http-clients/apache5-client/pom.xml index a990d023a222..46c9b7caa0f4 100644 --- a/http-clients/apache5-client/pom.xml +++ b/http-clients/apache5-client/pom.xml @@ -21,7 +21,7 @@ http-clients software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT apache5-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index eb05fe74d6f7..3e7e967805b9 100644 --- a/http-clients/aws-crt-client/pom.xml +++ b/http-clients/aws-crt-client/pom.xml @@ -21,7 +21,7 @@ http-clients software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index 79d1f092cae9..0c3a6c4a8f68 100644 --- a/http-clients/netty-nio-client/pom.xml +++ b/http-clients/netty-nio-client/pom.xml @@ -20,7 +20,7 @@ http-clients software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index 7e0a55d8688b..bef0fc7dfc6a 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index da50b2d39905..045bb6469b2b 100644 --- a/http-clients/url-connection-client/pom.xml +++ b/http-clients/url-connection-client/pom.xml @@ -20,7 +20,7 @@ http-clients software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index c6c15f920f4b..7326e868b919 100644 --- a/metric-publishers/cloudwatch-metric-publisher/pom.xml +++ b/metric-publishers/cloudwatch-metric-publisher/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk metric-publishers - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT cloudwatch-metric-publisher diff --git a/metric-publishers/emf-metric-logging-publisher/pom.xml b/metric-publishers/emf-metric-logging-publisher/pom.xml index 7e84a91c2d30..729036072ade 100644 --- a/metric-publishers/emf-metric-logging-publisher/pom.xml +++ b/metric-publishers/emf-metric-logging-publisher/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk metric-publishers - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT emf-metric-logging-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index 9189797a8ccc..d978eb033597 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT metric-publishers diff --git a/pom.xml b/pom.xml index fa4e853dd1a2..75dc5be34cc0 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT pom AWS Java SDK :: Parent The Amazon Web Services SDK for Java provides Java APIs diff --git a/release-scripts/pom.xml b/release-scripts/pom.xml index fc619c825b9b..d82e9b1bc5d2 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index 29e015e00a93..c4cd0b84aaed 100644 --- a/services-custom/dynamodb-enhanced/pom.xml +++ b/services-custom/dynamodb-enhanced/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services-custom - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT dynamodb-enhanced AWS Java SDK :: DynamoDB :: Enhanced Client diff --git a/services-custom/iam-policy-builder/pom.xml b/services-custom/iam-policy-builder/pom.xml index c90692408b79..6f859b58404b 100644 --- a/services-custom/iam-policy-builder/pom.xml +++ b/services-custom/iam-policy-builder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT ../../pom.xml iam-policy-builder diff --git a/services-custom/pom.xml b/services-custom/pom.xml index 325d3e7867ee..47d0c4ff6e30 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT services-custom AWS Java SDK :: Custom Services diff --git a/services-custom/s3-event-notifications/pom.xml b/services-custom/s3-event-notifications/pom.xml index 54c1b173be52..31fb5419bdc1 100644 --- a/services-custom/s3-event-notifications/pom.xml +++ b/services-custom/s3-event-notifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT ../../pom.xml s3-event-notifications diff --git a/services-custom/s3-transfer-manager/pom.xml b/services-custom/s3-transfer-manager/pom.xml index dcee2fd165a1..d861c250488f 100644 --- a/services-custom/s3-transfer-manager/pom.xml +++ b/services-custom/s3-transfer-manager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT ../../pom.xml s3-transfer-manager diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index d40faa0146c8..3156fc58bb62 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/account/pom.xml b/services/account/pom.xml index 3c9dc474e146..9f4f5b3ff364 100644 --- a/services/account/pom.xml +++ b/services/account/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT account AWS Java SDK :: Services :: Account diff --git a/services/acm/pom.xml b/services/acm/pom.xml index bf114fcd2862..6d34e8695bf5 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index 0d81ea9a4c4c..d2a3100863aa 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/aiops/pom.xml b/services/aiops/pom.xml index 455bf44d2a01..70a6be49ffd4 100644 --- a/services/aiops/pom.xml +++ b/services/aiops/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT aiops AWS Java SDK :: Services :: AI Ops diff --git a/services/amp/pom.xml b/services/amp/pom.xml index 2e227ee7649e..c04dc21aa9de 100644 --- a/services/amp/pom.xml +++ b/services/amp/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT amp AWS Java SDK :: Services :: Amp diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index 7a08d9219db7..3072d3120364 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT amplify AWS Java SDK :: Services :: Amplify diff --git a/services/amplifybackend/pom.xml b/services/amplifybackend/pom.xml index e0e15e7e34dc..1448bed9dbf6 100644 --- a/services/amplifybackend/pom.xml +++ b/services/amplifybackend/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT amplifybackend AWS Java SDK :: Services :: Amplify Backend diff --git a/services/amplifyuibuilder/pom.xml b/services/amplifyuibuilder/pom.xml index 9abd1cbf1cc4..e06293809d7b 100644 --- a/services/amplifyuibuilder/pom.xml +++ b/services/amplifyuibuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT amplifyuibuilder AWS Java SDK :: Services :: Amplify UI Builder diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index d8c79808c803..1e51ab633c1f 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index dacb4ca2ba0d..2edc7d350af5 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index 39e4a35be5f1..7cac742230df 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index c66770bb88a0..fa53d0d57277 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appconfigdata/pom.xml b/services/appconfigdata/pom.xml index 4a3cc0f4723f..3d22b32ea2bb 100644 --- a/services/appconfigdata/pom.xml +++ b/services/appconfigdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT appconfigdata AWS Java SDK :: Services :: App Config Data diff --git a/services/appfabric/pom.xml b/services/appfabric/pom.xml index 334c94f149ec..4fd35de55704 100644 --- a/services/appfabric/pom.xml +++ b/services/appfabric/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT appfabric AWS Java SDK :: Services :: App Fabric diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index a3d1da7b4e7e..f7f93907af39 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT appflow AWS Java SDK :: Services :: Appflow diff --git a/services/appintegrations/pom.xml b/services/appintegrations/pom.xml index 8ad98a0aa118..d25efb4d4d72 100644 --- a/services/appintegrations/pom.xml +++ b/services/appintegrations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT appintegrations AWS Java SDK :: Services :: App Integrations diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index 61c3e954ca14..b0b71b1692e6 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationcostprofiler/pom.xml b/services/applicationcostprofiler/pom.xml index 36b07b62fd1a..fd47b680affe 100644 --- a/services/applicationcostprofiler/pom.xml +++ b/services/applicationcostprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT applicationcostprofiler AWS Java SDK :: Services :: Application Cost Profiler diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index 4dea2c2959a2..9702181ae9e7 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index aaa848f0bb70..833756a77265 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/applicationsignals/pom.xml b/services/applicationsignals/pom.xml index ad8381a585c2..5b9b74491db3 100644 --- a/services/applicationsignals/pom.xml +++ b/services/applicationsignals/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT applicationsignals AWS Java SDK :: Services :: Application Signals diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index 5d906514ea2b..b528f8df4a25 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/apprunner/pom.xml b/services/apprunner/pom.xml index af1dc85445c5..9bdad00557c3 100644 --- a/services/apprunner/pom.xml +++ b/services/apprunner/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT apprunner AWS Java SDK :: Services :: App Runner diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index 16ff57267068..70ea5bc72c96 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index 3f053b1f2bb8..812dbff49ae5 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT appsync diff --git a/services/arcregionswitch/pom.xml b/services/arcregionswitch/pom.xml index f4701aef2492..89c0b0ed7740 100644 --- a/services/arcregionswitch/pom.xml +++ b/services/arcregionswitch/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT arcregionswitch AWS Java SDK :: Services :: ARC Region Switch diff --git a/services/arczonalshift/pom.xml b/services/arczonalshift/pom.xml index 5eff5ec37d46..b674312c9fe0 100644 --- a/services/arczonalshift/pom.xml +++ b/services/arczonalshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT arczonalshift AWS Java SDK :: Services :: ARC Zonal Shift diff --git a/services/artifact/pom.xml b/services/artifact/pom.xml index 781d7244441c..70b3fc1848e4 100644 --- a/services/artifact/pom.xml +++ b/services/artifact/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT artifact AWS Java SDK :: Services :: Artifact diff --git a/services/athena/pom.xml b/services/athena/pom.xml index 53d135e13963..ee799c8f956d 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/auditmanager/pom.xml b/services/auditmanager/pom.xml index 62a26ad8c1c7..2ff229d82ea9 100644 --- a/services/auditmanager/pom.xml +++ b/services/auditmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT auditmanager AWS Java SDK :: Services :: Audit Manager diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index e2fdf51461da..3731e0f8a7ad 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index fd275af4fa55..2bacb73bcc56 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/b2bi/pom.xml b/services/b2bi/pom.xml index 5697ac7557be..623e2b522c86 100644 --- a/services/b2bi/pom.xml +++ b/services/b2bi/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT b2bi AWS Java SDK :: Services :: B2 Bi diff --git a/services/backup/pom.xml b/services/backup/pom.xml index bc1950bdf06d..e11a62cfeda4 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT backup AWS Java SDK :: Services :: Backup diff --git a/services/backupgateway/pom.xml b/services/backupgateway/pom.xml index 683595c9fde1..041ea2c9f568 100644 --- a/services/backupgateway/pom.xml +++ b/services/backupgateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT backupgateway AWS Java SDK :: Services :: Backup Gateway diff --git a/services/backupsearch/pom.xml b/services/backupsearch/pom.xml index 28e4a60524dc..0ccfd748d232 100644 --- a/services/backupsearch/pom.xml +++ b/services/backupsearch/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT backupsearch AWS Java SDK :: Services :: Backup Search diff --git a/services/batch/pom.xml b/services/batch/pom.xml index 1f8ca27f5fe3..1400d2f1ab98 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/bcmdashboards/pom.xml b/services/bcmdashboards/pom.xml index a6d7f45e4dcf..2df128bc43a2 100644 --- a/services/bcmdashboards/pom.xml +++ b/services/bcmdashboards/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT bcmdashboards AWS Java SDK :: Services :: BCM Dashboards diff --git a/services/bcmdataexports/pom.xml b/services/bcmdataexports/pom.xml index 4fc5891a1682..7e48e7df38c6 100644 --- a/services/bcmdataexports/pom.xml +++ b/services/bcmdataexports/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT bcmdataexports AWS Java SDK :: Services :: BCM Data Exports diff --git a/services/bcmpricingcalculator/pom.xml b/services/bcmpricingcalculator/pom.xml index 6b83732a2342..acf694af1ca4 100644 --- a/services/bcmpricingcalculator/pom.xml +++ b/services/bcmpricingcalculator/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT bcmpricingcalculator AWS Java SDK :: Services :: BCM Pricing Calculator diff --git a/services/bcmrecommendedactions/pom.xml b/services/bcmrecommendedactions/pom.xml index 12c0d9aea696..09bfc24a9b80 100644 --- a/services/bcmrecommendedactions/pom.xml +++ b/services/bcmrecommendedactions/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT bcmrecommendedactions AWS Java SDK :: Services :: BCM Recommended Actions diff --git a/services/bedrock/pom.xml b/services/bedrock/pom.xml index 1ea1b2be1ddb..26741d3341a1 100644 --- a/services/bedrock/pom.xml +++ b/services/bedrock/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT bedrock AWS Java SDK :: Services :: Bedrock diff --git a/services/bedrockagent/pom.xml b/services/bedrockagent/pom.xml index a0d52661ebc1..ae56309f3776 100644 --- a/services/bedrockagent/pom.xml +++ b/services/bedrockagent/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT bedrockagent AWS Java SDK :: Services :: Bedrock Agent diff --git a/services/bedrockagentcore/pom.xml b/services/bedrockagentcore/pom.xml index b05c7cbc6962..8f07f0e75643 100644 --- a/services/bedrockagentcore/pom.xml +++ b/services/bedrockagentcore/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT bedrockagentcore AWS Java SDK :: Services :: Bedrock Agent Core diff --git a/services/bedrockagentcorecontrol/pom.xml b/services/bedrockagentcorecontrol/pom.xml index 12296326e4bf..950e43b02529 100644 --- a/services/bedrockagentcorecontrol/pom.xml +++ b/services/bedrockagentcorecontrol/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT bedrockagentcorecontrol AWS Java SDK :: Services :: Bedrock Agent Core Control diff --git a/services/bedrockagentruntime/pom.xml b/services/bedrockagentruntime/pom.xml index 0a00922a992b..6a769968f775 100644 --- a/services/bedrockagentruntime/pom.xml +++ b/services/bedrockagentruntime/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT bedrockagentruntime AWS Java SDK :: Services :: Bedrock Agent Runtime diff --git a/services/bedrockdataautomation/pom.xml b/services/bedrockdataautomation/pom.xml index 808c5a918fb0..84742b263ed6 100644 --- a/services/bedrockdataautomation/pom.xml +++ b/services/bedrockdataautomation/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT bedrockdataautomation AWS Java SDK :: Services :: Bedrock Data Automation diff --git a/services/bedrockdataautomationruntime/pom.xml b/services/bedrockdataautomationruntime/pom.xml index 54cfdb982e3c..c5f9d3b73c13 100644 --- a/services/bedrockdataautomationruntime/pom.xml +++ b/services/bedrockdataautomationruntime/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT bedrockdataautomationruntime AWS Java SDK :: Services :: Bedrock Data Automation Runtime diff --git a/services/bedrockruntime/pom.xml b/services/bedrockruntime/pom.xml index 2fa6e9fb63e8..128d333f93e7 100644 --- a/services/bedrockruntime/pom.xml +++ b/services/bedrockruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT bedrockruntime AWS Java SDK :: Services :: Bedrock Runtime diff --git a/services/billing/pom.xml b/services/billing/pom.xml index c24592dc9c05..310f0b2b6754 100644 --- a/services/billing/pom.xml +++ b/services/billing/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT billing AWS Java SDK :: Services :: Billing diff --git a/services/billingconductor/pom.xml b/services/billingconductor/pom.xml index ac1100003b3b..eba8bc8c1267 100644 --- a/services/billingconductor/pom.xml +++ b/services/billingconductor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT billingconductor AWS Java SDK :: Services :: Billingconductor diff --git a/services/braket/pom.xml b/services/braket/pom.xml index 08661b790f01..8ceaa2b8ca3b 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index efc3f555f00c..d86c9ba747a9 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chatbot/pom.xml b/services/chatbot/pom.xml index 82ca540bb103..09970e0baf5e 100644 --- a/services/chatbot/pom.xml +++ b/services/chatbot/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT chatbot AWS Java SDK :: Services :: Chatbot diff --git a/services/chime/pom.xml b/services/chime/pom.xml index 71ee338b3c0d..6c5ead14047f 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT chime AWS Java SDK :: Services :: Chime diff --git a/services/chimesdkidentity/pom.xml b/services/chimesdkidentity/pom.xml index 00f06321ae02..bbf1bfc4f193 100644 --- a/services/chimesdkidentity/pom.xml +++ b/services/chimesdkidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT chimesdkidentity AWS Java SDK :: Services :: Chime SDK Identity diff --git a/services/chimesdkmediapipelines/pom.xml b/services/chimesdkmediapipelines/pom.xml index a3a26bbfe10d..040cc6e15d79 100644 --- a/services/chimesdkmediapipelines/pom.xml +++ b/services/chimesdkmediapipelines/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT chimesdkmediapipelines AWS Java SDK :: Services :: Chime SDK Media Pipelines diff --git a/services/chimesdkmeetings/pom.xml b/services/chimesdkmeetings/pom.xml index c8016d633e99..75e7e477db02 100644 --- a/services/chimesdkmeetings/pom.xml +++ b/services/chimesdkmeetings/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT chimesdkmeetings AWS Java SDK :: Services :: Chime SDK Meetings diff --git a/services/chimesdkmessaging/pom.xml b/services/chimesdkmessaging/pom.xml index 6523b3cd3928..2c86b929774c 100644 --- a/services/chimesdkmessaging/pom.xml +++ b/services/chimesdkmessaging/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT chimesdkmessaging AWS Java SDK :: Services :: Chime SDK Messaging diff --git a/services/chimesdkvoice/pom.xml b/services/chimesdkvoice/pom.xml index 70fc3e5e2e3d..06926690e774 100644 --- a/services/chimesdkvoice/pom.xml +++ b/services/chimesdkvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT chimesdkvoice AWS Java SDK :: Services :: Chime SDK Voice diff --git a/services/cleanrooms/pom.xml b/services/cleanrooms/pom.xml index 8dd9e0297545..16d7cd235c92 100644 --- a/services/cleanrooms/pom.xml +++ b/services/cleanrooms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT cleanrooms AWS Java SDK :: Services :: Clean Rooms diff --git a/services/cleanroomsml/pom.xml b/services/cleanroomsml/pom.xml index 3fa93109cd2d..6ea14be5c64d 100644 --- a/services/cleanroomsml/pom.xml +++ b/services/cleanroomsml/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT cleanroomsml AWS Java SDK :: Services :: Clean Rooms ML diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index aac8b8cf7748..e919507da891 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT 4.0.0 cloud9 diff --git a/services/cloudcontrol/pom.xml b/services/cloudcontrol/pom.xml index 88d42504ff50..61443385120b 100644 --- a/services/cloudcontrol/pom.xml +++ b/services/cloudcontrol/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT cloudcontrol AWS Java SDK :: Services :: Cloud Control diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index a61e40828213..a7b1b4068481 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index f01cafdcb8c4..c1279305af02 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index 8e34d62f80fd..07cd52fa4b27 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudfrontkeyvaluestore/pom.xml b/services/cloudfrontkeyvaluestore/pom.xml index 042a98b4854d..f25bc91aefe5 100644 --- a/services/cloudfrontkeyvaluestore/pom.xml +++ b/services/cloudfrontkeyvaluestore/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT cloudfrontkeyvaluestore AWS Java SDK :: Services :: Cloud Front Key Value Store diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index 1584895e064d..dc06f4ea479d 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index e276308483f6..f040c2f9c8ba 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index 423d96797b3a..3f2d48745cdf 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index 707503c93bc0..7ea264dc5ccb 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index 9fead37cd3c5..648dbcf1c731 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudtraildata/pom.xml b/services/cloudtraildata/pom.xml index 3d86e0c980b9..71336533aaba 100644 --- a/services/cloudtraildata/pom.xml +++ b/services/cloudtraildata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT cloudtraildata AWS Java SDK :: Services :: Cloud Trail Data diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index 97ca2c0838dd..bc0fdea6eb5b 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index 15cae54a12ff..23f1d9ca39d7 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index d153e93c964f..8b036f896e09 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index 13e7c7211a99..418c260e6ad2 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index 42154d03df98..1f3f9b20d648 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecatalyst/pom.xml b/services/codecatalyst/pom.xml index 75a75829d2e4..983f72abec2c 100644 --- a/services/codecatalyst/pom.xml +++ b/services/codecatalyst/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT codecatalyst AWS Java SDK :: Services :: Code Catalyst diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index 17b854589018..23646a9c59fe 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codeconnections/pom.xml b/services/codeconnections/pom.xml index c8c69601d7e6..deb729f73dfe 100644 --- a/services/codeconnections/pom.xml +++ b/services/codeconnections/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT codeconnections AWS Java SDK :: Services :: Code Connections diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index 3eac4b859b40..fef3eec55182 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index d0f6cb615689..d306ff5389f0 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index 7a75427d1a1f..72e21ee875fc 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codegurusecurity/pom.xml b/services/codegurusecurity/pom.xml index b0169eff9254..123813980957 100644 --- a/services/codegurusecurity/pom.xml +++ b/services/codegurusecurity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT codegurusecurity AWS Java SDK :: Services :: Code Guru Security diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index ed64b836fb10..c4093a32dcf4 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index 48066d5c12ae..4aa51f3749fc 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index d05ecad59513..8c89ca110669 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index 4fec62af99dc..59250ebf176f 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index ca13c9211d06..61f1e3e61d49 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index 1c5676ec50c8..566ef412a337 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index 2a81d52f7143..8aef503a0788 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index b58cc4a4a730..33aed637ba55 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index 40d5ca4e3a7b..1e85a8cc28dd 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/computeoptimizerautomation/pom.xml b/services/computeoptimizerautomation/pom.xml index 4f20fe626e39..0b4113e67c02 100644 --- a/services/computeoptimizerautomation/pom.xml +++ b/services/computeoptimizerautomation/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT computeoptimizerautomation AWS Java SDK :: Services :: Compute Optimizer Automation diff --git a/services/config/pom.xml b/services/config/pom.xml index 24276a691099..7be228b450a8 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index 7071f786bce9..afc6d7f6b6dd 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT connect AWS Java SDK :: Services :: Connect diff --git a/services/connectcampaigns/pom.xml b/services/connectcampaigns/pom.xml index ee5c4a0149f3..31f70e389466 100644 --- a/services/connectcampaigns/pom.xml +++ b/services/connectcampaigns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT connectcampaigns AWS Java SDK :: Services :: Connect Campaigns diff --git a/services/connectcampaignsv2/pom.xml b/services/connectcampaignsv2/pom.xml index 755a1f1a87f0..8f7066b10899 100644 --- a/services/connectcampaignsv2/pom.xml +++ b/services/connectcampaignsv2/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT connectcampaignsv2 AWS Java SDK :: Services :: Connect Campaigns V2 diff --git a/services/connectcases/pom.xml b/services/connectcases/pom.xml index 809bab13243c..d26005a73c69 100644 --- a/services/connectcases/pom.xml +++ b/services/connectcases/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT connectcases AWS Java SDK :: Services :: Connect Cases diff --git a/services/connectcontactlens/pom.xml b/services/connectcontactlens/pom.xml index c817b8e2e6b1..ddf83a07c218 100644 --- a/services/connectcontactlens/pom.xml +++ b/services/connectcontactlens/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT connectcontactlens AWS Java SDK :: Services :: Connect Contact Lens diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index 121b5510f9a7..87954cdee637 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/controlcatalog/pom.xml b/services/controlcatalog/pom.xml index d522b310269d..005e4eb7cfb9 100644 --- a/services/controlcatalog/pom.xml +++ b/services/controlcatalog/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT controlcatalog AWS Java SDK :: Services :: Control Catalog diff --git a/services/controltower/pom.xml b/services/controltower/pom.xml index a4615a96574a..8c09455a35c8 100644 --- a/services/controltower/pom.xml +++ b/services/controltower/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT controltower AWS Java SDK :: Services :: Control Tower diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index 29921fad6010..2d06fc400fd1 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index 9812fb9210df..dfce56866300 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT 4.0.0 costexplorer diff --git a/services/costoptimizationhub/pom.xml b/services/costoptimizationhub/pom.xml index 5a792f7b9150..f481409e7d7a 100644 --- a/services/costoptimizationhub/pom.xml +++ b/services/costoptimizationhub/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT costoptimizationhub AWS Java SDK :: Services :: Cost Optimization Hub diff --git a/services/customerprofiles/pom.xml b/services/customerprofiles/pom.xml index 29ff54403e27..136fd1fbd008 100644 --- a/services/customerprofiles/pom.xml +++ b/services/customerprofiles/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT customerprofiles AWS Java SDK :: Services :: Customer Profiles diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index 0301455d6622..1074174599e7 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/databrew/pom.xml b/services/databrew/pom.xml index 6b5a8703a254..4f55d33fa43c 100644 --- a/services/databrew/pom.xml +++ b/services/databrew/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT databrew AWS Java SDK :: Services :: Data Brew diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index 055700b0f9fc..94d29b422304 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index 77c01911796c..481b598833e1 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index 460d478a3462..d62b73f6615d 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT datasync AWS Java SDK :: Services :: DataSync diff --git a/services/datazone/pom.xml b/services/datazone/pom.xml index 494c4b80715b..6afcd1552e3b 100644 --- a/services/datazone/pom.xml +++ b/services/datazone/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT datazone AWS Java SDK :: Services :: Data Zone diff --git a/services/dax/pom.xml b/services/dax/pom.xml index 477ec8db0e24..3b423ce11bd8 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/deadline/pom.xml b/services/deadline/pom.xml index 271e97b14bc2..5318e44615e5 100644 --- a/services/deadline/pom.xml +++ b/services/deadline/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT deadline AWS Java SDK :: Services :: Deadline diff --git a/services/detective/pom.xml b/services/detective/pom.xml index 536e900b431d..8ebe0d4dca20 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index cf7513fc773c..38501f164bd3 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/devopsguru/pom.xml b/services/devopsguru/pom.xml index d0678d8545cc..b79fca4b2846 100644 --- a/services/devopsguru/pom.xml +++ b/services/devopsguru/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT devopsguru AWS Java SDK :: Services :: Dev Ops Guru diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index bf8bebc85c30..c156609f8ee2 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index 51688ae22cf3..03dbbe7b7e36 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/directoryservicedata/pom.xml b/services/directoryservicedata/pom.xml index d156c420e550..45a82c31ff31 100644 --- a/services/directoryservicedata/pom.xml +++ b/services/directoryservicedata/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT directoryservicedata AWS Java SDK :: Services :: Directory Service Data diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index 59b9ad3a1e90..e4a68603e4c3 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index 57d17c2b16c3..ce8c117e5689 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT docdb AWS Java SDK :: Services :: DocDB diff --git a/services/docdbelastic/pom.xml b/services/docdbelastic/pom.xml index cdf7b349068e..1e53fab08844 100644 --- a/services/docdbelastic/pom.xml +++ b/services/docdbelastic/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT docdbelastic AWS Java SDK :: Services :: Doc DB Elastic diff --git a/services/drs/pom.xml b/services/drs/pom.xml index 032c04f18366..8c255fa5a129 100644 --- a/services/drs/pom.xml +++ b/services/drs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT drs AWS Java SDK :: Services :: Drs diff --git a/services/dsql/pom.xml b/services/dsql/pom.xml index 32d0b3e41912..5a308df31258 100644 --- a/services/dsql/pom.xml +++ b/services/dsql/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT dsql AWS Java SDK :: Services :: DSQL diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index 5f590cde4180..6208d810efb6 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index 471d4c6f5392..70dc6f51f841 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index d3e7e26c1be6..3142bc7424e9 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index bc707030d739..980899afbd79 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index fb918a7d4e58..9236149042bd 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecrpublic/pom.xml b/services/ecrpublic/pom.xml index 0292944ad7f0..71195647fc23 100644 --- a/services/ecrpublic/pom.xml +++ b/services/ecrpublic/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT ecrpublic AWS Java SDK :: Services :: ECR PUBLIC diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index eb2fe0676901..c2569b29daa2 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index 4029b71e0beb..3743928a2ab1 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index d6e8bc4ecf9a..7072717097bd 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT eks AWS Java SDK :: Services :: EKS diff --git a/services/eksauth/pom.xml b/services/eksauth/pom.xml index 618b7a1767b4..18ee95383b6a 100644 --- a/services/eksauth/pom.xml +++ b/services/eksauth/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT eksauth AWS Java SDK :: Services :: EKS Auth diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index 4046d07e4d0d..004f27d3dab0 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index f4d88d6bf2cb..9b0e6eb89d78 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index 03fded5cbc27..8d142140fa15 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index eea0b36bc823..00810304683d 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index 1fe0e9bf791d..2b948cf80761 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index 72ddb7b264bc..1e11e4bc8194 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index 6e82c6bd99da..3555feb4590e 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/emrcontainers/pom.xml b/services/emrcontainers/pom.xml index 1586dd323bc9..e482d56003b7 100644 --- a/services/emrcontainers/pom.xml +++ b/services/emrcontainers/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT emrcontainers AWS Java SDK :: Services :: EMR Containers diff --git a/services/emrserverless/pom.xml b/services/emrserverless/pom.xml index 3bfdf3f0fe26..3f634c1f3375 100644 --- a/services/emrserverless/pom.xml +++ b/services/emrserverless/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT emrserverless AWS Java SDK :: Services :: EMR Serverless diff --git a/services/entityresolution/pom.xml b/services/entityresolution/pom.xml index 40c1bcf1fbfc..f6165aa3fca5 100644 --- a/services/entityresolution/pom.xml +++ b/services/entityresolution/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT entityresolution AWS Java SDK :: Services :: Entity Resolution diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index c4abd39aa522..fc1ae94acaa2 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/evidently/pom.xml b/services/evidently/pom.xml index e4891127e768..f612fb1ebc2e 100644 --- a/services/evidently/pom.xml +++ b/services/evidently/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT evidently AWS Java SDK :: Services :: Evidently diff --git a/services/evs/pom.xml b/services/evs/pom.xml index c0fa3115fee9..e783879f101b 100644 --- a/services/evs/pom.xml +++ b/services/evs/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT evs AWS Java SDK :: Services :: Evs diff --git a/services/finspace/pom.xml b/services/finspace/pom.xml index c95e9fae963f..a2f93ac46f58 100644 --- a/services/finspace/pom.xml +++ b/services/finspace/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT finspace AWS Java SDK :: Services :: Finspace diff --git a/services/finspacedata/pom.xml b/services/finspacedata/pom.xml index 300bcfec9616..166e197646bd 100644 --- a/services/finspacedata/pom.xml +++ b/services/finspacedata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT finspacedata AWS Java SDK :: Services :: Finspace Data diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index 46ee017e422c..c70714a0c33f 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fis/pom.xml b/services/fis/pom.xml index 84b82865216b..2b3d914a1759 100644 --- a/services/fis/pom.xml +++ b/services/fis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT fis AWS Java SDK :: Services :: Fis diff --git a/services/fms/pom.xml b/services/fms/pom.xml index 9006dd185465..f962dd4afbe2 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index f223c067f310..38a0c1712f75 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index 40836fc16d0c..08af78b430e4 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index 53e56334dc26..36bbd452af67 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/freetier/pom.xml b/services/freetier/pom.xml index f2ccd8ee301d..32f6c1e81b6e 100644 --- a/services/freetier/pom.xml +++ b/services/freetier/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT freetier AWS Java SDK :: Services :: Free Tier diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index 49e6eec6087e..fb985604b945 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index 47c4426b373d..d647f09c4606 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/gameliftstreams/pom.xml b/services/gameliftstreams/pom.xml index ee708dc319b5..e93c2745d80b 100644 --- a/services/gameliftstreams/pom.xml +++ b/services/gameliftstreams/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT gameliftstreams AWS Java SDK :: Services :: Game Lift Streams diff --git a/services/geomaps/pom.xml b/services/geomaps/pom.xml index 56ad92fc37b9..4d187d344dbe 100644 --- a/services/geomaps/pom.xml +++ b/services/geomaps/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT geomaps AWS Java SDK :: Services :: Geo Maps diff --git a/services/geoplaces/pom.xml b/services/geoplaces/pom.xml index 4c3af1c6b7d8..912f2706feb5 100644 --- a/services/geoplaces/pom.xml +++ b/services/geoplaces/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT geoplaces AWS Java SDK :: Services :: Geo Places diff --git a/services/georoutes/pom.xml b/services/georoutes/pom.xml index fad3ea4e98c7..eb5202b71fbb 100644 --- a/services/georoutes/pom.xml +++ b/services/georoutes/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT georoutes AWS Java SDK :: Services :: Geo Routes diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index 1e1a6313f5c5..7b07d484f995 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index 21fa5bc69854..a81bee953fe1 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index 5520b8e14d0a..f65a96c2f2d4 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT 4.0.0 glue diff --git a/services/grafana/pom.xml b/services/grafana/pom.xml index 5ed7b1d6d498..de016016f1f7 100644 --- a/services/grafana/pom.xml +++ b/services/grafana/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT grafana AWS Java SDK :: Services :: Grafana diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index 7633558b8d70..f6beb7cd1884 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/greengrassv2/pom.xml b/services/greengrassv2/pom.xml index 32c36e0f7cae..c4ff00910859 100644 --- a/services/greengrassv2/pom.xml +++ b/services/greengrassv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT greengrassv2 AWS Java SDK :: Services :: Greengrass V2 diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index acd0de38614c..75e296ee30aa 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index 086341702f46..879ceaf5ec35 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index e8b137714e8e..ea82900ecd26 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/healthlake/pom.xml b/services/healthlake/pom.xml index a4b41a075380..e5a1c2c4d5cd 100644 --- a/services/healthlake/pom.xml +++ b/services/healthlake/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT healthlake AWS Java SDK :: Services :: Health Lake diff --git a/services/iam/pom.xml b/services/iam/pom.xml index 3b27b3b0b346..a88b8b69d5c0 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index 03273d435d38..c4b485914c15 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index d5dc53754f16..133afe5c594f 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index 2455090e4e3f..d4de0da407b8 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/inspector2/pom.xml b/services/inspector2/pom.xml index 47258b8c0cb3..6ce36906a924 100644 --- a/services/inspector2/pom.xml +++ b/services/inspector2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT inspector2 AWS Java SDK :: Services :: Inspector2 diff --git a/services/inspectorscan/pom.xml b/services/inspectorscan/pom.xml index 039597f9bce0..f42d4c7231b9 100644 --- a/services/inspectorscan/pom.xml +++ b/services/inspectorscan/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT inspectorscan AWS Java SDK :: Services :: Inspector Scan diff --git a/services/internetmonitor/pom.xml b/services/internetmonitor/pom.xml index 0262279dee37..00a5c249c83a 100644 --- a/services/internetmonitor/pom.xml +++ b/services/internetmonitor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT internetmonitor AWS Java SDK :: Services :: Internet Monitor diff --git a/services/invoicing/pom.xml b/services/invoicing/pom.xml index 81605742fdd7..b4b0633a897f 100644 --- a/services/invoicing/pom.xml +++ b/services/invoicing/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT invoicing AWS Java SDK :: Services :: Invoicing diff --git a/services/iot/pom.xml b/services/iot/pom.xml index 576a7d59b792..93f877eee4b9 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index c26c869312cd..e30438b3e466 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index 410e0061e75e..c5705ef252e9 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotdeviceadvisor/pom.xml b/services/iotdeviceadvisor/pom.xml index 3ca74166d1c4..5e34a6666e51 100644 --- a/services/iotdeviceadvisor/pom.xml +++ b/services/iotdeviceadvisor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT iotdeviceadvisor AWS Java SDK :: Services :: Iot Device Advisor diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index 574f7b9e7722..02940232daa1 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index 639659758d89..5488652cc804 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotfleetwise/pom.xml b/services/iotfleetwise/pom.xml index f22cea813916..45528839f920 100644 --- a/services/iotfleetwise/pom.xml +++ b/services/iotfleetwise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT iotfleetwise AWS Java SDK :: Services :: Io T Fleet Wise diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index 8e9e7977aea7..704d57d2dd01 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotmanagedintegrations/pom.xml b/services/iotmanagedintegrations/pom.xml index 4923022a04a5..7ee7ec394494 100644 --- a/services/iotmanagedintegrations/pom.xml +++ b/services/iotmanagedintegrations/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT iotmanagedintegrations AWS Java SDK :: Services :: IoT Managed Integrations diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index e4909fa3a342..bd591ed0973f 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index 0c6038dd8270..d9b1e31407dd 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index 24b5547dd288..32e6384d2795 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/iottwinmaker/pom.xml b/services/iottwinmaker/pom.xml index fc988028cf9c..510d0994c1a0 100644 --- a/services/iottwinmaker/pom.xml +++ b/services/iottwinmaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT iottwinmaker AWS Java SDK :: Services :: Io T Twin Maker diff --git a/services/iotwireless/pom.xml b/services/iotwireless/pom.xml index af3d2dbb88fd..b35623acebaf 100644 --- a/services/iotwireless/pom.xml +++ b/services/iotwireless/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT iotwireless AWS Java SDK :: Services :: IoT Wireless diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index 191065fdfe85..2686cd9c9b62 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT ivs AWS Java SDK :: Services :: Ivs diff --git a/services/ivschat/pom.xml b/services/ivschat/pom.xml index d6f79e2bea0d..dd53ed044069 100644 --- a/services/ivschat/pom.xml +++ b/services/ivschat/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT ivschat AWS Java SDK :: Services :: Ivschat diff --git a/services/ivsrealtime/pom.xml b/services/ivsrealtime/pom.xml index 60e82c4fb4e7..f855bdff2a2c 100644 --- a/services/ivsrealtime/pom.xml +++ b/services/ivsrealtime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT ivsrealtime AWS Java SDK :: Services :: IVS Real Time diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index ae51f1e65dc7..d2fb11abfff6 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kafkaconnect/pom.xml b/services/kafkaconnect/pom.xml index 7db666df2347..fbc2d7992920 100644 --- a/services/kafkaconnect/pom.xml +++ b/services/kafkaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT kafkaconnect AWS Java SDK :: Services :: Kafka Connect diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index 06550e568a7b..8aa997fee7ea 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kendraranking/pom.xml b/services/kendraranking/pom.xml index c06f59d040d0..894b212c2a3b 100644 --- a/services/kendraranking/pom.xml +++ b/services/kendraranking/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT kendraranking AWS Java SDK :: Services :: Kendra Ranking diff --git a/services/keyspaces/pom.xml b/services/keyspaces/pom.xml index e2d38420dfa6..7e2a04b9cc1a 100644 --- a/services/keyspaces/pom.xml +++ b/services/keyspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT keyspaces AWS Java SDK :: Services :: Keyspaces diff --git a/services/keyspacesstreams/pom.xml b/services/keyspacesstreams/pom.xml index ea8ff9b6a52b..0e38a8a5899b 100644 --- a/services/keyspacesstreams/pom.xml +++ b/services/keyspacesstreams/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT keyspacesstreams AWS Java SDK :: Services :: Keyspaces Streams diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index 64945bf13c74..d5cb580f99a4 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index 92b3a8bf17df..6e6aaa6a4574 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index 5d16239fc5fe..4e2ba0e9c337 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index 27109511628a..a98de61a44e9 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index 9a17807c7e3b..bb8c2eee68d2 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index 7989616b3273..afcef5b086cb 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index b0b081e179cc..a15800f5b5fd 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kinesisvideowebrtcstorage/pom.xml b/services/kinesisvideowebrtcstorage/pom.xml index 82a12bf54f0d..136c8e906ca5 100644 --- a/services/kinesisvideowebrtcstorage/pom.xml +++ b/services/kinesisvideowebrtcstorage/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT kinesisvideowebrtcstorage AWS Java SDK :: Services :: Kinesis Video Web RTC Storage diff --git a/services/kms/pom.xml b/services/kms/pom.xml index 996345252125..534ed8e4af27 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index e09d372a9cf0..b10959cd5e6e 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index 95f56e5bafb7..bd691d3d9070 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/launchwizard/pom.xml b/services/launchwizard/pom.xml index caecbe2af302..0d68c07a2238 100644 --- a/services/launchwizard/pom.xml +++ b/services/launchwizard/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT launchwizard AWS Java SDK :: Services :: Launch Wizard diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index a5e756e43a30..77f30313fdc7 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexmodelsv2/pom.xml b/services/lexmodelsv2/pom.xml index 7f90418adb30..82e23d6d9dc7 100644 --- a/services/lexmodelsv2/pom.xml +++ b/services/lexmodelsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT lexmodelsv2 AWS Java SDK :: Services :: Lex Models V2 diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index dc6e57ce76e0..92ed4fc4380b 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/lexruntimev2/pom.xml b/services/lexruntimev2/pom.xml index 1c83d7890f7e..c7a4bc6aa049 100644 --- a/services/lexruntimev2/pom.xml +++ b/services/lexruntimev2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT lexruntimev2 AWS Java SDK :: Services :: Lex Runtime V2 diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index f3c97d4ece0b..a89b0b3d4226 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/licensemanagerlinuxsubscriptions/pom.xml b/services/licensemanagerlinuxsubscriptions/pom.xml index 5bc8fa78312a..1ca1d414d7cc 100644 --- a/services/licensemanagerlinuxsubscriptions/pom.xml +++ b/services/licensemanagerlinuxsubscriptions/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT licensemanagerlinuxsubscriptions AWS Java SDK :: Services :: License Manager Linux Subscriptions diff --git a/services/licensemanagerusersubscriptions/pom.xml b/services/licensemanagerusersubscriptions/pom.xml index 5f542e0e5108..0d01e2675783 100644 --- a/services/licensemanagerusersubscriptions/pom.xml +++ b/services/licensemanagerusersubscriptions/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT licensemanagerusersubscriptions AWS Java SDK :: Services :: License Manager User Subscriptions diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index 601c2690819c..8b29120df76f 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/location/pom.xml b/services/location/pom.xml index 420abd01fc55..59bf6fdc2fe4 100644 --- a/services/location/pom.xml +++ b/services/location/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT location AWS Java SDK :: Services :: Location diff --git a/services/lookoutequipment/pom.xml b/services/lookoutequipment/pom.xml index dd5500a4ed2e..33ec93df9e1d 100644 --- a/services/lookoutequipment/pom.xml +++ b/services/lookoutequipment/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT lookoutequipment AWS Java SDK :: Services :: Lookout Equipment diff --git a/services/m2/pom.xml b/services/m2/pom.xml index cce69dc98157..f67b77f6ab74 100644 --- a/services/m2/pom.xml +++ b/services/m2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT m2 AWS Java SDK :: Services :: M2 diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index bcf8eec883cf..f18782799c83 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index e6900028e372..ba48366dc56b 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/mailmanager/pom.xml b/services/mailmanager/pom.xml index 29f8f1b47e7a..ee994d4a0a45 100644 --- a/services/mailmanager/pom.xml +++ b/services/mailmanager/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT mailmanager AWS Java SDK :: Services :: Mail Manager diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index fbc86a92dda3..7f05d17d53af 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/managedblockchainquery/pom.xml b/services/managedblockchainquery/pom.xml index 69d0cae48ff7..37e0d46aa413 100644 --- a/services/managedblockchainquery/pom.xml +++ b/services/managedblockchainquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT managedblockchainquery AWS Java SDK :: Services :: Managed Blockchain Query diff --git a/services/marketplaceagreement/pom.xml b/services/marketplaceagreement/pom.xml index 13c732888dff..4de0c4dd0c22 100644 --- a/services/marketplaceagreement/pom.xml +++ b/services/marketplaceagreement/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT marketplaceagreement AWS Java SDK :: Services :: Marketplace Agreement diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index 51b41fbe9ca2..d953380bac60 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index dde568dd24c1..c3779aa1a396 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplacedeployment/pom.xml b/services/marketplacedeployment/pom.xml index 06e36828137e..82874e72b138 100644 --- a/services/marketplacedeployment/pom.xml +++ b/services/marketplacedeployment/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT marketplacedeployment AWS Java SDK :: Services :: Marketplace Deployment diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index 4d199a42915c..c31f57cb473f 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index 7904c20445b4..22af69a7fa1f 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/marketplacereporting/pom.xml b/services/marketplacereporting/pom.xml index ea0f7d23a264..92186451df30 100644 --- a/services/marketplacereporting/pom.xml +++ b/services/marketplacereporting/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT marketplacereporting AWS Java SDK :: Services :: Marketplace Reporting diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index 75aace376cce..09f394a6cb63 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index 8b90304fe372..536a3b171533 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index 4c98c17ad589..60d91a1ff1fa 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index 148dc4dcd948..ad3a10ceb5c9 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT 4.0.0 mediapackage diff --git a/services/mediapackagev2/pom.xml b/services/mediapackagev2/pom.xml index ea05ef816651..14cbbbd740d3 100644 --- a/services/mediapackagev2/pom.xml +++ b/services/mediapackagev2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT mediapackagev2 AWS Java SDK :: Services :: Media Package V2 diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index b8a0df82d3f8..e25916699dc5 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index b4b983887ceb..fc17240661ba 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index 13651a17d514..36c57698780d 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index 675d9dec1639..a19450c684a8 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/medicalimaging/pom.xml b/services/medicalimaging/pom.xml index 5918e6f342bf..ab6d9c615650 100644 --- a/services/medicalimaging/pom.xml +++ b/services/medicalimaging/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT medicalimaging AWS Java SDK :: Services :: Medical Imaging diff --git a/services/memorydb/pom.xml b/services/memorydb/pom.xml index 7fb649e6850e..c8e5a4bbb10c 100644 --- a/services/memorydb/pom.xml +++ b/services/memorydb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT memorydb AWS Java SDK :: Services :: Memory DB diff --git a/services/mgn/pom.xml b/services/mgn/pom.xml index 341cce33e694..581d0449e187 100644 --- a/services/mgn/pom.xml +++ b/services/mgn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT mgn AWS Java SDK :: Services :: Mgn diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index 262a36484d39..b59c16e8058f 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index 2872afe4ae1c..e2f0dc534821 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/migrationhuborchestrator/pom.xml b/services/migrationhuborchestrator/pom.xml index f285ec7bb6c3..54b62fd59abf 100644 --- a/services/migrationhuborchestrator/pom.xml +++ b/services/migrationhuborchestrator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT migrationhuborchestrator AWS Java SDK :: Services :: Migration Hub Orchestrator diff --git a/services/migrationhubrefactorspaces/pom.xml b/services/migrationhubrefactorspaces/pom.xml index 40f2d6845308..af9068f2ccde 100644 --- a/services/migrationhubrefactorspaces/pom.xml +++ b/services/migrationhubrefactorspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT migrationhubrefactorspaces AWS Java SDK :: Services :: Migration Hub Refactor Spaces diff --git a/services/migrationhubstrategy/pom.xml b/services/migrationhubstrategy/pom.xml index 313eb8b03a3d..cc54cfec92f9 100644 --- a/services/migrationhubstrategy/pom.xml +++ b/services/migrationhubstrategy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT migrationhubstrategy AWS Java SDK :: Services :: Migration Hub Strategy diff --git a/services/mpa/pom.xml b/services/mpa/pom.xml index 05f79c05c4c9..a42ad542dbbf 100644 --- a/services/mpa/pom.xml +++ b/services/mpa/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT mpa AWS Java SDK :: Services :: MPA diff --git a/services/mq/pom.xml b/services/mq/pom.xml index 9b183978d9c1..4fa6c7fe401e 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index 99e79aa17d2d..165c60cd4fc7 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/mwaa/pom.xml b/services/mwaa/pom.xml index db47a1351bb4..bba386266945 100644 --- a/services/mwaa/pom.xml +++ b/services/mwaa/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT mwaa AWS Java SDK :: Services :: MWAA diff --git a/services/mwaaserverless/pom.xml b/services/mwaaserverless/pom.xml index cd7b9033fcca..15c0bb6030c4 100644 --- a/services/mwaaserverless/pom.xml +++ b/services/mwaaserverless/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT mwaaserverless AWS Java SDK :: Services :: MWAA Serverless diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index 640bf331c8ec..28b4b7480455 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT neptune AWS Java SDK :: Services :: Neptune diff --git a/services/neptunedata/pom.xml b/services/neptunedata/pom.xml index 0f5c622ca521..4735e64cff2e 100644 --- a/services/neptunedata/pom.xml +++ b/services/neptunedata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT neptunedata AWS Java SDK :: Services :: Neptunedata diff --git a/services/neptunegraph/pom.xml b/services/neptunegraph/pom.xml index b0a33e7fe191..389c69c52397 100644 --- a/services/neptunegraph/pom.xml +++ b/services/neptunegraph/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT neptunegraph AWS Java SDK :: Services :: Neptune Graph diff --git a/services/networkfirewall/pom.xml b/services/networkfirewall/pom.xml index cd4ec5b64cfa..9562a2ec16e4 100644 --- a/services/networkfirewall/pom.xml +++ b/services/networkfirewall/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT networkfirewall AWS Java SDK :: Services :: Network Firewall diff --git a/services/networkflowmonitor/pom.xml b/services/networkflowmonitor/pom.xml index 8c5fbd6212e7..51043c686394 100644 --- a/services/networkflowmonitor/pom.xml +++ b/services/networkflowmonitor/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT networkflowmonitor AWS Java SDK :: Services :: Network Flow Monitor diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index 6934026d2088..89760893ed93 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/networkmonitor/pom.xml b/services/networkmonitor/pom.xml index e5ac5c452626..9bdd5c0f28aa 100644 --- a/services/networkmonitor/pom.xml +++ b/services/networkmonitor/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT networkmonitor AWS Java SDK :: Services :: Network Monitor diff --git a/services/notifications/pom.xml b/services/notifications/pom.xml index f4ba41777449..460de19d9735 100644 --- a/services/notifications/pom.xml +++ b/services/notifications/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT notifications AWS Java SDK :: Services :: Notifications diff --git a/services/notificationscontacts/pom.xml b/services/notificationscontacts/pom.xml index 3e61310223ac..c9fee3ec3e2c 100644 --- a/services/notificationscontacts/pom.xml +++ b/services/notificationscontacts/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT notificationscontacts AWS Java SDK :: Services :: Notifications Contacts diff --git a/services/oam/pom.xml b/services/oam/pom.xml index f8a327d87b2a..a87ac9590d75 100644 --- a/services/oam/pom.xml +++ b/services/oam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT oam AWS Java SDK :: Services :: OAM diff --git a/services/observabilityadmin/pom.xml b/services/observabilityadmin/pom.xml index 66d6faaea2a7..14cde4dcc102 100644 --- a/services/observabilityadmin/pom.xml +++ b/services/observabilityadmin/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT observabilityadmin AWS Java SDK :: Services :: Observability Admin diff --git a/services/odb/pom.xml b/services/odb/pom.xml index 92944ea5dd9c..9f0a02881d66 100644 --- a/services/odb/pom.xml +++ b/services/odb/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT odb AWS Java SDK :: Services :: Odb diff --git a/services/omics/pom.xml b/services/omics/pom.xml index ff1e5d2cb48b..207375e4068b 100644 --- a/services/omics/pom.xml +++ b/services/omics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT omics AWS Java SDK :: Services :: Omics diff --git a/services/opensearch/pom.xml b/services/opensearch/pom.xml index fc0709cb9355..47ed73a0c107 100644 --- a/services/opensearch/pom.xml +++ b/services/opensearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT opensearch AWS Java SDK :: Services :: Open Search diff --git a/services/opensearchserverless/pom.xml b/services/opensearchserverless/pom.xml index b3868718fb2f..60dfb21d4cb7 100644 --- a/services/opensearchserverless/pom.xml +++ b/services/opensearchserverless/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT opensearchserverless AWS Java SDK :: Services :: Open Search Serverless diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index c9794f464195..19304eed2a0f 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/osis/pom.xml b/services/osis/pom.xml index b6b8843642f1..da284652936a 100644 --- a/services/osis/pom.xml +++ b/services/osis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT osis AWS Java SDK :: Services :: OSIS diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index 35820a685961..31de282e6e6a 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT outposts AWS Java SDK :: Services :: Outposts diff --git a/services/panorama/pom.xml b/services/panorama/pom.xml index 857b4cc4a8a3..81b9c1a95e79 100644 --- a/services/panorama/pom.xml +++ b/services/panorama/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT panorama AWS Java SDK :: Services :: Panorama diff --git a/services/partnercentralchannel/pom.xml b/services/partnercentralchannel/pom.xml index bcabb3b0bced..12e44a0f1b65 100644 --- a/services/partnercentralchannel/pom.xml +++ b/services/partnercentralchannel/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT partnercentralchannel AWS Java SDK :: Services :: Partner Central Channel diff --git a/services/partnercentralselling/pom.xml b/services/partnercentralselling/pom.xml index 275d2aeb8bc7..9e97a4e97805 100644 --- a/services/partnercentralselling/pom.xml +++ b/services/partnercentralselling/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT partnercentralselling AWS Java SDK :: Services :: Partner Central Selling diff --git a/services/paymentcryptography/pom.xml b/services/paymentcryptography/pom.xml index 3a10ef62f6ad..fa7830512a93 100644 --- a/services/paymentcryptography/pom.xml +++ b/services/paymentcryptography/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT paymentcryptography AWS Java SDK :: Services :: Payment Cryptography diff --git a/services/paymentcryptographydata/pom.xml b/services/paymentcryptographydata/pom.xml index e7f486e0a86d..2205abc23b27 100644 --- a/services/paymentcryptographydata/pom.xml +++ b/services/paymentcryptographydata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT paymentcryptographydata AWS Java SDK :: Services :: Payment Cryptography Data diff --git a/services/pcaconnectorad/pom.xml b/services/pcaconnectorad/pom.xml index 90a11bf43bef..944d7a3efcef 100644 --- a/services/pcaconnectorad/pom.xml +++ b/services/pcaconnectorad/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT pcaconnectorad AWS Java SDK :: Services :: Pca Connector Ad diff --git a/services/pcaconnectorscep/pom.xml b/services/pcaconnectorscep/pom.xml index a2d115269529..108929c7f01c 100644 --- a/services/pcaconnectorscep/pom.xml +++ b/services/pcaconnectorscep/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT pcaconnectorscep AWS Java SDK :: Services :: Pca Connector Scep diff --git a/services/pcs/pom.xml b/services/pcs/pom.xml index f39f80e355dd..df06b0be0a24 100644 --- a/services/pcs/pom.xml +++ b/services/pcs/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT pcs AWS Java SDK :: Services :: PCS diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index 35428666ffb4..4c1f9ddd6f92 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index e7abf81677f3..caad01e79857 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index 37d55aafbaf6..63f109b99c13 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index 25776ed3220d..0c4f134157ff 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index 972f913474bf..18c83b98392d 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index 919e471ef1b5..576f1d5309bf 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index cd3104facf96..99121b19c38d 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/pinpointsmsvoicev2/pom.xml b/services/pinpointsmsvoicev2/pom.xml index 2ea130fb94be..e6ae9adef76a 100644 --- a/services/pinpointsmsvoicev2/pom.xml +++ b/services/pinpointsmsvoicev2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT pinpointsmsvoicev2 AWS Java SDK :: Services :: Pinpoint SMS Voice V2 diff --git a/services/pipes/pom.xml b/services/pipes/pom.xml index f972246cbec6..580e855d2081 100644 --- a/services/pipes/pom.xml +++ b/services/pipes/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT pipes AWS Java SDK :: Services :: Pipes diff --git a/services/polly/pom.xml b/services/polly/pom.xml index 334595835c09..6eff620d8996 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index 5ed4e473cc82..8f96048c4709 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index cc6d198ecce7..1564edb4c91d 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT 4.0.0 pricing diff --git a/services/proton/pom.xml b/services/proton/pom.xml index d098d42002b5..3bdca9e237ed 100644 --- a/services/proton/pom.xml +++ b/services/proton/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT proton AWS Java SDK :: Services :: Proton diff --git a/services/qapps/pom.xml b/services/qapps/pom.xml index 9410885b7949..68ca6feaed9c 100644 --- a/services/qapps/pom.xml +++ b/services/qapps/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT qapps AWS Java SDK :: Services :: Q Apps diff --git a/services/qbusiness/pom.xml b/services/qbusiness/pom.xml index 476a9bd74822..44d05a045d76 100644 --- a/services/qbusiness/pom.xml +++ b/services/qbusiness/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT qbusiness AWS Java SDK :: Services :: Q Business diff --git a/services/qconnect/pom.xml b/services/qconnect/pom.xml index c89a641310a9..731a2e011708 100644 --- a/services/qconnect/pom.xml +++ b/services/qconnect/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT qconnect AWS Java SDK :: Services :: Q Connect diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index bbf64a410681..92d1eb7b438f 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index 68e7739ae1d0..54b4efd01354 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT ram AWS Java SDK :: Services :: RAM diff --git a/services/rbin/pom.xml b/services/rbin/pom.xml index a0a5072f7d92..8db98fcfb8b1 100644 --- a/services/rbin/pom.xml +++ b/services/rbin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT rbin AWS Java SDK :: Services :: Rbin diff --git a/services/rds/pom.xml b/services/rds/pom.xml index 67480875f143..330beebd48d0 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index e5821ac55101..4b105734b3a7 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index 038ee1c86eef..818f9774998a 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index 8736ae0f42b7..88e33d61b054 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/redshiftserverless/pom.xml b/services/redshiftserverless/pom.xml index 27b61cf84310..1c79e5fe4e59 100644 --- a/services/redshiftserverless/pom.xml +++ b/services/redshiftserverless/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT redshiftserverless AWS Java SDK :: Services :: Redshift Serverless diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index 3c58f7335300..879836c1bfba 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/repostspace/pom.xml b/services/repostspace/pom.xml index 24a59b91c74e..aeb869f261a0 100644 --- a/services/repostspace/pom.xml +++ b/services/repostspace/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT repostspace AWS Java SDK :: Services :: Repostspace diff --git a/services/resiliencehub/pom.xml b/services/resiliencehub/pom.xml index 26ec72e2c3ff..aebc0fffff42 100644 --- a/services/resiliencehub/pom.xml +++ b/services/resiliencehub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT resiliencehub AWS Java SDK :: Services :: Resiliencehub diff --git a/services/resourceexplorer2/pom.xml b/services/resourceexplorer2/pom.xml index 53918763412f..2fa4dc1763b8 100644 --- a/services/resourceexplorer2/pom.xml +++ b/services/resourceexplorer2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT resourceexplorer2 AWS Java SDK :: Services :: Resource Explorer 2 diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index 72c3463a69c0..9a8852514ce3 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index 7fcf7ccb6eb1..f4a77ed704aa 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/rolesanywhere/pom.xml b/services/rolesanywhere/pom.xml index 599b97149823..1db4f598e3e3 100644 --- a/services/rolesanywhere/pom.xml +++ b/services/rolesanywhere/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT rolesanywhere AWS Java SDK :: Services :: Roles Anywhere diff --git a/services/route53/pom.xml b/services/route53/pom.xml index e65b11bf7732..7eab1c70a5bc 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index 4767553a76da..6ed2a23c8a64 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53profiles/pom.xml b/services/route53profiles/pom.xml index e4def893a8ac..8ec9e97b2014 100644 --- a/services/route53profiles/pom.xml +++ b/services/route53profiles/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT route53profiles AWS Java SDK :: Services :: Route53 Profiles diff --git a/services/route53recoverycluster/pom.xml b/services/route53recoverycluster/pom.xml index 12e62142e10c..9ee0268167e6 100644 --- a/services/route53recoverycluster/pom.xml +++ b/services/route53recoverycluster/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT route53recoverycluster AWS Java SDK :: Services :: Route53 Recovery Cluster diff --git a/services/route53recoverycontrolconfig/pom.xml b/services/route53recoverycontrolconfig/pom.xml index 6bf5b34934c4..857079fb0078 100644 --- a/services/route53recoverycontrolconfig/pom.xml +++ b/services/route53recoverycontrolconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT route53recoverycontrolconfig AWS Java SDK :: Services :: Route53 Recovery Control Config diff --git a/services/route53recoveryreadiness/pom.xml b/services/route53recoveryreadiness/pom.xml index 0bf08f083140..4b9f8bc9e629 100644 --- a/services/route53recoveryreadiness/pom.xml +++ b/services/route53recoveryreadiness/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT route53recoveryreadiness AWS Java SDK :: Services :: Route53 Recovery Readiness diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index b5ef897085e7..ae641d21dcbe 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/rtbfabric/pom.xml b/services/rtbfabric/pom.xml index 6dae06df7411..0f05cf979e80 100644 --- a/services/rtbfabric/pom.xml +++ b/services/rtbfabric/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT rtbfabric AWS Java SDK :: Services :: RTB Fabric diff --git a/services/rum/pom.xml b/services/rum/pom.xml index 0372f181c9e4..95e61054897e 100644 --- a/services/rum/pom.xml +++ b/services/rum/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT rum AWS Java SDK :: Services :: RUM diff --git a/services/s3/pom.xml b/services/s3/pom.xml index e5ea7fe6181e..6aa8689c25cf 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index d35a6b4225ca..9ed1a69ec803 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index f9a94e5a9773..38e5db54c0e1 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/s3tables/pom.xml b/services/s3tables/pom.xml index a17e79b18bf8..a059b58ccf1f 100644 --- a/services/s3tables/pom.xml +++ b/services/s3tables/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT s3tables AWS Java SDK :: Services :: S3 Tables diff --git a/services/s3vectors/pom.xml b/services/s3vectors/pom.xml index 077c51c45599..f02d710da480 100644 --- a/services/s3vectors/pom.xml +++ b/services/s3vectors/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT s3vectors AWS Java SDK :: Services :: S3 Vectors diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index 3593673e81c6..3c1a7c88bfb6 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index 0f56e8f659b1..9b1f4945c477 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakeredge/pom.xml b/services/sagemakeredge/pom.xml index e8ea0459f972..e6c4c3e0118b 100644 --- a/services/sagemakeredge/pom.xml +++ b/services/sagemakeredge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT sagemakeredge AWS Java SDK :: Services :: Sagemaker Edge diff --git a/services/sagemakerfeaturestoreruntime/pom.xml b/services/sagemakerfeaturestoreruntime/pom.xml index 882874857dd2..a2406c6c20c9 100644 --- a/services/sagemakerfeaturestoreruntime/pom.xml +++ b/services/sagemakerfeaturestoreruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT sagemakerfeaturestoreruntime AWS Java SDK :: Services :: Sage Maker Feature Store Runtime diff --git a/services/sagemakergeospatial/pom.xml b/services/sagemakergeospatial/pom.xml index 404d7f59ec6d..ac579f0cffaa 100644 --- a/services/sagemakergeospatial/pom.xml +++ b/services/sagemakergeospatial/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT sagemakergeospatial AWS Java SDK :: Services :: Sage Maker Geospatial diff --git a/services/sagemakermetrics/pom.xml b/services/sagemakermetrics/pom.xml index ee828751816b..83f9ed0ab4b8 100644 --- a/services/sagemakermetrics/pom.xml +++ b/services/sagemakermetrics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT sagemakermetrics AWS Java SDK :: Services :: Sage Maker Metrics diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index f9e43bad42c4..f795ae3beaad 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/sagemakerruntimehttp2/pom.xml b/services/sagemakerruntimehttp2/pom.xml index 8cad92deb6be..c8693be0297e 100644 --- a/services/sagemakerruntimehttp2/pom.xml +++ b/services/sagemakerruntimehttp2/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT sagemakerruntimehttp2 AWS Java SDK :: Services :: Sage Maker Runtime HTTP2 diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index 5227517fa8c3..15008c59cc63 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/scheduler/pom.xml b/services/scheduler/pom.xml index 09d366e33d13..2cd24eb3351a 100644 --- a/services/scheduler/pom.xml +++ b/services/scheduler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT scheduler AWS Java SDK :: Services :: Scheduler diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index 6f6dab12308b..f171d4235250 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index 0c1926d10943..1b788aed2aa6 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index caa00f39a329..e1d5e5febdd0 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/securityir/pom.xml b/services/securityir/pom.xml index 83a308b08c51..791dee59d988 100644 --- a/services/securityir/pom.xml +++ b/services/securityir/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT securityir AWS Java SDK :: Services :: Security IR diff --git a/services/securitylake/pom.xml b/services/securitylake/pom.xml index e896eb5f72e9..44e418168e18 100644 --- a/services/securitylake/pom.xml +++ b/services/securitylake/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT securitylake AWS Java SDK :: Services :: Security Lake diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index d51822132268..e46948168f8e 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index 42b3463d02e3..a8499eecd4f0 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicecatalogappregistry/pom.xml b/services/servicecatalogappregistry/pom.xml index b43af91b1dc6..a93242fd5403 100644 --- a/services/servicecatalogappregistry/pom.xml +++ b/services/servicecatalogappregistry/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT servicecatalogappregistry AWS Java SDK :: Services :: Service Catalog App Registry diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index 191eca2c7880..75d472cc9025 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index 97782a370fa9..feef29d78c69 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index 119da71cce55..bb26f84a28b2 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index 7ed9acd5e6ab..3741273b188f 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index 981857c77e2a..53b8ac7c1c95 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index a8a4ec9dac83..77434e0e3878 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index 2a894cedde76..1644a095fc93 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT signer AWS Java SDK :: Services :: Signer diff --git a/services/signin/pom.xml b/services/signin/pom.xml index eada99ed416e..1f49388fdb98 100644 --- a/services/signin/pom.xml +++ b/services/signin/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT signin AWS Java SDK :: Services :: Signin diff --git a/services/simspaceweaver/pom.xml b/services/simspaceweaver/pom.xml index bae6a0cb114d..57c7a921d9af 100644 --- a/services/simspaceweaver/pom.xml +++ b/services/simspaceweaver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT simspaceweaver AWS Java SDK :: Services :: Sim Space Weaver diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index 53bb2b1c2111..d5581803792f 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/snowdevicemanagement/pom.xml b/services/snowdevicemanagement/pom.xml index 94a07327b960..bada22ad8115 100644 --- a/services/snowdevicemanagement/pom.xml +++ b/services/snowdevicemanagement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT snowdevicemanagement AWS Java SDK :: Services :: Snow Device Management diff --git a/services/sns/pom.xml b/services/sns/pom.xml index 86cdb61438b9..60de9a8d36bb 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/socialmessaging/pom.xml b/services/socialmessaging/pom.xml index be0919ec1018..8f7b06a70416 100644 --- a/services/socialmessaging/pom.xml +++ b/services/socialmessaging/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT socialmessaging AWS Java SDK :: Services :: Social Messaging diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index 809b23fdc1db..4d00eeece8a2 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index 7b67b2f69962..96954306a180 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/ssmcontacts/pom.xml b/services/ssmcontacts/pom.xml index a26837006c3b..ef7efa90b1ac 100644 --- a/services/ssmcontacts/pom.xml +++ b/services/ssmcontacts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT ssmcontacts AWS Java SDK :: Services :: SSM Contacts diff --git a/services/ssmguiconnect/pom.xml b/services/ssmguiconnect/pom.xml index ea288fcc1346..0ce377dca391 100644 --- a/services/ssmguiconnect/pom.xml +++ b/services/ssmguiconnect/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT ssmguiconnect AWS Java SDK :: Services :: SSM Gui Connect diff --git a/services/ssmincidents/pom.xml b/services/ssmincidents/pom.xml index 148903e7df9c..adcd5918a891 100644 --- a/services/ssmincidents/pom.xml +++ b/services/ssmincidents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT ssmincidents AWS Java SDK :: Services :: SSM Incidents diff --git a/services/ssmquicksetup/pom.xml b/services/ssmquicksetup/pom.xml index 4da6a4ebeb03..b8907cd18604 100644 --- a/services/ssmquicksetup/pom.xml +++ b/services/ssmquicksetup/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT ssmquicksetup AWS Java SDK :: Services :: SSM Quick Setup diff --git a/services/ssmsap/pom.xml b/services/ssmsap/pom.xml index 04137c21af48..63948219fd38 100644 --- a/services/ssmsap/pom.xml +++ b/services/ssmsap/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT ssmsap AWS Java SDK :: Services :: Ssm Sap diff --git a/services/sso/pom.xml b/services/sso/pom.xml index 2f396a532a76..e023f72b3ca5 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index bf6384fbd305..90c90aa06b54 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index b472086bc1e8..0271b1f91b83 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index e79ac304d9c8..261d54992ca9 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index 9d5c2f8d6ca4..c4c121244b31 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT sts AWS Java SDK :: Services :: AWS STS diff --git a/services/supplychain/pom.xml b/services/supplychain/pom.xml index a14cf8bf104b..d9a9f36bdee4 100644 --- a/services/supplychain/pom.xml +++ b/services/supplychain/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT supplychain AWS Java SDK :: Services :: Supply Chain diff --git a/services/support/pom.xml b/services/support/pom.xml index f0b6b9bd21e0..3552595fe6ce 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT support AWS Java SDK :: Services :: AWS Support diff --git a/services/supportapp/pom.xml b/services/supportapp/pom.xml index 770838b9edd9..d2877ae85431 100644 --- a/services/supportapp/pom.xml +++ b/services/supportapp/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT supportapp AWS Java SDK :: Services :: Support App diff --git a/services/swf/pom.xml b/services/swf/pom.xml index f3dfcd6161ed..9d069d6e006b 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index 46888d9dd67b..73bead9b5c2f 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/taxsettings/pom.xml b/services/taxsettings/pom.xml index 7c27b9d4c60c..1cc7b91da579 100644 --- a/services/taxsettings/pom.xml +++ b/services/taxsettings/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT taxsettings AWS Java SDK :: Services :: Tax Settings diff --git a/services/textract/pom.xml b/services/textract/pom.xml index 86d43a01b882..e25912ba7bbf 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreaminfluxdb/pom.xml b/services/timestreaminfluxdb/pom.xml index f6cfb2872c69..568a7ae7d9ca 100644 --- a/services/timestreaminfluxdb/pom.xml +++ b/services/timestreaminfluxdb/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT timestreaminfluxdb AWS Java SDK :: Services :: Timestream Influx DB diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index 1d0d8f833eca..cb8b5932961f 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index 95a3be2c48d9..5df4fa63cb2b 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/tnb/pom.xml b/services/tnb/pom.xml index 0f517b03d9cf..ab537883a258 100644 --- a/services/tnb/pom.xml +++ b/services/tnb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT tnb AWS Java SDK :: Services :: Tnb diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index de8d06860eb3..7ddeca1d6403 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index f83545ab09ad..82f54a1e72c0 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index 0e36fce021d9..64182395333f 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index 61219bf435ea..96cf161d4e7a 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT 4.0.0 translate diff --git a/services/trustedadvisor/pom.xml b/services/trustedadvisor/pom.xml index 29a21cdc1bbd..9817e180f09d 100644 --- a/services/trustedadvisor/pom.xml +++ b/services/trustedadvisor/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT trustedadvisor AWS Java SDK :: Services :: Trusted Advisor diff --git a/services/verifiedpermissions/pom.xml b/services/verifiedpermissions/pom.xml index d1172b39908d..e3f591f6584b 100644 --- a/services/verifiedpermissions/pom.xml +++ b/services/verifiedpermissions/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT verifiedpermissions AWS Java SDK :: Services :: Verified Permissions diff --git a/services/voiceid/pom.xml b/services/voiceid/pom.xml index 778af365b2ae..36e671e6ffee 100644 --- a/services/voiceid/pom.xml +++ b/services/voiceid/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT voiceid AWS Java SDK :: Services :: Voice ID diff --git a/services/vpclattice/pom.xml b/services/vpclattice/pom.xml index c8e1e7c5c7e7..ce4a906da112 100644 --- a/services/vpclattice/pom.xml +++ b/services/vpclattice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT vpclattice AWS Java SDK :: Services :: VPC Lattice diff --git a/services/waf/pom.xml b/services/waf/pom.xml index 4e165805a023..7c1a453d3e52 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index 8eab7d9a8fb4..4e5941bb9f54 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/wellarchitected/pom.xml b/services/wellarchitected/pom.xml index 32d82a5cd8a4..de1161b1643e 100644 --- a/services/wellarchitected/pom.xml +++ b/services/wellarchitected/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT wellarchitected AWS Java SDK :: Services :: Well Architected diff --git a/services/wisdom/pom.xml b/services/wisdom/pom.xml index d538f7e70b98..7e58c57213b7 100644 --- a/services/wisdom/pom.xml +++ b/services/wisdom/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT wisdom AWS Java SDK :: Services :: Wisdom diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index 6514614947c3..aeb6d4877c53 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index a8fa2a827bc9..e93bfcc6cf70 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index 8c1f0db63a91..5fa1a45610de 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index 1975cd080458..6be16c8624ad 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/workspacesinstances/pom.xml b/services/workspacesinstances/pom.xml index 1d3811dcff20..cc99b97d3eff 100644 --- a/services/workspacesinstances/pom.xml +++ b/services/workspacesinstances/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT workspacesinstances AWS Java SDK :: Services :: Workspaces Instances diff --git a/services/workspacesthinclient/pom.xml b/services/workspacesthinclient/pom.xml index f09ddd666715..3e53e90bdb44 100644 --- a/services/workspacesthinclient/pom.xml +++ b/services/workspacesthinclient/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT workspacesthinclient AWS Java SDK :: Services :: Work Spaces Thin Client diff --git a/services/workspacesweb/pom.xml b/services/workspacesweb/pom.xml index 8171473ce0b7..1608025b7952 100644 --- a/services/workspacesweb/pom.xml +++ b/services/workspacesweb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT workspacesweb AWS Java SDK :: Services :: Work Spaces Web diff --git a/services/xray/pom.xml b/services/xray/pom.xml index efecf60765e2..71c27a280d53 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/architecture-tests/pom.xml b/test/architecture-tests/pom.xml index 878a4fb8f331..310429773520 100644 --- a/test/architecture-tests/pom.xml +++ b/test/architecture-tests/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT ../../pom.xml diff --git a/test/auth-tests/pom.xml b/test/auth-tests/pom.xml index ce09ed4a350f..fd7291b679fc 100644 --- a/test/auth-tests/pom.xml +++ b/test/auth-tests/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/bundle-logging-bridge-binding-test/pom.xml b/test/bundle-logging-bridge-binding-test/pom.xml index b741347aefab..e884a78f4f9e 100644 --- a/test/bundle-logging-bridge-binding-test/pom.xml +++ b/test/bundle-logging-bridge-binding-test/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/bundle-shading-tests/pom.xml b/test/bundle-shading-tests/pom.xml index 029a182f5764..d24acfba8a58 100644 --- a/test/bundle-shading-tests/pom.xml +++ b/test/bundle-shading-tests/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index 6c9812ff14e3..bb5112eb8def 100644 --- a/test/codegen-generated-classes-test/pom.xml +++ b/test/codegen-generated-classes-test/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT ../../pom.xml diff --git a/test/crt-unavailable-tests/pom.xml b/test/crt-unavailable-tests/pom.xml index 3314b4041bae..855a07e23d67 100644 --- a/test/crt-unavailable-tests/pom.xml +++ b/test/crt-unavailable-tests/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/http-client-benchmarks/pom.xml b/test/http-client-benchmarks/pom.xml index 884a7b6490a4..cd062541a915 100644 --- a/test/http-client-benchmarks/pom.xml +++ b/test/http-client-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index 423ae0b895d0..0c0f24ed5e70 100644 --- a/test/http-client-tests/pom.xml +++ b/test/http-client-tests/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index bcd622fe6430..0c31b6e1d233 100644 --- a/test/module-path-tests/pom.xml +++ b/test/module-path-tests/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/old-client-version-compatibility-test/pom.xml b/test/old-client-version-compatibility-test/pom.xml index 5c756c843cc5..7ba4e23a732e 100644 --- a/test/old-client-version-compatibility-test/pom.xml +++ b/test/old-client-version-compatibility-test/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT ../../pom.xml diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index d043b0d519b4..0974f789443b 100644 --- a/test/protocol-tests-core/pom.xml +++ b/test/protocol-tests-core/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index 8049dc1af8b6..b273be16dae9 100644 --- a/test/protocol-tests/pom.xml +++ b/test/protocol-tests/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/region-testing/pom.xml b/test/region-testing/pom.xml index eba70c3040b3..2247d659da28 100644 --- a/test/region-testing/pom.xml +++ b/test/region-testing/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/ruleset-testing-core/pom.xml b/test/ruleset-testing-core/pom.xml index e551dcaebce2..efc2dd2c6e76 100644 --- a/test/ruleset-testing-core/pom.xml +++ b/test/ruleset-testing-core/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/s3-benchmarks/pom.xml b/test/s3-benchmarks/pom.xml index b88705c532f3..f718bf22de00 100644 --- a/test/s3-benchmarks/pom.xml +++ b/test/s3-benchmarks/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/s3-tests/pom.xml b/test/s3-tests/pom.xml index b00630bf0a88..53caf889ecb7 100644 --- a/test/s3-tests/pom.xml +++ b/test/s3-tests/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index 1b4c35451662..9ba05055daaf 100644 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT ../../pom.xml diff --git a/test/sdk-native-image-test/pom.xml b/test/sdk-native-image-test/pom.xml index b63c37f356f3..0e35a9cc3196 100644 --- a/test/sdk-native-image-test/pom.xml +++ b/test/sdk-native-image-test/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index 23880e4ea871..6ca663b8bfcf 100644 --- a/test/service-test-utils/pom.xml +++ b/test/service-test-utils/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index cfb8ff3e72b3..8da878b8e393 100644 --- a/test/stability-tests/pom.xml +++ b/test/stability-tests/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index bcb3f0d370b6..d68aad519b39 100644 --- a/test/test-utils/pom.xml +++ b/test/test-utils/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index 88208958385d..f311f758e1bd 100644 --- a/test/tests-coverage-reporting/pom.xml +++ b/test/tests-coverage-reporting/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/v2-migration-tests/pom.xml b/test/v2-migration-tests/pom.xml index 6f5ca395093e..56d1759d5f97 100644 --- a/test/v2-migration-tests/pom.xml +++ b/test/v2-migration-tests/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT ../.. diff --git a/third-party/pom.xml b/third-party/pom.xml index 7765c503b97f..45128030ea5e 100644 --- a/third-party/pom.xml +++ b/third-party/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT third-party diff --git a/third-party/third-party-jackson-core/pom.xml b/third-party/third-party-jackson-core/pom.xml index 2e9106b407a4..46ed45852293 100644 --- a/third-party/third-party-jackson-core/pom.xml +++ b/third-party/third-party-jackson-core/pom.xml @@ -20,7 +20,7 @@ third-party software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT 4.0.0 diff --git a/third-party/third-party-jackson-dataformat-cbor/pom.xml b/third-party/third-party-jackson-dataformat-cbor/pom.xml index bf09877858cf..e4fc14e46c3f 100644 --- a/third-party/third-party-jackson-dataformat-cbor/pom.xml +++ b/third-party/third-party-jackson-dataformat-cbor/pom.xml @@ -20,7 +20,7 @@ third-party software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT 4.0.0 diff --git a/third-party/third-party-slf4j-api/pom.xml b/third-party/third-party-slf4j-api/pom.xml index 66e4462e9d66..87d491d7ff4d 100644 --- a/third-party/third-party-slf4j-api/pom.xml +++ b/third-party/third-party-slf4j-api/pom.xml @@ -20,7 +20,7 @@ third-party software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT 4.0.0 diff --git a/utils-lite/pom.xml b/utils-lite/pom.xml index bc0f50e64541..824bce2a0a7b 100644 --- a/utils-lite/pom.xml +++ b/utils-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT utils-lite AWS Java SDK :: Utils Lite diff --git a/utils/pom.xml b/utils/pom.xml index 8b95c86bc1a8..518872cd852e 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT 4.0.0 diff --git a/v2-migration/pom.xml b/v2-migration/pom.xml index 4597bc0e3004..cdefa8469240 100644 --- a/v2-migration/pom.xml +++ b/v2-migration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.40.0-SNAPSHOT + 2.39.6-SNAPSHOT ../pom.xml From 92da0461281e6a56bf60d164eeb7193bd852f9d8 Mon Sep 17 00:00:00 2001 From: Olivier Lepage-Applin Date: Mon, 1 Dec 2025 10:02:10 -0500 Subject: [PATCH 9/9] minor version bump to 2.40.0 --- .changes/{ => 2.39.x}/2.39.0.json | 0 .changes/{ => 2.39.x}/2.39.1.json | 0 .changes/{ => 2.39.x}/2.39.2.json | 0 .changes/{ => 2.39.x}/2.39.3.json | 0 .changes/{ => 2.39.x}/2.39.4.json | 0 .changes/{ => 2.39.x}/2.39.5.json | 0 .changes/{ => 2.39.x}/2.39.6.json | 0 CHANGELOG.md | 584 ----------------- archetypes/archetype-app-quickstart/pom.xml | 2 +- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/archetype-tools/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/pom.xml | 2 +- bundle-logging-bridge/pom.xml | 2 +- bundle-sdk/pom.xml | 2 +- bundle/pom.xml | 2 +- changelogs/2.39.x-CHANGELOG.md | 585 ++++++++++++++++++ codegen-lite-maven-plugin/pom.xml | 2 +- codegen-lite/pom.xml | 2 +- codegen-maven-plugin/pom.xml | 2 +- codegen/pom.xml | 2 +- core/annotations/pom.xml | 2 +- core/arns/pom.xml | 2 +- core/auth-crt/pom.xml | 2 +- core/auth/pom.xml | 2 +- core/aws-core/pom.xml | 2 +- core/checksums-spi/pom.xml | 2 +- core/checksums/pom.xml | 2 +- core/crt-core/pom.xml | 2 +- core/endpoints-spi/pom.xml | 2 +- core/http-auth-aws-crt/pom.xml | 2 +- core/http-auth-aws-eventstream/pom.xml | 2 +- core/http-auth-aws/pom.xml | 2 +- core/http-auth-spi/pom.xml | 2 +- core/http-auth/pom.xml | 2 +- core/identity-spi/pom.xml | 2 +- core/imds/pom.xml | 2 +- core/json-utils/pom.xml | 2 +- core/metrics-spi/pom.xml | 2 +- core/pom.xml | 2 +- core/profiles/pom.xml | 2 +- core/protocols/aws-cbor-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/protocols/smithy-rpcv2-protocol/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/retries-spi/pom.xml | 2 +- core/retries/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/apache5-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- .../cloudwatch-metric-publisher/pom.xml | 2 +- .../emf-metric-logging-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/iam-policy-builder/pom.xml | 2 +- services-custom/pom.xml | 2 +- .../s3-event-notifications/pom.xml | 2 +- services-custom/s3-transfer-manager/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/account/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/aiops/pom.xml | 2 +- services/amp/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/amplifybackend/pom.xml | 2 +- services/amplifyuibuilder/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appconfigdata/pom.xml | 2 +- services/appfabric/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/appintegrations/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationcostprofiler/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/applicationsignals/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/apprunner/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/arcregionswitch/pom.xml | 2 +- services/arczonalshift/pom.xml | 2 +- services/artifact/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/auditmanager/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/b2bi/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/backupgateway/pom.xml | 2 +- services/backupsearch/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/bcmdashboards/pom.xml | 2 +- services/bcmdataexports/pom.xml | 2 +- services/bcmpricingcalculator/pom.xml | 2 +- services/bcmrecommendedactions/pom.xml | 2 +- services/bedrock/pom.xml | 2 +- services/bedrockagent/pom.xml | 2 +- services/bedrockagentcore/pom.xml | 2 +- services/bedrockagentcorecontrol/pom.xml | 2 +- services/bedrockagentruntime/pom.xml | 2 +- services/bedrockdataautomation/pom.xml | 2 +- services/bedrockdataautomationruntime/pom.xml | 2 +- services/bedrockruntime/pom.xml | 2 +- services/billing/pom.xml | 2 +- services/billingconductor/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chatbot/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/chimesdkidentity/pom.xml | 2 +- services/chimesdkmediapipelines/pom.xml | 2 +- services/chimesdkmeetings/pom.xml | 2 +- services/chimesdkmessaging/pom.xml | 2 +- services/chimesdkvoice/pom.xml | 2 +- services/cleanrooms/pom.xml | 2 +- services/cleanroomsml/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/cloudcontrol/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/pom.xml | 2 +- services/cloudfrontkeyvaluestore/pom.xml | 2 +- services/cloudhsm/pom.xml | 2 +- services/cloudhsmv2/pom.xml | 2 +- services/cloudsearch/pom.xml | 2 +- services/cloudsearchdomain/pom.xml | 2 +- services/cloudtrail/pom.xml | 2 +- services/cloudtraildata/pom.xml | 2 +- services/cloudwatch/pom.xml | 2 +- services/cloudwatchevents/pom.xml | 2 +- services/cloudwatchlogs/pom.xml | 2 +- services/codeartifact/pom.xml | 2 +- services/codebuild/pom.xml | 2 +- services/codecatalyst/pom.xml | 2 +- services/codecommit/pom.xml | 2 +- services/codeconnections/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codegurusecurity/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/computeoptimizerautomation/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectcampaigns/pom.xml | 2 +- services/connectcampaignsv2/pom.xml | 2 +- services/connectcases/pom.xml | 2 +- services/connectcontactlens/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/controlcatalog/pom.xml | 2 +- services/controltower/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/pom.xml | 2 +- services/costoptimizationhub/pom.xml | 2 +- services/customerprofiles/pom.xml | 2 +- services/databasemigration/pom.xml | 2 +- services/databrew/pom.xml | 2 +- services/dataexchange/pom.xml | 2 +- services/datapipeline/pom.xml | 2 +- services/datasync/pom.xml | 2 +- services/datazone/pom.xml | 2 +- services/dax/pom.xml | 2 +- services/deadline/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/devopsguru/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/directoryservicedata/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/pom.xml | 2 +- services/docdbelastic/pom.xml | 2 +- services/drs/pom.xml | 2 +- services/dsql/pom.xml | 2 +- services/dynamodb/pom.xml | 2 +- services/ebs/pom.xml | 2 +- services/ec2/pom.xml | 2 +- services/ec2instanceconnect/pom.xml | 2 +- services/ecr/pom.xml | 2 +- services/ecrpublic/pom.xml | 2 +- services/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/pom.xml | 2 +- services/eksauth/pom.xml | 2 +- services/elasticache/pom.xml | 2 +- services/elasticbeanstalk/pom.xml | 2 +- services/elasticloadbalancing/pom.xml | 2 +- services/elasticloadbalancingv2/pom.xml | 2 +- services/elasticsearch/pom.xml | 2 +- services/elastictranscoder/pom.xml | 2 +- services/emr/pom.xml | 2 +- services/emrcontainers/pom.xml | 2 +- services/emrserverless/pom.xml | 2 +- services/entityresolution/pom.xml | 2 +- services/eventbridge/pom.xml | 2 +- services/evidently/pom.xml | 2 +- services/evs/pom.xml | 2 +- services/finspace/pom.xml | 2 +- services/finspacedata/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fis/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/freetier/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/gameliftstreams/pom.xml | 2 +- services/geomaps/pom.xml | 2 +- services/geoplaces/pom.xml | 2 +- services/georoutes/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/grafana/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/greengrassv2/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/healthlake/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/inspector2/pom.xml | 2 +- services/inspectorscan/pom.xml | 2 +- services/internetmonitor/pom.xml | 2 +- services/invoicing/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotdeviceadvisor/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotfleetwise/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotmanagedintegrations/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/iottwinmaker/pom.xml | 2 +- services/iotwireless/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/ivschat/pom.xml | 2 +- services/ivsrealtime/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kafkaconnect/pom.xml | 2 +- services/kendra/pom.xml | 2 +- services/kendraranking/pom.xml | 2 +- services/keyspaces/pom.xml | 2 +- services/keyspacesstreams/pom.xml | 2 +- services/kinesis/pom.xml | 2 +- services/kinesisanalytics/pom.xml | 2 +- services/kinesisanalyticsv2/pom.xml | 2 +- services/kinesisvideo/pom.xml | 2 +- services/kinesisvideoarchivedmedia/pom.xml | 2 +- services/kinesisvideomedia/pom.xml | 2 +- services/kinesisvideosignaling/pom.xml | 2 +- services/kinesisvideowebrtcstorage/pom.xml | 2 +- services/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/launchwizard/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexmodelsv2/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/lexruntimev2/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- .../licensemanagerlinuxsubscriptions/pom.xml | 2 +- .../licensemanagerusersubscriptions/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/location/pom.xml | 2 +- services/lookoutequipment/pom.xml | 2 +- services/m2/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/mailmanager/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/managedblockchainquery/pom.xml | 2 +- services/marketplaceagreement/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplacedeployment/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/marketplacereporting/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagev2/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/medicalimaging/pom.xml | 2 +- services/memorydb/pom.xml | 2 +- services/mgn/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/migrationhuborchestrator/pom.xml | 2 +- services/migrationhubrefactorspaces/pom.xml | 2 +- services/migrationhubstrategy/pom.xml | 2 +- services/mpa/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/mwaa/pom.xml | 2 +- services/mwaaserverless/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/neptunedata/pom.xml | 2 +- services/neptunegraph/pom.xml | 2 +- services/networkfirewall/pom.xml | 2 +- services/networkflowmonitor/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/networkmonitor/pom.xml | 2 +- services/notifications/pom.xml | 2 +- services/notificationscontacts/pom.xml | 2 +- services/oam/pom.xml | 2 +- services/observabilityadmin/pom.xml | 2 +- services/odb/pom.xml | 2 +- services/omics/pom.xml | 2 +- services/opensearch/pom.xml | 2 +- services/opensearchserverless/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/osis/pom.xml | 2 +- services/outposts/pom.xml | 2 +- services/panorama/pom.xml | 2 +- services/partnercentralaccount/pom.xml | 2 +- services/partnercentralbenefits/pom.xml | 2 +- services/partnercentralchannel/pom.xml | 2 +- services/partnercentralselling/pom.xml | 2 +- services/paymentcryptography/pom.xml | 2 +- services/paymentcryptographydata/pom.xml | 2 +- services/pcaconnectorad/pom.xml | 2 +- services/pcaconnectorscep/pom.xml | 2 +- services/pcs/pom.xml | 2 +- services/personalize/pom.xml | 2 +- services/personalizeevents/pom.xml | 2 +- services/personalizeruntime/pom.xml | 2 +- services/pi/pom.xml | 2 +- services/pinpoint/pom.xml | 2 +- services/pinpointemail/pom.xml | 2 +- services/pinpointsmsvoice/pom.xml | 2 +- services/pinpointsmsvoicev2/pom.xml | 2 +- services/pipes/pom.xml | 2 +- services/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/proton/pom.xml | 2 +- services/qapps/pom.xml | 2 +- services/qbusiness/pom.xml | 2 +- services/qconnect/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rbin/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/redshiftserverless/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/repostspace/pom.xml | 2 +- services/resiliencehub/pom.xml | 2 +- services/resourceexplorer2/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/rolesanywhere/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53globalresolver/pom.xml | 2 +- services/route53profiles/pom.xml | 2 +- services/route53recoverycluster/pom.xml | 2 +- services/route53recoverycontrolconfig/pom.xml | 2 +- services/route53recoveryreadiness/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/rtbfabric/pom.xml | 2 +- services/rum/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/s3tables/pom.xml | 2 +- services/s3vectors/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakeredge/pom.xml | 2 +- services/sagemakerfeaturestoreruntime/pom.xml | 2 +- services/sagemakergeospatial/pom.xml | 2 +- services/sagemakermetrics/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/sagemakerruntimehttp2/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/scheduler/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/pom.xml | 2 +- services/securityir/pom.xml | 2 +- services/securitylake/pom.xml | 2 +- .../serverlessapplicationrepository/pom.xml | 2 +- services/servicecatalog/pom.xml | 2 +- services/servicecatalogappregistry/pom.xml | 2 +- services/servicediscovery/pom.xml | 2 +- services/servicequotas/pom.xml | 2 +- services/ses/pom.xml | 2 +- services/sesv2/pom.xml | 2 +- services/sfn/pom.xml | 2 +- services/shield/pom.xml | 2 +- services/signer/pom.xml | 2 +- services/signin/pom.xml | 2 +- services/simspaceweaver/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/snowdevicemanagement/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/socialmessaging/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/pom.xml | 2 +- services/ssmcontacts/pom.xml | 2 +- services/ssmguiconnect/pom.xml | 2 +- services/ssmincidents/pom.xml | 2 +- services/ssmquicksetup/pom.xml | 2 +- services/ssmsap/pom.xml | 2 +- services/sso/pom.xml | 2 +- services/ssoadmin/pom.xml | 2 +- services/ssooidc/pom.xml | 2 +- services/storagegateway/pom.xml | 2 +- services/sts/pom.xml | 2 +- services/supplychain/pom.xml | 2 +- services/support/pom.xml | 2 +- services/supportapp/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/taxsettings/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreaminfluxdb/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/tnb/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/trustedadvisor/pom.xml | 2 +- services/verifiedpermissions/pom.xml | 2 +- services/voiceid/pom.xml | 2 +- services/vpclattice/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/wellarchitected/pom.xml | 2 +- services/wisdom/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/workspacesinstances/pom.xml | 2 +- services/workspacesthinclient/pom.xml | 2 +- services/workspacesweb/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/architecture-tests/pom.xml | 2 +- test/auth-tests/pom.xml | 2 +- .../pom.xml | 2 +- test/bundle-shading-tests/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/crt-unavailable-tests/pom.xml | 2 +- test/http-client-benchmarks/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- .../pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/region-testing/pom.xml | 2 +- test/ruleset-testing-core/pom.xml | 2 +- test/s3-benchmarks/pom.xml | 2 +- test/s3-tests/pom.xml | 2 +- test/sdk-benchmarks/pom.xml | 2 +- test/sdk-native-image-test/pom.xml | 2 +- test/service-test-utils/pom.xml | 2 +- test/stability-tests/pom.xml | 2 +- test/test-utils/pom.xml | 2 +- test/tests-coverage-reporting/pom.xml | 2 +- test/v2-migration-tests/pom.xml | 2 +- third-party/pom.xml | 2 +- third-party/third-party-jackson-core/pom.xml | 2 +- .../pom.xml | 2 +- third-party/third-party-slf4j-api/pom.xml | 2 +- utils-lite/pom.xml | 2 +- utils/pom.xml | 2 +- v2-migration/pom.xml | 2 +- 514 files changed, 1090 insertions(+), 1089 deletions(-) rename .changes/{ => 2.39.x}/2.39.0.json (100%) rename .changes/{ => 2.39.x}/2.39.1.json (100%) rename .changes/{ => 2.39.x}/2.39.2.json (100%) rename .changes/{ => 2.39.x}/2.39.3.json (100%) rename .changes/{ => 2.39.x}/2.39.4.json (100%) rename .changes/{ => 2.39.x}/2.39.5.json (100%) rename .changes/{ => 2.39.x}/2.39.6.json (100%) create mode 100644 changelogs/2.39.x-CHANGELOG.md diff --git a/.changes/2.39.0.json b/.changes/2.39.x/2.39.0.json similarity index 100% rename from .changes/2.39.0.json rename to .changes/2.39.x/2.39.0.json diff --git a/.changes/2.39.1.json b/.changes/2.39.x/2.39.1.json similarity index 100% rename from .changes/2.39.1.json rename to .changes/2.39.x/2.39.1.json diff --git a/.changes/2.39.2.json b/.changes/2.39.x/2.39.2.json similarity index 100% rename from .changes/2.39.2.json rename to .changes/2.39.x/2.39.2.json diff --git a/.changes/2.39.3.json b/.changes/2.39.x/2.39.3.json similarity index 100% rename from .changes/2.39.3.json rename to .changes/2.39.x/2.39.3.json diff --git a/.changes/2.39.4.json b/.changes/2.39.x/2.39.4.json similarity index 100% rename from .changes/2.39.4.json rename to .changes/2.39.x/2.39.4.json diff --git a/.changes/2.39.5.json b/.changes/2.39.x/2.39.5.json similarity index 100% rename from .changes/2.39.5.json rename to .changes/2.39.x/2.39.5.json diff --git a/.changes/2.39.6.json b/.changes/2.39.x/2.39.6.json similarity index 100% rename from .changes/2.39.6.json rename to .changes/2.39.x/2.39.6.json diff --git a/CHANGELOG.md b/CHANGELOG.md index 2a61be2bc4e3..a9233d91ad29 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,585 +1 @@ #### 👋 _Looking for changelogs for older versions? You can find them in the [changelogs](./changelogs) directory._ -# __2.39.6__ __2025-11-30__ -## __AWS Clean Rooms ML__ - - ### Features - - AWS Clean Rooms ML now supports privacy-enhancing synthetic dataset generation for custom ML training. - -## __AWS Clean Rooms Service__ - - ### Features - - AWS Clean Rooms now supports privacy-enhancing synthetic dataset generation for custom ML training. - -## __AWS Glue__ - - ### Features - - feature: Glue: Add support for Iceberg materialized view in Glue Data Catalog, including updated CreateTable API to support materialized views and new APIs for managing data refresh for materialized views. feature: Glue: Add support for Iceberg table encryption keys and struct field defaults. - -## __AWS Lambda__ - - ### Features - - Launching Lambda Managed Instances - a new feature to run Lambda on EC2. - -## __AWS Marketplace Agreement Service__ - - ### Features - - This release supports 1/multi-product transactions via offer sets. DescribeAgreement and SearchAgreements APIs now return offer set IDs. SearchAgreements also supports filtering by offer set ID and 2/variable payment pricing terms will be returned through GetAgreementTerms. - -## __AWS Marketplace Catalog Service__ - - ### Features - - This release introduces offer set entity in AWS Marketplace Catalog API to enable multi-product transaction. Offer set enables sellers to group multiple private offers into a single-click purchase experience, simplifying procurement for customers purchasing multi-product solutions. - -## __Agents for Amazon Bedrock__ - - ### Features - - Support audio and video ingestion on Bedrock Knowledge Bases. - -## __Agents for Amazon Bedrock Runtime__ - - ### Features - - Support audio and video content retrieval on Bedrock Knowledge Bases. - -## __Amazon AppIntegrations Service__ - - ### Features - - This release adds support for MCP servers via the ApplicationType field, allowing customers to register their Bedrock AgentCore gateways as third party applications. - -## __Amazon Connect Customer Profiles__ - - ### Features - - This release introduces, CRUD APIs for the DomainObjectType and Recommender resources, APIs to offer statistical insights on Object Type Attributes, Changes to SegmentDefinition APIs to support SQL queries to create Segments, and Changes to Domain APIs to support Data Store. - -## __Amazon Connect Participant Service__ - - ### Features - - Amazon Connect now supports message processing that intercepts and processes chat messages before they reach any participant. - -## __Amazon Connect Service__ - - ### Features - - This is a combined re:Invent release for Amazon Connect. - -## __Amazon Elastic Kubernetes Service__ - - ### Features - - This release adds support for EKS Capabilities - -## __Amazon Lex Model Building V2__ - - ### Features - - Adds support for speech-to-speech models for human-like, adaptive, and expressive voice interactions. Also adds support for speech model preference, allowing customers to select which speech model they want to use for speech-to-text requests. - -## __Amazon Personalize__ - - ### Features - - This release adds support for includedDatasetColumns and performIncrementalUpdate in solution APIs, and rankingInfluence in campaign and batch inference APIs. - -## __Amazon Q Connect__ - - ### Features - - New AIAgent types: Orchestration for ModelContextProtocol tool integration, CaseSummary for Amazon Connect Case summaries, NoteTaker for Agent Assistance notes. Added ListSpans and Retrieve APIs. Enhanced Q in Connect AssistantAssociationType to support Bring Your Own Bedrock Knowledge Bases. - -## __Amazon Route 53 Global Resolver__ - - ### Features - - Add SDK for Amazon Route 53 Global Resolver, a fully managed DNS resolver service that offers broad DNS-filtering security controls. - -## __AmazonConnectCampaignServiceV2__ - - ### Features - - This release added support for new WhatsApp channel and Journey type outbound campaign - -## __Partner Central Account API__ - - ### Features - - Initial GA launch of Partner Central Account - -## __Partner Central Benefits API__ - - ### Features - - Initial GA launch of Partner Central Benefits - -## __Partner Central Selling API__ - - ### Features - - New Features: Lead Management APIs for capturing and nurturing leads Lead invitation support for partner collaboration Lead-to-opportunity conversion operations AWS Marketplace OfferSets support for opportunities - -## __s3__ - - ### Features - - Pass null part-size to CRT when not configured - -# __2.39.5__ __2025-11-26__ -## __AWS Compute Optimizer__ - - ### Features - - Compute Optimizer now identifies idle NAT Gateway resources for cost optimization based on traffic patterns and backup configuration analysis. Access recommendations via the GetIdleRecommendations API. - -## __Amazon Bedrock Runtime__ - - ### Features - - Bedrock Runtime Reserved Service Support - -## __Apache5 HTTP Client (Preview)__ - - ### Bugfixes - - Fix bug where Basic proxy authentication fails with credentials not found. - - Fix bug where preemptive Basic authentication was not honored for proxies. Similar to fix for Apache 4.x in [#6333](https://github.com/aws/aws-sdk-java-v2/issues/6333). - -## __Cost Optimization Hub__ - - ### Features - - This release enables AWS Cost Optimization Hub to show cost optimization recommendations for NAT Gateway. - -## __s3__ - - ### Features - - Add CRT shouldStream config as CRT_MEMORY_BUFFER_DISABLED SDK advanced client option - -# __2.39.4__ __2025-11-25__ -## __AWS Network Firewall__ - - ### Features - - Network Firewall release of the Proxy feature. - -## __AWS Organizations__ - - ### Features - - Add support for policy operations on the S3_POLICY and BEDROCK_POLICY policy type. - -## __AWS SDK for Java v2__ - - ### Features - - Updated endpoint and partition metadata. - -## __Amazon DynamoDB Enhanced Client__ - - ### Features - - Add support for GSI composite key to handle up to 4 partition and 4 sort keys - -## __Amazon Elastic Compute Cloud__ - - ### Features - - This release adds support to view Network firewall proxy appliances attached to an existing NAT Gateway via DescribeNatGateways API NatGatewayAttachedAppliance structure. - -## __Amazon Route 53__ - - ### Features - - Adds support for new route53 feature: accelerated recovery. - -# __2.39.3__ __2025-11-24__ -## __Amazon CloudFront__ - - ### Features - - Add TrustStore, ConnectionFunction APIs to CloudFront SDK - -## __Amazon CloudWatch Logs__ - - ### Features - - New CloudWatch Logs feature - LogGroup Deletion Protection, a capability that allows customers to safeguard their critical CloudWatch log groups from accidental or unintended deletion. - -# __2.39.2__ __2025-11-21__ -## __AWS CloudFormation__ - - ### Features - - Adds the DependsOn field to the AutoDeployment configuration parameter for CreateStackSet, UpdateStackSet, and DescribeStackSet APIs, allowing users to set and read auto-deployment dependencies between StackSets - -## __AWS Control Tower__ - - ### Features - - The manifest field is now optional for the AWS Control Tower CreateLandingZone and UpdateLandingZone APIs for Landing Zone version 4.0 - -## __AWS Elemental MediaPackage v2__ - - ### Features - - Adds support for excluding session key tags from HLS multivariant playlists - -## __AWS Invoicing__ - - ### Features - - Added the CreateProcurementPortalPreference, GetProcurementPortalPreference, PutProcurementPortalPreference, UpdateProcurementPortalPreferenceStatus, ListProcurementPortalPreferences and DeleteProcurementPortalPreference APIs for procurement portal preference management. - -## __AWS Key Management Service__ - - ### Features - - Support for on-demand rotation of AWS KMS Multi-Region keys with imported key material - -## __AWS Lambda__ - - ### Features - - Launching Enhanced Error Handling and ESM Grouping capabilities for Kafka ESMs - -## __AWS Marketplace Entitlement Service__ - - ### Features - - Endpoint update for new region - -## __AWS Organizations__ - - ### Features - - Add support for policy operations on the UPGRADE_ROLLOUT_POLICY policy type. - -## __AWS SDK for Java v2__ - - ### Features - - Updated endpoint and partition metadata. - -## __AWS Transfer Family__ - - ### Features - - Adds support for creating Webapps accessible from a VPC. - -## __AWSMarketplace Metering__ - - ### Features - - Endpoint update for new region - -## __Amazon API Gateway__ - - ### Features - - API Gateway supports VPC link V2 for REST APIs. - -## __Amazon Athena__ - - ### Features - - Introduces Spark workgroup features including log persistence, S3/CloudWatch delivery, UI and History Server APIs, and SparkConnect 3.5.6 support. Adds DPU usage limits at workgroup and query levels as well as DPU usage tracking for Capacity Reservation queries to optimize performance and costs. - -## __Amazon Bedrock__ - - ### Features - - Add support to automatically enforce safeguards across accounts within an AWS Organization. - -## __Amazon Bedrock AgentCore Control__ - - ### Features - - Support for agentcore gateway interceptor configurations and NONE authorizer type - -## __Amazon Bedrock Runtime__ - - ### Features - - Add support to automatically enforce safeguards across accounts within an AWS Organization. - -## __Amazon Connect Service__ - - ### Features - - New APIs to support aliases and versions for ContactFlowModule. Updated ContactFlowModule APIs to support custom blocks. - -## __Amazon Elastic Compute Cloud__ - - ### Features - - This release adds a new capability to create and manage interruptible EC2 Capacity Reservations. - -## __Amazon Elastic Container Registry__ - - ### Features - - Add support for ECR managed signing - -## __Amazon Elastic Kubernetes Service__ - - ### Features - - Adds support for controlPlaneScalingConfig on EKS Clusters. - -## __Amazon Kinesis Video Streams__ - - ### Features - - This release adds support for Tiered Storage - -## __Amazon Lex Model Building V2__ - - ### Features - - Adds support for Intent Disambiguation, allowing resolution of ambiguous user inputs when multiple intents match by presenting clarifying questions to users. Also adds Speech Detection Sensitivity configuration for optimizing voice activity detection sensitivity levels in various noise environments. - -## __Amazon Q Connect__ - - ### Features - - This release introduces two new messaging channel subtypes: Push, WhatsApp, under MessageTemplate which is a resource in Amazon Q in Connect. - -## __Amazon QuickSight__ - - ### Features - - Amazon Quick Suite now supports QuickChat as an embedding type when calling the GenerateEmbedUrlForRegisteredUser API, enabling developers to embed conversational AI agents directly into their applications. - -## __Amazon Redshift__ - - ### Features - - Added support for Amazon Redshift Federated Permissions and AWS IAM Identity Center trusted identity propagation. - -## __Amazon Relational Database Service__ - - ### Features - - Add support for Upgrade Rollout Order - -## __Amazon SageMaker Runtime HTTP2__ - - ### Features - - Add support for bidirectional streaming invocations on SageMaker AI real-time endpoints - -## __Amazon SageMaker Service__ - - ### Features - - Enhanced SageMaker HyperPod instance groups with support for MinInstanceCount, CapacityRequirements (Spot/On-Demand), and KubernetesConfig (labels and taints). Also Added speculative decoding and MaxInstanceCount for model optimization jobs. - -## __Amazon Simple Email Service__ - - ### Features - - Added support for new SES regions - Asia Pacific (Malaysia) and Canada (Calgary) - -## __Compute Optimizer Automation__ - - ### Features - - Initial release of AWS Compute Optimizer Automation. Create automation rules to implement recommended actions on a recurring schedule based on your specified criteria. Supported actions include: snapshot and delete unattached EBS volumes and upgrade volume types to the latest generation. - -## __Elastic Load Balancing__ - - ### Features - - This release adds the health check log feature in ALB, allowing customers to send detailed target health check log data directly to their designated Amazon S3 bucket. - -## __MailManager__ - - ### Features - - Add support for resources in the aws-eusc partition. - -## __Redshift Serverless__ - - ### Features - - Added UpdateLakehouseConfiguration API to manage Amazon Redshift Federated Permissions and AWS IAM Identity Center trusted identity propagation for namespaces. - -## __Runtime for Amazon Bedrock Data Automation__ - - ### Features - - Adding new fields to GetDataAutomationStatus: jobSubmissionTime, jobCompletionTime, and jobDurationInSeconds - -## __Security Incident Response__ - - ### Features - - Add ListInvestigations and SendFeedback APIs to support SecurityIR AI agents - -## __odb__ - - ### Features - - Adds AssociateIamRoleToResource and DisassociateIamRoleFromResource APIs for managing IAM roles. Enhances CreateOdbNetwork and UpdateOdbNetwork APIs with KMS, STS, and cross-region S3 parameters. Adds OCI identity domain support to InitializeService API. - -# __2.39.1__ __2025-11-20__ -## __AWS Budgets__ - - ### Features - - Add BillingViewHealthStatusException to DescribeBudgetPerformanceHistory and ServiceQuotaExceededException to UpdateBudget for improved error handling with Billing Views. - -## __AWS CloudTrail__ - - ### Features - - AWS launches CloudTrail aggregated events to simplify monitoring of data events at scale. This feature delivers both granular and summarized data events for resources like S3/Lambda, helping security teams identify patterns without custom aggregation logic. - -## __AWS DataSync__ - - ### Features - - The partition value "aws-eusc" is now permitted for ARN (Amazon Resource Name) fields. - -## __AWS Database Migration Service__ - - ### Features - - Added support for customer-managed KMS key (CMK) for encryption for import private key certificate. Additionally added Amazon SageMaker Lakehouse endpoint used for zero-ETL integrations with data warehouses. - -## __AWS Device Farm__ - - ### Features - - Add support for environment variables and an IAM execution role. - -## __AWS Glue__ - - ### Features - - Added FunctionType parameter to Glue GetuserDefinedFunctions. - -## __AWS Lake Formation__ - - ### Features - - Added ServiceIntegrations as a request parameter for CreateLakeFormationIdentityCenterConfigurationRequest and UpdateLakeFormationIdentityCenterConfigurationRequest and response parameter for DescribeLakeFormationIdentityCenterConfigurationResponse - -## __AWS License Manager__ - - ### Features - - Added cross-account resource aggregation via license asset groups and expiry tracking for Self-Managed Licenses. Extended Org-Wide View to Self-Managed Licenses, added reporting for license asset groups, and removed Athena/Glue dependencies for cross-account resource discovery in commercial regions. - -## __AWS Network Manager__ - - ### Features - - This release adds support for Cloud WAN Routing Policy providing customers sophisticated routing controls to better manage their global networks - -## __AWS Organizations__ - - ### Features - - Added new APIs for Billing Transfer, new policy type INSPECTOR_POLICY, and allow an account to transfer between organizations - -## __AWS SDK for Java v2__ - - ### Features - - Updated endpoint and partition metadata. - -## __AWS SecurityHub__ - - ### Features - - Release Findings and Resources Trends APIs- GetFindingsTrendsV2 and GetResourcesTrendsV2. This supports time-series aggregated counts with composite filtering for 1-year of historical data analysis of Findings and Resources. - -## __AWS Signin__ - - ### Features - - Add the LoginCredentialsProvider which allows use of AWS credentials vended by AWS Sign-In that correspond to an AWS Console session. AWS Sign-In credentials will be used automatically by the Credential resolution chain when `login_session` is set in the profile. - -## __Amazon Aurora DSQL__ - - ### Features - - Added clusterVpcEndpoint field to GetVpcEndpointServiceName API response, returning the VPC connection endpoint for the cluster - -## __Amazon Bedrock AgentCore__ - - ### Features - - Bedrock AgentCore Memory release for redriving memory extraction jobs (StartMemoryExtractionJob and ListMemoryExtractionJob) - -## __Amazon CloudFront__ - - ### Features - - This release adds support for bring your own IP (BYOIP) to CloudFront's CreateAnycastIpList API through an optional IpamCidrConfigs field. - -## __Amazon CloudWatch Application Signals__ - - ### Features - - Amazon CloudWatch Application Signals now supports un-instrumented services discovery, cross-account views, and change history, helping SRE and DevOps teams monitor and troubleshoot their large-scale distributed applications. - -## __Amazon Connect Service__ - - ### Features - - Add optional ability to exclude users from send notification actions for Contact Lens Rules. - -## __Amazon EC2 Container Service__ - - ### Features - - Launching Amazon ECS Express Mode - a new feature that enables developers to quickly launch highly available, scalable containerized applications with a single command. - -## __Amazon EMR__ - - ### Features - - Add support for configuring S3 destination for step logs on a per-step basis. - -## __Amazon Elastic Compute Cloud__ - - ### Features - - This release adds support for multiple features including: VPC Encryption Control for the status of traffic flow; S2S VPN BGP Logging; TGW Flexible Costs; IPAM allocation of static IPs from IPAM pools to CF Anycast IP lists used on CloudFront distribution; and EBS Volume Integration with Recycle Bin - -## __Amazon Kinesis__ - - ### Features - - Kinesis Data Streams now supports up to 50 Enhance Fan-out consumers for On-demand Advantage Streams. On-demand Standard and Provisioned streams will continue with the existing limit of 20 consumers for Enhanced Fan-out. - -## __Amazon QuickSight__ - - ### Features - - Introducing comprehensive theme styling controls. New features include border customization (radius, width, color), flexible padding controls, background styling for cards and sheets, centralized typography management, and visual-level override support across layouts. - -## __Amazon Recycle Bin__ - - ### Features - - Add support for EBS volume in Recycle Bin - -## __Amazon Relational Database Service__ - - ### Features - - Add support for VPC Encryption Controls. - -## __Amazon SageMaker Service__ - - ### Features - - Added training plan support for inference endpoints. Added HyperPod task governance with accelerator partition-based quota allocation. Added BatchRebootClusterNodes and BatchReplaceClusterNodes APIs. Updated ListClusterNodes to include privateDnsHostName. - -## __Amazon Simple Storage Service__ - - ### Features - - Enable / Disable ABAC on a general purpose bucket. - -## __Auto Scaling__ - - ### Features - - This release adds support for three new features: 1) Image ID overrides in mixed instances policy, 2) Replace Root Volume - a new strategy for Instance Refresh, and 3) Instance Lifecycle Policy for enhanced instance lifecycle management. - -## __Braket__ - - ### Features - - Add support for Braket spending limits. - -## __Data Automation for Amazon Bedrock__ - - ### Features - - Added support for Synchronous project type and PII Detection and Redaction - -## __EC2 Image Builder__ - - ### Features - - EC2 Image Builder now enables the distribution of existing AMIs, retry distribution, and define distribution workflows. It also supports automatic versioning for recipes and components, allowing automatic version increments and dynamic referencing in pipelines. - -## __Elastic Load Balancing__ - - ### Features - - This release adds the target optimizer feature in ALB, enabling strict concurrency enforcement on targets. - -## __Redshift Data API Service__ - - ### Features - - Increasing the length limit of Statement Name from 500 to 2048. - -## __Runtime for Amazon Bedrock Data Automation__ - - ### Features - - Bedrock Data Automation Runtime Sync API - -# __2.39.0__ __2025-11-19__ -## __AWS Backup__ - - ### Features - - Amazon GuardDuty Malware Protection now supports AWS Backup, extending malware detection capabilities to EC2, EBS, and S3 backups. - -## __AWS Billing__ - - ### Features - - Added name filtering support to ListBillingViews API through the new names parameter to efficiently filter billing views by name. - -## __AWS Billing and Cost Management Pricing Calculator__ - - ### Features - - Add GroupSharingPreference, CostCategoryGroupSharingPreferenceArn, and CostCategoryGroupSharingPreferenceEffectiveDate to Bill Estimate. Add GroupSharingPreference and CostCategoryGroupSharingPreferenceArn to Bill Scenario. - -## __AWS CloudTrail__ - - ### Features - - AWS CloudTrail now supports Insights for data events, expanding beyond management events to automatically detect unusual activity on data plane operations. - -## __AWS Cost Explorer Service__ - - ### Features - - Add support for COST_CATEGORY, TAG, and LINKED_ACCOUNT AWS managed cost anomaly detection monitors - -## __AWS Elemental MediaLive__ - - ### Features - - MediaLive is adding support for MediaConnect Router by supporting a new input type called MEDIACONNECT_ROUTER. This new input type will provide seamless encrypted transport between MediaConnect Router and your MediaLive channel. - -## __AWS Health APIs and Notifications__ - - ### Features - - Adds actionability and personas properties to Health events exposed through DescribeEvents, DescribeEventsForOrganization, DescribeEventDetails, and DescribeEventTypes APIs. Adds filtering by actionabilities and personas in EventFilter, OrganizationEventFilter, EventTypeFilter. - -## __AWS Identity and Access Management__ - - ### Features - - Added the EnableOutboundWebIdentityFederation, DisableOutboundWebIdentityFederation and GetOutboundWebIdentityFederationInfo APIs for the IAM outbound federation feature. - -## __AWS Invoicing__ - - ### Features - - Add support for adding Billing transfers in Invoice configuration - -## __AWS Lambda__ - - ### Features - - Added support for creating and invoking Tenant Isolated functions in AWS Lambda APIs. - -## __AWS MediaConnect__ - - ### Features - - This release adds support for global routing in AWS Elemental MediaConnect. You can now use router inputs and router outputs to manage global video and audio routing workflows both within the AWS-Cloud and over the public internet. - -## __AWS Network Firewall__ - - ### Features - - Partner Managed Rulegroup feature support - -## __AWS Secrets Manager__ - - ### Features - - Adds support to create, update, retrieve, rotate, and delete managed external secrets. - -## __AWS Security Token Service__ - - ### Features - - IAM now supports outbound identity federation via the STS GetWebIdentityToken API, enabling AWS workloads to securely authenticate with external services using short-lived JSON Web Tokens. - -## __AWS Sign-In Service__ - - ### Features - - AWS Sign-In manages authentication for AWS services. This service provides secure authentication flows for accessing AWS resources from the console and developer tools. This release adds the CreateOAuth2Token API, which can be used to fetch OAuth2 access tokens and refresh tokens from Sign-In. - -## __AWS Step Functions__ - - ### Features - - Adds support to TestState for mocked results and exceptions, along with additional inspection data. - -## __AWSBillingConductor__ - - ### Features - - This release adds support for Billing Transfers, enabling management of billing transfers with billing groups on AWS Billing Conductor. - -## __Amazon API Gateway__ - - ### Features - - API Gateway now supports response streaming and new security policies for REST APIs and custom domain names. - -## __Amazon Bedrock Runtime__ - - ### Features - - This release includes support for Search Results. - -## __Amazon CloudWatch Logs__ - - ### Features - - Adding support for ocsf version 1.5, add optional parameter MappingVersion - -## __Amazon DataZone__ - - ### Features - - Amazon DataZone now supports business metadata (readme and metadata forms) at the individual attribute (column) level, a new rule type for glossary terms, and the ability to update the owner of the root domain unit. - -## __Amazon DynamoDB__ - - ### Features - - Extended Global Secondary Index (GSI) composite keys to support up to 8 attributes. - -## __Amazon EC2 Container Service__ - - ### Features - - Added support for Amazon ECS Managed Instances infrastructure optimization configuration. - -## __Amazon EMR__ - - ### Features - - Add CloudWatch Logs integration for Spark driver, executor and step logs - -## __Amazon Elastic Compute Cloud__ - - ### Features - - This launch adds support for two new features: Regional NAT Gateway and IPAM Policies. IPAM policies offers customers central control for public IPv4 assignments across AWS services. Regional NAT is a single NAT Gateway that automatically expands across AZs in a VPC to maintain high availability. - -## __Amazon Elastic Container Registry__ - - ### Features - - Add support for ECR archival storage class and Inspector org policy for scanning - -## __Amazon FSx__ - - ### Features - - Adding File Server Resource Manager configuration to FSx Windows - -## __Amazon GuardDuty__ - - ### Features - - Add support for scanning and viewing scan results for backup resource types - -## __Amazon Route 53__ - - ### Features - - Add dual-stack endpoint support for Route53 - -## __Amazon SageMaker Service__ - - ### Features - - Added support for enhanced metrics for SageMaker AI Endpoints. This features provides Utilization Metrics at instance and container granularity and also provides easy configuration of metric publish frequency from 10 sec -> 5 mins - -## __Amazon Simple Storage Service__ - - ### Features - - Adds support for blocking SSE-C writes to general purpose buckets. - -## __Amazon Transcribe Streaming Service__ - - ### Features - - This release adds support for additional locales in AWS transcribe streaming. - -## __AmazonApiGatewayV2__ - - ### Features - - Support for API Gateway portals and portal products. - -## __AmazonConnectCampaignServiceV2__ - - ### Features - - This release added support for ring timer configuration for campaign calls. - -## __CloudWatch RUM__ - - ### Features - - CloudWatch RUM now supports mobile application monitoring for Android and iOS platforms - -## __Cost Optimization Hub__ - - ### Features - - Release ListEfficiencyMetrics API - -## __Inspector2__ - - ### Features - - This release introduces BLOCKED_BY_ORGANIZATION_POLICY error code and IMAGE_ARCHIVED scanStatusReason. BLOCKED_BY_ORGANIZATION_POLICY error code is returned when an operation is blocked by an AWS Organizations policy. IMAGE_ARCHIVED scanStatusReason is returned when an Image is archived in ECR. - -## __Network Flow Monitor__ - - ### Features - - Added new enum value (AWS::EKS::Cluster) for type field under MonitorLocalResource - -## __Partner Central Channel API__ - - ### Features - - Initial GA launch of Partner Central Channel - diff --git a/archetypes/archetype-app-quickstart/pom.xml b/archetypes/archetype-app-quickstart/pom.xml index 86bab945ab0e..9ddcb572f5fb 100644 --- a/archetypes/archetype-app-quickstart/pom.xml +++ b/archetypes/archetype-app-quickstart/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index fc418ac5859d..83c7d745f9b0 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 archetype-lambda diff --git a/archetypes/archetype-tools/pom.xml b/archetypes/archetype-tools/pom.xml index 00d6c6f0666c..577bc9cdfbf7 100644 --- a/archetypes/archetype-tools/pom.xml +++ b/archetypes/archetype-tools/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 diff --git a/archetypes/pom.xml b/archetypes/pom.xml index 6d9654a80f0e..eba119ca522e 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index e8431e6d3b19..1a654d01cc8e 100644 --- a/aws-sdk-java/pom.xml +++ b/aws-sdk-java/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index 0d66d8ac0a3c..0be5a4c137fe 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index ed9da79bd960..f610472be7cd 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT ../pom.xml bom diff --git a/bundle-logging-bridge/pom.xml b/bundle-logging-bridge/pom.xml index b92b2b250237..d5e184560782 100644 --- a/bundle-logging-bridge/pom.xml +++ b/bundle-logging-bridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT bundle-logging-bridge jar diff --git a/bundle-sdk/pom.xml b/bundle-sdk/pom.xml index 4405b57a100a..6fdb4feda7f5 100644 --- a/bundle-sdk/pom.xml +++ b/bundle-sdk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT bundle-sdk jar diff --git a/bundle/pom.xml b/bundle/pom.xml index 2b786bf03326..d9c0c5b99f8b 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT bundle jar diff --git a/changelogs/2.39.x-CHANGELOG.md b/changelogs/2.39.x-CHANGELOG.md new file mode 100644 index 000000000000..2a61be2bc4e3 --- /dev/null +++ b/changelogs/2.39.x-CHANGELOG.md @@ -0,0 +1,585 @@ + #### 👋 _Looking for changelogs for older versions? You can find them in the [changelogs](./changelogs) directory._ +# __2.39.6__ __2025-11-30__ +## __AWS Clean Rooms ML__ + - ### Features + - AWS Clean Rooms ML now supports privacy-enhancing synthetic dataset generation for custom ML training. + +## __AWS Clean Rooms Service__ + - ### Features + - AWS Clean Rooms now supports privacy-enhancing synthetic dataset generation for custom ML training. + +## __AWS Glue__ + - ### Features + - feature: Glue: Add support for Iceberg materialized view in Glue Data Catalog, including updated CreateTable API to support materialized views and new APIs for managing data refresh for materialized views. feature: Glue: Add support for Iceberg table encryption keys and struct field defaults. + +## __AWS Lambda__ + - ### Features + - Launching Lambda Managed Instances - a new feature to run Lambda on EC2. + +## __AWS Marketplace Agreement Service__ + - ### Features + - This release supports 1/multi-product transactions via offer sets. DescribeAgreement and SearchAgreements APIs now return offer set IDs. SearchAgreements also supports filtering by offer set ID and 2/variable payment pricing terms will be returned through GetAgreementTerms. + +## __AWS Marketplace Catalog Service__ + - ### Features + - This release introduces offer set entity in AWS Marketplace Catalog API to enable multi-product transaction. Offer set enables sellers to group multiple private offers into a single-click purchase experience, simplifying procurement for customers purchasing multi-product solutions. + +## __Agents for Amazon Bedrock__ + - ### Features + - Support audio and video ingestion on Bedrock Knowledge Bases. + +## __Agents for Amazon Bedrock Runtime__ + - ### Features + - Support audio and video content retrieval on Bedrock Knowledge Bases. + +## __Amazon AppIntegrations Service__ + - ### Features + - This release adds support for MCP servers via the ApplicationType field, allowing customers to register their Bedrock AgentCore gateways as third party applications. + +## __Amazon Connect Customer Profiles__ + - ### Features + - This release introduces, CRUD APIs for the DomainObjectType and Recommender resources, APIs to offer statistical insights on Object Type Attributes, Changes to SegmentDefinition APIs to support SQL queries to create Segments, and Changes to Domain APIs to support Data Store. + +## __Amazon Connect Participant Service__ + - ### Features + - Amazon Connect now supports message processing that intercepts and processes chat messages before they reach any participant. + +## __Amazon Connect Service__ + - ### Features + - This is a combined re:Invent release for Amazon Connect. + +## __Amazon Elastic Kubernetes Service__ + - ### Features + - This release adds support for EKS Capabilities + +## __Amazon Lex Model Building V2__ + - ### Features + - Adds support for speech-to-speech models for human-like, adaptive, and expressive voice interactions. Also adds support for speech model preference, allowing customers to select which speech model they want to use for speech-to-text requests. + +## __Amazon Personalize__ + - ### Features + - This release adds support for includedDatasetColumns and performIncrementalUpdate in solution APIs, and rankingInfluence in campaign and batch inference APIs. + +## __Amazon Q Connect__ + - ### Features + - New AIAgent types: Orchestration for ModelContextProtocol tool integration, CaseSummary for Amazon Connect Case summaries, NoteTaker for Agent Assistance notes. Added ListSpans and Retrieve APIs. Enhanced Q in Connect AssistantAssociationType to support Bring Your Own Bedrock Knowledge Bases. + +## __Amazon Route 53 Global Resolver__ + - ### Features + - Add SDK for Amazon Route 53 Global Resolver, a fully managed DNS resolver service that offers broad DNS-filtering security controls. + +## __AmazonConnectCampaignServiceV2__ + - ### Features + - This release added support for new WhatsApp channel and Journey type outbound campaign + +## __Partner Central Account API__ + - ### Features + - Initial GA launch of Partner Central Account + +## __Partner Central Benefits API__ + - ### Features + - Initial GA launch of Partner Central Benefits + +## __Partner Central Selling API__ + - ### Features + - New Features: Lead Management APIs for capturing and nurturing leads Lead invitation support for partner collaboration Lead-to-opportunity conversion operations AWS Marketplace OfferSets support for opportunities + +## __s3__ + - ### Features + - Pass null part-size to CRT when not configured + +# __2.39.5__ __2025-11-26__ +## __AWS Compute Optimizer__ + - ### Features + - Compute Optimizer now identifies idle NAT Gateway resources for cost optimization based on traffic patterns and backup configuration analysis. Access recommendations via the GetIdleRecommendations API. + +## __Amazon Bedrock Runtime__ + - ### Features + - Bedrock Runtime Reserved Service Support + +## __Apache5 HTTP Client (Preview)__ + - ### Bugfixes + - Fix bug where Basic proxy authentication fails with credentials not found. + - Fix bug where preemptive Basic authentication was not honored for proxies. Similar to fix for Apache 4.x in [#6333](https://github.com/aws/aws-sdk-java-v2/issues/6333). + +## __Cost Optimization Hub__ + - ### Features + - This release enables AWS Cost Optimization Hub to show cost optimization recommendations for NAT Gateway. + +## __s3__ + - ### Features + - Add CRT shouldStream config as CRT_MEMORY_BUFFER_DISABLED SDK advanced client option + +# __2.39.4__ __2025-11-25__ +## __AWS Network Firewall__ + - ### Features + - Network Firewall release of the Proxy feature. + +## __AWS Organizations__ + - ### Features + - Add support for policy operations on the S3_POLICY and BEDROCK_POLICY policy type. + +## __AWS SDK for Java v2__ + - ### Features + - Updated endpoint and partition metadata. + +## __Amazon DynamoDB Enhanced Client__ + - ### Features + - Add support for GSI composite key to handle up to 4 partition and 4 sort keys + +## __Amazon Elastic Compute Cloud__ + - ### Features + - This release adds support to view Network firewall proxy appliances attached to an existing NAT Gateway via DescribeNatGateways API NatGatewayAttachedAppliance structure. + +## __Amazon Route 53__ + - ### Features + - Adds support for new route53 feature: accelerated recovery. + +# __2.39.3__ __2025-11-24__ +## __Amazon CloudFront__ + - ### Features + - Add TrustStore, ConnectionFunction APIs to CloudFront SDK + +## __Amazon CloudWatch Logs__ + - ### Features + - New CloudWatch Logs feature - LogGroup Deletion Protection, a capability that allows customers to safeguard their critical CloudWatch log groups from accidental or unintended deletion. + +# __2.39.2__ __2025-11-21__ +## __AWS CloudFormation__ + - ### Features + - Adds the DependsOn field to the AutoDeployment configuration parameter for CreateStackSet, UpdateStackSet, and DescribeStackSet APIs, allowing users to set and read auto-deployment dependencies between StackSets + +## __AWS Control Tower__ + - ### Features + - The manifest field is now optional for the AWS Control Tower CreateLandingZone and UpdateLandingZone APIs for Landing Zone version 4.0 + +## __AWS Elemental MediaPackage v2__ + - ### Features + - Adds support for excluding session key tags from HLS multivariant playlists + +## __AWS Invoicing__ + - ### Features + - Added the CreateProcurementPortalPreference, GetProcurementPortalPreference, PutProcurementPortalPreference, UpdateProcurementPortalPreferenceStatus, ListProcurementPortalPreferences and DeleteProcurementPortalPreference APIs for procurement portal preference management. + +## __AWS Key Management Service__ + - ### Features + - Support for on-demand rotation of AWS KMS Multi-Region keys with imported key material + +## __AWS Lambda__ + - ### Features + - Launching Enhanced Error Handling and ESM Grouping capabilities for Kafka ESMs + +## __AWS Marketplace Entitlement Service__ + - ### Features + - Endpoint update for new region + +## __AWS Organizations__ + - ### Features + - Add support for policy operations on the UPGRADE_ROLLOUT_POLICY policy type. + +## __AWS SDK for Java v2__ + - ### Features + - Updated endpoint and partition metadata. + +## __AWS Transfer Family__ + - ### Features + - Adds support for creating Webapps accessible from a VPC. + +## __AWSMarketplace Metering__ + - ### Features + - Endpoint update for new region + +## __Amazon API Gateway__ + - ### Features + - API Gateway supports VPC link V2 for REST APIs. + +## __Amazon Athena__ + - ### Features + - Introduces Spark workgroup features including log persistence, S3/CloudWatch delivery, UI and History Server APIs, and SparkConnect 3.5.6 support. Adds DPU usage limits at workgroup and query levels as well as DPU usage tracking for Capacity Reservation queries to optimize performance and costs. + +## __Amazon Bedrock__ + - ### Features + - Add support to automatically enforce safeguards across accounts within an AWS Organization. + +## __Amazon Bedrock AgentCore Control__ + - ### Features + - Support for agentcore gateway interceptor configurations and NONE authorizer type + +## __Amazon Bedrock Runtime__ + - ### Features + - Add support to automatically enforce safeguards across accounts within an AWS Organization. + +## __Amazon Connect Service__ + - ### Features + - New APIs to support aliases and versions for ContactFlowModule. Updated ContactFlowModule APIs to support custom blocks. + +## __Amazon Elastic Compute Cloud__ + - ### Features + - This release adds a new capability to create and manage interruptible EC2 Capacity Reservations. + +## __Amazon Elastic Container Registry__ + - ### Features + - Add support for ECR managed signing + +## __Amazon Elastic Kubernetes Service__ + - ### Features + - Adds support for controlPlaneScalingConfig on EKS Clusters. + +## __Amazon Kinesis Video Streams__ + - ### Features + - This release adds support for Tiered Storage + +## __Amazon Lex Model Building V2__ + - ### Features + - Adds support for Intent Disambiguation, allowing resolution of ambiguous user inputs when multiple intents match by presenting clarifying questions to users. Also adds Speech Detection Sensitivity configuration for optimizing voice activity detection sensitivity levels in various noise environments. + +## __Amazon Q Connect__ + - ### Features + - This release introduces two new messaging channel subtypes: Push, WhatsApp, under MessageTemplate which is a resource in Amazon Q in Connect. + +## __Amazon QuickSight__ + - ### Features + - Amazon Quick Suite now supports QuickChat as an embedding type when calling the GenerateEmbedUrlForRegisteredUser API, enabling developers to embed conversational AI agents directly into their applications. + +## __Amazon Redshift__ + - ### Features + - Added support for Amazon Redshift Federated Permissions and AWS IAM Identity Center trusted identity propagation. + +## __Amazon Relational Database Service__ + - ### Features + - Add support for Upgrade Rollout Order + +## __Amazon SageMaker Runtime HTTP2__ + - ### Features + - Add support for bidirectional streaming invocations on SageMaker AI real-time endpoints + +## __Amazon SageMaker Service__ + - ### Features + - Enhanced SageMaker HyperPod instance groups with support for MinInstanceCount, CapacityRequirements (Spot/On-Demand), and KubernetesConfig (labels and taints). Also Added speculative decoding and MaxInstanceCount for model optimization jobs. + +## __Amazon Simple Email Service__ + - ### Features + - Added support for new SES regions - Asia Pacific (Malaysia) and Canada (Calgary) + +## __Compute Optimizer Automation__ + - ### Features + - Initial release of AWS Compute Optimizer Automation. Create automation rules to implement recommended actions on a recurring schedule based on your specified criteria. Supported actions include: snapshot and delete unattached EBS volumes and upgrade volume types to the latest generation. + +## __Elastic Load Balancing__ + - ### Features + - This release adds the health check log feature in ALB, allowing customers to send detailed target health check log data directly to their designated Amazon S3 bucket. + +## __MailManager__ + - ### Features + - Add support for resources in the aws-eusc partition. + +## __Redshift Serverless__ + - ### Features + - Added UpdateLakehouseConfiguration API to manage Amazon Redshift Federated Permissions and AWS IAM Identity Center trusted identity propagation for namespaces. + +## __Runtime for Amazon Bedrock Data Automation__ + - ### Features + - Adding new fields to GetDataAutomationStatus: jobSubmissionTime, jobCompletionTime, and jobDurationInSeconds + +## __Security Incident Response__ + - ### Features + - Add ListInvestigations and SendFeedback APIs to support SecurityIR AI agents + +## __odb__ + - ### Features + - Adds AssociateIamRoleToResource and DisassociateIamRoleFromResource APIs for managing IAM roles. Enhances CreateOdbNetwork and UpdateOdbNetwork APIs with KMS, STS, and cross-region S3 parameters. Adds OCI identity domain support to InitializeService API. + +# __2.39.1__ __2025-11-20__ +## __AWS Budgets__ + - ### Features + - Add BillingViewHealthStatusException to DescribeBudgetPerformanceHistory and ServiceQuotaExceededException to UpdateBudget for improved error handling with Billing Views. + +## __AWS CloudTrail__ + - ### Features + - AWS launches CloudTrail aggregated events to simplify monitoring of data events at scale. This feature delivers both granular and summarized data events for resources like S3/Lambda, helping security teams identify patterns without custom aggregation logic. + +## __AWS DataSync__ + - ### Features + - The partition value "aws-eusc" is now permitted for ARN (Amazon Resource Name) fields. + +## __AWS Database Migration Service__ + - ### Features + - Added support for customer-managed KMS key (CMK) for encryption for import private key certificate. Additionally added Amazon SageMaker Lakehouse endpoint used for zero-ETL integrations with data warehouses. + +## __AWS Device Farm__ + - ### Features + - Add support for environment variables and an IAM execution role. + +## __AWS Glue__ + - ### Features + - Added FunctionType parameter to Glue GetuserDefinedFunctions. + +## __AWS Lake Formation__ + - ### Features + - Added ServiceIntegrations as a request parameter for CreateLakeFormationIdentityCenterConfigurationRequest and UpdateLakeFormationIdentityCenterConfigurationRequest and response parameter for DescribeLakeFormationIdentityCenterConfigurationResponse + +## __AWS License Manager__ + - ### Features + - Added cross-account resource aggregation via license asset groups and expiry tracking for Self-Managed Licenses. Extended Org-Wide View to Self-Managed Licenses, added reporting for license asset groups, and removed Athena/Glue dependencies for cross-account resource discovery in commercial regions. + +## __AWS Network Manager__ + - ### Features + - This release adds support for Cloud WAN Routing Policy providing customers sophisticated routing controls to better manage their global networks + +## __AWS Organizations__ + - ### Features + - Added new APIs for Billing Transfer, new policy type INSPECTOR_POLICY, and allow an account to transfer between organizations + +## __AWS SDK for Java v2__ + - ### Features + - Updated endpoint and partition metadata. + +## __AWS SecurityHub__ + - ### Features + - Release Findings and Resources Trends APIs- GetFindingsTrendsV2 and GetResourcesTrendsV2. This supports time-series aggregated counts with composite filtering for 1-year of historical data analysis of Findings and Resources. + +## __AWS Signin__ + - ### Features + - Add the LoginCredentialsProvider which allows use of AWS credentials vended by AWS Sign-In that correspond to an AWS Console session. AWS Sign-In credentials will be used automatically by the Credential resolution chain when `login_session` is set in the profile. + +## __Amazon Aurora DSQL__ + - ### Features + - Added clusterVpcEndpoint field to GetVpcEndpointServiceName API response, returning the VPC connection endpoint for the cluster + +## __Amazon Bedrock AgentCore__ + - ### Features + - Bedrock AgentCore Memory release for redriving memory extraction jobs (StartMemoryExtractionJob and ListMemoryExtractionJob) + +## __Amazon CloudFront__ + - ### Features + - This release adds support for bring your own IP (BYOIP) to CloudFront's CreateAnycastIpList API through an optional IpamCidrConfigs field. + +## __Amazon CloudWatch Application Signals__ + - ### Features + - Amazon CloudWatch Application Signals now supports un-instrumented services discovery, cross-account views, and change history, helping SRE and DevOps teams monitor and troubleshoot their large-scale distributed applications. + +## __Amazon Connect Service__ + - ### Features + - Add optional ability to exclude users from send notification actions for Contact Lens Rules. + +## __Amazon EC2 Container Service__ + - ### Features + - Launching Amazon ECS Express Mode - a new feature that enables developers to quickly launch highly available, scalable containerized applications with a single command. + +## __Amazon EMR__ + - ### Features + - Add support for configuring S3 destination for step logs on a per-step basis. + +## __Amazon Elastic Compute Cloud__ + - ### Features + - This release adds support for multiple features including: VPC Encryption Control for the status of traffic flow; S2S VPN BGP Logging; TGW Flexible Costs; IPAM allocation of static IPs from IPAM pools to CF Anycast IP lists used on CloudFront distribution; and EBS Volume Integration with Recycle Bin + +## __Amazon Kinesis__ + - ### Features + - Kinesis Data Streams now supports up to 50 Enhance Fan-out consumers for On-demand Advantage Streams. On-demand Standard and Provisioned streams will continue with the existing limit of 20 consumers for Enhanced Fan-out. + +## __Amazon QuickSight__ + - ### Features + - Introducing comprehensive theme styling controls. New features include border customization (radius, width, color), flexible padding controls, background styling for cards and sheets, centralized typography management, and visual-level override support across layouts. + +## __Amazon Recycle Bin__ + - ### Features + - Add support for EBS volume in Recycle Bin + +## __Amazon Relational Database Service__ + - ### Features + - Add support for VPC Encryption Controls. + +## __Amazon SageMaker Service__ + - ### Features + - Added training plan support for inference endpoints. Added HyperPod task governance with accelerator partition-based quota allocation. Added BatchRebootClusterNodes and BatchReplaceClusterNodes APIs. Updated ListClusterNodes to include privateDnsHostName. + +## __Amazon Simple Storage Service__ + - ### Features + - Enable / Disable ABAC on a general purpose bucket. + +## __Auto Scaling__ + - ### Features + - This release adds support for three new features: 1) Image ID overrides in mixed instances policy, 2) Replace Root Volume - a new strategy for Instance Refresh, and 3) Instance Lifecycle Policy for enhanced instance lifecycle management. + +## __Braket__ + - ### Features + - Add support for Braket spending limits. + +## __Data Automation for Amazon Bedrock__ + - ### Features + - Added support for Synchronous project type and PII Detection and Redaction + +## __EC2 Image Builder__ + - ### Features + - EC2 Image Builder now enables the distribution of existing AMIs, retry distribution, and define distribution workflows. It also supports automatic versioning for recipes and components, allowing automatic version increments and dynamic referencing in pipelines. + +## __Elastic Load Balancing__ + - ### Features + - This release adds the target optimizer feature in ALB, enabling strict concurrency enforcement on targets. + +## __Redshift Data API Service__ + - ### Features + - Increasing the length limit of Statement Name from 500 to 2048. + +## __Runtime for Amazon Bedrock Data Automation__ + - ### Features + - Bedrock Data Automation Runtime Sync API + +# __2.39.0__ __2025-11-19__ +## __AWS Backup__ + - ### Features + - Amazon GuardDuty Malware Protection now supports AWS Backup, extending malware detection capabilities to EC2, EBS, and S3 backups. + +## __AWS Billing__ + - ### Features + - Added name filtering support to ListBillingViews API through the new names parameter to efficiently filter billing views by name. + +## __AWS Billing and Cost Management Pricing Calculator__ + - ### Features + - Add GroupSharingPreference, CostCategoryGroupSharingPreferenceArn, and CostCategoryGroupSharingPreferenceEffectiveDate to Bill Estimate. Add GroupSharingPreference and CostCategoryGroupSharingPreferenceArn to Bill Scenario. + +## __AWS CloudTrail__ + - ### Features + - AWS CloudTrail now supports Insights for data events, expanding beyond management events to automatically detect unusual activity on data plane operations. + +## __AWS Cost Explorer Service__ + - ### Features + - Add support for COST_CATEGORY, TAG, and LINKED_ACCOUNT AWS managed cost anomaly detection monitors + +## __AWS Elemental MediaLive__ + - ### Features + - MediaLive is adding support for MediaConnect Router by supporting a new input type called MEDIACONNECT_ROUTER. This new input type will provide seamless encrypted transport between MediaConnect Router and your MediaLive channel. + +## __AWS Health APIs and Notifications__ + - ### Features + - Adds actionability and personas properties to Health events exposed through DescribeEvents, DescribeEventsForOrganization, DescribeEventDetails, and DescribeEventTypes APIs. Adds filtering by actionabilities and personas in EventFilter, OrganizationEventFilter, EventTypeFilter. + +## __AWS Identity and Access Management__ + - ### Features + - Added the EnableOutboundWebIdentityFederation, DisableOutboundWebIdentityFederation and GetOutboundWebIdentityFederationInfo APIs for the IAM outbound federation feature. + +## __AWS Invoicing__ + - ### Features + - Add support for adding Billing transfers in Invoice configuration + +## __AWS Lambda__ + - ### Features + - Added support for creating and invoking Tenant Isolated functions in AWS Lambda APIs. + +## __AWS MediaConnect__ + - ### Features + - This release adds support for global routing in AWS Elemental MediaConnect. You can now use router inputs and router outputs to manage global video and audio routing workflows both within the AWS-Cloud and over the public internet. + +## __AWS Network Firewall__ + - ### Features + - Partner Managed Rulegroup feature support + +## __AWS Secrets Manager__ + - ### Features + - Adds support to create, update, retrieve, rotate, and delete managed external secrets. + +## __AWS Security Token Service__ + - ### Features + - IAM now supports outbound identity federation via the STS GetWebIdentityToken API, enabling AWS workloads to securely authenticate with external services using short-lived JSON Web Tokens. + +## __AWS Sign-In Service__ + - ### Features + - AWS Sign-In manages authentication for AWS services. This service provides secure authentication flows for accessing AWS resources from the console and developer tools. This release adds the CreateOAuth2Token API, which can be used to fetch OAuth2 access tokens and refresh tokens from Sign-In. + +## __AWS Step Functions__ + - ### Features + - Adds support to TestState for mocked results and exceptions, along with additional inspection data. + +## __AWSBillingConductor__ + - ### Features + - This release adds support for Billing Transfers, enabling management of billing transfers with billing groups on AWS Billing Conductor. + +## __Amazon API Gateway__ + - ### Features + - API Gateway now supports response streaming and new security policies for REST APIs and custom domain names. + +## __Amazon Bedrock Runtime__ + - ### Features + - This release includes support for Search Results. + +## __Amazon CloudWatch Logs__ + - ### Features + - Adding support for ocsf version 1.5, add optional parameter MappingVersion + +## __Amazon DataZone__ + - ### Features + - Amazon DataZone now supports business metadata (readme and metadata forms) at the individual attribute (column) level, a new rule type for glossary terms, and the ability to update the owner of the root domain unit. + +## __Amazon DynamoDB__ + - ### Features + - Extended Global Secondary Index (GSI) composite keys to support up to 8 attributes. + +## __Amazon EC2 Container Service__ + - ### Features + - Added support for Amazon ECS Managed Instances infrastructure optimization configuration. + +## __Amazon EMR__ + - ### Features + - Add CloudWatch Logs integration for Spark driver, executor and step logs + +## __Amazon Elastic Compute Cloud__ + - ### Features + - This launch adds support for two new features: Regional NAT Gateway and IPAM Policies. IPAM policies offers customers central control for public IPv4 assignments across AWS services. Regional NAT is a single NAT Gateway that automatically expands across AZs in a VPC to maintain high availability. + +## __Amazon Elastic Container Registry__ + - ### Features + - Add support for ECR archival storage class and Inspector org policy for scanning + +## __Amazon FSx__ + - ### Features + - Adding File Server Resource Manager configuration to FSx Windows + +## __Amazon GuardDuty__ + - ### Features + - Add support for scanning and viewing scan results for backup resource types + +## __Amazon Route 53__ + - ### Features + - Add dual-stack endpoint support for Route53 + +## __Amazon SageMaker Service__ + - ### Features + - Added support for enhanced metrics for SageMaker AI Endpoints. This features provides Utilization Metrics at instance and container granularity and also provides easy configuration of metric publish frequency from 10 sec -> 5 mins + +## __Amazon Simple Storage Service__ + - ### Features + - Adds support for blocking SSE-C writes to general purpose buckets. + +## __Amazon Transcribe Streaming Service__ + - ### Features + - This release adds support for additional locales in AWS transcribe streaming. + +## __AmazonApiGatewayV2__ + - ### Features + - Support for API Gateway portals and portal products. + +## __AmazonConnectCampaignServiceV2__ + - ### Features + - This release added support for ring timer configuration for campaign calls. + +## __CloudWatch RUM__ + - ### Features + - CloudWatch RUM now supports mobile application monitoring for Android and iOS platforms + +## __Cost Optimization Hub__ + - ### Features + - Release ListEfficiencyMetrics API + +## __Inspector2__ + - ### Features + - This release introduces BLOCKED_BY_ORGANIZATION_POLICY error code and IMAGE_ARCHIVED scanStatusReason. BLOCKED_BY_ORGANIZATION_POLICY error code is returned when an operation is blocked by an AWS Organizations policy. IMAGE_ARCHIVED scanStatusReason is returned when an Image is archived in ECR. + +## __Network Flow Monitor__ + - ### Features + - Added new enum value (AWS::EKS::Cluster) for type field under MonitorLocalResource + +## __Partner Central Channel API__ + - ### Features + - Initial GA launch of Partner Central Channel + diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index 1fa522e2e129..d18c36c840b8 100644 --- a/codegen-lite-maven-plugin/pom.xml +++ b/codegen-lite-maven-plugin/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index a18c421f1d90..216d5cc02fc8 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index 8680c4f867a8..a31b7c4693e8 100644 --- a/codegen-maven-plugin/pom.xml +++ b/codegen-maven-plugin/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index f055a10e0f89..ba7326e07cea 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index 95b5cc68902c..4ce867bc303d 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index 912549c27e99..173acd1f84d4 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 diff --git a/core/auth-crt/pom.xml b/core/auth-crt/pom.xml index 2f0032ac67ad..8bf3539c654c 100644 --- a/core/auth-crt/pom.xml +++ b/core/auth-crt/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT auth-crt diff --git a/core/auth/pom.xml b/core/auth/pom.xml index 7039aac5e595..bd878d94a5dd 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index e9b948cec9cd..4ed4cf399b0d 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT aws-core diff --git a/core/checksums-spi/pom.xml b/core/checksums-spi/pom.xml index 38dc31f4813b..74052cde9f42 100644 --- a/core/checksums-spi/pom.xml +++ b/core/checksums-spi/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT checksums-spi diff --git a/core/checksums/pom.xml b/core/checksums/pom.xml index a0601316d98f..7d16d679dfbb 100644 --- a/core/checksums/pom.xml +++ b/core/checksums/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT checksums diff --git a/core/crt-core/pom.xml b/core/crt-core/pom.xml index 28fe76715ec4..00d7b2129b90 100644 --- a/core/crt-core/pom.xml +++ b/core/crt-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT crt-core diff --git a/core/endpoints-spi/pom.xml b/core/endpoints-spi/pom.xml index 709d9b8f9aee..a8be3e652f97 100644 --- a/core/endpoints-spi/pom.xml +++ b/core/endpoints-spi/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 diff --git a/core/http-auth-aws-crt/pom.xml b/core/http-auth-aws-crt/pom.xml index 5e64d55698b2..49521517d0b3 100644 --- a/core/http-auth-aws-crt/pom.xml +++ b/core/http-auth-aws-crt/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT http-auth-aws-crt diff --git a/core/http-auth-aws-eventstream/pom.xml b/core/http-auth-aws-eventstream/pom.xml index 09961fc9eb40..d79ebdbd3009 100644 --- a/core/http-auth-aws-eventstream/pom.xml +++ b/core/http-auth-aws-eventstream/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT http-auth-aws-eventstream diff --git a/core/http-auth-aws/pom.xml b/core/http-auth-aws/pom.xml index 8f1b57d9bd86..ff2a98b61e0d 100644 --- a/core/http-auth-aws/pom.xml +++ b/core/http-auth-aws/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT http-auth-aws diff --git a/core/http-auth-spi/pom.xml b/core/http-auth-spi/pom.xml index 520fc9005af8..46927e453d7a 100644 --- a/core/http-auth-spi/pom.xml +++ b/core/http-auth-spi/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT http-auth-spi diff --git a/core/http-auth/pom.xml b/core/http-auth/pom.xml index b54295f17b92..64291c451bd5 100644 --- a/core/http-auth/pom.xml +++ b/core/http-auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT http-auth diff --git a/core/identity-spi/pom.xml b/core/identity-spi/pom.xml index 1fe4d98fd0e0..130cc0df36df 100644 --- a/core/identity-spi/pom.xml +++ b/core/identity-spi/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT identity-spi diff --git a/core/imds/pom.xml b/core/imds/pom.xml index 837f7a08383a..782002e66b77 100644 --- a/core/imds/pom.xml +++ b/core/imds/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 imds diff --git a/core/json-utils/pom.xml b/core/json-utils/pom.xml index ac763e1e6c46..f8c19a6c4055 100644 --- a/core/json-utils/pom.xml +++ b/core/json-utils/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index 05cd739df9d7..9fd96f8be478 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index 79d06992ed50..426ae7ec97ec 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index 2741598bbb39..af7b532db878 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index b649a7c0b8d2..791bb686089e 100644 --- a/core/protocols/aws-cbor-protocol/pom.xml +++ b/core/protocols/aws-cbor-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index 79a2992f87b8..13a4f8254e2a 100644 --- a/core/protocols/aws-json-protocol/pom.xml +++ b/core/protocols/aws-json-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index 58bf5fd88bff..ba45926d0123 100644 --- a/core/protocols/aws-query-protocol/pom.xml +++ b/core/protocols/aws-query-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index c1cab6eee182..e0662a871bcd 100644 --- a/core/protocols/aws-xml-protocol/pom.xml +++ b/core/protocols/aws-xml-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index e7000b8aa952..63bf31f4a476 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index b88d8d314ee9..208e3891764d 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 diff --git a/core/protocols/smithy-rpcv2-protocol/pom.xml b/core/protocols/smithy-rpcv2-protocol/pom.xml index b4b1add1803b..8b2a4713a960 100644 --- a/core/protocols/smithy-rpcv2-protocol/pom.xml +++ b/core/protocols/smithy-rpcv2-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index c00272e8ef63..86e1226e2e54 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT regions diff --git a/core/retries-spi/pom.xml b/core/retries-spi/pom.xml index a19b3ef1dacc..571e1edbb7fd 100644 --- a/core/retries-spi/pom.xml +++ b/core/retries-spi/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 diff --git a/core/retries/pom.xml b/core/retries/pom.xml index a3124d792bd6..c83f8be5b693 100644 --- a/core/retries/pom.xml +++ b/core/retries/pom.xml @@ -21,7 +21,7 @@ core software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index 8188a4c2a9db..5d58d6af45af 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index 2159befb9579..4ba4a9be7df1 100644 --- a/http-client-spi/pom.xml +++ b/http-client-spi/pom.xml @@ -22,7 +22,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT http-client-spi AWS Java SDK :: HTTP Client Interface diff --git a/http-clients/apache-client/pom.xml b/http-clients/apache-client/pom.xml index 73d8aae10cc8..c1f1b09e2287 100644 --- a/http-clients/apache-client/pom.xml +++ b/http-clients/apache-client/pom.xml @@ -21,7 +21,7 @@ http-clients software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT apache-client diff --git a/http-clients/apache5-client/pom.xml b/http-clients/apache5-client/pom.xml index 139ef8ba1d91..a990d023a222 100644 --- a/http-clients/apache5-client/pom.xml +++ b/http-clients/apache5-client/pom.xml @@ -21,7 +21,7 @@ http-clients software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT apache5-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index 34651734964c..eb05fe74d6f7 100644 --- a/http-clients/aws-crt-client/pom.xml +++ b/http-clients/aws-crt-client/pom.xml @@ -21,7 +21,7 @@ http-clients software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index 4ec5aa278e79..79d1f092cae9 100644 --- a/http-clients/netty-nio-client/pom.xml +++ b/http-clients/netty-nio-client/pom.xml @@ -20,7 +20,7 @@ http-clients software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index b2a684db86b4..7e0a55d8688b 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index 0f3d14c405d0..da50b2d39905 100644 --- a/http-clients/url-connection-client/pom.xml +++ b/http-clients/url-connection-client/pom.xml @@ -20,7 +20,7 @@ http-clients software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index 22895e322fca..c6c15f920f4b 100644 --- a/metric-publishers/cloudwatch-metric-publisher/pom.xml +++ b/metric-publishers/cloudwatch-metric-publisher/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk metric-publishers - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT cloudwatch-metric-publisher diff --git a/metric-publishers/emf-metric-logging-publisher/pom.xml b/metric-publishers/emf-metric-logging-publisher/pom.xml index 77be85097e74..7e84a91c2d30 100644 --- a/metric-publishers/emf-metric-logging-publisher/pom.xml +++ b/metric-publishers/emf-metric-logging-publisher/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk metric-publishers - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT emf-metric-logging-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index 7e7f85266853..9189797a8ccc 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT metric-publishers diff --git a/pom.xml b/pom.xml index 041d11070496..d58c80318121 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT pom AWS Java SDK :: Parent The Amazon Web Services SDK for Java provides Java APIs diff --git a/release-scripts/pom.xml b/release-scripts/pom.xml index d64de62ea60e..fc619c825b9b 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index b7fc4b577b8c..29e015e00a93 100644 --- a/services-custom/dynamodb-enhanced/pom.xml +++ b/services-custom/dynamodb-enhanced/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services-custom - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT dynamodb-enhanced AWS Java SDK :: DynamoDB :: Enhanced Client diff --git a/services-custom/iam-policy-builder/pom.xml b/services-custom/iam-policy-builder/pom.xml index 93f9a1322f9e..c90692408b79 100644 --- a/services-custom/iam-policy-builder/pom.xml +++ b/services-custom/iam-policy-builder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT ../../pom.xml iam-policy-builder diff --git a/services-custom/pom.xml b/services-custom/pom.xml index 068877bdfac0..325d3e7867ee 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT services-custom AWS Java SDK :: Custom Services diff --git a/services-custom/s3-event-notifications/pom.xml b/services-custom/s3-event-notifications/pom.xml index ac7af9f9e7c4..54c1b173be52 100644 --- a/services-custom/s3-event-notifications/pom.xml +++ b/services-custom/s3-event-notifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT ../../pom.xml s3-event-notifications diff --git a/services-custom/s3-transfer-manager/pom.xml b/services-custom/s3-transfer-manager/pom.xml index 88aa4fe6f2d7..dcee2fd165a1 100644 --- a/services-custom/s3-transfer-manager/pom.xml +++ b/services-custom/s3-transfer-manager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT ../../pom.xml s3-transfer-manager diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index d0e68124181a..d40faa0146c8 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/account/pom.xml b/services/account/pom.xml index a3365bd10d36..3c9dc474e146 100644 --- a/services/account/pom.xml +++ b/services/account/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT account AWS Java SDK :: Services :: Account diff --git a/services/acm/pom.xml b/services/acm/pom.xml index 434b59da711b..bf114fcd2862 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index 436b509ea3a4..0d81ea9a4c4c 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/aiops/pom.xml b/services/aiops/pom.xml index 44974d2daef3..455bf44d2a01 100644 --- a/services/aiops/pom.xml +++ b/services/aiops/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT aiops AWS Java SDK :: Services :: AI Ops diff --git a/services/amp/pom.xml b/services/amp/pom.xml index cc16e139a79d..2e227ee7649e 100644 --- a/services/amp/pom.xml +++ b/services/amp/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT amp AWS Java SDK :: Services :: Amp diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index c6f2e2b0cd4d..7a08d9219db7 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT amplify AWS Java SDK :: Services :: Amplify diff --git a/services/amplifybackend/pom.xml b/services/amplifybackend/pom.xml index c14548f41a07..e0e15e7e34dc 100644 --- a/services/amplifybackend/pom.xml +++ b/services/amplifybackend/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT amplifybackend AWS Java SDK :: Services :: Amplify Backend diff --git a/services/amplifyuibuilder/pom.xml b/services/amplifyuibuilder/pom.xml index 7da345c56b2c..9abd1cbf1cc4 100644 --- a/services/amplifyuibuilder/pom.xml +++ b/services/amplifyuibuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT amplifyuibuilder AWS Java SDK :: Services :: Amplify UI Builder diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index 8e8588bb8bee..d8c79808c803 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index 2f693f0cdc13..dacb4ca2ba0d 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index e9ae39199356..39e4a35be5f1 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index 8e2b2d7c1e91..c66770bb88a0 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appconfigdata/pom.xml b/services/appconfigdata/pom.xml index a788e6c9aa09..4a3cc0f4723f 100644 --- a/services/appconfigdata/pom.xml +++ b/services/appconfigdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT appconfigdata AWS Java SDK :: Services :: App Config Data diff --git a/services/appfabric/pom.xml b/services/appfabric/pom.xml index a9896def8ef6..334c94f149ec 100644 --- a/services/appfabric/pom.xml +++ b/services/appfabric/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT appfabric AWS Java SDK :: Services :: App Fabric diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index ceb9bb03ccdd..a3d1da7b4e7e 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT appflow AWS Java SDK :: Services :: Appflow diff --git a/services/appintegrations/pom.xml b/services/appintegrations/pom.xml index 18a59e6d1479..8ad98a0aa118 100644 --- a/services/appintegrations/pom.xml +++ b/services/appintegrations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT appintegrations AWS Java SDK :: Services :: App Integrations diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index 1321df01fdeb..61c3e954ca14 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationcostprofiler/pom.xml b/services/applicationcostprofiler/pom.xml index 8a6b80553ac3..36b07b62fd1a 100644 --- a/services/applicationcostprofiler/pom.xml +++ b/services/applicationcostprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT applicationcostprofiler AWS Java SDK :: Services :: Application Cost Profiler diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index b9d000341499..4dea2c2959a2 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index bddacca054c2..aaa848f0bb70 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/applicationsignals/pom.xml b/services/applicationsignals/pom.xml index 52c3736d7051..ad8381a585c2 100644 --- a/services/applicationsignals/pom.xml +++ b/services/applicationsignals/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT applicationsignals AWS Java SDK :: Services :: Application Signals diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index 8c4deda52927..5d906514ea2b 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/apprunner/pom.xml b/services/apprunner/pom.xml index 843ea7ae56c1..af1dc85445c5 100644 --- a/services/apprunner/pom.xml +++ b/services/apprunner/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT apprunner AWS Java SDK :: Services :: App Runner diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index 22843d594d27..16ff57267068 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index 2ea96c5411ef..3f053b1f2bb8 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT appsync diff --git a/services/arcregionswitch/pom.xml b/services/arcregionswitch/pom.xml index b4fccbf6c6f4..f4701aef2492 100644 --- a/services/arcregionswitch/pom.xml +++ b/services/arcregionswitch/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT arcregionswitch AWS Java SDK :: Services :: ARC Region Switch diff --git a/services/arczonalshift/pom.xml b/services/arczonalshift/pom.xml index ddb80698e1fe..5eff5ec37d46 100644 --- a/services/arczonalshift/pom.xml +++ b/services/arczonalshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT arczonalshift AWS Java SDK :: Services :: ARC Zonal Shift diff --git a/services/artifact/pom.xml b/services/artifact/pom.xml index 33b9d2a08533..781d7244441c 100644 --- a/services/artifact/pom.xml +++ b/services/artifact/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT artifact AWS Java SDK :: Services :: Artifact diff --git a/services/athena/pom.xml b/services/athena/pom.xml index 00130dbcead2..53d135e13963 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/auditmanager/pom.xml b/services/auditmanager/pom.xml index ca658a75b740..62a26ad8c1c7 100644 --- a/services/auditmanager/pom.xml +++ b/services/auditmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT auditmanager AWS Java SDK :: Services :: Audit Manager diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index 5969ca2717a9..e2fdf51461da 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index 2490d10c23c1..fd275af4fa55 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/b2bi/pom.xml b/services/b2bi/pom.xml index 9b6852cc8a82..5697ac7557be 100644 --- a/services/b2bi/pom.xml +++ b/services/b2bi/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT b2bi AWS Java SDK :: Services :: B2 Bi diff --git a/services/backup/pom.xml b/services/backup/pom.xml index 5d171c55f0ea..bc1950bdf06d 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT backup AWS Java SDK :: Services :: Backup diff --git a/services/backupgateway/pom.xml b/services/backupgateway/pom.xml index e60e26d1193a..683595c9fde1 100644 --- a/services/backupgateway/pom.xml +++ b/services/backupgateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT backupgateway AWS Java SDK :: Services :: Backup Gateway diff --git a/services/backupsearch/pom.xml b/services/backupsearch/pom.xml index b8bdad62dc5b..28e4a60524dc 100644 --- a/services/backupsearch/pom.xml +++ b/services/backupsearch/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT backupsearch AWS Java SDK :: Services :: Backup Search diff --git a/services/batch/pom.xml b/services/batch/pom.xml index 0cc5fd31f0be..1f8ca27f5fe3 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/bcmdashboards/pom.xml b/services/bcmdashboards/pom.xml index 51bab9a3d01b..a6d7f45e4dcf 100644 --- a/services/bcmdashboards/pom.xml +++ b/services/bcmdashboards/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT bcmdashboards AWS Java SDK :: Services :: BCM Dashboards diff --git a/services/bcmdataexports/pom.xml b/services/bcmdataexports/pom.xml index 72ff8bc3bd25..4fc5891a1682 100644 --- a/services/bcmdataexports/pom.xml +++ b/services/bcmdataexports/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT bcmdataexports AWS Java SDK :: Services :: BCM Data Exports diff --git a/services/bcmpricingcalculator/pom.xml b/services/bcmpricingcalculator/pom.xml index fd5c81447b78..6b83732a2342 100644 --- a/services/bcmpricingcalculator/pom.xml +++ b/services/bcmpricingcalculator/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT bcmpricingcalculator AWS Java SDK :: Services :: BCM Pricing Calculator diff --git a/services/bcmrecommendedactions/pom.xml b/services/bcmrecommendedactions/pom.xml index 3b49646bf108..12c0d9aea696 100644 --- a/services/bcmrecommendedactions/pom.xml +++ b/services/bcmrecommendedactions/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT bcmrecommendedactions AWS Java SDK :: Services :: BCM Recommended Actions diff --git a/services/bedrock/pom.xml b/services/bedrock/pom.xml index f2a66907b450..1ea1b2be1ddb 100644 --- a/services/bedrock/pom.xml +++ b/services/bedrock/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT bedrock AWS Java SDK :: Services :: Bedrock diff --git a/services/bedrockagent/pom.xml b/services/bedrockagent/pom.xml index 48bea2c1f960..a0d52661ebc1 100644 --- a/services/bedrockagent/pom.xml +++ b/services/bedrockagent/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT bedrockagent AWS Java SDK :: Services :: Bedrock Agent diff --git a/services/bedrockagentcore/pom.xml b/services/bedrockagentcore/pom.xml index b35527b0fbe6..b05c7cbc6962 100644 --- a/services/bedrockagentcore/pom.xml +++ b/services/bedrockagentcore/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT bedrockagentcore AWS Java SDK :: Services :: Bedrock Agent Core diff --git a/services/bedrockagentcorecontrol/pom.xml b/services/bedrockagentcorecontrol/pom.xml index 70124d47a0ec..12296326e4bf 100644 --- a/services/bedrockagentcorecontrol/pom.xml +++ b/services/bedrockagentcorecontrol/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT bedrockagentcorecontrol AWS Java SDK :: Services :: Bedrock Agent Core Control diff --git a/services/bedrockagentruntime/pom.xml b/services/bedrockagentruntime/pom.xml index 35e2ec992b85..0a00922a992b 100644 --- a/services/bedrockagentruntime/pom.xml +++ b/services/bedrockagentruntime/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT bedrockagentruntime AWS Java SDK :: Services :: Bedrock Agent Runtime diff --git a/services/bedrockdataautomation/pom.xml b/services/bedrockdataautomation/pom.xml index 050f63c1338f..808c5a918fb0 100644 --- a/services/bedrockdataautomation/pom.xml +++ b/services/bedrockdataautomation/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT bedrockdataautomation AWS Java SDK :: Services :: Bedrock Data Automation diff --git a/services/bedrockdataautomationruntime/pom.xml b/services/bedrockdataautomationruntime/pom.xml index 7e3ec5d4689d..54cfdb982e3c 100644 --- a/services/bedrockdataautomationruntime/pom.xml +++ b/services/bedrockdataautomationruntime/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT bedrockdataautomationruntime AWS Java SDK :: Services :: Bedrock Data Automation Runtime diff --git a/services/bedrockruntime/pom.xml b/services/bedrockruntime/pom.xml index 29cbdaeecc8c..2fa6e9fb63e8 100644 --- a/services/bedrockruntime/pom.xml +++ b/services/bedrockruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT bedrockruntime AWS Java SDK :: Services :: Bedrock Runtime diff --git a/services/billing/pom.xml b/services/billing/pom.xml index 3ecbada8a133..c24592dc9c05 100644 --- a/services/billing/pom.xml +++ b/services/billing/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT billing AWS Java SDK :: Services :: Billing diff --git a/services/billingconductor/pom.xml b/services/billingconductor/pom.xml index a0a244fb8f6c..ac1100003b3b 100644 --- a/services/billingconductor/pom.xml +++ b/services/billingconductor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT billingconductor AWS Java SDK :: Services :: Billingconductor diff --git a/services/braket/pom.xml b/services/braket/pom.xml index 783a2b3a986c..08661b790f01 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index 5ca307784d33..efc3f555f00c 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chatbot/pom.xml b/services/chatbot/pom.xml index 22bc6ed5c930..82ca540bb103 100644 --- a/services/chatbot/pom.xml +++ b/services/chatbot/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT chatbot AWS Java SDK :: Services :: Chatbot diff --git a/services/chime/pom.xml b/services/chime/pom.xml index 9e6bdfecc737..71ee338b3c0d 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT chime AWS Java SDK :: Services :: Chime diff --git a/services/chimesdkidentity/pom.xml b/services/chimesdkidentity/pom.xml index 80e6a0d6cb8c..00f06321ae02 100644 --- a/services/chimesdkidentity/pom.xml +++ b/services/chimesdkidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT chimesdkidentity AWS Java SDK :: Services :: Chime SDK Identity diff --git a/services/chimesdkmediapipelines/pom.xml b/services/chimesdkmediapipelines/pom.xml index dee582254875..a3a26bbfe10d 100644 --- a/services/chimesdkmediapipelines/pom.xml +++ b/services/chimesdkmediapipelines/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT chimesdkmediapipelines AWS Java SDK :: Services :: Chime SDK Media Pipelines diff --git a/services/chimesdkmeetings/pom.xml b/services/chimesdkmeetings/pom.xml index 99f41b80c112..c8016d633e99 100644 --- a/services/chimesdkmeetings/pom.xml +++ b/services/chimesdkmeetings/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT chimesdkmeetings AWS Java SDK :: Services :: Chime SDK Meetings diff --git a/services/chimesdkmessaging/pom.xml b/services/chimesdkmessaging/pom.xml index b66b1586a151..6523b3cd3928 100644 --- a/services/chimesdkmessaging/pom.xml +++ b/services/chimesdkmessaging/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT chimesdkmessaging AWS Java SDK :: Services :: Chime SDK Messaging diff --git a/services/chimesdkvoice/pom.xml b/services/chimesdkvoice/pom.xml index 9fc568ff4268..70fc3e5e2e3d 100644 --- a/services/chimesdkvoice/pom.xml +++ b/services/chimesdkvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT chimesdkvoice AWS Java SDK :: Services :: Chime SDK Voice diff --git a/services/cleanrooms/pom.xml b/services/cleanrooms/pom.xml index 6f42bfaaecd4..8dd9e0297545 100644 --- a/services/cleanrooms/pom.xml +++ b/services/cleanrooms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT cleanrooms AWS Java SDK :: Services :: Clean Rooms diff --git a/services/cleanroomsml/pom.xml b/services/cleanroomsml/pom.xml index 635093ebdef6..3fa93109cd2d 100644 --- a/services/cleanroomsml/pom.xml +++ b/services/cleanroomsml/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT cleanroomsml AWS Java SDK :: Services :: Clean Rooms ML diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index ad7209982353..aac8b8cf7748 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 cloud9 diff --git a/services/cloudcontrol/pom.xml b/services/cloudcontrol/pom.xml index 5879640c326f..88d42504ff50 100644 --- a/services/cloudcontrol/pom.xml +++ b/services/cloudcontrol/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT cloudcontrol AWS Java SDK :: Services :: Cloud Control diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index 25d017ef6ab2..a61e40828213 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index 7dbb106aeab9..f01cafdcb8c4 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index c11f529929fb..8e34d62f80fd 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudfrontkeyvaluestore/pom.xml b/services/cloudfrontkeyvaluestore/pom.xml index 9453c641b89d..042a98b4854d 100644 --- a/services/cloudfrontkeyvaluestore/pom.xml +++ b/services/cloudfrontkeyvaluestore/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT cloudfrontkeyvaluestore AWS Java SDK :: Services :: Cloud Front Key Value Store diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index 8923840c98c7..1584895e064d 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index ee56057f686c..e276308483f6 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index 06b57a070d4d..423d96797b3a 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index 4da321fb8d40..707503c93bc0 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index f798ec1eee03..9fead37cd3c5 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudtraildata/pom.xml b/services/cloudtraildata/pom.xml index 5aeb83ad4839..3d86e0c980b9 100644 --- a/services/cloudtraildata/pom.xml +++ b/services/cloudtraildata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT cloudtraildata AWS Java SDK :: Services :: Cloud Trail Data diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index a935a53271cd..97ca2c0838dd 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index 81bc974c46aa..15cae54a12ff 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index 11c2db3f3fe7..d153e93c964f 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index 514892a65d88..13e7c7211a99 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index a6c1118d7b8f..42154d03df98 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecatalyst/pom.xml b/services/codecatalyst/pom.xml index 9312812a7bd3..75a75829d2e4 100644 --- a/services/codecatalyst/pom.xml +++ b/services/codecatalyst/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT codecatalyst AWS Java SDK :: Services :: Code Catalyst diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index 1cf418b8de49..17b854589018 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codeconnections/pom.xml b/services/codeconnections/pom.xml index 704b731d7dd3..c8c69601d7e6 100644 --- a/services/codeconnections/pom.xml +++ b/services/codeconnections/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT codeconnections AWS Java SDK :: Services :: Code Connections diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index 3eb104d02531..3eac4b859b40 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index eb59420550e7..d0f6cb615689 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index a76c26152f4e..7a75427d1a1f 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codegurusecurity/pom.xml b/services/codegurusecurity/pom.xml index 5bf430edf009..b0169eff9254 100644 --- a/services/codegurusecurity/pom.xml +++ b/services/codegurusecurity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT codegurusecurity AWS Java SDK :: Services :: Code Guru Security diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index 7d799b63075f..ed64b836fb10 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index 81349d2049c0..48066d5c12ae 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index a1ff909678d1..d05ecad59513 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index 8ef9bd2b40c5..4fec62af99dc 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index a24db56fa738..ca13c9211d06 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index a8c92d21cd35..1c5676ec50c8 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index ad9a1c3197bd..2a81d52f7143 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index 243d4751835d..b58cc4a4a730 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index 9b3f44f5c48c..40d5ca4e3a7b 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/computeoptimizerautomation/pom.xml b/services/computeoptimizerautomation/pom.xml index 92485b16051c..4f20fe626e39 100644 --- a/services/computeoptimizerautomation/pom.xml +++ b/services/computeoptimizerautomation/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT computeoptimizerautomation AWS Java SDK :: Services :: Compute Optimizer Automation diff --git a/services/config/pom.xml b/services/config/pom.xml index 298477f041a5..24276a691099 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index 246c5ff5221e..7071f786bce9 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT connect AWS Java SDK :: Services :: Connect diff --git a/services/connectcampaigns/pom.xml b/services/connectcampaigns/pom.xml index aacc9cc11c5b..ee5c4a0149f3 100644 --- a/services/connectcampaigns/pom.xml +++ b/services/connectcampaigns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT connectcampaigns AWS Java SDK :: Services :: Connect Campaigns diff --git a/services/connectcampaignsv2/pom.xml b/services/connectcampaignsv2/pom.xml index e30a89e09f4d..755a1f1a87f0 100644 --- a/services/connectcampaignsv2/pom.xml +++ b/services/connectcampaignsv2/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT connectcampaignsv2 AWS Java SDK :: Services :: Connect Campaigns V2 diff --git a/services/connectcases/pom.xml b/services/connectcases/pom.xml index f5c093597075..809bab13243c 100644 --- a/services/connectcases/pom.xml +++ b/services/connectcases/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT connectcases AWS Java SDK :: Services :: Connect Cases diff --git a/services/connectcontactlens/pom.xml b/services/connectcontactlens/pom.xml index 08136a4e6ac4..c817b8e2e6b1 100644 --- a/services/connectcontactlens/pom.xml +++ b/services/connectcontactlens/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT connectcontactlens AWS Java SDK :: Services :: Connect Contact Lens diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index cb04d209fa8f..121b5510f9a7 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/controlcatalog/pom.xml b/services/controlcatalog/pom.xml index 394ade1d39ff..d522b310269d 100644 --- a/services/controlcatalog/pom.xml +++ b/services/controlcatalog/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT controlcatalog AWS Java SDK :: Services :: Control Catalog diff --git a/services/controltower/pom.xml b/services/controltower/pom.xml index 9de6ed717f6e..a4615a96574a 100644 --- a/services/controltower/pom.xml +++ b/services/controltower/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT controltower AWS Java SDK :: Services :: Control Tower diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index c70ec8a0ef40..29921fad6010 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index 469c868d6295..9812fb9210df 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 costexplorer diff --git a/services/costoptimizationhub/pom.xml b/services/costoptimizationhub/pom.xml index 6ab5c70eddee..5a792f7b9150 100644 --- a/services/costoptimizationhub/pom.xml +++ b/services/costoptimizationhub/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT costoptimizationhub AWS Java SDK :: Services :: Cost Optimization Hub diff --git a/services/customerprofiles/pom.xml b/services/customerprofiles/pom.xml index be470c1d70a5..29ff54403e27 100644 --- a/services/customerprofiles/pom.xml +++ b/services/customerprofiles/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT customerprofiles AWS Java SDK :: Services :: Customer Profiles diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index 081d7a42405c..0301455d6622 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/databrew/pom.xml b/services/databrew/pom.xml index 763d83b6eeb1..6b5a8703a254 100644 --- a/services/databrew/pom.xml +++ b/services/databrew/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT databrew AWS Java SDK :: Services :: Data Brew diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index 48c2c1ec2f6d..055700b0f9fc 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index a89de30749bc..77c01911796c 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index 9585fa97eaa7..460d478a3462 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT datasync AWS Java SDK :: Services :: DataSync diff --git a/services/datazone/pom.xml b/services/datazone/pom.xml index 13ca97f828a9..494c4b80715b 100644 --- a/services/datazone/pom.xml +++ b/services/datazone/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT datazone AWS Java SDK :: Services :: Data Zone diff --git a/services/dax/pom.xml b/services/dax/pom.xml index da908382a741..477ec8db0e24 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/deadline/pom.xml b/services/deadline/pom.xml index dff0352c3e6b..271e97b14bc2 100644 --- a/services/deadline/pom.xml +++ b/services/deadline/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT deadline AWS Java SDK :: Services :: Deadline diff --git a/services/detective/pom.xml b/services/detective/pom.xml index 8a7359c88c34..536e900b431d 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index bce53975a452..cf7513fc773c 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/devopsguru/pom.xml b/services/devopsguru/pom.xml index 71a812d2d68a..d0678d8545cc 100644 --- a/services/devopsguru/pom.xml +++ b/services/devopsguru/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT devopsguru AWS Java SDK :: Services :: Dev Ops Guru diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index a3a1c329e062..bf8bebc85c30 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index e6f1d6e63217..51688ae22cf3 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/directoryservicedata/pom.xml b/services/directoryservicedata/pom.xml index 576279866ffd..d156c420e550 100644 --- a/services/directoryservicedata/pom.xml +++ b/services/directoryservicedata/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT directoryservicedata AWS Java SDK :: Services :: Directory Service Data diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index 524ea5417e26..59b9ad3a1e90 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index d80d1cd6a5ef..57d17c2b16c3 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT docdb AWS Java SDK :: Services :: DocDB diff --git a/services/docdbelastic/pom.xml b/services/docdbelastic/pom.xml index d330148f6989..cdf7b349068e 100644 --- a/services/docdbelastic/pom.xml +++ b/services/docdbelastic/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT docdbelastic AWS Java SDK :: Services :: Doc DB Elastic diff --git a/services/drs/pom.xml b/services/drs/pom.xml index d20bc231275e..032c04f18366 100644 --- a/services/drs/pom.xml +++ b/services/drs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT drs AWS Java SDK :: Services :: Drs diff --git a/services/dsql/pom.xml b/services/dsql/pom.xml index d09974079dc3..32d0b3e41912 100644 --- a/services/dsql/pom.xml +++ b/services/dsql/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT dsql AWS Java SDK :: Services :: DSQL diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index 74786d87296e..5f590cde4180 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index 578eec572b48..471d4c6f5392 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index 015e80341b6d..d3e7e26c1be6 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index 4a3cf3b06c73..bc707030d739 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index 5aeaa69a9ac5..fb918a7d4e58 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecrpublic/pom.xml b/services/ecrpublic/pom.xml index 5247ed18a605..0292944ad7f0 100644 --- a/services/ecrpublic/pom.xml +++ b/services/ecrpublic/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT ecrpublic AWS Java SDK :: Services :: ECR PUBLIC diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index 994faeff8197..eb2fe0676901 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index 48f2485be384..4029b71e0beb 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index 0d1fc3b45e38..d6e8bc4ecf9a 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT eks AWS Java SDK :: Services :: EKS diff --git a/services/eksauth/pom.xml b/services/eksauth/pom.xml index 1facf2f4fbe4..618b7a1767b4 100644 --- a/services/eksauth/pom.xml +++ b/services/eksauth/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT eksauth AWS Java SDK :: Services :: EKS Auth diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index 655caebef4a8..4046d07e4d0d 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index 895f1a2b196d..f4d88d6bf2cb 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index 9e97e9f29e65..03fded5cbc27 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index 921bc61428b0..eea0b36bc823 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index 70b60c2ad1c2..1fe0e9bf791d 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index a8172ff84bdc..72ddb7b264bc 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index cee40752179d..6e82c6bd99da 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/emrcontainers/pom.xml b/services/emrcontainers/pom.xml index 0218f6ab45cb..1586dd323bc9 100644 --- a/services/emrcontainers/pom.xml +++ b/services/emrcontainers/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT emrcontainers AWS Java SDK :: Services :: EMR Containers diff --git a/services/emrserverless/pom.xml b/services/emrserverless/pom.xml index 4d3f06802c19..3bfdf3f0fe26 100644 --- a/services/emrserverless/pom.xml +++ b/services/emrserverless/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT emrserverless AWS Java SDK :: Services :: EMR Serverless diff --git a/services/entityresolution/pom.xml b/services/entityresolution/pom.xml index 38898ed750c3..40c1bcf1fbfc 100644 --- a/services/entityresolution/pom.xml +++ b/services/entityresolution/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT entityresolution AWS Java SDK :: Services :: Entity Resolution diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index 3aa29cf63fc1..cb06ec82265d 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/evidently/pom.xml b/services/evidently/pom.xml index 70f361ee48de..e4891127e768 100644 --- a/services/evidently/pom.xml +++ b/services/evidently/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT evidently AWS Java SDK :: Services :: Evidently diff --git a/services/evs/pom.xml b/services/evs/pom.xml index 43df394b7204..c0fa3115fee9 100644 --- a/services/evs/pom.xml +++ b/services/evs/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT evs AWS Java SDK :: Services :: Evs diff --git a/services/finspace/pom.xml b/services/finspace/pom.xml index ca630db95ba4..c95e9fae963f 100644 --- a/services/finspace/pom.xml +++ b/services/finspace/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT finspace AWS Java SDK :: Services :: Finspace diff --git a/services/finspacedata/pom.xml b/services/finspacedata/pom.xml index e40b547e1c21..300bcfec9616 100644 --- a/services/finspacedata/pom.xml +++ b/services/finspacedata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT finspacedata AWS Java SDK :: Services :: Finspace Data diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index d9768156b5e2..46ee017e422c 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fis/pom.xml b/services/fis/pom.xml index 9bb2514aad18..84b82865216b 100644 --- a/services/fis/pom.xml +++ b/services/fis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT fis AWS Java SDK :: Services :: Fis diff --git a/services/fms/pom.xml b/services/fms/pom.xml index f1ee64ff86a3..9006dd185465 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index dfcb28afe026..f223c067f310 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index 955857d04519..40836fc16d0c 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index cc79f2a5a0ba..53e56334dc26 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/freetier/pom.xml b/services/freetier/pom.xml index 90ef1b035676..f2ccd8ee301d 100644 --- a/services/freetier/pom.xml +++ b/services/freetier/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT freetier AWS Java SDK :: Services :: Free Tier diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index 7e8386926aac..49e6eec6087e 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index ed0b4065a004..47c4426b373d 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/gameliftstreams/pom.xml b/services/gameliftstreams/pom.xml index 8d8380cb400b..ee708dc319b5 100644 --- a/services/gameliftstreams/pom.xml +++ b/services/gameliftstreams/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT gameliftstreams AWS Java SDK :: Services :: Game Lift Streams diff --git a/services/geomaps/pom.xml b/services/geomaps/pom.xml index d8a8241733f0..56ad92fc37b9 100644 --- a/services/geomaps/pom.xml +++ b/services/geomaps/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT geomaps AWS Java SDK :: Services :: Geo Maps diff --git a/services/geoplaces/pom.xml b/services/geoplaces/pom.xml index 6baf0d73ffce..4c3af1c6b7d8 100644 --- a/services/geoplaces/pom.xml +++ b/services/geoplaces/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT geoplaces AWS Java SDK :: Services :: Geo Places diff --git a/services/georoutes/pom.xml b/services/georoutes/pom.xml index 3354329dee9e..fad3ea4e98c7 100644 --- a/services/georoutes/pom.xml +++ b/services/georoutes/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT georoutes AWS Java SDK :: Services :: Geo Routes diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index 82a1c0686afa..1e1a6313f5c5 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index 71464ade2c54..21fa5bc69854 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index 04c068bfcc49..5520b8e14d0a 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 glue diff --git a/services/grafana/pom.xml b/services/grafana/pom.xml index 3f51b1f43a35..5ed7b1d6d498 100644 --- a/services/grafana/pom.xml +++ b/services/grafana/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT grafana AWS Java SDK :: Services :: Grafana diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index 9d02a86111f6..7633558b8d70 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/greengrassv2/pom.xml b/services/greengrassv2/pom.xml index 6a186fa9fc41..32c36e0f7cae 100644 --- a/services/greengrassv2/pom.xml +++ b/services/greengrassv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT greengrassv2 AWS Java SDK :: Services :: Greengrass V2 diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index 3d39b8e1a0cb..acd0de38614c 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index 9b10ad4f4cee..086341702f46 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index bdde683ca913..e8b137714e8e 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/healthlake/pom.xml b/services/healthlake/pom.xml index b8c6dc4a80ac..a4b41a075380 100644 --- a/services/healthlake/pom.xml +++ b/services/healthlake/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT healthlake AWS Java SDK :: Services :: Health Lake diff --git a/services/iam/pom.xml b/services/iam/pom.xml index 81716a33efb3..3b27b3b0b346 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index b85b1704c50a..03273d435d38 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index 2a5885362ff7..d5dc53754f16 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index d77e23b39e04..2455090e4e3f 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/inspector2/pom.xml b/services/inspector2/pom.xml index 5cc01098a784..47258b8c0cb3 100644 --- a/services/inspector2/pom.xml +++ b/services/inspector2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT inspector2 AWS Java SDK :: Services :: Inspector2 diff --git a/services/inspectorscan/pom.xml b/services/inspectorscan/pom.xml index ed56a0383d4f..039597f9bce0 100644 --- a/services/inspectorscan/pom.xml +++ b/services/inspectorscan/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT inspectorscan AWS Java SDK :: Services :: Inspector Scan diff --git a/services/internetmonitor/pom.xml b/services/internetmonitor/pom.xml index 6709c8b78f2d..0262279dee37 100644 --- a/services/internetmonitor/pom.xml +++ b/services/internetmonitor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT internetmonitor AWS Java SDK :: Services :: Internet Monitor diff --git a/services/invoicing/pom.xml b/services/invoicing/pom.xml index 97b29c6c5b4f..81605742fdd7 100644 --- a/services/invoicing/pom.xml +++ b/services/invoicing/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT invoicing AWS Java SDK :: Services :: Invoicing diff --git a/services/iot/pom.xml b/services/iot/pom.xml index 0c0d6075e7e9..576a7d59b792 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index 15356c572876..c26c869312cd 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index 1c3d4d3586a8..410e0061e75e 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotdeviceadvisor/pom.xml b/services/iotdeviceadvisor/pom.xml index f2b53cb638bf..3ca74166d1c4 100644 --- a/services/iotdeviceadvisor/pom.xml +++ b/services/iotdeviceadvisor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT iotdeviceadvisor AWS Java SDK :: Services :: Iot Device Advisor diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index c190a09481a8..574f7b9e7722 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index 6b3554ea77bd..639659758d89 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotfleetwise/pom.xml b/services/iotfleetwise/pom.xml index 05f5ee34387a..f22cea813916 100644 --- a/services/iotfleetwise/pom.xml +++ b/services/iotfleetwise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT iotfleetwise AWS Java SDK :: Services :: Io T Fleet Wise diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index 6ae3e6b2aaec..8e9e7977aea7 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotmanagedintegrations/pom.xml b/services/iotmanagedintegrations/pom.xml index afd5544d1b55..4923022a04a5 100644 --- a/services/iotmanagedintegrations/pom.xml +++ b/services/iotmanagedintegrations/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT iotmanagedintegrations AWS Java SDK :: Services :: IoT Managed Integrations diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index 391fb0dce1fa..e4909fa3a342 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index c5c02f228650..0c6038dd8270 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index 721c2a8fbf63..24b5547dd288 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/iottwinmaker/pom.xml b/services/iottwinmaker/pom.xml index 6eec2bb0ea0c..fc988028cf9c 100644 --- a/services/iottwinmaker/pom.xml +++ b/services/iottwinmaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT iottwinmaker AWS Java SDK :: Services :: Io T Twin Maker diff --git a/services/iotwireless/pom.xml b/services/iotwireless/pom.xml index 3b23d8dfb2db..af3d2dbb88fd 100644 --- a/services/iotwireless/pom.xml +++ b/services/iotwireless/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT iotwireless AWS Java SDK :: Services :: IoT Wireless diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index 22c49b419a9d..191065fdfe85 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT ivs AWS Java SDK :: Services :: Ivs diff --git a/services/ivschat/pom.xml b/services/ivschat/pom.xml index 345221015654..d6f79e2bea0d 100644 --- a/services/ivschat/pom.xml +++ b/services/ivschat/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT ivschat AWS Java SDK :: Services :: Ivschat diff --git a/services/ivsrealtime/pom.xml b/services/ivsrealtime/pom.xml index 4444eeac7bee..60e82c4fb4e7 100644 --- a/services/ivsrealtime/pom.xml +++ b/services/ivsrealtime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT ivsrealtime AWS Java SDK :: Services :: IVS Real Time diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index 8e4400ee2e1c..ae51f1e65dc7 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kafkaconnect/pom.xml b/services/kafkaconnect/pom.xml index 8e9b07ff573a..7db666df2347 100644 --- a/services/kafkaconnect/pom.xml +++ b/services/kafkaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT kafkaconnect AWS Java SDK :: Services :: Kafka Connect diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index d759c2d30cb9..06550e568a7b 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kendraranking/pom.xml b/services/kendraranking/pom.xml index 5d63534e1e27..c06f59d040d0 100644 --- a/services/kendraranking/pom.xml +++ b/services/kendraranking/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT kendraranking AWS Java SDK :: Services :: Kendra Ranking diff --git a/services/keyspaces/pom.xml b/services/keyspaces/pom.xml index 9c571d38eaa9..e2d38420dfa6 100644 --- a/services/keyspaces/pom.xml +++ b/services/keyspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT keyspaces AWS Java SDK :: Services :: Keyspaces diff --git a/services/keyspacesstreams/pom.xml b/services/keyspacesstreams/pom.xml index f4efb45d69df..ea8ff9b6a52b 100644 --- a/services/keyspacesstreams/pom.xml +++ b/services/keyspacesstreams/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT keyspacesstreams AWS Java SDK :: Services :: Keyspaces Streams diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index 8cfdfb7183a2..64945bf13c74 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index 59188ade7248..92b3a8bf17df 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index d5d2159cbd90..5d16239fc5fe 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index 260bf752b9f1..27109511628a 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index 1c03caa9eac5..9a17807c7e3b 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index 2bd647f22957..7989616b3273 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index e491670ec7cf..b0b081e179cc 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kinesisvideowebrtcstorage/pom.xml b/services/kinesisvideowebrtcstorage/pom.xml index a1ddb65e5e94..82a12bf54f0d 100644 --- a/services/kinesisvideowebrtcstorage/pom.xml +++ b/services/kinesisvideowebrtcstorage/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT kinesisvideowebrtcstorage AWS Java SDK :: Services :: Kinesis Video Web RTC Storage diff --git a/services/kms/pom.xml b/services/kms/pom.xml index ffb0970e7a06..996345252125 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index 0cf98501dca2..e09d372a9cf0 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index a282b50e57cd..95f56e5bafb7 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/launchwizard/pom.xml b/services/launchwizard/pom.xml index 32e2b0ace8ed..caecbe2af302 100644 --- a/services/launchwizard/pom.xml +++ b/services/launchwizard/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT launchwizard AWS Java SDK :: Services :: Launch Wizard diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index b38a5abc54ca..a5e756e43a30 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexmodelsv2/pom.xml b/services/lexmodelsv2/pom.xml index e2671e21866d..7f90418adb30 100644 --- a/services/lexmodelsv2/pom.xml +++ b/services/lexmodelsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT lexmodelsv2 AWS Java SDK :: Services :: Lex Models V2 diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index b9addd51feb5..dc6e57ce76e0 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/lexruntimev2/pom.xml b/services/lexruntimev2/pom.xml index 6f040dce0127..1c83d7890f7e 100644 --- a/services/lexruntimev2/pom.xml +++ b/services/lexruntimev2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT lexruntimev2 AWS Java SDK :: Services :: Lex Runtime V2 diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index 960981c365fc..f3c97d4ece0b 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/licensemanagerlinuxsubscriptions/pom.xml b/services/licensemanagerlinuxsubscriptions/pom.xml index 0c015410a6b0..5bc8fa78312a 100644 --- a/services/licensemanagerlinuxsubscriptions/pom.xml +++ b/services/licensemanagerlinuxsubscriptions/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT licensemanagerlinuxsubscriptions AWS Java SDK :: Services :: License Manager Linux Subscriptions diff --git a/services/licensemanagerusersubscriptions/pom.xml b/services/licensemanagerusersubscriptions/pom.xml index 1474fb2e35c2..5f542e0e5108 100644 --- a/services/licensemanagerusersubscriptions/pom.xml +++ b/services/licensemanagerusersubscriptions/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT licensemanagerusersubscriptions AWS Java SDK :: Services :: License Manager User Subscriptions diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index 5e0db97e7194..601c2690819c 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/location/pom.xml b/services/location/pom.xml index eb9fb7eced12..420abd01fc55 100644 --- a/services/location/pom.xml +++ b/services/location/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT location AWS Java SDK :: Services :: Location diff --git a/services/lookoutequipment/pom.xml b/services/lookoutequipment/pom.xml index a4077af04db0..dd5500a4ed2e 100644 --- a/services/lookoutequipment/pom.xml +++ b/services/lookoutequipment/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT lookoutequipment AWS Java SDK :: Services :: Lookout Equipment diff --git a/services/m2/pom.xml b/services/m2/pom.xml index ada84cab9fed..cce69dc98157 100644 --- a/services/m2/pom.xml +++ b/services/m2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT m2 AWS Java SDK :: Services :: M2 diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index ebfa18fdd01a..bcf8eec883cf 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index 4aeb331d02ab..e6900028e372 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/mailmanager/pom.xml b/services/mailmanager/pom.xml index a49c02a953cd..29f8f1b47e7a 100644 --- a/services/mailmanager/pom.xml +++ b/services/mailmanager/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT mailmanager AWS Java SDK :: Services :: Mail Manager diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index 61e1f68d424f..fbc86a92dda3 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/managedblockchainquery/pom.xml b/services/managedblockchainquery/pom.xml index a5b040700061..69d0cae48ff7 100644 --- a/services/managedblockchainquery/pom.xml +++ b/services/managedblockchainquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT managedblockchainquery AWS Java SDK :: Services :: Managed Blockchain Query diff --git a/services/marketplaceagreement/pom.xml b/services/marketplaceagreement/pom.xml index 144ecd23238a..13c732888dff 100644 --- a/services/marketplaceagreement/pom.xml +++ b/services/marketplaceagreement/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT marketplaceagreement AWS Java SDK :: Services :: Marketplace Agreement diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index df9a5ddaf4a0..51b41fbe9ca2 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index 06f0b0e20461..dde568dd24c1 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplacedeployment/pom.xml b/services/marketplacedeployment/pom.xml index 9980584534ce..06e36828137e 100644 --- a/services/marketplacedeployment/pom.xml +++ b/services/marketplacedeployment/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT marketplacedeployment AWS Java SDK :: Services :: Marketplace Deployment diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index 10967527a77a..4d199a42915c 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index 7ab377a2876e..7904c20445b4 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/marketplacereporting/pom.xml b/services/marketplacereporting/pom.xml index 6cf6be15c0b8..ea0f7d23a264 100644 --- a/services/marketplacereporting/pom.xml +++ b/services/marketplacereporting/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT marketplacereporting AWS Java SDK :: Services :: Marketplace Reporting diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index 7464d510e5e0..75aace376cce 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index 6a605cb6534e..8b90304fe372 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index b933e3759008..4c98c17ad589 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index 371708394047..148dc4dcd948 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 mediapackage diff --git a/services/mediapackagev2/pom.xml b/services/mediapackagev2/pom.xml index b541bbf84357..ea05ef816651 100644 --- a/services/mediapackagev2/pom.xml +++ b/services/mediapackagev2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT mediapackagev2 AWS Java SDK :: Services :: Media Package V2 diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index a9723371e85e..b8a0df82d3f8 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index 8c0cce213186..b4b983887ceb 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index 36ecf9758eb1..13651a17d514 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index 603f31990bc2..675d9dec1639 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/medicalimaging/pom.xml b/services/medicalimaging/pom.xml index 53d2f1d8aa4c..5918e6f342bf 100644 --- a/services/medicalimaging/pom.xml +++ b/services/medicalimaging/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT medicalimaging AWS Java SDK :: Services :: Medical Imaging diff --git a/services/memorydb/pom.xml b/services/memorydb/pom.xml index 45972fa6ada7..7fb649e6850e 100644 --- a/services/memorydb/pom.xml +++ b/services/memorydb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT memorydb AWS Java SDK :: Services :: Memory DB diff --git a/services/mgn/pom.xml b/services/mgn/pom.xml index baeefe3543d1..341cce33e694 100644 --- a/services/mgn/pom.xml +++ b/services/mgn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT mgn AWS Java SDK :: Services :: Mgn diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index 855892614f18..262a36484d39 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index 8eeef979df95..2872afe4ae1c 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/migrationhuborchestrator/pom.xml b/services/migrationhuborchestrator/pom.xml index fd33358a11a4..f285ec7bb6c3 100644 --- a/services/migrationhuborchestrator/pom.xml +++ b/services/migrationhuborchestrator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT migrationhuborchestrator AWS Java SDK :: Services :: Migration Hub Orchestrator diff --git a/services/migrationhubrefactorspaces/pom.xml b/services/migrationhubrefactorspaces/pom.xml index e82bda6377a7..40f2d6845308 100644 --- a/services/migrationhubrefactorspaces/pom.xml +++ b/services/migrationhubrefactorspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT migrationhubrefactorspaces AWS Java SDK :: Services :: Migration Hub Refactor Spaces diff --git a/services/migrationhubstrategy/pom.xml b/services/migrationhubstrategy/pom.xml index 5daa42e03fb8..313eb8b03a3d 100644 --- a/services/migrationhubstrategy/pom.xml +++ b/services/migrationhubstrategy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT migrationhubstrategy AWS Java SDK :: Services :: Migration Hub Strategy diff --git a/services/mpa/pom.xml b/services/mpa/pom.xml index e203bdafaf88..05f79c05c4c9 100644 --- a/services/mpa/pom.xml +++ b/services/mpa/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT mpa AWS Java SDK :: Services :: MPA diff --git a/services/mq/pom.xml b/services/mq/pom.xml index dddfead37967..9b183978d9c1 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index 9115738562bd..99e79aa17d2d 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/mwaa/pom.xml b/services/mwaa/pom.xml index 9beb0b148430..db47a1351bb4 100644 --- a/services/mwaa/pom.xml +++ b/services/mwaa/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT mwaa AWS Java SDK :: Services :: MWAA diff --git a/services/mwaaserverless/pom.xml b/services/mwaaserverless/pom.xml index e5b5c54577f8..cd7b9033fcca 100644 --- a/services/mwaaserverless/pom.xml +++ b/services/mwaaserverless/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT mwaaserverless AWS Java SDK :: Services :: MWAA Serverless diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index 10b01124a1c0..640bf331c8ec 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT neptune AWS Java SDK :: Services :: Neptune diff --git a/services/neptunedata/pom.xml b/services/neptunedata/pom.xml index f6f3ec80ff53..0f5c622ca521 100644 --- a/services/neptunedata/pom.xml +++ b/services/neptunedata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT neptunedata AWS Java SDK :: Services :: Neptunedata diff --git a/services/neptunegraph/pom.xml b/services/neptunegraph/pom.xml index 35a1b298966f..b0a33e7fe191 100644 --- a/services/neptunegraph/pom.xml +++ b/services/neptunegraph/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT neptunegraph AWS Java SDK :: Services :: Neptune Graph diff --git a/services/networkfirewall/pom.xml b/services/networkfirewall/pom.xml index efb6bcca36c4..cd4ec5b64cfa 100644 --- a/services/networkfirewall/pom.xml +++ b/services/networkfirewall/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT networkfirewall AWS Java SDK :: Services :: Network Firewall diff --git a/services/networkflowmonitor/pom.xml b/services/networkflowmonitor/pom.xml index 9e65d3a595c3..8c5fbd6212e7 100644 --- a/services/networkflowmonitor/pom.xml +++ b/services/networkflowmonitor/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT networkflowmonitor AWS Java SDK :: Services :: Network Flow Monitor diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index 50f28175d43c..6934026d2088 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/networkmonitor/pom.xml b/services/networkmonitor/pom.xml index a6d0cd52908d..e5ac5c452626 100644 --- a/services/networkmonitor/pom.xml +++ b/services/networkmonitor/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT networkmonitor AWS Java SDK :: Services :: Network Monitor diff --git a/services/notifications/pom.xml b/services/notifications/pom.xml index 264bd3e8893e..f4ba41777449 100644 --- a/services/notifications/pom.xml +++ b/services/notifications/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT notifications AWS Java SDK :: Services :: Notifications diff --git a/services/notificationscontacts/pom.xml b/services/notificationscontacts/pom.xml index 353350a6243c..3e61310223ac 100644 --- a/services/notificationscontacts/pom.xml +++ b/services/notificationscontacts/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT notificationscontacts AWS Java SDK :: Services :: Notifications Contacts diff --git a/services/oam/pom.xml b/services/oam/pom.xml index f66b5dcc5e78..f8a327d87b2a 100644 --- a/services/oam/pom.xml +++ b/services/oam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT oam AWS Java SDK :: Services :: OAM diff --git a/services/observabilityadmin/pom.xml b/services/observabilityadmin/pom.xml index 0c39647a5145..66d6faaea2a7 100644 --- a/services/observabilityadmin/pom.xml +++ b/services/observabilityadmin/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT observabilityadmin AWS Java SDK :: Services :: Observability Admin diff --git a/services/odb/pom.xml b/services/odb/pom.xml index 752bf324ebcb..92944ea5dd9c 100644 --- a/services/odb/pom.xml +++ b/services/odb/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT odb AWS Java SDK :: Services :: Odb diff --git a/services/omics/pom.xml b/services/omics/pom.xml index f2368e3c56e0..ff1e5d2cb48b 100644 --- a/services/omics/pom.xml +++ b/services/omics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT omics AWS Java SDK :: Services :: Omics diff --git a/services/opensearch/pom.xml b/services/opensearch/pom.xml index f35f17a87b9c..fc0709cb9355 100644 --- a/services/opensearch/pom.xml +++ b/services/opensearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT opensearch AWS Java SDK :: Services :: Open Search diff --git a/services/opensearchserverless/pom.xml b/services/opensearchserverless/pom.xml index 2fbb68dce6bc..b3868718fb2f 100644 --- a/services/opensearchserverless/pom.xml +++ b/services/opensearchserverless/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT opensearchserverless AWS Java SDK :: Services :: Open Search Serverless diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index c12660b9ffdd..c9794f464195 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/osis/pom.xml b/services/osis/pom.xml index cd07ec4ed24e..b6b8843642f1 100644 --- a/services/osis/pom.xml +++ b/services/osis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT osis AWS Java SDK :: Services :: OSIS diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index 8e74e1252092..35820a685961 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT outposts AWS Java SDK :: Services :: Outposts diff --git a/services/panorama/pom.xml b/services/panorama/pom.xml index a211d8816383..857b4cc4a8a3 100644 --- a/services/panorama/pom.xml +++ b/services/panorama/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT panorama AWS Java SDK :: Services :: Panorama diff --git a/services/partnercentralaccount/pom.xml b/services/partnercentralaccount/pom.xml index d5ce1cf5b729..4add735345d1 100644 --- a/services/partnercentralaccount/pom.xml +++ b/services/partnercentralaccount/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT partnercentralaccount AWS Java SDK :: Services :: Partner Central Account diff --git a/services/partnercentralbenefits/pom.xml b/services/partnercentralbenefits/pom.xml index 7dd9e44f686e..fef626e57f35 100644 --- a/services/partnercentralbenefits/pom.xml +++ b/services/partnercentralbenefits/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT partnercentralbenefits AWS Java SDK :: Services :: Partner Central Benefits diff --git a/services/partnercentralchannel/pom.xml b/services/partnercentralchannel/pom.xml index fd09b8d83d57..bcabb3b0bced 100644 --- a/services/partnercentralchannel/pom.xml +++ b/services/partnercentralchannel/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT partnercentralchannel AWS Java SDK :: Services :: Partner Central Channel diff --git a/services/partnercentralselling/pom.xml b/services/partnercentralselling/pom.xml index 0b86a23c27b4..275d2aeb8bc7 100644 --- a/services/partnercentralselling/pom.xml +++ b/services/partnercentralselling/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT partnercentralselling AWS Java SDK :: Services :: Partner Central Selling diff --git a/services/paymentcryptography/pom.xml b/services/paymentcryptography/pom.xml index d06994edf427..3a10ef62f6ad 100644 --- a/services/paymentcryptography/pom.xml +++ b/services/paymentcryptography/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT paymentcryptography AWS Java SDK :: Services :: Payment Cryptography diff --git a/services/paymentcryptographydata/pom.xml b/services/paymentcryptographydata/pom.xml index 7ff574112c4a..e7f486e0a86d 100644 --- a/services/paymentcryptographydata/pom.xml +++ b/services/paymentcryptographydata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT paymentcryptographydata AWS Java SDK :: Services :: Payment Cryptography Data diff --git a/services/pcaconnectorad/pom.xml b/services/pcaconnectorad/pom.xml index 93b1cbd453db..90a11bf43bef 100644 --- a/services/pcaconnectorad/pom.xml +++ b/services/pcaconnectorad/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT pcaconnectorad AWS Java SDK :: Services :: Pca Connector Ad diff --git a/services/pcaconnectorscep/pom.xml b/services/pcaconnectorscep/pom.xml index 2962ddc3578d..a2d115269529 100644 --- a/services/pcaconnectorscep/pom.xml +++ b/services/pcaconnectorscep/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT pcaconnectorscep AWS Java SDK :: Services :: Pca Connector Scep diff --git a/services/pcs/pom.xml b/services/pcs/pom.xml index 363106e5177d..f39f80e355dd 100644 --- a/services/pcs/pom.xml +++ b/services/pcs/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT pcs AWS Java SDK :: Services :: PCS diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index 6727a2bb29a1..35428666ffb4 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index 0fc55d919d1b..e7abf81677f3 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index c68f4eb942e0..37d55aafbaf6 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index b47f0237f439..25776ed3220d 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index 572d80ff6d6a..972f913474bf 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index a2669b18f43e..919e471ef1b5 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index 289f8c15874b..cd3104facf96 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/pinpointsmsvoicev2/pom.xml b/services/pinpointsmsvoicev2/pom.xml index 58dd0e2f167c..2ea130fb94be 100644 --- a/services/pinpointsmsvoicev2/pom.xml +++ b/services/pinpointsmsvoicev2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT pinpointsmsvoicev2 AWS Java SDK :: Services :: Pinpoint SMS Voice V2 diff --git a/services/pipes/pom.xml b/services/pipes/pom.xml index fb6c55610cc8..f972246cbec6 100644 --- a/services/pipes/pom.xml +++ b/services/pipes/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT pipes AWS Java SDK :: Services :: Pipes diff --git a/services/polly/pom.xml b/services/polly/pom.xml index f2e25bc30714..334595835c09 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index 279a7a954856..62ada15fbf9d 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index 4ec97e90c27c..cc6d198ecce7 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 pricing diff --git a/services/proton/pom.xml b/services/proton/pom.xml index 20be4f2cb672..d098d42002b5 100644 --- a/services/proton/pom.xml +++ b/services/proton/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT proton AWS Java SDK :: Services :: Proton diff --git a/services/qapps/pom.xml b/services/qapps/pom.xml index cb18504fad10..9410885b7949 100644 --- a/services/qapps/pom.xml +++ b/services/qapps/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT qapps AWS Java SDK :: Services :: Q Apps diff --git a/services/qbusiness/pom.xml b/services/qbusiness/pom.xml index 1e414b49cb52..476a9bd74822 100644 --- a/services/qbusiness/pom.xml +++ b/services/qbusiness/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT qbusiness AWS Java SDK :: Services :: Q Business diff --git a/services/qconnect/pom.xml b/services/qconnect/pom.xml index ec0c3667d0da..c89a641310a9 100644 --- a/services/qconnect/pom.xml +++ b/services/qconnect/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT qconnect AWS Java SDK :: Services :: Q Connect diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index 2b77b61c9482..bbf64a410681 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index 3c23e22dbb0e..68e7739ae1d0 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT ram AWS Java SDK :: Services :: RAM diff --git a/services/rbin/pom.xml b/services/rbin/pom.xml index 1a05229927b2..a0a5072f7d92 100644 --- a/services/rbin/pom.xml +++ b/services/rbin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT rbin AWS Java SDK :: Services :: Rbin diff --git a/services/rds/pom.xml b/services/rds/pom.xml index 9b8d947f0420..67480875f143 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index 9aecbdde7897..e5821ac55101 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index 1efd43e952b6..038ee1c86eef 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index 8e5560e46b36..8736ae0f42b7 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/redshiftserverless/pom.xml b/services/redshiftserverless/pom.xml index e3894577fa2d..27b61cf84310 100644 --- a/services/redshiftserverless/pom.xml +++ b/services/redshiftserverless/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT redshiftserverless AWS Java SDK :: Services :: Redshift Serverless diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index 960b3eee01fb..3c58f7335300 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/repostspace/pom.xml b/services/repostspace/pom.xml index 54b0e63f2e5a..24a59b91c74e 100644 --- a/services/repostspace/pom.xml +++ b/services/repostspace/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT repostspace AWS Java SDK :: Services :: Repostspace diff --git a/services/resiliencehub/pom.xml b/services/resiliencehub/pom.xml index d6a8133dc93e..26ec72e2c3ff 100644 --- a/services/resiliencehub/pom.xml +++ b/services/resiliencehub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT resiliencehub AWS Java SDK :: Services :: Resiliencehub diff --git a/services/resourceexplorer2/pom.xml b/services/resourceexplorer2/pom.xml index 2a543e54d592..53918763412f 100644 --- a/services/resourceexplorer2/pom.xml +++ b/services/resourceexplorer2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT resourceexplorer2 AWS Java SDK :: Services :: Resource Explorer 2 diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index f2232ffd11ad..72c3463a69c0 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index 5cb533a1188c..7fcf7ccb6eb1 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/rolesanywhere/pom.xml b/services/rolesanywhere/pom.xml index e48c00e887f2..599b97149823 100644 --- a/services/rolesanywhere/pom.xml +++ b/services/rolesanywhere/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT rolesanywhere AWS Java SDK :: Services :: Roles Anywhere diff --git a/services/route53/pom.xml b/services/route53/pom.xml index 2411be885adc..e65b11bf7732 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index ef091b443058..4767553a76da 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53globalresolver/pom.xml b/services/route53globalresolver/pom.xml index 124bd9d0564d..c2d34bfc340d 100644 --- a/services/route53globalresolver/pom.xml +++ b/services/route53globalresolver/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT route53globalresolver AWS Java SDK :: Services :: Route53 Global Resolver diff --git a/services/route53profiles/pom.xml b/services/route53profiles/pom.xml index 01d3f36d1a25..e4def893a8ac 100644 --- a/services/route53profiles/pom.xml +++ b/services/route53profiles/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT route53profiles AWS Java SDK :: Services :: Route53 Profiles diff --git a/services/route53recoverycluster/pom.xml b/services/route53recoverycluster/pom.xml index 47c08568acd9..12e62142e10c 100644 --- a/services/route53recoverycluster/pom.xml +++ b/services/route53recoverycluster/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT route53recoverycluster AWS Java SDK :: Services :: Route53 Recovery Cluster diff --git a/services/route53recoverycontrolconfig/pom.xml b/services/route53recoverycontrolconfig/pom.xml index 63560d91aa4e..6bf5b34934c4 100644 --- a/services/route53recoverycontrolconfig/pom.xml +++ b/services/route53recoverycontrolconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT route53recoverycontrolconfig AWS Java SDK :: Services :: Route53 Recovery Control Config diff --git a/services/route53recoveryreadiness/pom.xml b/services/route53recoveryreadiness/pom.xml index 78029c1886dd..0bf08f083140 100644 --- a/services/route53recoveryreadiness/pom.xml +++ b/services/route53recoveryreadiness/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT route53recoveryreadiness AWS Java SDK :: Services :: Route53 Recovery Readiness diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index 658ffec3eb29..b5ef897085e7 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/rtbfabric/pom.xml b/services/rtbfabric/pom.xml index 1525ee3526a5..6dae06df7411 100644 --- a/services/rtbfabric/pom.xml +++ b/services/rtbfabric/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT rtbfabric AWS Java SDK :: Services :: RTB Fabric diff --git a/services/rum/pom.xml b/services/rum/pom.xml index d5cc5cb611a6..0372f181c9e4 100644 --- a/services/rum/pom.xml +++ b/services/rum/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT rum AWS Java SDK :: Services :: RUM diff --git a/services/s3/pom.xml b/services/s3/pom.xml index 62b67dd2a32f..e5ea7fe6181e 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index 348926493eae..d35a6b4225ca 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index 0cd1d7a2a93d..f9a94e5a9773 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/s3tables/pom.xml b/services/s3tables/pom.xml index 0f9cc28bf688..a17e79b18bf8 100644 --- a/services/s3tables/pom.xml +++ b/services/s3tables/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT s3tables AWS Java SDK :: Services :: S3 Tables diff --git a/services/s3vectors/pom.xml b/services/s3vectors/pom.xml index 17750c3ac3ef..077c51c45599 100644 --- a/services/s3vectors/pom.xml +++ b/services/s3vectors/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT s3vectors AWS Java SDK :: Services :: S3 Vectors diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index b03002b55745..3593673e81c6 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index 6be7f23fefe2..0f56e8f659b1 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakeredge/pom.xml b/services/sagemakeredge/pom.xml index f63238398503..e8ea0459f972 100644 --- a/services/sagemakeredge/pom.xml +++ b/services/sagemakeredge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT sagemakeredge AWS Java SDK :: Services :: Sagemaker Edge diff --git a/services/sagemakerfeaturestoreruntime/pom.xml b/services/sagemakerfeaturestoreruntime/pom.xml index 939fc5f562fd..882874857dd2 100644 --- a/services/sagemakerfeaturestoreruntime/pom.xml +++ b/services/sagemakerfeaturestoreruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT sagemakerfeaturestoreruntime AWS Java SDK :: Services :: Sage Maker Feature Store Runtime diff --git a/services/sagemakergeospatial/pom.xml b/services/sagemakergeospatial/pom.xml index 7d9e9a782081..404d7f59ec6d 100644 --- a/services/sagemakergeospatial/pom.xml +++ b/services/sagemakergeospatial/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT sagemakergeospatial AWS Java SDK :: Services :: Sage Maker Geospatial diff --git a/services/sagemakermetrics/pom.xml b/services/sagemakermetrics/pom.xml index a82b4928cbe6..ee828751816b 100644 --- a/services/sagemakermetrics/pom.xml +++ b/services/sagemakermetrics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT sagemakermetrics AWS Java SDK :: Services :: Sage Maker Metrics diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index 152feae7a72e..f9e43bad42c4 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/sagemakerruntimehttp2/pom.xml b/services/sagemakerruntimehttp2/pom.xml index 65277f97c64e..8cad92deb6be 100644 --- a/services/sagemakerruntimehttp2/pom.xml +++ b/services/sagemakerruntimehttp2/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT sagemakerruntimehttp2 AWS Java SDK :: Services :: Sage Maker Runtime HTTP2 diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index 3e84a5883d8d..5227517fa8c3 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/scheduler/pom.xml b/services/scheduler/pom.xml index 4786af8184de..09d366e33d13 100644 --- a/services/scheduler/pom.xml +++ b/services/scheduler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT scheduler AWS Java SDK :: Services :: Scheduler diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index 580d3204f40c..6f6dab12308b 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index ff6a74264f5c..0c1926d10943 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index 8a8760c2b22d..caa00f39a329 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/securityir/pom.xml b/services/securityir/pom.xml index 218d930e0a71..83a308b08c51 100644 --- a/services/securityir/pom.xml +++ b/services/securityir/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT securityir AWS Java SDK :: Services :: Security IR diff --git a/services/securitylake/pom.xml b/services/securitylake/pom.xml index f696d2cc87af..e896eb5f72e9 100644 --- a/services/securitylake/pom.xml +++ b/services/securitylake/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT securitylake AWS Java SDK :: Services :: Security Lake diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index c04cf6b17904..d51822132268 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index b9a71854cb15..42b3463d02e3 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicecatalogappregistry/pom.xml b/services/servicecatalogappregistry/pom.xml index db92607a43a6..b43af91b1dc6 100644 --- a/services/servicecatalogappregistry/pom.xml +++ b/services/servicecatalogappregistry/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT servicecatalogappregistry AWS Java SDK :: Services :: Service Catalog App Registry diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index e186f767e9f2..191eca2c7880 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index 8ec6976858b3..97782a370fa9 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index cde24e16da91..119da71cce55 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index 0d69e9f77163..7ed9acd5e6ab 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index 94ec1ff16d79..981857c77e2a 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index 158b6fdfd578..a8a4ec9dac83 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index 7cc8c3159120..2a894cedde76 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT signer AWS Java SDK :: Services :: Signer diff --git a/services/signin/pom.xml b/services/signin/pom.xml index 3d5ed8217e4a..eada99ed416e 100644 --- a/services/signin/pom.xml +++ b/services/signin/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT signin AWS Java SDK :: Services :: Signin diff --git a/services/simspaceweaver/pom.xml b/services/simspaceweaver/pom.xml index 03bd33237430..bae6a0cb114d 100644 --- a/services/simspaceweaver/pom.xml +++ b/services/simspaceweaver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT simspaceweaver AWS Java SDK :: Services :: Sim Space Weaver diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index 04c6b05aa826..53bb2b1c2111 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/snowdevicemanagement/pom.xml b/services/snowdevicemanagement/pom.xml index de8a2cf27421..94a07327b960 100644 --- a/services/snowdevicemanagement/pom.xml +++ b/services/snowdevicemanagement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT snowdevicemanagement AWS Java SDK :: Services :: Snow Device Management diff --git a/services/sns/pom.xml b/services/sns/pom.xml index 70e25843577e..86cdb61438b9 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/socialmessaging/pom.xml b/services/socialmessaging/pom.xml index 36d3ce17a665..be0919ec1018 100644 --- a/services/socialmessaging/pom.xml +++ b/services/socialmessaging/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT socialmessaging AWS Java SDK :: Services :: Social Messaging diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index e810a4d64043..809b23fdc1db 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index 5cf7aa3b3986..7b67b2f69962 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/ssmcontacts/pom.xml b/services/ssmcontacts/pom.xml index 11f1ef118c0e..a26837006c3b 100644 --- a/services/ssmcontacts/pom.xml +++ b/services/ssmcontacts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT ssmcontacts AWS Java SDK :: Services :: SSM Contacts diff --git a/services/ssmguiconnect/pom.xml b/services/ssmguiconnect/pom.xml index 4b4613d11a3e..ea288fcc1346 100644 --- a/services/ssmguiconnect/pom.xml +++ b/services/ssmguiconnect/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT ssmguiconnect AWS Java SDK :: Services :: SSM Gui Connect diff --git a/services/ssmincidents/pom.xml b/services/ssmincidents/pom.xml index e9681f1a6968..148903e7df9c 100644 --- a/services/ssmincidents/pom.xml +++ b/services/ssmincidents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT ssmincidents AWS Java SDK :: Services :: SSM Incidents diff --git a/services/ssmquicksetup/pom.xml b/services/ssmquicksetup/pom.xml index 8f8a6e6dc643..4da6a4ebeb03 100644 --- a/services/ssmquicksetup/pom.xml +++ b/services/ssmquicksetup/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT ssmquicksetup AWS Java SDK :: Services :: SSM Quick Setup diff --git a/services/ssmsap/pom.xml b/services/ssmsap/pom.xml index 4330546d0061..04137c21af48 100644 --- a/services/ssmsap/pom.xml +++ b/services/ssmsap/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT ssmsap AWS Java SDK :: Services :: Ssm Sap diff --git a/services/sso/pom.xml b/services/sso/pom.xml index 8b295533a093..2f396a532a76 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index d3167d8245df..bf6384fbd305 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index 0d7775b9004c..b472086bc1e8 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index 66c1389ae757..e79ac304d9c8 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index 5f78130f8e2d..9d5c2f8d6ca4 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT sts AWS Java SDK :: Services :: AWS STS diff --git a/services/supplychain/pom.xml b/services/supplychain/pom.xml index edfbfa65be41..a14cf8bf104b 100644 --- a/services/supplychain/pom.xml +++ b/services/supplychain/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT supplychain AWS Java SDK :: Services :: Supply Chain diff --git a/services/support/pom.xml b/services/support/pom.xml index f44dd88b6d76..f0b6b9bd21e0 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT support AWS Java SDK :: Services :: AWS Support diff --git a/services/supportapp/pom.xml b/services/supportapp/pom.xml index 938f0414d9dc..770838b9edd9 100644 --- a/services/supportapp/pom.xml +++ b/services/supportapp/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT supportapp AWS Java SDK :: Services :: Support App diff --git a/services/swf/pom.xml b/services/swf/pom.xml index 4bfc1b2e9200..f3dfcd6161ed 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index 359136bdf9ca..46888d9dd67b 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/taxsettings/pom.xml b/services/taxsettings/pom.xml index e115cd28370f..7c27b9d4c60c 100644 --- a/services/taxsettings/pom.xml +++ b/services/taxsettings/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT taxsettings AWS Java SDK :: Services :: Tax Settings diff --git a/services/textract/pom.xml b/services/textract/pom.xml index 47d624a4f2f6..86d43a01b882 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreaminfluxdb/pom.xml b/services/timestreaminfluxdb/pom.xml index e5a57008b0b6..f6cfb2872c69 100644 --- a/services/timestreaminfluxdb/pom.xml +++ b/services/timestreaminfluxdb/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT timestreaminfluxdb AWS Java SDK :: Services :: Timestream Influx DB diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index d5ef91e5e995..1d0d8f833eca 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index 727f7eb9346e..95a3be2c48d9 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/tnb/pom.xml b/services/tnb/pom.xml index a42057d8ece3..0f517b03d9cf 100644 --- a/services/tnb/pom.xml +++ b/services/tnb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT tnb AWS Java SDK :: Services :: Tnb diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index 51089b62aa36..de8d06860eb3 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index 66f6f278173d..361cfa20ab24 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index 369c033bb751..0e36fce021d9 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index e49377d7e707..61219bf435ea 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 translate diff --git a/services/trustedadvisor/pom.xml b/services/trustedadvisor/pom.xml index 9a2fd17e00f7..29a21cdc1bbd 100644 --- a/services/trustedadvisor/pom.xml +++ b/services/trustedadvisor/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT trustedadvisor AWS Java SDK :: Services :: Trusted Advisor diff --git a/services/verifiedpermissions/pom.xml b/services/verifiedpermissions/pom.xml index 2f3cd598b423..d1172b39908d 100644 --- a/services/verifiedpermissions/pom.xml +++ b/services/verifiedpermissions/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT verifiedpermissions AWS Java SDK :: Services :: Verified Permissions diff --git a/services/voiceid/pom.xml b/services/voiceid/pom.xml index f1e79a302fe6..778af365b2ae 100644 --- a/services/voiceid/pom.xml +++ b/services/voiceid/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT voiceid AWS Java SDK :: Services :: Voice ID diff --git a/services/vpclattice/pom.xml b/services/vpclattice/pom.xml index d7bebe67d90a..c8e1e7c5c7e7 100644 --- a/services/vpclattice/pom.xml +++ b/services/vpclattice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT vpclattice AWS Java SDK :: Services :: VPC Lattice diff --git a/services/waf/pom.xml b/services/waf/pom.xml index 352b183ffed7..4e165805a023 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index 8a892ee63087..8eab7d9a8fb4 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/wellarchitected/pom.xml b/services/wellarchitected/pom.xml index 6bfbfea684c6..32d82a5cd8a4 100644 --- a/services/wellarchitected/pom.xml +++ b/services/wellarchitected/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT wellarchitected AWS Java SDK :: Services :: Well Architected diff --git a/services/wisdom/pom.xml b/services/wisdom/pom.xml index 9d426ccf2ea5..d538f7e70b98 100644 --- a/services/wisdom/pom.xml +++ b/services/wisdom/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT wisdom AWS Java SDK :: Services :: Wisdom diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index d1263e85b135..6514614947c3 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index 90e48b0a4f32..a8fa2a827bc9 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index b4f649234a6c..8c1f0db63a91 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index d8264e04baba..1975cd080458 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/workspacesinstances/pom.xml b/services/workspacesinstances/pom.xml index 5fc6836514be..1d3811dcff20 100644 --- a/services/workspacesinstances/pom.xml +++ b/services/workspacesinstances/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT workspacesinstances AWS Java SDK :: Services :: Workspaces Instances diff --git a/services/workspacesthinclient/pom.xml b/services/workspacesthinclient/pom.xml index 2903ddc4f7ab..f09ddd666715 100644 --- a/services/workspacesthinclient/pom.xml +++ b/services/workspacesthinclient/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT workspacesthinclient AWS Java SDK :: Services :: Work Spaces Thin Client diff --git a/services/workspacesweb/pom.xml b/services/workspacesweb/pom.xml index cda5acb4fe6a..8171473ce0b7 100644 --- a/services/workspacesweb/pom.xml +++ b/services/workspacesweb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT workspacesweb AWS Java SDK :: Services :: Work Spaces Web diff --git a/services/xray/pom.xml b/services/xray/pom.xml index 85ec0ff3495b..efecf60765e2 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/architecture-tests/pom.xml b/test/architecture-tests/pom.xml index f0f2d70222c0..878a4fb8f331 100644 --- a/test/architecture-tests/pom.xml +++ b/test/architecture-tests/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT ../../pom.xml diff --git a/test/auth-tests/pom.xml b/test/auth-tests/pom.xml index 207958df7c76..ce09ed4a350f 100644 --- a/test/auth-tests/pom.xml +++ b/test/auth-tests/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/bundle-logging-bridge-binding-test/pom.xml b/test/bundle-logging-bridge-binding-test/pom.xml index fdc990cf6fcd..b741347aefab 100644 --- a/test/bundle-logging-bridge-binding-test/pom.xml +++ b/test/bundle-logging-bridge-binding-test/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/bundle-shading-tests/pom.xml b/test/bundle-shading-tests/pom.xml index eaefeb2e5087..029a182f5764 100644 --- a/test/bundle-shading-tests/pom.xml +++ b/test/bundle-shading-tests/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index b702f571d2fd..6c9812ff14e3 100644 --- a/test/codegen-generated-classes-test/pom.xml +++ b/test/codegen-generated-classes-test/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT ../../pom.xml diff --git a/test/crt-unavailable-tests/pom.xml b/test/crt-unavailable-tests/pom.xml index c83720897e2d..3314b4041bae 100644 --- a/test/crt-unavailable-tests/pom.xml +++ b/test/crt-unavailable-tests/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/http-client-benchmarks/pom.xml b/test/http-client-benchmarks/pom.xml index 7b2b8d3f4ecd..884a7b6490a4 100644 --- a/test/http-client-benchmarks/pom.xml +++ b/test/http-client-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index 7b7b68fea8bf..423ae0b895d0 100644 --- a/test/http-client-tests/pom.xml +++ b/test/http-client-tests/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index cc55b181e09a..bcd622fe6430 100644 --- a/test/module-path-tests/pom.xml +++ b/test/module-path-tests/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/old-client-version-compatibility-test/pom.xml b/test/old-client-version-compatibility-test/pom.xml index d58b53a762ec..5a3753790101 100644 --- a/test/old-client-version-compatibility-test/pom.xml +++ b/test/old-client-version-compatibility-test/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT ../../pom.xml diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index 397966b032b1..d043b0d519b4 100644 --- a/test/protocol-tests-core/pom.xml +++ b/test/protocol-tests-core/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index 7e635d5d588a..8049dc1af8b6 100644 --- a/test/protocol-tests/pom.xml +++ b/test/protocol-tests/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/region-testing/pom.xml b/test/region-testing/pom.xml index 0943f7756e39..eba70c3040b3 100644 --- a/test/region-testing/pom.xml +++ b/test/region-testing/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/ruleset-testing-core/pom.xml b/test/ruleset-testing-core/pom.xml index e9cde951bbcf..e551dcaebce2 100644 --- a/test/ruleset-testing-core/pom.xml +++ b/test/ruleset-testing-core/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/s3-benchmarks/pom.xml b/test/s3-benchmarks/pom.xml index 48f2331369b5..b88705c532f3 100644 --- a/test/s3-benchmarks/pom.xml +++ b/test/s3-benchmarks/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/s3-tests/pom.xml b/test/s3-tests/pom.xml index 39cd8ce05599..b00630bf0a88 100644 --- a/test/s3-tests/pom.xml +++ b/test/s3-tests/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index 5b747dd8babb..1b4c35451662 100644 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT ../../pom.xml diff --git a/test/sdk-native-image-test/pom.xml b/test/sdk-native-image-test/pom.xml index 687cca15f67c..b63c37f356f3 100644 --- a/test/sdk-native-image-test/pom.xml +++ b/test/sdk-native-image-test/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index 072c63381996..23880e4ea871 100644 --- a/test/service-test-utils/pom.xml +++ b/test/service-test-utils/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index 09fe8afc2746..cfb8ff3e72b3 100644 --- a/test/stability-tests/pom.xml +++ b/test/stability-tests/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index 255f060ef28e..bcb3f0d370b6 100644 --- a/test/test-utils/pom.xml +++ b/test/test-utils/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index 78c6c7c25be3..88208958385d 100644 --- a/test/tests-coverage-reporting/pom.xml +++ b/test/tests-coverage-reporting/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/v2-migration-tests/pom.xml b/test/v2-migration-tests/pom.xml index 4170aa7d4d77..6f5ca395093e 100644 --- a/test/v2-migration-tests/pom.xml +++ b/test/v2-migration-tests/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT ../.. diff --git a/third-party/pom.xml b/third-party/pom.xml index 5663bad88a72..7765c503b97f 100644 --- a/third-party/pom.xml +++ b/third-party/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT third-party diff --git a/third-party/third-party-jackson-core/pom.xml b/third-party/third-party-jackson-core/pom.xml index 569076ee4551..2e9106b407a4 100644 --- a/third-party/third-party-jackson-core/pom.xml +++ b/third-party/third-party-jackson-core/pom.xml @@ -20,7 +20,7 @@ third-party software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 diff --git a/third-party/third-party-jackson-dataformat-cbor/pom.xml b/third-party/third-party-jackson-dataformat-cbor/pom.xml index f3756ed9b48a..bf09877858cf 100644 --- a/third-party/third-party-jackson-dataformat-cbor/pom.xml +++ b/third-party/third-party-jackson-dataformat-cbor/pom.xml @@ -20,7 +20,7 @@ third-party software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 diff --git a/third-party/third-party-slf4j-api/pom.xml b/third-party/third-party-slf4j-api/pom.xml index 09d5ec34822d..66e4462e9d66 100644 --- a/third-party/third-party-slf4j-api/pom.xml +++ b/third-party/third-party-slf4j-api/pom.xml @@ -20,7 +20,7 @@ third-party software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 diff --git a/utils-lite/pom.xml b/utils-lite/pom.xml index b460b1594d52..bc0f50e64541 100644 --- a/utils-lite/pom.xml +++ b/utils-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT utils-lite AWS Java SDK :: Utils Lite diff --git a/utils/pom.xml b/utils/pom.xml index 645902f5d50e..8b95c86bc1a8 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT 4.0.0 diff --git a/v2-migration/pom.xml b/v2-migration/pom.xml index 518ebc2b0f63..4597bc0e3004 100644 --- a/v2-migration/pom.xml +++ b/v2-migration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.39.7-SNAPSHOT + 2.40.0-SNAPSHOT ../pom.xml