httpProxyOptions = CrtConfigurationUtils.resolveProxy(configuration, tlsContext);
+ assertThat(httpProxyOptions).hasValueSatisfying(proxy -> {
+ assertThat(proxy.getTlsContext()).isEqualTo(tlsContext);
+ assertThat(proxy.getAuthorizationPassword()).isEqualTo("bar");
+ assertThat(proxy.getAuthorizationUsername()).isEqualTo("foo");
+ assertThat(proxy.getAuthorizationType()).isEqualTo(HttpProxyOptions.HttpProxyAuthorizationType.Basic);
+ });
+ }
+
+
@Test
void resolveProxy_noneAuthorization() {
CrtProxyConfiguration configuration = new TestProxy.Builder().host("1.2.3.4")
diff --git a/http-clients/aws-crt-client/src/main/java/software/amazon/awssdk/http/crt/ProxyConfiguration.java b/http-clients/aws-crt-client/src/main/java/software/amazon/awssdk/http/crt/ProxyConfiguration.java
index b50036fdcb5c..6e6cd85dd775 100644
--- a/http-clients/aws-crt-client/src/main/java/software/amazon/awssdk/http/crt/ProxyConfiguration.java
+++ b/http-clients/aws-crt-client/src/main/java/software/amazon/awssdk/http/crt/ProxyConfiguration.java
@@ -15,8 +15,10 @@
package software.amazon.awssdk.http.crt;
+import java.util.Set;
import software.amazon.awssdk.annotations.SdkPublicApi;
import software.amazon.awssdk.crtcore.CrtProxyConfiguration;
+import software.amazon.awssdk.utils.ProxyEnvironmentSetting;
import software.amazon.awssdk.utils.ProxySystemSetting;
import software.amazon.awssdk.utils.builder.CopyableBuilder;
import software.amazon.awssdk.utils.builder.ToCopyableBuilder;
@@ -116,9 +118,35 @@ public interface Builder extends CrtProxyConfiguration.Builder, CopyableBuilder<
Builder useSystemPropertyValues(Boolean useSystemPropertyValues);
+ /**
+ * Set the option whether to use environment variable values for {@link ProxyEnvironmentSetting} if any of the config
+ * options are missing. The value is set to "true" by default, enabling the SDK to automatically use environment variable
+ * values for proxy configuration options that are not provided during building the {@link ProxyConfiguration} object. To
+ * disable this behavior, set this value to "false".It is important to note that when this property is set to "true," all
+ * proxy settings will exclusively originate from Environment Variable Values, and no partial settings will be obtained
+ * from System Property Values.
+ * Comma-separated host names in the NO_PROXY environment variable indicate multiple hosts to exclude from
+ * proxy settings.
+ *
+ * @param useEnvironmentVariableValues The option whether to use environment variable values
+ * @return This object for method chaining.
+ */
@Override
Builder useEnvironmentVariableValues(Boolean useEnvironmentVariableValues);
+ /**
+ * Configure the hosts that the client is allowed to access without going through the proxy.
+ */
+ @Override
+ Builder nonProxyHosts(Set nonProxyHosts);
+
+
+ /**
+ * Add a host that the client is allowed to access without going through the proxy.
+ */
+ @Override
+ Builder addNonProxyHost(String nonProxyHost);
+
@Override
ProxyConfiguration build();
}
diff --git a/http-clients/aws-crt-client/src/test/java/software/amazon/awssdk/http/crt/CrtHttpProxyTest.java b/http-clients/aws-crt-client/src/test/java/software/amazon/awssdk/http/crt/CrtHttpProxyTest.java
index 4095302dd8f3..ae2f66aca1e3 100644
--- a/http-clients/aws-crt-client/src/test/java/software/amazon/awssdk/http/crt/CrtHttpProxyTest.java
+++ b/http-clients/aws-crt-client/src/test/java/software/amazon/awssdk/http/crt/CrtHttpProxyTest.java
@@ -18,6 +18,7 @@
import static org.assertj.core.api.Assertions.assertThat;
import java.net.URISyntaxException;
+import java.util.Set;
import software.amazon.awssdk.http.HttpProxyTestSuite;
import software.amazon.awssdk.http.proxy.TestProxySetting;
@@ -35,6 +36,7 @@ protected void assertProxyConfiguration(TestProxySetting userSetProxySettings,
Integer portNumber = userSetProxySettings.getPort();
String userName = userSetProxySettings.getUserName();
String password = userSetProxySettings.getPassword();
+ Set nonProxyHosts = userSetProxySettings.getNonProxyHosts();
if (hostName != null) {
proxyBuilder.host(hostName);
@@ -48,6 +50,9 @@ protected void assertProxyConfiguration(TestProxySetting userSetProxySettings,
if (password != null) {
proxyBuilder.password(password);
}
+ if (nonProxyHosts != null && !nonProxyHosts.isEmpty()) {
+ proxyBuilder.nonProxyHosts(nonProxyHosts);
+ }
}
if (!"http".equals(protocol)) {
@@ -64,6 +69,7 @@ protected void assertProxyConfiguration(TestProxySetting userSetProxySettings,
assertThat(proxyConfiguration.port()).isEqualTo(expectedProxySettings.getPort());
assertThat(proxyConfiguration.username()).isEqualTo(expectedProxySettings.getUserName());
assertThat(proxyConfiguration.password()).isEqualTo(expectedProxySettings.getPassword());
+ assertThat(proxyConfiguration.nonProxyHosts()).isEqualTo(expectedProxySettings.getNonProxyHosts());
}
}
diff --git a/http-clients/aws-crt-client/src/test/java/software/amazon/awssdk/http/crt/ProxyConfigurationTest.java b/http-clients/aws-crt-client/src/test/java/software/amazon/awssdk/http/crt/ProxyConfigurationTest.java
index 9d4d25f7b47c..bd535d23358b 100644
--- a/http-clients/aws-crt-client/src/test/java/software/amazon/awssdk/http/crt/ProxyConfigurationTest.java
+++ b/http-clients/aws-crt-client/src/test/java/software/amazon/awssdk/http/crt/ProxyConfigurationTest.java
@@ -19,7 +19,11 @@
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
+import java.util.HashSet;
import java.util.Random;
+import java.util.Set;
+import java.util.stream.Collectors;
+import java.util.stream.IntStream;
import java.util.stream.Stream;
import org.junit.jupiter.api.AfterAll;
import org.junit.jupiter.api.BeforeEach;
@@ -181,6 +185,8 @@ private void setRandomValue(Object o, Method setter) throws InvocationTargetExce
setter.invoke(o, RNG.nextInt());
} else if (Boolean.class.equals(paramClass)) {
setter.invoke(o, RNG.nextBoolean());
+ } else if (Set.class.equals(paramClass)) {
+ setter.invoke(o, IntStream.range(0, 5).mapToObj(i -> randomString()).collect(Collectors.toSet()));
} else {
throw new RuntimeException("Don't know how create random value for type " + paramClass);
}
diff --git a/http-clients/aws-crt-client/src/test/java/software/amazon/awssdk/http/crt/ProxyWireMockTest.java b/http-clients/aws-crt-client/src/test/java/software/amazon/awssdk/http/crt/ProxyWireMockTest.java
index 7c56119bc26e..47fb56d70fba 100644
--- a/http-clients/aws-crt-client/src/test/java/software/amazon/awssdk/http/crt/ProxyWireMockTest.java
+++ b/http-clients/aws-crt-client/src/test/java/software/amazon/awssdk/http/crt/ProxyWireMockTest.java
@@ -26,9 +26,12 @@
import com.github.tomakehurst.wiremock.core.WireMockConfiguration;
import java.net.URI;
import java.nio.ByteBuffer;
+import java.security.SecureRandom;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.atomic.AtomicReference;
+import java.util.stream.Collectors;
+import java.util.stream.Stream;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
@@ -68,21 +71,16 @@ public void setup() {
mockServer.stubFor(get(urlMatching(".*")).willReturn(aResponse().withStatus(200).withBody("hello")));
- proxyCfg = ProxyConfiguration.builder()
- .host("localhost")
- .port(mockProxy.port())
- .build();
- client = AwsCrtAsyncHttpClient.builder()
- .proxyConfiguration(proxyCfg)
- .build();
}
@AfterEach
public void teardown() {
mockServer.stop();
mockProxy.stop();
- client.close();
+ if(client != null){
+ client.close();
+ }
EventLoopGroup.closeStaticDefault();
HostResolver.closeStaticDefault();
CrtResource.waitForNoResources();
@@ -99,6 +97,15 @@ public void teardown() {
@Test
public void proxyConfigured_httpGet() throws Throwable {
+ proxyCfg = ProxyConfiguration.builder()
+ .host("localhost")
+ .port(mockProxy.port())
+ .build();
+
+ client = AwsCrtAsyncHttpClient.builder()
+ .proxyConfiguration(proxyCfg)
+ .build();
+
CompletableFuture streamReceived = new CompletableFuture<>();
AtomicReference response = new AtomicReference<>(null);
AtomicReference error = new AtomicReference<>(null);
@@ -121,4 +128,47 @@ public void proxyConfigured_httpGet() throws Throwable {
assertThat(response.get().statusCode()).isEqualTo(200);
}
+ @Test
+ public void proxyConfiguredAndSkippedUsingNonProxy_httpGet() throws Throwable {
+ SecureRandom secureRandom = new SecureRandom();
+ int randomPort = 0;
+ // Generate a random port to test if the proxy host is not routed to when nonProxyHosts is specified.
+ // If the nonProxyHosts had not matched, a connection exception would have occurred.
+ do {
+ randomPort = secureRandom.nextInt(65535);
+ } while (randomPort == mockProxy.port());
+
+ proxyCfg = ProxyConfiguration.builder()
+ .host("localhost")
+ .port(randomPort)
+ .nonProxyHosts(Stream.of("localhost").collect(Collectors.toSet()))
+ .build();
+
+ client = AwsCrtAsyncHttpClient.builder()
+ .proxyConfiguration(proxyCfg)
+ .build();
+
+ CompletableFuture streamReceived = new CompletableFuture<>();
+ AtomicReference response = new AtomicReference<>(null);
+ AtomicReference error = new AtomicReference<>(null);
+
+ Subscriber subscriber = CrtHttpClientTestUtils.createDummySubscriber();
+
+ SdkAsyncHttpResponseHandler handler = CrtHttpClientTestUtils.createTestResponseHandler(response, streamReceived, error,
+ subscriber);
+
+ URI uri = URI.create("http://localhost:" + mockServer.port());
+ SdkHttpRequest request = CrtHttpClientTestUtils.createRequest(uri, "/server/test", null, SdkHttpMethod.GET, emptyMap());
+
+ CompletableFuture future = client.execute(AsyncExecuteRequest.builder()
+ .request(request)
+ .responseHandler(handler)
+ .requestContentPublisher(new EmptyPublisher())
+ .build());
+ future.get(60, TimeUnit.SECONDS);
+ assertThat(error.get()).isNull();
+ assertThat(streamReceived.get(60, TimeUnit.SECONDS)).isTrue();
+ assertThat(response.get().statusCode()).isEqualTo(200);
+ }
+
}
From 012a8ac6ec1133d3874bdd5871d426a8cb93e262 Mon Sep 17 00:00:00 2001
From: John Viegas <70235430+joviegas@users.noreply.github.com>
Date: Thu, 29 Feb 2024 09:58:33 -0800
Subject: [PATCH 04/13] Created a new version 2.25.0 for ProxyConfiguration.
Default behavior is now aligned with the Apache SDK Client. Additionally,
added support for 'no_proxy' hosts in the Crt HTTP client (#4982)
---
.changes/{ => 2.24.x}/2.24.0.json | 0
.changes/{ => 2.24.x}/2.24.1.json | 0
.changes/{ => 2.24.x}/2.24.10.json | 0
.changes/{ => 2.24.x}/2.24.11.json | 0
.changes/{ => 2.24.x}/2.24.12.json | 0
.changes/{ => 2.24.x}/2.24.13.json | 0
.changes/{ => 2.24.x}/2.24.2.json | 0
.changes/{ => 2.24.x}/2.24.3.json | 0
.changes/{ => 2.24.x}/2.24.4.json | 0
.changes/{ => 2.24.x}/2.24.5.json | 0
.changes/{ => 2.24.x}/2.24.6.json | 0
.changes/{ => 2.24.x}/2.24.7.json | 0
.changes/{ => 2.24.x}/2.24.8.json | 0
.changes/{ => 2.24.x}/2.24.9.json | 0
CHANGELOG.md | 359 ------------------
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.24.x-CHANGELOG.md | 358 +++++++++++++++++
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/regions/pom.xml | 2 +-
core/sdk-core/pom.xml | 2 +-
http-client-spi/pom.xml | 2 +-
http-clients/apache-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 +-
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 +-
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/alexaforbusiness/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/appmesh/pom.xml | 2 +-
services/apprunner/pom.xml | 2 +-
services/appstream/pom.xml | 2 +-
services/appsync/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/backupstorage/pom.xml | 2 +-
services/batch/pom.xml | 2 +-
services/bcmdataexports/pom.xml | 2 +-
services/bedrock/pom.xml | 2 +-
services/bedrockagent/pom.xml | 2 +-
services/bedrockagentruntime/pom.xml | 2 +-
services/bedrockruntime/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/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/codestar/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/config/pom.xml | 2 +-
services/connect/pom.xml | 2 +-
services/connectcampaigns/pom.xml | 2 +-
services/connectcases/pom.xml | 2 +-
services/connectcontactlens/pom.xml | 2 +-
services/connectparticipant/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/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/dlm/pom.xml | 2 +-
services/docdb/pom.xml | 2 +-
services/docdbelastic/pom.xml | 2 +-
services/drs/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/elasticinference/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/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/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/honeycode/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/iot/pom.xml | 2 +-
services/iot1clickdevices/pom.xml | 2 +-
services/iot1clickprojects/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/iotfleethub/pom.xml | 2 +-
services/iotfleetwise/pom.xml | 2 +-
services/iotjobsdataplane/pom.xml | 2 +-
services/iotroborunner/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/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/lookoutmetrics/pom.xml | 2 +-
services/lookoutvision/pom.xml | 2 +-
services/m2/pom.xml | 2 +-
services/machinelearning/pom.xml | 2 +-
services/macie2/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/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/mobile/pom.xml | 2 +-
services/mq/pom.xml | 2 +-
services/mturk/pom.xml | 2 +-
services/mwaa/pom.xml | 2 +-
services/neptune/pom.xml | 2 +-
services/neptunedata/pom.xml | 2 +-
services/neptunegraph/pom.xml | 2 +-
services/networkfirewall/pom.xml | 2 +-
services/networkmanager/pom.xml | 2 +-
services/networkmonitor/pom.xml | 2 +-
services/nimble/pom.xml | 2 +-
services/oam/pom.xml | 2 +-
services/omics/pom.xml | 2 +-
services/opensearch/pom.xml | 2 +-
services/opensearchserverless/pom.xml | 2 +-
services/opsworks/pom.xml | 2 +-
services/opsworkscm/pom.xml | 2 +-
services/organizations/pom.xml | 2 +-
services/osis/pom.xml | 2 +-
services/outposts/pom.xml | 2 +-
services/panorama/pom.xml | 2 +-
services/paymentcryptography/pom.xml | 2 +-
services/paymentcryptographydata/pom.xml | 2 +-
services/pcaconnectorad/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/privatenetworks/pom.xml | 2 +-
services/proton/pom.xml | 2 +-
services/qbusiness/pom.xml | 2 +-
services/qconnect/pom.xml | 2 +-
services/qldb/pom.xml | 2 +-
services/qldbsession/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/robomaker/pom.xml | 2 +-
services/rolesanywhere/pom.xml | 2 +-
services/route53/pom.xml | 2 +-
services/route53domains/pom.xml | 2 +-
services/route53recoverycluster/pom.xml | 2 +-
services/route53recoverycontrolconfig/pom.xml | 2 +-
services/route53recoveryreadiness/pom.xml | 2 +-
services/route53resolver/pom.xml | 2 +-
services/rum/pom.xml | 2 +-
services/s3/pom.xml | 2 +-
services/s3control/pom.xml | 2 +-
services/s3outposts/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/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/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/simspaceweaver/pom.xml | 2 +-
services/sms/pom.xml | 2 +-
services/snowball/pom.xml | 2 +-
services/snowdevicemanagement/pom.xml | 2 +-
services/sns/pom.xml | 2 +-
services/sqs/pom.xml | 2 +-
services/ssm/pom.xml | 2 +-
services/ssmcontacts/pom.xml | 2 +-
services/ssmincidents/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/textract/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/worklink/pom.xml | 2 +-
services/workmail/pom.xml | 2 +-
services/workmailmessageflow/pom.xml | 2 +-
services/workspaces/pom.xml | 2 +-
services/workspacesthinclient/pom.xml | 2 +-
services/workspacesweb/pom.xml | 2 +-
services/xray/pom.xml | 2 +-
test/auth-tests/pom.xml | 2 +-
.../pom.xml | 2 +-
test/codegen-generated-classes-test/pom.xml | 2 +-
test/crt-unavailable-tests/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/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 +-
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/pom.xml | 2 +-
472 files changed, 814 insertions(+), 815 deletions(-)
rename .changes/{ => 2.24.x}/2.24.0.json (100%)
rename .changes/{ => 2.24.x}/2.24.1.json (100%)
rename .changes/{ => 2.24.x}/2.24.10.json (100%)
rename .changes/{ => 2.24.x}/2.24.11.json (100%)
rename .changes/{ => 2.24.x}/2.24.12.json (100%)
rename .changes/{ => 2.24.x}/2.24.13.json (100%)
rename .changes/{ => 2.24.x}/2.24.2.json (100%)
rename .changes/{ => 2.24.x}/2.24.3.json (100%)
rename .changes/{ => 2.24.x}/2.24.4.json (100%)
rename .changes/{ => 2.24.x}/2.24.5.json (100%)
rename .changes/{ => 2.24.x}/2.24.6.json (100%)
rename .changes/{ => 2.24.x}/2.24.7.json (100%)
rename .changes/{ => 2.24.x}/2.24.8.json (100%)
rename .changes/{ => 2.24.x}/2.24.9.json (100%)
create mode 100644 changelogs/2.24.x-CHANGELOG.md
diff --git a/.changes/2.24.0.json b/.changes/2.24.x/2.24.0.json
similarity index 100%
rename from .changes/2.24.0.json
rename to .changes/2.24.x/2.24.0.json
diff --git a/.changes/2.24.1.json b/.changes/2.24.x/2.24.1.json
similarity index 100%
rename from .changes/2.24.1.json
rename to .changes/2.24.x/2.24.1.json
diff --git a/.changes/2.24.10.json b/.changes/2.24.x/2.24.10.json
similarity index 100%
rename from .changes/2.24.10.json
rename to .changes/2.24.x/2.24.10.json
diff --git a/.changes/2.24.11.json b/.changes/2.24.x/2.24.11.json
similarity index 100%
rename from .changes/2.24.11.json
rename to .changes/2.24.x/2.24.11.json
diff --git a/.changes/2.24.12.json b/.changes/2.24.x/2.24.12.json
similarity index 100%
rename from .changes/2.24.12.json
rename to .changes/2.24.x/2.24.12.json
diff --git a/.changes/2.24.13.json b/.changes/2.24.x/2.24.13.json
similarity index 100%
rename from .changes/2.24.13.json
rename to .changes/2.24.x/2.24.13.json
diff --git a/.changes/2.24.2.json b/.changes/2.24.x/2.24.2.json
similarity index 100%
rename from .changes/2.24.2.json
rename to .changes/2.24.x/2.24.2.json
diff --git a/.changes/2.24.3.json b/.changes/2.24.x/2.24.3.json
similarity index 100%
rename from .changes/2.24.3.json
rename to .changes/2.24.x/2.24.3.json
diff --git a/.changes/2.24.4.json b/.changes/2.24.x/2.24.4.json
similarity index 100%
rename from .changes/2.24.4.json
rename to .changes/2.24.x/2.24.4.json
diff --git a/.changes/2.24.5.json b/.changes/2.24.x/2.24.5.json
similarity index 100%
rename from .changes/2.24.5.json
rename to .changes/2.24.x/2.24.5.json
diff --git a/.changes/2.24.6.json b/.changes/2.24.x/2.24.6.json
similarity index 100%
rename from .changes/2.24.6.json
rename to .changes/2.24.x/2.24.6.json
diff --git a/.changes/2.24.7.json b/.changes/2.24.x/2.24.7.json
similarity index 100%
rename from .changes/2.24.7.json
rename to .changes/2.24.x/2.24.7.json
diff --git a/.changes/2.24.8.json b/.changes/2.24.x/2.24.8.json
similarity index 100%
rename from .changes/2.24.8.json
rename to .changes/2.24.x/2.24.8.json
diff --git a/.changes/2.24.9.json b/.changes/2.24.x/2.24.9.json
similarity index 100%
rename from .changes/2.24.9.json
rename to .changes/2.24.x/2.24.9.json
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1e3cf3161587..a9233d91ad29 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,360 +1 @@
#### 👋 _Looking for changelogs for older versions? You can find them in the [changelogs](./changelogs) directory._
-# __2.24.13__ __2024-02-28__
-## __AWS Batch__
- - ### Features
- - This release adds Batch support for configuration of multicontainer jobs in ECS, Fargate, and EKS. This support is available for all types of jobs, including both array jobs and multi-node parallel jobs.
-
-## __AWS Cost Explorer Service__
- - ### Features
- - This release introduces the new API 'GetApproximateUsageRecords', which retrieves estimated usage records for hourly granularity or resource-level data at daily granularity.
-
-## __AWS IoT__
- - ### Features
- - This release reduces the maximum results returned per query invocation from 500 to 100 for the SearchIndex API. This change has no implications as long as the API is invoked until the nextToken is NULL.
-
-## __AWS SDK for Java v2__
- - ### Features
- - Switching remaining AWS service clients onto the new SRA (Smithy Reference Architecture) identity and auth logic that was released in v2.21.0. For a list of individual services affected, please check the committed files.
-
-## __AWS WAFV2__
- - ### Features
- - AWS WAF now supports configurable time windows for request aggregation with rate-based rules. Customers can now select time windows of 1 minute, 2 minutes or 10 minutes, in addition to the previously supported 5 minutes.
-
-## __Agents for Amazon Bedrock Runtime__
- - ### Features
- - This release adds support to override search strategy performed by the Retrieve and RetrieveAndGenerate APIs for Amazon Bedrock Agents
-
-## __Amazon Elastic Compute Cloud__
- - ### Features
- - This release increases the range of MaxResults for GetNetworkInsightsAccessScopeAnalysisFindings to 1,000.
-
-## __Amazon S3__
- - ### Bugfixes
- - Fixed an issue in S3 multipart client that could cause `BlockingInputStreamAsyncRequestBody#writeInputStream` to get stuck if any of the multipart request fails. See [#4801](https://github.com/aws/aws-sdk-java-v2/issues/4801)
-
-# __2.24.12__ __2024-02-27__
-## __AWS Amplify UI Builder__
- - ### Features
- - We have added the ability to tag resources after they are created
-
-## __AWS SDK for Java v2__
- - ### Bugfixes
- - upgrade netty version to 4.1.107.Final
- - Contributed by: [@sullis](https://github.com/sullis)
-
-## __Amazon S3__
- - ### Features
- - Enable TransferListener when uploading with TransferManager with Java-based S3Client with multipart enabled
-
-## __Contributors__
-Special thanks to the following contributors to this release:
-
-[@sullis](https://github.com/sullis)
-# __2.24.11__ __2024-02-26__
-## __Amazon API Gateway__
- - ### Features
- - Documentation updates for Amazon API Gateway.
-
-## __Amazon Relational Database Service__
- - ### Features
- - This release adds support for gp3 data volumes for Multi-AZ DB Clusters.
-
-## __Elastic Disaster Recovery Service__
- - ### Features
- - Added volume status to DescribeSourceServer replicated volumes.
-
-## __Managed Streaming for Kafka Connect__
- - ### Features
- - Adds support for tagging, with new TagResource, UntagResource and ListTagsForResource APIs to manage tags and updates to existing APIs to allow tag on create. This release also adds support for the new DeleteWorkerConfiguration API.
-
-# __2.24.10__ __2024-02-23__
-## __AWS AppSync__
- - ### Features
- - Documentation only updates for AppSync
-
-## __Amazon QLDB__
- - ### Features
- - Clarify possible values for KmsKeyArn and EncryptionDescription.
-
-## __Amazon Relational Database Service__
- - ### Features
- - Add pattern and length based validations for DBShardGroupIdentifier
-
-## __CloudWatch RUM__
- - ### Features
- - Doc-only update for new RUM metrics that were added
-
-## __S3 Transfer Manager__
- - ### Features
- - Enable multipart configuration by default when creating a new S3TranferManager instance using the .create() method
- - Make Transfer Manager work by default with S3AsyncClient when multipart configuration is enabled.
-
-# __2.24.9__ __2024-02-22__
-## __AWS CRT-based S3 client__
- - ### Bugfixes
- - Fixed memory leak issue when a request was cancelled in the AWS CRT-based S3 client.
-
-## __Amazon CloudWatch Internet Monitor__
- - ### Features
- - This release adds IPv4 prefixes to health events
-
-## __Amazon Kinesis Video Streams__
- - ### Features
- - Increasing NextToken parameter length restriction for List APIs from 512 to 1024.
-
-# __2.24.8__ __2024-02-21__
-## __AWS Elemental MediaLive__
- - ### Features
- - MediaLive now supports the ability to restart pipelines in a running channel.
-
-## __AWS IoT Events__
- - ### Features
- - Increase the maximum length of descriptions for Inputs, Detector Models, and Alarm Models
-
-## __AWS SDK for Java v2__
- - ### Bugfixes
- - Add content-length header in Json and Xml Protocol Marshaller for String and Binary explicit Payloads.
-
-## __Amazon Lookout for Equipment__
- - ### Features
- - This release adds a field exposing model quality to read APIs for models. It also adds a model quality field to the API response when creating an inference scheduler.
-
-## __Amazon Simple Systems Manager (SSM)__
- - ### Features
- - This release adds support for sharing Systems Manager parameters with other AWS accounts.
-
-# __2.24.7__ __2024-02-20__
-## __AWS Lambda__
- - ### Features
- - Add .NET 8 (dotnet8) Runtime support to AWS Lambda.
-
-## __Amazon DynamoDB__
- - ### Features
- - Publishing quick fix for doc only update.
-
-## __Amazon Kinesis Firehose__
- - ### Features
- - This release updates a few Firehose related APIs.
-
-# __2.24.6__ __2024-02-19__
-## __AWS Amplify__
- - ### Features
- - This release contains API changes that enable users to configure their Amplify domains with their own custom SSL/TLS certificate.
-
-## __AWS Config__
- - ### Features
- - Documentation updates for the AWS Config CLI
-
-## __AWS MediaTailor__
- - ### Features
- - MediaTailor: marking #AdBreak.OffsetMillis as required.
-
-## __Amazon Interactive Video Service__
- - ### Features
- - Changed description for latencyMode in Create/UpdateChannel and Channel/ChannelSummary.
-
-## __Amazon Keyspaces__
- - ### Features
- - Documentation updates for Amazon Keyspaces
-
-## __Amazon S3__
- - ### Features
- - Add support for pause/resume upload for TransferManager with Java-based S3Client that has multipart enabled
-
-## __chatbot__
- - ### Features
- - This release adds support for AWS Chatbot. You can now monitor, operate, and troubleshoot your AWS resources with interactive ChatOps using the AWS SDK.
-
-# __2.24.5__ __2024-02-16__
-## __AWS Lambda__
- - ### Features
- - Documentation-only updates for Lambda to clarify a number of existing actions and properties.
-
-## __AWS SDK for Java v2__
- - ### Features
- - Updated endpoint and partition metadata.
-
-## __Amazon Connect Participant Service__
- - ### Features
- - Doc only update to GetTranscript API reference guide to inform users about presence of events in the chat transcript.
-
-## __Amazon EMR__
- - ### Features
- - adds fine grained control over Unhealthy Node Replacement to Amazon ElasticMapReduce
-
-## __Amazon Kinesis Firehose__
- - ### Features
- - This release adds support for Data Message Extraction for decompressed CloudWatch logs, and to use a custom file extension or time zone for S3 destinations.
-
-## __Amazon Relational Database Service__
- - ### Features
- - Doc only update for a valid option in DB parameter group
-
-## __Amazon Simple Notification Service__
- - ### Features
- - This release marks phone numbers as sensitive inputs.
-
-# __2.24.4__ __2024-02-15__
-## __AWS Artifact__
- - ### Features
- - This is the initial SDK release for AWS Artifact. AWS Artifact provides on-demand access to compliance and third-party compliance reports. This release includes access to List and Get reports, along with their metadata. This release also includes access to AWS Artifact notifications settings.
-
-## __AWS CodePipeline__
- - ### Features
- - Add ability to override timeout on action level.
-
-## __AWS SDK for Java v2__
- - ### Features
- - Updated endpoint and partition metadata.
-
-## __AWS Secrets Manager__
- - ### Features
- - Doc only update for Secrets Manager
-
-## __Amazon Detective__
- - ### Features
- - Doc only updates for content enhancement
-
-## __Amazon GuardDuty__
- - ### Features
- - Marked fields IpAddressV4, PrivateIpAddress, Email as Sensitive.
-
-## __Amazon HealthLake__
- - ### Features
- - This release adds a new response parameter, JobProgressReport, to the DescribeFHIRImportJob and ListFHIRImportJobs API operation. JobProgressReport provides details on the progress of the import job on the server.
-
-## __Amazon OpenSearch Service__
- - ### Features
- - Adds additional supported instance types.
-
-## __Amazon Polly__
- - ### Features
- - Amazon Polly adds 1 new voice - Burcu (tr-TR)
-
-## __Amazon SageMaker Service__
- - ### Features
- - This release adds a new API UpdateClusterSoftware for SageMaker HyperPod. This API allows users to patch HyperPod clusters with latest platform softwares.
-
-# __2.24.3__ __2024-02-14__
-## __AWS Control Tower__
- - ### Features
- - Adds support for new Baseline and EnabledBaseline APIs for automating multi-account governance.
-
-## __AWS SDK for Java v2__
- - ### Features
- - Switching half of the AWS service clients onto the new SRA (Smithy Reference Architecture) identity and auth logic that was released in v2.21.0. For a list of individual services affected, please check the committed files.
- - Updated endpoint and partition metadata.
-
- - ### Bugfixes
- - Fixed an issue where NPE would be thrown if there was an empty event in the input for an event streaming operation.
-
-## __Amazon Lookout for Equipment__
- - ### Features
- - This feature allows customers to see pointwise model diagnostics results for their models.
-
-## __Amazon Simple Storage Service__
- - ### Bugfixes
- - Fix for Issue [#4912](https://github.com/aws/aws-sdk-java-v2/issues/4912) where client region with AWS_GLOBAL calls failed for cross region access.
-
-## __QBusiness__
- - ### Features
- - This release adds the metadata-boosting feature, which allows customers to easily fine-tune the underlying ranking of retrieved RAG passages in order to optimize Q&A answer relevance. It also adds new feedback reasons for the PutFeedback API.
-
-# __2.24.2__ __2024-02-13__
-## __AWS Marketplace Catalog Service__
- - ### Features
- - AWS Marketplace Catalog API now supports setting intent on requests
-
-## __AWS Resource Explorer__
- - ### Features
- - Resource Explorer now uses newly supported IPv4 'amazonaws.com' endpoints by default.
-
-## __AWS SDK for Java v2__
- - ### Features
- - Updated endpoint and partition metadata.
-
-## __Amazon DynamoDB__
- - ### Features
- - Add additional logical operator ('and' and 'or') methods to DynamoDB Expression
- - Contributed by: [@akiesler](https://github.com/akiesler)
-
-## __Amazon Lightsail__
- - ### Features
- - This release adds support to upgrade the major version of a database.
-
-## __Amazon S3__
- - ### Features
- - Automatically trim object metadata keys of whitespace for `PutObject` and `CreateMultipartUpload`.
-
-## __Amazon Security Lake__
- - ### Features
- - Documentation updates for Security Lake
-
-## __URL Connection Client__
- - ### Bugfixes
- - Fix a bug where headers with multiple values don't have all values for that header sent on the wire. This leads to signature mismatch exceptions.
-
- Fixes [#4746](https://github.com/aws/aws-sdk-java-v2/issues/4746).
-
-## __Contributors__
-Special thanks to the following contributors to this release:
-
-[@akiesler](https://github.com/akiesler)
-# __2.24.1__ __2024-02-12__
-## __AWS AppSync__
- - ### Features
- - Adds support for new options on GraphqlAPIs, Resolvers and Data Sources for emitting Amazon CloudWatch metrics for enhanced monitoring of AppSync APIs.
-
-## __Amazon CloudWatch__
- - ### Features
- - This release enables PutMetricData API request payload compression by default.
-
-## __Amazon Neptune Graph__
- - ### Features
- - Adding a new option "parameters" for data plane api ExecuteQuery to support running parameterized query via SDK.
-
-## __Amazon Route 53 Domains__
- - ### Features
- - This release adds bill contact support for RegisterDomain, TransferDomain, UpdateDomainContact and GetDomainDetail API.
-
-# __2.24.0__ __2024-02-09__
-## __AWS Batch__
- - ### Features
- - This feature allows Batch to support configuration of repository credentials for jobs running on ECS
-
-## __AWS IoT__
- - ### Features
- - This release allows AWS IoT Core users to enable Online Certificate Status Protocol (OCSP) Stapling for TLS X.509 Server Certificates when creating and updating AWS IoT Domain Configurations with Custom Domain.
-
-## __AWS Price List Service__
- - ### Features
- - Add Throttling Exception to all APIs.
-
-## __AWS SDK for Java v2__
- - ### Features
- - Updated endpoint and partition metadata.
- - Updated internal core logic for signing properties with non-default values to be codegen based instead of set at runtime.
-
-## __Amazon EC2 Container Service__
- - ### Features
- - Documentation only update for Amazon ECS.
-
-## __Amazon Prometheus Service__
- - ### Features
- - Overall documentation updates.
-
-## __Amazon S3__
- - ### Features
- - Overriding signer properties for S3 through the deprecated non-public execution attributes in S3SignerExecutionAttribute no longer works with this release. The recommended approach is to use plugins in order to change these settings.
-
- - ### Bugfixes
- - Fix bug where PUT fails when using SSE-C with Checksum when using S3AsyncClient with multipart enabled. Enable CRC32 for putObject when using multipart client if checksum validation is not disabled and checksum is not set by user
-
-## __Braket__
- - ### Features
- - Creating a job will result in DeviceOfflineException when using an offline device, and DeviceRetiredException when using a retired device.
-
-## __Cost Optimization Hub__
- - ### Features
- - Adding includeMemberAccounts field to the response of ListEnrollmentStatuses API.
-
diff --git a/archetypes/archetype-app-quickstart/pom.xml b/archetypes/archetype-app-quickstart/pom.xml
index 442a174ad767..f7d293d02c9c 100644
--- a/archetypes/archetype-app-quickstart/pom.xml
+++ b/archetypes/archetype-app-quickstart/pom.xml
@@ -20,7 +20,7 @@
archetypes
software.amazon.awssdk
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
4.0.0
diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml
index 41b79c01f9a6..0fb71b06d836 100644
--- a/archetypes/archetype-lambda/pom.xml
+++ b/archetypes/archetype-lambda/pom.xml
@@ -20,7 +20,7 @@
archetypes
software.amazon.awssdk
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
4.0.0
archetype-lambda
diff --git a/archetypes/archetype-tools/pom.xml b/archetypes/archetype-tools/pom.xml
index e6f9813f0b5c..1ca4d236e4af 100644
--- a/archetypes/archetype-tools/pom.xml
+++ b/archetypes/archetype-tools/pom.xml
@@ -20,7 +20,7 @@
archetypes
software.amazon.awssdk
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
4.0.0
diff --git a/archetypes/pom.xml b/archetypes/pom.xml
index 986c64803947..0dc19a8bfbe3 100644
--- a/archetypes/pom.xml
+++ b/archetypes/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
4.0.0
archetypes
diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml
index f4d4861f9817..1737ec3c3747 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.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
../pom.xml
aws-sdk-java
diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml
index 4c249d59e636..3f9afbaa7adb 100644
--- a/bom-internal/pom.xml
+++ b/bom-internal/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
4.0.0
diff --git a/bom/pom.xml b/bom/pom.xml
index 00c41fd90446..131b97cea2fa 100644
--- a/bom/pom.xml
+++ b/bom/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
../pom.xml
bom
diff --git a/bundle-logging-bridge/pom.xml b/bundle-logging-bridge/pom.xml
index 6e8e99c9ffaa..a98150c0fc2d 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.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
bundle-logging-bridge
jar
diff --git a/bundle-sdk/pom.xml b/bundle-sdk/pom.xml
index ce502d11d360..2a53434af025 100644
--- a/bundle-sdk/pom.xml
+++ b/bundle-sdk/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
bundle-sdk
jar
diff --git a/bundle/pom.xml b/bundle/pom.xml
index 8513528c43c9..7f2f9912cceb 100644
--- a/bundle/pom.xml
+++ b/bundle/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
bundle
jar
diff --git a/changelogs/2.24.x-CHANGELOG.md b/changelogs/2.24.x-CHANGELOG.md
new file mode 100644
index 000000000000..b30aa4c20007
--- /dev/null
+++ b/changelogs/2.24.x-CHANGELOG.md
@@ -0,0 +1,358 @@
+# __2.24.13__ __2024-02-28__
+## __AWS Batch__
+- ### Features
+ - This release adds Batch support for configuration of multicontainer jobs in ECS, Fargate, and EKS. This support is available for all types of jobs, including both array jobs and multi-node parallel jobs.
+
+## __AWS Cost Explorer Service__
+- ### Features
+ - This release introduces the new API 'GetApproximateUsageRecords', which retrieves estimated usage records for hourly granularity or resource-level data at daily granularity.
+
+## __AWS IoT__
+- ### Features
+ - This release reduces the maximum results returned per query invocation from 500 to 100 for the SearchIndex API. This change has no implications as long as the API is invoked until the nextToken is NULL.
+
+## __AWS SDK for Java v2__
+- ### Features
+ - Switching remaining AWS service clients onto the new SRA (Smithy Reference Architecture) identity and auth logic that was released in v2.21.0. For a list of individual services affected, please check the committed files.
+
+## __AWS WAFV2__
+- ### Features
+ - AWS WAF now supports configurable time windows for request aggregation with rate-based rules. Customers can now select time windows of 1 minute, 2 minutes or 10 minutes, in addition to the previously supported 5 minutes.
+
+## __Agents for Amazon Bedrock Runtime__
+- ### Features
+ - This release adds support to override search strategy performed by the Retrieve and RetrieveAndGenerate APIs for Amazon Bedrock Agents
+
+## __Amazon Elastic Compute Cloud__
+- ### Features
+ - This release increases the range of MaxResults for GetNetworkInsightsAccessScopeAnalysisFindings to 1,000.
+
+## __Amazon S3__
+- ### Bugfixes
+ - Fixed an issue in S3 multipart client that could cause `BlockingInputStreamAsyncRequestBody#writeInputStream` to get stuck if any of the multipart request fails. See [#4801](https://github.com/aws/aws-sdk-java-v2/issues/4801)
+
+# __2.24.12__ __2024-02-27__
+## __AWS Amplify UI Builder__
+- ### Features
+ - We have added the ability to tag resources after they are created
+
+## __AWS SDK for Java v2__
+- ### Bugfixes
+ - upgrade netty version to 4.1.107.Final
+ - Contributed by: [@sullis](https://github.com/sullis)
+
+## __Amazon S3__
+- ### Features
+ - Enable TransferListener when uploading with TransferManager with Java-based S3Client with multipart enabled
+
+## __Contributors__
+Special thanks to the following contributors to this release:
+
+[@sullis](https://github.com/sullis)
+# __2.24.11__ __2024-02-26__
+## __Amazon API Gateway__
+- ### Features
+ - Documentation updates for Amazon API Gateway.
+
+## __Amazon Relational Database Service__
+- ### Features
+ - This release adds support for gp3 data volumes for Multi-AZ DB Clusters.
+
+## __Elastic Disaster Recovery Service__
+- ### Features
+ - Added volume status to DescribeSourceServer replicated volumes.
+
+## __Managed Streaming for Kafka Connect__
+- ### Features
+ - Adds support for tagging, with new TagResource, UntagResource and ListTagsForResource APIs to manage tags and updates to existing APIs to allow tag on create. This release also adds support for the new DeleteWorkerConfiguration API.
+
+# __2.24.10__ __2024-02-23__
+## __AWS AppSync__
+- ### Features
+ - Documentation only updates for AppSync
+
+## __Amazon QLDB__
+- ### Features
+ - Clarify possible values for KmsKeyArn and EncryptionDescription.
+
+## __Amazon Relational Database Service__
+- ### Features
+ - Add pattern and length based validations for DBShardGroupIdentifier
+
+## __CloudWatch RUM__
+- ### Features
+ - Doc-only update for new RUM metrics that were added
+
+## __S3 Transfer Manager__
+- ### Features
+ - Enable multipart configuration by default when creating a new S3TranferManager instance using the .create() method
+ - Make Transfer Manager work by default with S3AsyncClient when multipart configuration is enabled.
+
+# __2.24.9__ __2024-02-22__
+## __AWS CRT-based S3 client__
+- ### Bugfixes
+ - Fixed memory leak issue when a request was cancelled in the AWS CRT-based S3 client.
+
+## __Amazon CloudWatch Internet Monitor__
+- ### Features
+ - This release adds IPv4 prefixes to health events
+
+## __Amazon Kinesis Video Streams__
+- ### Features
+ - Increasing NextToken parameter length restriction for List APIs from 512 to 1024.
+
+# __2.24.8__ __2024-02-21__
+## __AWS Elemental MediaLive__
+- ### Features
+ - MediaLive now supports the ability to restart pipelines in a running channel.
+
+## __AWS IoT Events__
+- ### Features
+ - Increase the maximum length of descriptions for Inputs, Detector Models, and Alarm Models
+
+## __AWS SDK for Java v2__
+- ### Bugfixes
+ - Add content-length header in Json and Xml Protocol Marshaller for String and Binary explicit Payloads.
+
+## __Amazon Lookout for Equipment__
+- ### Features
+ - This release adds a field exposing model quality to read APIs for models. It also adds a model quality field to the API response when creating an inference scheduler.
+
+## __Amazon Simple Systems Manager (SSM)__
+- ### Features
+ - This release adds support for sharing Systems Manager parameters with other AWS accounts.
+
+# __2.24.7__ __2024-02-20__
+## __AWS Lambda__
+- ### Features
+ - Add .NET 8 (dotnet8) Runtime support to AWS Lambda.
+
+## __Amazon DynamoDB__
+- ### Features
+ - Publishing quick fix for doc only update.
+
+## __Amazon Kinesis Firehose__
+- ### Features
+ - This release updates a few Firehose related APIs.
+
+# __2.24.6__ __2024-02-19__
+## __AWS Amplify__
+- ### Features
+ - This release contains API changes that enable users to configure their Amplify domains with their own custom SSL/TLS certificate.
+
+## __AWS Config__
+- ### Features
+ - Documentation updates for the AWS Config CLI
+
+## __AWS MediaTailor__
+- ### Features
+ - MediaTailor: marking #AdBreak.OffsetMillis as required.
+
+## __Amazon Interactive Video Service__
+- ### Features
+ - Changed description for latencyMode in Create/UpdateChannel and Channel/ChannelSummary.
+
+## __Amazon Keyspaces__
+- ### Features
+ - Documentation updates for Amazon Keyspaces
+
+## __Amazon S3__
+- ### Features
+ - Add support for pause/resume upload for TransferManager with Java-based S3Client that has multipart enabled
+
+## __chatbot__
+- ### Features
+ - This release adds support for AWS Chatbot. You can now monitor, operate, and troubleshoot your AWS resources with interactive ChatOps using the AWS SDK.
+
+# __2.24.5__ __2024-02-16__
+## __AWS Lambda__
+- ### Features
+ - Documentation-only updates for Lambda to clarify a number of existing actions and properties.
+
+## __AWS SDK for Java v2__
+- ### Features
+ - Updated endpoint and partition metadata.
+
+## __Amazon Connect Participant Service__
+- ### Features
+ - Doc only update to GetTranscript API reference guide to inform users about presence of events in the chat transcript.
+
+## __Amazon EMR__
+- ### Features
+ - adds fine grained control over Unhealthy Node Replacement to Amazon ElasticMapReduce
+
+## __Amazon Kinesis Firehose__
+- ### Features
+ - This release adds support for Data Message Extraction for decompressed CloudWatch logs, and to use a custom file extension or time zone for S3 destinations.
+
+## __Amazon Relational Database Service__
+- ### Features
+ - Doc only update for a valid option in DB parameter group
+
+## __Amazon Simple Notification Service__
+- ### Features
+ - This release marks phone numbers as sensitive inputs.
+
+# __2.24.4__ __2024-02-15__
+## __AWS Artifact__
+- ### Features
+ - This is the initial SDK release for AWS Artifact. AWS Artifact provides on-demand access to compliance and third-party compliance reports. This release includes access to List and Get reports, along with their metadata. This release also includes access to AWS Artifact notifications settings.
+
+## __AWS CodePipeline__
+- ### Features
+ - Add ability to override timeout on action level.
+
+## __AWS SDK for Java v2__
+- ### Features
+ - Updated endpoint and partition metadata.
+
+## __AWS Secrets Manager__
+- ### Features
+ - Doc only update for Secrets Manager
+
+## __Amazon Detective__
+- ### Features
+ - Doc only updates for content enhancement
+
+## __Amazon GuardDuty__
+- ### Features
+ - Marked fields IpAddressV4, PrivateIpAddress, Email as Sensitive.
+
+## __Amazon HealthLake__
+- ### Features
+ - This release adds a new response parameter, JobProgressReport, to the DescribeFHIRImportJob and ListFHIRImportJobs API operation. JobProgressReport provides details on the progress of the import job on the server.
+
+## __Amazon OpenSearch Service__
+- ### Features
+ - Adds additional supported instance types.
+
+## __Amazon Polly__
+- ### Features
+ - Amazon Polly adds 1 new voice - Burcu (tr-TR)
+
+## __Amazon SageMaker Service__
+- ### Features
+ - This release adds a new API UpdateClusterSoftware for SageMaker HyperPod. This API allows users to patch HyperPod clusters with latest platform softwares.
+
+# __2.24.3__ __2024-02-14__
+## __AWS Control Tower__
+- ### Features
+ - Adds support for new Baseline and EnabledBaseline APIs for automating multi-account governance.
+
+## __AWS SDK for Java v2__
+- ### Features
+ - Switching half of the AWS service clients onto the new SRA (Smithy Reference Architecture) identity and auth logic that was released in v2.21.0. For a list of individual services affected, please check the committed files.
+ - Updated endpoint and partition metadata.
+
+- ### Bugfixes
+ - Fixed an issue where NPE would be thrown if there was an empty event in the input for an event streaming operation.
+
+## __Amazon Lookout for Equipment__
+- ### Features
+ - This feature allows customers to see pointwise model diagnostics results for their models.
+
+## __Amazon Simple Storage Service__
+- ### Bugfixes
+ - Fix for Issue [#4912](https://github.com/aws/aws-sdk-java-v2/issues/4912) where client region with AWS_GLOBAL calls failed for cross region access.
+
+## __QBusiness__
+- ### Features
+ - This release adds the metadata-boosting feature, which allows customers to easily fine-tune the underlying ranking of retrieved RAG passages in order to optimize Q&A answer relevance. It also adds new feedback reasons for the PutFeedback API.
+
+# __2.24.2__ __2024-02-13__
+## __AWS Marketplace Catalog Service__
+- ### Features
+ - AWS Marketplace Catalog API now supports setting intent on requests
+
+## __AWS Resource Explorer__
+- ### Features
+ - Resource Explorer now uses newly supported IPv4 'amazonaws.com' endpoints by default.
+
+## __AWS SDK for Java v2__
+- ### Features
+ - Updated endpoint and partition metadata.
+
+## __Amazon DynamoDB__
+- ### Features
+ - Add additional logical operator ('and' and 'or') methods to DynamoDB Expression
+ - Contributed by: [@akiesler](https://github.com/akiesler)
+
+## __Amazon Lightsail__
+- ### Features
+ - This release adds support to upgrade the major version of a database.
+
+## __Amazon S3__
+- ### Features
+ - Automatically trim object metadata keys of whitespace for `PutObject` and `CreateMultipartUpload`.
+
+## __Amazon Security Lake__
+- ### Features
+ - Documentation updates for Security Lake
+
+## __URL Connection Client__
+- ### Bugfixes
+ - Fix a bug where headers with multiple values don't have all values for that header sent on the wire. This leads to signature mismatch exceptions.
+
+ Fixes [#4746](https://github.com/aws/aws-sdk-java-v2/issues/4746).
+
+## __Contributors__
+Special thanks to the following contributors to this release:
+
+[@akiesler](https://github.com/akiesler)
+# __2.24.1__ __2024-02-12__
+## __AWS AppSync__
+- ### Features
+ - Adds support for new options on GraphqlAPIs, Resolvers and Data Sources for emitting Amazon CloudWatch metrics for enhanced monitoring of AppSync APIs.
+
+## __Amazon CloudWatch__
+- ### Features
+ - This release enables PutMetricData API request payload compression by default.
+
+## __Amazon Neptune Graph__
+- ### Features
+ - Adding a new option "parameters" for data plane api ExecuteQuery to support running parameterized query via SDK.
+
+## __Amazon Route 53 Domains__
+- ### Features
+ - This release adds bill contact support for RegisterDomain, TransferDomain, UpdateDomainContact and GetDomainDetail API.
+
+# __2.24.0__ __2024-02-09__
+## __AWS Batch__
+- ### Features
+ - This feature allows Batch to support configuration of repository credentials for jobs running on ECS
+
+## __AWS IoT__
+- ### Features
+ - This release allows AWS IoT Core users to enable Online Certificate Status Protocol (OCSP) Stapling for TLS X.509 Server Certificates when creating and updating AWS IoT Domain Configurations with Custom Domain.
+
+## __AWS Price List Service__
+- ### Features
+ - Add Throttling Exception to all APIs.
+
+## __AWS SDK for Java v2__
+- ### Features
+ - Updated endpoint and partition metadata.
+ - Updated internal core logic for signing properties with non-default values to be codegen based instead of set at runtime.
+
+## __Amazon EC2 Container Service__
+- ### Features
+ - Documentation only update for Amazon ECS.
+
+## __Amazon Prometheus Service__
+- ### Features
+ - Overall documentation updates.
+
+## __Amazon S3__
+- ### Features
+ - Overriding signer properties for S3 through the deprecated non-public execution attributes in S3SignerExecutionAttribute no longer works with this release. The recommended approach is to use plugins in order to change these settings.
+
+- ### Bugfixes
+ - Fix bug where PUT fails when using SSE-C with Checksum when using S3AsyncClient with multipart enabled. Enable CRC32 for putObject when using multipart client if checksum validation is not disabled and checksum is not set by user
+
+## __Braket__
+- ### Features
+ - Creating a job will result in DeviceOfflineException when using an offline device, and DeviceRetiredException when using a retired device.
+
+## __Cost Optimization Hub__
+- ### Features
+ - Adding includeMemberAccounts field to the response of ListEnrollmentStatuses API.
diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml
index 215073cbf51e..66800e6af9ca 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.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
../pom.xml
codegen-lite-maven-plugin
diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml
index b517957305a6..e9f7dcfbaf34 100644
--- a/codegen-lite/pom.xml
+++ b/codegen-lite/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.24.14-SNAPSHOT
+ 2.25.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 eb081fc08d96..560f090ca945 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.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
../pom.xml
codegen-maven-plugin
diff --git a/codegen/pom.xml b/codegen/pom.xml
index 18a63a0ded37..6ad3d5e7fa88 100644
--- a/codegen/pom.xml
+++ b/codegen/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
codegen
AWS Java SDK :: Code Generator
diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml
index bf50c6f5a2bf..2ba7e97ec4a6 100644
--- a/core/annotations/pom.xml
+++ b/core/annotations/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
4.0.0
diff --git a/core/arns/pom.xml b/core/arns/pom.xml
index 6104c03f78dd..74ba63890a83 100644
--- a/core/arns/pom.xml
+++ b/core/arns/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
4.0.0
diff --git a/core/auth-crt/pom.xml b/core/auth-crt/pom.xml
index 213d663259a4..c71d3ce7c1c7 100644
--- a/core/auth-crt/pom.xml
+++ b/core/auth-crt/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
auth-crt
diff --git a/core/auth/pom.xml b/core/auth/pom.xml
index dd05a35c7b6f..6d839aaf8e56 100644
--- a/core/auth/pom.xml
+++ b/core/auth/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
auth
diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml
index 71647fd206bd..b3b16d56e4b1 100644
--- a/core/aws-core/pom.xml
+++ b/core/aws-core/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
aws-core
diff --git a/core/checksums-spi/pom.xml b/core/checksums-spi/pom.xml
index 7af1ce62ba7d..a9d75689bf9e 100644
--- a/core/checksums-spi/pom.xml
+++ b/core/checksums-spi/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
checksums-spi
diff --git a/core/checksums/pom.xml b/core/checksums/pom.xml
index c5f433ed19ef..7321c7a65312 100644
--- a/core/checksums/pom.xml
+++ b/core/checksums/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
checksums
diff --git a/core/crt-core/pom.xml b/core/crt-core/pom.xml
index 3d3e7d671bf8..2b00f6c13338 100644
--- a/core/crt-core/pom.xml
+++ b/core/crt-core/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
core
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
crt-core
diff --git a/core/endpoints-spi/pom.xml b/core/endpoints-spi/pom.xml
index 6f77856320a4..b6bccc1674ac 100644
--- a/core/endpoints-spi/pom.xml
+++ b/core/endpoints-spi/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
4.0.0
diff --git a/core/http-auth-aws-crt/pom.xml b/core/http-auth-aws-crt/pom.xml
index 5ce8e1e2fd85..f529a79aac55 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.24.14-SNAPSHOT
+ 2.25.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 65f150a653a1..c925f8dc3ccb 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.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
http-auth-aws-eventstream
diff --git a/core/http-auth-aws/pom.xml b/core/http-auth-aws/pom.xml
index 1f7a7c9a040f..68c41352dee1 100644
--- a/core/http-auth-aws/pom.xml
+++ b/core/http-auth-aws/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
http-auth-aws
diff --git a/core/http-auth-spi/pom.xml b/core/http-auth-spi/pom.xml
index 38f7559e2e5b..3a97941d1deb 100644
--- a/core/http-auth-spi/pom.xml
+++ b/core/http-auth-spi/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
http-auth-spi
diff --git a/core/http-auth/pom.xml b/core/http-auth/pom.xml
index fdaad3f4ae78..2843a071d41d 100644
--- a/core/http-auth/pom.xml
+++ b/core/http-auth/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
http-auth
diff --git a/core/identity-spi/pom.xml b/core/identity-spi/pom.xml
index 716331c05f64..36e03bbafb95 100644
--- a/core/identity-spi/pom.xml
+++ b/core/identity-spi/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
identity-spi
diff --git a/core/imds/pom.xml b/core/imds/pom.xml
index e88e014600f3..a1dd781440fc 100644
--- a/core/imds/pom.xml
+++ b/core/imds/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
4.0.0
imds
diff --git a/core/json-utils/pom.xml b/core/json-utils/pom.xml
index a67493130bb6..29c56d071ca1 100644
--- a/core/json-utils/pom.xml
+++ b/core/json-utils/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
4.0.0
diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml
index 921523d1c281..9056352d1d47 100644
--- a/core/metrics-spi/pom.xml
+++ b/core/metrics-spi/pom.xml
@@ -5,7 +5,7 @@
core
software.amazon.awssdk
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
4.0.0
diff --git a/core/pom.xml b/core/pom.xml
index f69cfd1a1b7d..a144fd2dd7a7 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
core
diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml
index 03278ae81dad..bcb0fc04bffa 100644
--- a/core/profiles/pom.xml
+++ b/core/profiles/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
profiles
diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml
index ba15bd427150..40478721f3c0 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.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
4.0.0
diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml
index 76dc10a0289d..36ac37ac2fd3 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.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
4.0.0
diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml
index f5ff1ae3e427..b71022b8364c 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.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
4.0.0
diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml
index b310cf4525ac..615c0e0e4e64 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.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
4.0.0
diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml
index 89c3d4230b0c..3c6e8df97ff9 100644
--- a/core/protocols/pom.xml
+++ b/core/protocols/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
4.0.0
diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml
index 9a3816f0bbef..b024438014de 100644
--- a/core/protocols/protocol-core/pom.xml
+++ b/core/protocols/protocol-core/pom.xml
@@ -20,7 +20,7 @@
protocols
software.amazon.awssdk
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
4.0.0
diff --git a/core/regions/pom.xml b/core/regions/pom.xml
index 57a633bbaf7c..e7e5aced66f5 100644
--- a/core/regions/pom.xml
+++ b/core/regions/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
regions
diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml
index 1d8f3ee986bc..c459f0a4b456 100644
--- a/core/sdk-core/pom.xml
+++ b/core/sdk-core/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
core
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
sdk-core
AWS Java SDK :: SDK Core
diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml
index 85d37454d35d..f0799ce832d9 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.24.14-SNAPSHOT
+ 2.25.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 7581e9c7a393..ef3a43f18bac 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.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
apache-client
diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml
index e2b3ce88c3db..efcb7a8f7fd4 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.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
4.0.0
diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml
index ddfbb2d7f322..a32b8e9056c5 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.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
4.0.0
diff --git a/http-clients/pom.xml b/http-clients/pom.xml
index 25eca12ef633..eb4bc09adc23 100644
--- a/http-clients/pom.xml
+++ b/http-clients/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
4.0.0
diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml
index fbf100ac000a..2720886b2061 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.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
4.0.0
diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml
index eefe0fed9457..092b746134a2 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.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
cloudwatch-metric-publisher
diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml
index 4168aa9a1cf3..29cd5b81f846 100644
--- a/metric-publishers/pom.xml
+++ b/metric-publishers/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
metric-publishers
diff --git a/pom.xml b/pom.xml
index eb5b327b7e50..58abe6ed3ef0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -20,7 +20,7 @@
4.0.0
software.amazon.awssdk
aws-sdk-java-pom
- 2.24.14-SNAPSHOT
+ 2.25.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 021deac5d86d..a9461a06b0a5 100644
--- a/release-scripts/pom.xml
+++ b/release-scripts/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
../pom.xml
release-scripts
diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml
index 212e8a9f3e1d..dca7c8ac515c 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.24.14-SNAPSHOT
+ 2.25.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 cfc2b06e2a68..dea832abb43e 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.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
../../pom.xml
iam-policy-builder
diff --git a/services-custom/pom.xml b/services-custom/pom.xml
index a0708a308cca..09dc64bfb743 100644
--- a/services-custom/pom.xml
+++ b/services-custom/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
services-custom
AWS Java SDK :: Custom Services
diff --git a/services-custom/s3-transfer-manager/pom.xml b/services-custom/s3-transfer-manager/pom.xml
index 8c933473a149..fe0382103ecb 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.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
../../pom.xml
s3-transfer-manager
diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml
index 73eb8cdbd99f..9962ad9c41cc 100644
--- a/services/accessanalyzer/pom.xml
+++ b/services/accessanalyzer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
accessanalyzer
AWS Java SDK :: Services :: AccessAnalyzer
diff --git a/services/account/pom.xml b/services/account/pom.xml
index a6219dc0835c..45ad4ee45c5b 100644
--- a/services/account/pom.xml
+++ b/services/account/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
account
AWS Java SDK :: Services :: Account
diff --git a/services/acm/pom.xml b/services/acm/pom.xml
index 6c86e53fa90e..e0d4b352d6a2 100644
--- a/services/acm/pom.xml
+++ b/services/acm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
acm
AWS Java SDK :: Services :: AWS Certificate Manager
diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml
index 8ca096a84cf0..f06694f472e6 100644
--- a/services/acmpca/pom.xml
+++ b/services/acmpca/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
acmpca
AWS Java SDK :: Services :: ACM PCA
diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml
index 6611c15ef03e..ab70efff332d 100644
--- a/services/alexaforbusiness/pom.xml
+++ b/services/alexaforbusiness/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
4.0.0
alexaforbusiness
diff --git a/services/amp/pom.xml b/services/amp/pom.xml
index 19b219c6b477..9f613dd5f6b1 100644
--- a/services/amp/pom.xml
+++ b/services/amp/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
amp
AWS Java SDK :: Services :: Amp
diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml
index f46d1add60c7..d2afa6213f8b 100644
--- a/services/amplify/pom.xml
+++ b/services/amplify/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
amplify
AWS Java SDK :: Services :: Amplify
diff --git a/services/amplifybackend/pom.xml b/services/amplifybackend/pom.xml
index d9e82d79090d..8c086dbfaf8c 100644
--- a/services/amplifybackend/pom.xml
+++ b/services/amplifybackend/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
amplifybackend
AWS Java SDK :: Services :: Amplify Backend
diff --git a/services/amplifyuibuilder/pom.xml b/services/amplifyuibuilder/pom.xml
index 4c1ad0edd39c..ea8eb888ca38 100644
--- a/services/amplifyuibuilder/pom.xml
+++ b/services/amplifyuibuilder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
amplifyuibuilder
AWS Java SDK :: Services :: Amplify UI Builder
diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml
index 9718321bbeb7..000494707ad0 100644
--- a/services/apigateway/pom.xml
+++ b/services/apigateway/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
apigateway
AWS Java SDK :: Services :: Amazon API Gateway
diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml
index fe420bb6c430..8a47cee06860 100644
--- a/services/apigatewaymanagementapi/pom.xml
+++ b/services/apigatewaymanagementapi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
apigatewaymanagementapi
AWS Java SDK :: Services :: ApiGatewayManagementApi
diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml
index 72ab88ac5adc..c8c1a5858796 100644
--- a/services/apigatewayv2/pom.xml
+++ b/services/apigatewayv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
apigatewayv2
AWS Java SDK :: Services :: ApiGatewayV2
diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml
index 238649c4e4b4..c03529b238d2 100644
--- a/services/appconfig/pom.xml
+++ b/services/appconfig/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
appconfig
AWS Java SDK :: Services :: AppConfig
diff --git a/services/appconfigdata/pom.xml b/services/appconfigdata/pom.xml
index 05d64a3ddd35..54d34b848c95 100644
--- a/services/appconfigdata/pom.xml
+++ b/services/appconfigdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
appconfigdata
AWS Java SDK :: Services :: App Config Data
diff --git a/services/appfabric/pom.xml b/services/appfabric/pom.xml
index 6c5c2bb47861..c0b1b879b9ee 100644
--- a/services/appfabric/pom.xml
+++ b/services/appfabric/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
appfabric
AWS Java SDK :: Services :: App Fabric
diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml
index b63433636e24..56f8b1c75a07 100644
--- a/services/appflow/pom.xml
+++ b/services/appflow/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
appflow
AWS Java SDK :: Services :: Appflow
diff --git a/services/appintegrations/pom.xml b/services/appintegrations/pom.xml
index ea8b50f53137..2f2420eea2a7 100644
--- a/services/appintegrations/pom.xml
+++ b/services/appintegrations/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
appintegrations
AWS Java SDK :: Services :: App Integrations
diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml
index 85978e1d0a74..6b98372f6951 100644
--- a/services/applicationautoscaling/pom.xml
+++ b/services/applicationautoscaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
applicationautoscaling
AWS Java SDK :: Services :: AWS Application Auto Scaling
diff --git a/services/applicationcostprofiler/pom.xml b/services/applicationcostprofiler/pom.xml
index 6a36ff7bb2d9..9f23c2b9c0fa 100644
--- a/services/applicationcostprofiler/pom.xml
+++ b/services/applicationcostprofiler/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
applicationcostprofiler
AWS Java SDK :: Services :: Application Cost Profiler
diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml
index 75c2cf51e174..415a64aa56db 100644
--- a/services/applicationdiscovery/pom.xml
+++ b/services/applicationdiscovery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
applicationdiscovery
AWS Java SDK :: Services :: AWS Application Discovery Service
diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml
index 054a4478062a..7dbfdae9c1f6 100644
--- a/services/applicationinsights/pom.xml
+++ b/services/applicationinsights/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
applicationinsights
AWS Java SDK :: Services :: Application Insights
diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml
index 9b7e5d31f341..49ac007393c8 100644
--- a/services/appmesh/pom.xml
+++ b/services/appmesh/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
appmesh
AWS Java SDK :: Services :: App Mesh
diff --git a/services/apprunner/pom.xml b/services/apprunner/pom.xml
index 279a891f320e..52f8789d188d 100644
--- a/services/apprunner/pom.xml
+++ b/services/apprunner/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
apprunner
AWS Java SDK :: Services :: App Runner
diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml
index 64ef9130533f..6e96f5c7aace 100644
--- a/services/appstream/pom.xml
+++ b/services/appstream/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
appstream
AWS Java SDK :: Services :: Amazon AppStream
diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml
index 7a6181227e2c..2c98f89f57ed 100644
--- a/services/appsync/pom.xml
+++ b/services/appsync/pom.xml
@@ -21,7 +21,7 @@
services
software.amazon.awssdk
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
appsync
diff --git a/services/arczonalshift/pom.xml b/services/arczonalshift/pom.xml
index c8013ed6f708..8e080f98fdbb 100644
--- a/services/arczonalshift/pom.xml
+++ b/services/arczonalshift/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
arczonalshift
AWS Java SDK :: Services :: ARC Zonal Shift
diff --git a/services/artifact/pom.xml b/services/artifact/pom.xml
index d731ed91d54c..7f271101713b 100644
--- a/services/artifact/pom.xml
+++ b/services/artifact/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
artifact
AWS Java SDK :: Services :: Artifact
diff --git a/services/athena/pom.xml b/services/athena/pom.xml
index 372b16c174d0..63337d0146b5 100644
--- a/services/athena/pom.xml
+++ b/services/athena/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
athena
AWS Java SDK :: Services :: Amazon Athena
diff --git a/services/auditmanager/pom.xml b/services/auditmanager/pom.xml
index 397086f4eb4b..294857b68272 100644
--- a/services/auditmanager/pom.xml
+++ b/services/auditmanager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
auditmanager
AWS Java SDK :: Services :: Audit Manager
diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml
index 0e87337c7797..4c918c097704 100644
--- a/services/autoscaling/pom.xml
+++ b/services/autoscaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
autoscaling
AWS Java SDK :: Services :: Auto Scaling
diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml
index 800b4d0e8fe2..44206471fc54 100644
--- a/services/autoscalingplans/pom.xml
+++ b/services/autoscalingplans/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
autoscalingplans
AWS Java SDK :: Services :: Auto Scaling Plans
diff --git a/services/b2bi/pom.xml b/services/b2bi/pom.xml
index 39523f445020..5f9050e286e8 100644
--- a/services/b2bi/pom.xml
+++ b/services/b2bi/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
b2bi
AWS Java SDK :: Services :: B2 Bi
diff --git a/services/backup/pom.xml b/services/backup/pom.xml
index ca4ea0f93407..4d345fd2a3a3 100644
--- a/services/backup/pom.xml
+++ b/services/backup/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
backup
AWS Java SDK :: Services :: Backup
diff --git a/services/backupgateway/pom.xml b/services/backupgateway/pom.xml
index bca8e811c0a7..cf4d69ddda06 100644
--- a/services/backupgateway/pom.xml
+++ b/services/backupgateway/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
backupgateway
AWS Java SDK :: Services :: Backup Gateway
diff --git a/services/backupstorage/pom.xml b/services/backupstorage/pom.xml
index bd7e3af3ba60..9c424acde003 100644
--- a/services/backupstorage/pom.xml
+++ b/services/backupstorage/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
backupstorage
AWS Java SDK :: Services :: Backup Storage
diff --git a/services/batch/pom.xml b/services/batch/pom.xml
index ce99a5e54420..342c7b495973 100644
--- a/services/batch/pom.xml
+++ b/services/batch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
batch
AWS Java SDK :: Services :: AWS Batch
diff --git a/services/bcmdataexports/pom.xml b/services/bcmdataexports/pom.xml
index e0457b337ac9..5709b9f0a68b 100644
--- a/services/bcmdataexports/pom.xml
+++ b/services/bcmdataexports/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
bcmdataexports
AWS Java SDK :: Services :: BCM Data Exports
diff --git a/services/bedrock/pom.xml b/services/bedrock/pom.xml
index 5c39bf29edda..7ca0f85370f4 100644
--- a/services/bedrock/pom.xml
+++ b/services/bedrock/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
bedrock
AWS Java SDK :: Services :: Bedrock
diff --git a/services/bedrockagent/pom.xml b/services/bedrockagent/pom.xml
index 7185d4080d1a..7b90a628114d 100644
--- a/services/bedrockagent/pom.xml
+++ b/services/bedrockagent/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
bedrockagent
AWS Java SDK :: Services :: Bedrock Agent
diff --git a/services/bedrockagentruntime/pom.xml b/services/bedrockagentruntime/pom.xml
index 315508fede08..02f568a86c93 100644
--- a/services/bedrockagentruntime/pom.xml
+++ b/services/bedrockagentruntime/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
bedrockagentruntime
AWS Java SDK :: Services :: Bedrock Agent Runtime
diff --git a/services/bedrockruntime/pom.xml b/services/bedrockruntime/pom.xml
index f112b1473e37..68c893b6a355 100644
--- a/services/bedrockruntime/pom.xml
+++ b/services/bedrockruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
bedrockruntime
AWS Java SDK :: Services :: Bedrock Runtime
diff --git a/services/billingconductor/pom.xml b/services/billingconductor/pom.xml
index 99df8dd5f35a..8e7636423f3c 100644
--- a/services/billingconductor/pom.xml
+++ b/services/billingconductor/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
billingconductor
AWS Java SDK :: Services :: Billingconductor
diff --git a/services/braket/pom.xml b/services/braket/pom.xml
index cafeae71ac2b..63cfe67d2379 100644
--- a/services/braket/pom.xml
+++ b/services/braket/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
braket
AWS Java SDK :: Services :: Braket
diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml
index 939e0b6142a0..ed366aa2dfce 100644
--- a/services/budgets/pom.xml
+++ b/services/budgets/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
budgets
AWS Java SDK :: Services :: AWS Budgets
diff --git a/services/chatbot/pom.xml b/services/chatbot/pom.xml
index 0e05fac513be..3c191cf73eba 100644
--- a/services/chatbot/pom.xml
+++ b/services/chatbot/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
chatbot
AWS Java SDK :: Services :: Chatbot
diff --git a/services/chime/pom.xml b/services/chime/pom.xml
index 87edccbc81f3..db845d2ffaa4 100644
--- a/services/chime/pom.xml
+++ b/services/chime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
chime
AWS Java SDK :: Services :: Chime
diff --git a/services/chimesdkidentity/pom.xml b/services/chimesdkidentity/pom.xml
index 940156688ca7..2d2571cc5c40 100644
--- a/services/chimesdkidentity/pom.xml
+++ b/services/chimesdkidentity/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
chimesdkidentity
AWS Java SDK :: Services :: Chime SDK Identity
diff --git a/services/chimesdkmediapipelines/pom.xml b/services/chimesdkmediapipelines/pom.xml
index 5485a13d86ee..296763dd1aea 100644
--- a/services/chimesdkmediapipelines/pom.xml
+++ b/services/chimesdkmediapipelines/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
chimesdkmediapipelines
AWS Java SDK :: Services :: Chime SDK Media Pipelines
diff --git a/services/chimesdkmeetings/pom.xml b/services/chimesdkmeetings/pom.xml
index 9d5f0bcedefb..924f0c0c626e 100644
--- a/services/chimesdkmeetings/pom.xml
+++ b/services/chimesdkmeetings/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
chimesdkmeetings
AWS Java SDK :: Services :: Chime SDK Meetings
diff --git a/services/chimesdkmessaging/pom.xml b/services/chimesdkmessaging/pom.xml
index 8c013bae9b93..0eaf72a10edd 100644
--- a/services/chimesdkmessaging/pom.xml
+++ b/services/chimesdkmessaging/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
chimesdkmessaging
AWS Java SDK :: Services :: Chime SDK Messaging
diff --git a/services/chimesdkvoice/pom.xml b/services/chimesdkvoice/pom.xml
index dcd03ce53b4a..356a4956c7ec 100644
--- a/services/chimesdkvoice/pom.xml
+++ b/services/chimesdkvoice/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
chimesdkvoice
AWS Java SDK :: Services :: Chime SDK Voice
diff --git a/services/cleanrooms/pom.xml b/services/cleanrooms/pom.xml
index 1617e240ebe4..b1b23c413375 100644
--- a/services/cleanrooms/pom.xml
+++ b/services/cleanrooms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
cleanrooms
AWS Java SDK :: Services :: Clean Rooms
diff --git a/services/cleanroomsml/pom.xml b/services/cleanroomsml/pom.xml
index 112794bd39e6..eecce01eb168 100644
--- a/services/cleanroomsml/pom.xml
+++ b/services/cleanroomsml/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
cleanroomsml
AWS Java SDK :: Services :: Clean Rooms ML
diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml
index 66653ecb7d92..b9c433e9105a 100644
--- a/services/cloud9/pom.xml
+++ b/services/cloud9/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
4.0.0
cloud9
diff --git a/services/cloudcontrol/pom.xml b/services/cloudcontrol/pom.xml
index 49247e25aac3..560fbc093903 100644
--- a/services/cloudcontrol/pom.xml
+++ b/services/cloudcontrol/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
cloudcontrol
AWS Java SDK :: Services :: Cloud Control
diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml
index 1b292c0eac05..e01ed6b9ee9d 100644
--- a/services/clouddirectory/pom.xml
+++ b/services/clouddirectory/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
clouddirectory
AWS Java SDK :: Services :: Amazon CloudDirectory
diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml
index 66634889ec8f..7215948e247c 100644
--- a/services/cloudformation/pom.xml
+++ b/services/cloudformation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
cloudformation
AWS Java SDK :: Services :: AWS CloudFormation
diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml
index 950db036992f..916c9f6b1216 100644
--- a/services/cloudfront/pom.xml
+++ b/services/cloudfront/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
cloudfront
AWS Java SDK :: Services :: Amazon CloudFront
diff --git a/services/cloudfrontkeyvaluestore/pom.xml b/services/cloudfrontkeyvaluestore/pom.xml
index 3e6a26f76ed9..acfcab5cc5f0 100644
--- a/services/cloudfrontkeyvaluestore/pom.xml
+++ b/services/cloudfrontkeyvaluestore/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.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 743ef1d1e151..ed7f4db2c777 100644
--- a/services/cloudhsm/pom.xml
+++ b/services/cloudhsm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
cloudhsm
AWS Java SDK :: Services :: AWS CloudHSM
diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml
index 32d0d76655ea..e23620f33f99 100644
--- a/services/cloudhsmv2/pom.xml
+++ b/services/cloudhsmv2/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
4.0.0
cloudhsmv2
diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml
index def09fd00437..cfff349de110 100644
--- a/services/cloudsearch/pom.xml
+++ b/services/cloudsearch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
cloudsearch
AWS Java SDK :: Services :: Amazon CloudSearch
diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml
index 4b01b3d6b298..68b5fc1811a1 100644
--- a/services/cloudsearchdomain/pom.xml
+++ b/services/cloudsearchdomain/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
cloudsearchdomain
AWS Java SDK :: Services :: Amazon CloudSearch Domain
diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml
index 3f67ab4f7569..a651f5a8f452 100644
--- a/services/cloudtrail/pom.xml
+++ b/services/cloudtrail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
cloudtrail
AWS Java SDK :: Services :: AWS CloudTrail
diff --git a/services/cloudtraildata/pom.xml b/services/cloudtraildata/pom.xml
index 31782f088034..b6999d91fd77 100644
--- a/services/cloudtraildata/pom.xml
+++ b/services/cloudtraildata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
cloudtraildata
AWS Java SDK :: Services :: Cloud Trail Data
diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml
index 52b45c6aaaee..265dac278cc3 100644
--- a/services/cloudwatch/pom.xml
+++ b/services/cloudwatch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
cloudwatch
AWS Java SDK :: Services :: Amazon CloudWatch
diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml
index c7e032d0c600..45587659a50d 100644
--- a/services/cloudwatchevents/pom.xml
+++ b/services/cloudwatchevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
cloudwatchevents
AWS Java SDK :: Services :: Amazon CloudWatch Events
diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml
index ff165dd6ce6a..2167b275249f 100644
--- a/services/cloudwatchlogs/pom.xml
+++ b/services/cloudwatchlogs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
cloudwatchlogs
AWS Java SDK :: Services :: Amazon CloudWatch Logs
diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml
index 6ecc4f952665..905a4ff51d09 100644
--- a/services/codeartifact/pom.xml
+++ b/services/codeartifact/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
codeartifact
AWS Java SDK :: Services :: Codeartifact
diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml
index d44876773a1c..52c70a61b71e 100644
--- a/services/codebuild/pom.xml
+++ b/services/codebuild/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
codebuild
AWS Java SDK :: Services :: AWS Code Build
diff --git a/services/codecatalyst/pom.xml b/services/codecatalyst/pom.xml
index 22dc2301fbe8..3c6345b79b90 100644
--- a/services/codecatalyst/pom.xml
+++ b/services/codecatalyst/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
codecatalyst
AWS Java SDK :: Services :: Code Catalyst
diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml
index b98605e3f8b1..c009071ebe9c 100644
--- a/services/codecommit/pom.xml
+++ b/services/codecommit/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
codecommit
AWS Java SDK :: Services :: AWS CodeCommit
diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml
index d255771bb2e4..c59994d0afaf 100644
--- a/services/codedeploy/pom.xml
+++ b/services/codedeploy/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
codedeploy
AWS Java SDK :: Services :: AWS CodeDeploy
diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml
index b523d5b37ddc..9d6d570bc0d7 100644
--- a/services/codeguruprofiler/pom.xml
+++ b/services/codeguruprofiler/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
codeguruprofiler
AWS Java SDK :: Services :: CodeGuruProfiler
diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml
index 6d763760917a..b235ef5335f7 100644
--- a/services/codegurureviewer/pom.xml
+++ b/services/codegurureviewer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
codegurureviewer
AWS Java SDK :: Services :: CodeGuru Reviewer
diff --git a/services/codegurusecurity/pom.xml b/services/codegurusecurity/pom.xml
index ab9c65f215d2..f7963f6bcb93 100644
--- a/services/codegurusecurity/pom.xml
+++ b/services/codegurusecurity/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
codegurusecurity
AWS Java SDK :: Services :: Code Guru Security
diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml
index 35f7fb88015b..d8abb38b0ede 100644
--- a/services/codepipeline/pom.xml
+++ b/services/codepipeline/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
codepipeline
AWS Java SDK :: Services :: AWS CodePipeline
diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml
index 6764227f9626..5c4a0d94862f 100644
--- a/services/codestar/pom.xml
+++ b/services/codestar/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
codestar
AWS Java SDK :: Services :: AWS CodeStar
diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml
index 50f2b5239223..f5c3586c23cb 100644
--- a/services/codestarconnections/pom.xml
+++ b/services/codestarconnections/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
codestarconnections
AWS Java SDK :: Services :: CodeStar connections
diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml
index 08432f14a358..30506ee67273 100644
--- a/services/codestarnotifications/pom.xml
+++ b/services/codestarnotifications/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
codestarnotifications
AWS Java SDK :: Services :: Codestar Notifications
diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml
index 7cd6782cd885..8f9038d45af0 100644
--- a/services/cognitoidentity/pom.xml
+++ b/services/cognitoidentity/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
cognitoidentity
AWS Java SDK :: Services :: Amazon Cognito Identity
diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml
index 97c9ddaabd7b..067e5519d35e 100644
--- a/services/cognitoidentityprovider/pom.xml
+++ b/services/cognitoidentityprovider/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.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 caa7d6671ce8..596655c00ad8 100644
--- a/services/cognitosync/pom.xml
+++ b/services/cognitosync/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
cognitosync
AWS Java SDK :: Services :: Amazon Cognito Sync
diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml
index 117deab6ed73..b891a4b7b46d 100644
--- a/services/comprehend/pom.xml
+++ b/services/comprehend/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
4.0.0
comprehend
diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml
index 0141fb891f27..6e5a5bbe84f3 100644
--- a/services/comprehendmedical/pom.xml
+++ b/services/comprehendmedical/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
comprehendmedical
AWS Java SDK :: Services :: ComprehendMedical
diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml
index 8d2ade4f4c7f..1102dd58b9f1 100644
--- a/services/computeoptimizer/pom.xml
+++ b/services/computeoptimizer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
computeoptimizer
AWS Java SDK :: Services :: Compute Optimizer
diff --git a/services/config/pom.xml b/services/config/pom.xml
index 3eb50045e29c..32c576cf22d5 100644
--- a/services/config/pom.xml
+++ b/services/config/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
config
AWS Java SDK :: Services :: AWS Config
diff --git a/services/connect/pom.xml b/services/connect/pom.xml
index 8e50ee381638..5c104989f11f 100644
--- a/services/connect/pom.xml
+++ b/services/connect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
connect
AWS Java SDK :: Services :: Connect
diff --git a/services/connectcampaigns/pom.xml b/services/connectcampaigns/pom.xml
index 2f78b83ebea5..d64c1fa0d296 100644
--- a/services/connectcampaigns/pom.xml
+++ b/services/connectcampaigns/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
connectcampaigns
AWS Java SDK :: Services :: Connect Campaigns
diff --git a/services/connectcases/pom.xml b/services/connectcases/pom.xml
index 43136d8c1457..21c55d46e3c8 100644
--- a/services/connectcases/pom.xml
+++ b/services/connectcases/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
connectcases
AWS Java SDK :: Services :: Connect Cases
diff --git a/services/connectcontactlens/pom.xml b/services/connectcontactlens/pom.xml
index 49742f8c0385..ac6d27703b92 100644
--- a/services/connectcontactlens/pom.xml
+++ b/services/connectcontactlens/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
connectcontactlens
AWS Java SDK :: Services :: Connect Contact Lens
diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml
index 529a167703ca..4d1af035d785 100644
--- a/services/connectparticipant/pom.xml
+++ b/services/connectparticipant/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
connectparticipant
AWS Java SDK :: Services :: ConnectParticipant
diff --git a/services/controltower/pom.xml b/services/controltower/pom.xml
index bd703919f91f..560eeb016b1c 100644
--- a/services/controltower/pom.xml
+++ b/services/controltower/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
controltower
AWS Java SDK :: Services :: Control Tower
diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml
index b270fe44c8b6..61a0672b7915 100644
--- a/services/costandusagereport/pom.xml
+++ b/services/costandusagereport/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.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 4755653f88d0..144a712afa8f 100644
--- a/services/costexplorer/pom.xml
+++ b/services/costexplorer/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
4.0.0
costexplorer
diff --git a/services/costoptimizationhub/pom.xml b/services/costoptimizationhub/pom.xml
index 530ac56ead9d..85fd5aff0f08 100644
--- a/services/costoptimizationhub/pom.xml
+++ b/services/costoptimizationhub/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
costoptimizationhub
AWS Java SDK :: Services :: Cost Optimization Hub
diff --git a/services/customerprofiles/pom.xml b/services/customerprofiles/pom.xml
index 1a0ac42664ed..941ad0296ca7 100644
--- a/services/customerprofiles/pom.xml
+++ b/services/customerprofiles/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
customerprofiles
AWS Java SDK :: Services :: Customer Profiles
diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml
index 00f7a881ba7f..49d25bd1d536 100644
--- a/services/databasemigration/pom.xml
+++ b/services/databasemigration/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
databasemigration
AWS Java SDK :: Services :: AWS Database Migration Service
diff --git a/services/databrew/pom.xml b/services/databrew/pom.xml
index 723e9971f29d..928723ca2613 100644
--- a/services/databrew/pom.xml
+++ b/services/databrew/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
databrew
AWS Java SDK :: Services :: Data Brew
diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml
index 3b00dbdc4545..b627d5086aec 100644
--- a/services/dataexchange/pom.xml
+++ b/services/dataexchange/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
dataexchange
AWS Java SDK :: Services :: DataExchange
diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml
index fad1adf4ef93..b42a66bd6314 100644
--- a/services/datapipeline/pom.xml
+++ b/services/datapipeline/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
datapipeline
AWS Java SDK :: Services :: AWS Data Pipeline
diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml
index dad3e1047d9d..df6c9718c02c 100644
--- a/services/datasync/pom.xml
+++ b/services/datasync/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
datasync
AWS Java SDK :: Services :: DataSync
diff --git a/services/datazone/pom.xml b/services/datazone/pom.xml
index 06bc53c1d92e..ed797fec6f93 100644
--- a/services/datazone/pom.xml
+++ b/services/datazone/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
datazone
AWS Java SDK :: Services :: Data Zone
diff --git a/services/dax/pom.xml b/services/dax/pom.xml
index 243caac07a76..f70968caa045 100644
--- a/services/dax/pom.xml
+++ b/services/dax/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
dax
AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX)
diff --git a/services/detective/pom.xml b/services/detective/pom.xml
index 9d537cc619c8..d4672a854ba7 100644
--- a/services/detective/pom.xml
+++ b/services/detective/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
detective
AWS Java SDK :: Services :: Detective
diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml
index 45c37e8efbe8..a64c9a885000 100644
--- a/services/devicefarm/pom.xml
+++ b/services/devicefarm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
devicefarm
AWS Java SDK :: Services :: AWS Device Farm
diff --git a/services/devopsguru/pom.xml b/services/devopsguru/pom.xml
index 3b661bbfafdd..ce49118399ef 100644
--- a/services/devopsguru/pom.xml
+++ b/services/devopsguru/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
devopsguru
AWS Java SDK :: Services :: Dev Ops Guru
diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml
index 87dc7aceeb24..2d9480a70b05 100644
--- a/services/directconnect/pom.xml
+++ b/services/directconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
directconnect
AWS Java SDK :: Services :: AWS Direct Connect
diff --git a/services/directory/pom.xml b/services/directory/pom.xml
index 881b87e2e875..9fd236afad80 100644
--- a/services/directory/pom.xml
+++ b/services/directory/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
directory
AWS Java SDK :: Services :: AWS Directory Service
diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml
index c78bb961458a..7990ed8d72fb 100644
--- a/services/dlm/pom.xml
+++ b/services/dlm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
dlm
AWS Java SDK :: Services :: DLM
diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml
index 72b99a29fd42..8d4255615cde 100644
--- a/services/docdb/pom.xml
+++ b/services/docdb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
docdb
AWS Java SDK :: Services :: DocDB
diff --git a/services/docdbelastic/pom.xml b/services/docdbelastic/pom.xml
index a3e9b1fc3e73..c08011d5d87d 100644
--- a/services/docdbelastic/pom.xml
+++ b/services/docdbelastic/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
docdbelastic
AWS Java SDK :: Services :: Doc DB Elastic
diff --git a/services/drs/pom.xml b/services/drs/pom.xml
index f918629e522e..e4115a308f0d 100644
--- a/services/drs/pom.xml
+++ b/services/drs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
drs
AWS Java SDK :: Services :: Drs
diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml
index c72c550dd78d..86eae358161b 100644
--- a/services/dynamodb/pom.xml
+++ b/services/dynamodb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
dynamodb
AWS Java SDK :: Services :: Amazon DynamoDB
diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml
index affecdc1f8c7..9d7724616937 100644
--- a/services/ebs/pom.xml
+++ b/services/ebs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
ebs
AWS Java SDK :: Services :: EBS
diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml
index 6284630a8ad9..1cd66e1e2350 100644
--- a/services/ec2/pom.xml
+++ b/services/ec2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
ec2
AWS Java SDK :: Services :: Amazon EC2
diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml
index 4ec054b7963f..b0dbe75bb7ae 100644
--- a/services/ec2instanceconnect/pom.xml
+++ b/services/ec2instanceconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
ec2instanceconnect
AWS Java SDK :: Services :: EC2 Instance Connect
diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml
index daed599ae3f3..94e81a8acd01 100644
--- a/services/ecr/pom.xml
+++ b/services/ecr/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
ecr
AWS Java SDK :: Services :: Amazon EC2 Container Registry
diff --git a/services/ecrpublic/pom.xml b/services/ecrpublic/pom.xml
index bee47a775480..36eeec473888 100644
--- a/services/ecrpublic/pom.xml
+++ b/services/ecrpublic/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
ecrpublic
AWS Java SDK :: Services :: ECR PUBLIC
diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml
index 60496e03d016..f0609924f70b 100644
--- a/services/ecs/pom.xml
+++ b/services/ecs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
ecs
AWS Java SDK :: Services :: Amazon EC2 Container Service
diff --git a/services/efs/pom.xml b/services/efs/pom.xml
index 06f673c76cbe..36610bd64446 100644
--- a/services/efs/pom.xml
+++ b/services/efs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
efs
AWS Java SDK :: Services :: Amazon Elastic File System
diff --git a/services/eks/pom.xml b/services/eks/pom.xml
index d06c03290a69..2a7c91696e97 100644
--- a/services/eks/pom.xml
+++ b/services/eks/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
eks
AWS Java SDK :: Services :: EKS
diff --git a/services/eksauth/pom.xml b/services/eksauth/pom.xml
index 9e6c3fadfc23..f865d8380ecb 100644
--- a/services/eksauth/pom.xml
+++ b/services/eksauth/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
eksauth
AWS Java SDK :: Services :: EKS Auth
diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml
index 967facf9d81d..2ff6376afaf0 100644
--- a/services/elasticache/pom.xml
+++ b/services/elasticache/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
elasticache
AWS Java SDK :: Services :: Amazon ElastiCache
diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml
index 0ee082c153f0..fd8a2e90495b 100644
--- a/services/elasticbeanstalk/pom.xml
+++ b/services/elasticbeanstalk/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
elasticbeanstalk
AWS Java SDK :: Services :: AWS Elastic Beanstalk
diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml
index 2c1b7e28bc31..ecfdacf5c12c 100644
--- a/services/elasticinference/pom.xml
+++ b/services/elasticinference/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
elasticinference
AWS Java SDK :: Services :: Elastic Inference
diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml
index 991962197e9e..7ec8ab49f46e 100644
--- a/services/elasticloadbalancing/pom.xml
+++ b/services/elasticloadbalancing/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
elasticloadbalancing
AWS Java SDK :: Services :: Elastic Load Balancing
diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml
index 32d19fa64ea7..e819dd667f70 100644
--- a/services/elasticloadbalancingv2/pom.xml
+++ b/services/elasticloadbalancingv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
elasticloadbalancingv2
AWS Java SDK :: Services :: Elastic Load Balancing V2
diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml
index cefe9eb99d21..ab96ea154e80 100644
--- a/services/elasticsearch/pom.xml
+++ b/services/elasticsearch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
elasticsearch
AWS Java SDK :: Services :: Amazon Elasticsearch Service
diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml
index 823433988663..332c45413932 100644
--- a/services/elastictranscoder/pom.xml
+++ b/services/elastictranscoder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
elastictranscoder
AWS Java SDK :: Services :: Amazon Elastic Transcoder
diff --git a/services/emr/pom.xml b/services/emr/pom.xml
index 23778c422496..5832f6acf7ab 100644
--- a/services/emr/pom.xml
+++ b/services/emr/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
emr
AWS Java SDK :: Services :: Amazon EMR
diff --git a/services/emrcontainers/pom.xml b/services/emrcontainers/pom.xml
index 2e9e61e88f41..42825853a111 100644
--- a/services/emrcontainers/pom.xml
+++ b/services/emrcontainers/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
emrcontainers
AWS Java SDK :: Services :: EMR Containers
diff --git a/services/emrserverless/pom.xml b/services/emrserverless/pom.xml
index 8553002061e4..54989c2d9157 100644
--- a/services/emrserverless/pom.xml
+++ b/services/emrserverless/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
emrserverless
AWS Java SDK :: Services :: EMR Serverless
diff --git a/services/entityresolution/pom.xml b/services/entityresolution/pom.xml
index 2ef4d44e3151..9c025f077615 100644
--- a/services/entityresolution/pom.xml
+++ b/services/entityresolution/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
entityresolution
AWS Java SDK :: Services :: Entity Resolution
diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml
index ce9aea5bf398..31f59a8efc65 100644
--- a/services/eventbridge/pom.xml
+++ b/services/eventbridge/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
eventbridge
AWS Java SDK :: Services :: EventBridge
diff --git a/services/evidently/pom.xml b/services/evidently/pom.xml
index f1b76c7ecfbf..b2a6fabf4789 100644
--- a/services/evidently/pom.xml
+++ b/services/evidently/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
evidently
AWS Java SDK :: Services :: Evidently
diff --git a/services/finspace/pom.xml b/services/finspace/pom.xml
index e6c7f3ed191c..4387cb61df4d 100644
--- a/services/finspace/pom.xml
+++ b/services/finspace/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
finspace
AWS Java SDK :: Services :: Finspace
diff --git a/services/finspacedata/pom.xml b/services/finspacedata/pom.xml
index 185a0f106f50..4511873148a8 100644
--- a/services/finspacedata/pom.xml
+++ b/services/finspacedata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
finspacedata
AWS Java SDK :: Services :: Finspace Data
diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml
index c8189cdfa342..831d8ee64e0a 100644
--- a/services/firehose/pom.xml
+++ b/services/firehose/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
firehose
AWS Java SDK :: Services :: Amazon Kinesis Firehose
diff --git a/services/fis/pom.xml b/services/fis/pom.xml
index bdfafa327ab4..cedb4e6ec649 100644
--- a/services/fis/pom.xml
+++ b/services/fis/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
fis
AWS Java SDK :: Services :: Fis
diff --git a/services/fms/pom.xml b/services/fms/pom.xml
index 245b3c5d364f..db61e56324bd 100644
--- a/services/fms/pom.xml
+++ b/services/fms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
fms
AWS Java SDK :: Services :: FMS
diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml
index f8f07b207318..137522aa0b1b 100644
--- a/services/forecast/pom.xml
+++ b/services/forecast/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
forecast
AWS Java SDK :: Services :: Forecast
diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml
index cacc59ad0d59..60bc2708e828 100644
--- a/services/forecastquery/pom.xml
+++ b/services/forecastquery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
forecastquery
AWS Java SDK :: Services :: Forecastquery
diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml
index 8d52697958a0..7a8b28db0599 100644
--- a/services/frauddetector/pom.xml
+++ b/services/frauddetector/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
frauddetector
AWS Java SDK :: Services :: FraudDetector
diff --git a/services/freetier/pom.xml b/services/freetier/pom.xml
index 599f4fb6a51d..1a93a30d228e 100644
--- a/services/freetier/pom.xml
+++ b/services/freetier/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
freetier
AWS Java SDK :: Services :: Free Tier
diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml
index 973b368c5b29..485f57026782 100644
--- a/services/fsx/pom.xml
+++ b/services/fsx/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
fsx
AWS Java SDK :: Services :: FSx
diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml
index f725ec89b177..29625a6058ff 100644
--- a/services/gamelift/pom.xml
+++ b/services/gamelift/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
gamelift
AWS Java SDK :: Services :: AWS GameLift
diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml
index 1d0b845a14a3..6c6383c48d4d 100644
--- a/services/glacier/pom.xml
+++ b/services/glacier/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
glacier
AWS Java SDK :: Services :: Amazon Glacier
diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml
index 1bda9ec63c2f..bd6083d8e2cb 100644
--- a/services/globalaccelerator/pom.xml
+++ b/services/globalaccelerator/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
globalaccelerator
AWS Java SDK :: Services :: Global Accelerator
diff --git a/services/glue/pom.xml b/services/glue/pom.xml
index 2755c83827fb..e080c5b35119 100644
--- a/services/glue/pom.xml
+++ b/services/glue/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
4.0.0
glue
diff --git a/services/grafana/pom.xml b/services/grafana/pom.xml
index a32d03d47f48..70f036fe0bce 100644
--- a/services/grafana/pom.xml
+++ b/services/grafana/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
grafana
AWS Java SDK :: Services :: Grafana
diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml
index 8f940004eb29..fccfcefaead3 100644
--- a/services/greengrass/pom.xml
+++ b/services/greengrass/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
greengrass
AWS Java SDK :: Services :: AWS Greengrass
diff --git a/services/greengrassv2/pom.xml b/services/greengrassv2/pom.xml
index 3fd1c693c69c..6eb13eb34e54 100644
--- a/services/greengrassv2/pom.xml
+++ b/services/greengrassv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
greengrassv2
AWS Java SDK :: Services :: Greengrass V2
diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml
index 9abf9ac2c7fd..7a812fb15ef2 100644
--- a/services/groundstation/pom.xml
+++ b/services/groundstation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
groundstation
AWS Java SDK :: Services :: GroundStation
diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml
index 6f2e440b75f1..b862bce0835a 100644
--- a/services/guardduty/pom.xml
+++ b/services/guardduty/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
4.0.0
guardduty
diff --git a/services/health/pom.xml b/services/health/pom.xml
index 21604ef8cdd7..0689aab18437 100644
--- a/services/health/pom.xml
+++ b/services/health/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.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 2c6e6181ce03..a85b75d23e8c 100644
--- a/services/healthlake/pom.xml
+++ b/services/healthlake/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
healthlake
AWS Java SDK :: Services :: Health Lake
diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml
index e1125ec428a3..d38f58bee641 100644
--- a/services/honeycode/pom.xml
+++ b/services/honeycode/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
honeycode
AWS Java SDK :: Services :: Honeycode
diff --git a/services/iam/pom.xml b/services/iam/pom.xml
index 0d93a05d9ba8..6e759c04aacf 100644
--- a/services/iam/pom.xml
+++ b/services/iam/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
iam
AWS Java SDK :: Services :: AWS IAM
diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml
index 6d6ddc87bc95..d37bc24ea395 100644
--- a/services/identitystore/pom.xml
+++ b/services/identitystore/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
identitystore
AWS Java SDK :: Services :: Identitystore
diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml
index e1210d7e2ab8..c078c72da4d9 100644
--- a/services/imagebuilder/pom.xml
+++ b/services/imagebuilder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
imagebuilder
AWS Java SDK :: Services :: Imagebuilder
diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml
index 7e14fd45faef..803f41b9ba8e 100644
--- a/services/inspector/pom.xml
+++ b/services/inspector/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
inspector
AWS Java SDK :: Services :: Amazon Inspector Service
diff --git a/services/inspector2/pom.xml b/services/inspector2/pom.xml
index bac139bae269..b0acd511519a 100644
--- a/services/inspector2/pom.xml
+++ b/services/inspector2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
inspector2
AWS Java SDK :: Services :: Inspector2
diff --git a/services/inspectorscan/pom.xml b/services/inspectorscan/pom.xml
index 3af1fdb26a80..bcf47f189df1 100644
--- a/services/inspectorscan/pom.xml
+++ b/services/inspectorscan/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
inspectorscan
AWS Java SDK :: Services :: Inspector Scan
diff --git a/services/internetmonitor/pom.xml b/services/internetmonitor/pom.xml
index 8f829cffb8d2..ae937478c92b 100644
--- a/services/internetmonitor/pom.xml
+++ b/services/internetmonitor/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
internetmonitor
AWS Java SDK :: Services :: Internet Monitor
diff --git a/services/iot/pom.xml b/services/iot/pom.xml
index ff1b8fb83ba3..6477a2fa1aee 100644
--- a/services/iot/pom.xml
+++ b/services/iot/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
iot
AWS Java SDK :: Services :: AWS IoT
diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml
index c15021855bed..6d4f5dfb1e43 100644
--- a/services/iot1clickdevices/pom.xml
+++ b/services/iot1clickdevices/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
iot1clickdevices
AWS Java SDK :: Services :: IoT 1Click Devices Service
diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml
index ca249aaaeb3c..cf8399a007a3 100644
--- a/services/iot1clickprojects/pom.xml
+++ b/services/iot1clickprojects/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
iot1clickprojects
AWS Java SDK :: Services :: IoT 1Click Projects
diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml
index 1d63b4e276d6..2a68865ba43c 100644
--- a/services/iotanalytics/pom.xml
+++ b/services/iotanalytics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
iotanalytics
AWS Java SDK :: Services :: IoTAnalytics
diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml
index adba8b65b5c6..74c4e0340406 100644
--- a/services/iotdataplane/pom.xml
+++ b/services/iotdataplane/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
iotdataplane
AWS Java SDK :: Services :: AWS IoT Data Plane
diff --git a/services/iotdeviceadvisor/pom.xml b/services/iotdeviceadvisor/pom.xml
index 9670eb69ac3d..4c12eae3a2dd 100644
--- a/services/iotdeviceadvisor/pom.xml
+++ b/services/iotdeviceadvisor/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
iotdeviceadvisor
AWS Java SDK :: Services :: Iot Device Advisor
diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml
index 9aafd83a9da3..c151bf023655 100644
--- a/services/iotevents/pom.xml
+++ b/services/iotevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
iotevents
AWS Java SDK :: Services :: IoT Events
diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml
index 88e88b080ae6..585a67af7713 100644
--- a/services/ioteventsdata/pom.xml
+++ b/services/ioteventsdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
ioteventsdata
AWS Java SDK :: Services :: IoT Events Data
diff --git a/services/iotfleethub/pom.xml b/services/iotfleethub/pom.xml
index ee288bc096d6..ca9fd58cbdf3 100644
--- a/services/iotfleethub/pom.xml
+++ b/services/iotfleethub/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
iotfleethub
AWS Java SDK :: Services :: Io T Fleet Hub
diff --git a/services/iotfleetwise/pom.xml b/services/iotfleetwise/pom.xml
index 50866e4f5ef0..4242e3681d04 100644
--- a/services/iotfleetwise/pom.xml
+++ b/services/iotfleetwise/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
iotfleetwise
AWS Java SDK :: Services :: Io T Fleet Wise
diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml
index 52682051365d..8ecfa0d13796 100644
--- a/services/iotjobsdataplane/pom.xml
+++ b/services/iotjobsdataplane/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
iotjobsdataplane
AWS Java SDK :: Services :: IoT Jobs Data Plane
diff --git a/services/iotroborunner/pom.xml b/services/iotroborunner/pom.xml
index a3db2e50d302..5fd41d554e42 100644
--- a/services/iotroborunner/pom.xml
+++ b/services/iotroborunner/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
iotroborunner
AWS Java SDK :: Services :: IoT Robo Runner
diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml
index 94fe0bd1f85b..fc1aa8c87d12 100644
--- a/services/iotsecuretunneling/pom.xml
+++ b/services/iotsecuretunneling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
iotsecuretunneling
AWS Java SDK :: Services :: IoTSecureTunneling
diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml
index 24e89226ebcc..c16803646f23 100644
--- a/services/iotsitewise/pom.xml
+++ b/services/iotsitewise/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
iotsitewise
AWS Java SDK :: Services :: Io T Site Wise
diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml
index 2512692be2a9..2ed50d417277 100644
--- a/services/iotthingsgraph/pom.xml
+++ b/services/iotthingsgraph/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
iotthingsgraph
AWS Java SDK :: Services :: IoTThingsGraph
diff --git a/services/iottwinmaker/pom.xml b/services/iottwinmaker/pom.xml
index 644368180a79..8713098e62b7 100644
--- a/services/iottwinmaker/pom.xml
+++ b/services/iottwinmaker/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
iottwinmaker
AWS Java SDK :: Services :: Io T Twin Maker
diff --git a/services/iotwireless/pom.xml b/services/iotwireless/pom.xml
index a7ecccfc1d8d..c404e3519803 100644
--- a/services/iotwireless/pom.xml
+++ b/services/iotwireless/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
iotwireless
AWS Java SDK :: Services :: IoT Wireless
diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml
index d0bfdb689165..f750e3df936a 100644
--- a/services/ivs/pom.xml
+++ b/services/ivs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
ivs
AWS Java SDK :: Services :: Ivs
diff --git a/services/ivschat/pom.xml b/services/ivschat/pom.xml
index c2ac9fbf2b9f..3045644bbd2e 100644
--- a/services/ivschat/pom.xml
+++ b/services/ivschat/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
ivschat
AWS Java SDK :: Services :: Ivschat
diff --git a/services/ivsrealtime/pom.xml b/services/ivsrealtime/pom.xml
index 37e7cc519f9b..4c4ed1b453fb 100644
--- a/services/ivsrealtime/pom.xml
+++ b/services/ivsrealtime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
ivsrealtime
AWS Java SDK :: Services :: IVS Real Time
diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml
index c902a8630e4d..96523acfd8e3 100644
--- a/services/kafka/pom.xml
+++ b/services/kafka/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
kafka
AWS Java SDK :: Services :: Kafka
diff --git a/services/kafkaconnect/pom.xml b/services/kafkaconnect/pom.xml
index 694118aef657..cd7c87ae1415 100644
--- a/services/kafkaconnect/pom.xml
+++ b/services/kafkaconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
kafkaconnect
AWS Java SDK :: Services :: Kafka Connect
diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml
index 4fcc929d3f77..70ff954f2f95 100644
--- a/services/kendra/pom.xml
+++ b/services/kendra/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
kendra
AWS Java SDK :: Services :: Kendra
diff --git a/services/kendraranking/pom.xml b/services/kendraranking/pom.xml
index d692aa0061c4..43747dc114c1 100644
--- a/services/kendraranking/pom.xml
+++ b/services/kendraranking/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
kendraranking
AWS Java SDK :: Services :: Kendra Ranking
diff --git a/services/keyspaces/pom.xml b/services/keyspaces/pom.xml
index e57a8a650bae..ecd7e764a932 100644
--- a/services/keyspaces/pom.xml
+++ b/services/keyspaces/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
keyspaces
AWS Java SDK :: Services :: Keyspaces
diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml
index c67bf40e77c8..d2305350fad3 100644
--- a/services/kinesis/pom.xml
+++ b/services/kinesis/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
kinesis
AWS Java SDK :: Services :: Amazon Kinesis
diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml
index 20bf4f9923d7..760bdddda88d 100644
--- a/services/kinesisanalytics/pom.xml
+++ b/services/kinesisanalytics/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
kinesisanalytics
AWS Java SDK :: Services :: Amazon Kinesis Analytics
diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml
index 788b97003eb6..078931842c83 100644
--- a/services/kinesisanalyticsv2/pom.xml
+++ b/services/kinesisanalyticsv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
kinesisanalyticsv2
AWS Java SDK :: Services :: Kinesis Analytics V2
diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml
index d4ed5f079e14..17fa8c071f6b 100644
--- a/services/kinesisvideo/pom.xml
+++ b/services/kinesisvideo/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
4.0.0
kinesisvideo
diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml
index 54219f566377..c6d4b0520780 100644
--- a/services/kinesisvideoarchivedmedia/pom.xml
+++ b/services/kinesisvideoarchivedmedia/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
kinesisvideoarchivedmedia
AWS Java SDK :: Services :: Kinesis Video Archived Media
diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml
index 90e74f810e39..c715d2741054 100644
--- a/services/kinesisvideomedia/pom.xml
+++ b/services/kinesisvideomedia/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
kinesisvideomedia
AWS Java SDK :: Services :: Kinesis Video Media
diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml
index 5be3c48e4b6a..e87969ca2621 100644
--- a/services/kinesisvideosignaling/pom.xml
+++ b/services/kinesisvideosignaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
kinesisvideosignaling
AWS Java SDK :: Services :: Kinesis Video Signaling
diff --git a/services/kinesisvideowebrtcstorage/pom.xml b/services/kinesisvideowebrtcstorage/pom.xml
index 6e0f0ef0aaa3..efa195d0b006 100644
--- a/services/kinesisvideowebrtcstorage/pom.xml
+++ b/services/kinesisvideowebrtcstorage/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.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 e7bd7d3ba453..c7d97aa47bde 100644
--- a/services/kms/pom.xml
+++ b/services/kms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
kms
AWS Java SDK :: Services :: AWS KMS
diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml
index b7f38e39333a..edbbd8babc35 100644
--- a/services/lakeformation/pom.xml
+++ b/services/lakeformation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
lakeformation
AWS Java SDK :: Services :: LakeFormation
diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml
index b183f5308baa..95b6e7fefa0d 100644
--- a/services/lambda/pom.xml
+++ b/services/lambda/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
lambda
AWS Java SDK :: Services :: AWS Lambda
diff --git a/services/launchwizard/pom.xml b/services/launchwizard/pom.xml
index 27e550cdcdf9..8982bf4a3f84 100644
--- a/services/launchwizard/pom.xml
+++ b/services/launchwizard/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
launchwizard
AWS Java SDK :: Services :: Launch Wizard
diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml
index bb5e5aed6755..b91fe5df8a30 100644
--- a/services/lexmodelbuilding/pom.xml
+++ b/services/lexmodelbuilding/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
lexmodelbuilding
AWS Java SDK :: Services :: Amazon Lex Model Building
diff --git a/services/lexmodelsv2/pom.xml b/services/lexmodelsv2/pom.xml
index fd43408a9512..acb9e4eb20b0 100644
--- a/services/lexmodelsv2/pom.xml
+++ b/services/lexmodelsv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
lexmodelsv2
AWS Java SDK :: Services :: Lex Models V2
diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml
index 624da0017015..e9e37e3e8377 100644
--- a/services/lexruntime/pom.xml
+++ b/services/lexruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
lexruntime
AWS Java SDK :: Services :: Amazon Lex Runtime
diff --git a/services/lexruntimev2/pom.xml b/services/lexruntimev2/pom.xml
index da8dc3fdb407..29515ea3523e 100644
--- a/services/lexruntimev2/pom.xml
+++ b/services/lexruntimev2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
lexruntimev2
AWS Java SDK :: Services :: Lex Runtime V2
diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml
index 870afd5a23cd..284e1167f592 100644
--- a/services/licensemanager/pom.xml
+++ b/services/licensemanager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
licensemanager
AWS Java SDK :: Services :: License Manager
diff --git a/services/licensemanagerlinuxsubscriptions/pom.xml b/services/licensemanagerlinuxsubscriptions/pom.xml
index d4a6f8259966..331b3f2d947e 100644
--- a/services/licensemanagerlinuxsubscriptions/pom.xml
+++ b/services/licensemanagerlinuxsubscriptions/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
licensemanagerlinuxsubscriptions
AWS Java SDK :: Services :: License Manager Linux Subscriptions
diff --git a/services/licensemanagerusersubscriptions/pom.xml b/services/licensemanagerusersubscriptions/pom.xml
index d0006642237f..c77d75469144 100644
--- a/services/licensemanagerusersubscriptions/pom.xml
+++ b/services/licensemanagerusersubscriptions/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
licensemanagerusersubscriptions
AWS Java SDK :: Services :: License Manager User Subscriptions
diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml
index 5d6817700701..3a91d3038240 100644
--- a/services/lightsail/pom.xml
+++ b/services/lightsail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
lightsail
AWS Java SDK :: Services :: Amazon Lightsail
diff --git a/services/location/pom.xml b/services/location/pom.xml
index 9b256b303d2e..76c52e953a4e 100644
--- a/services/location/pom.xml
+++ b/services/location/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
location
AWS Java SDK :: Services :: Location
diff --git a/services/lookoutequipment/pom.xml b/services/lookoutequipment/pom.xml
index 0beaa4c06dc7..fd5d55eb5cdc 100644
--- a/services/lookoutequipment/pom.xml
+++ b/services/lookoutequipment/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
lookoutequipment
AWS Java SDK :: Services :: Lookout Equipment
diff --git a/services/lookoutmetrics/pom.xml b/services/lookoutmetrics/pom.xml
index 70c961aef820..13018fa65d68 100644
--- a/services/lookoutmetrics/pom.xml
+++ b/services/lookoutmetrics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
lookoutmetrics
AWS Java SDK :: Services :: Lookout Metrics
diff --git a/services/lookoutvision/pom.xml b/services/lookoutvision/pom.xml
index bbd0da0accfc..8710d79a569a 100644
--- a/services/lookoutvision/pom.xml
+++ b/services/lookoutvision/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
lookoutvision
AWS Java SDK :: Services :: Lookout Vision
diff --git a/services/m2/pom.xml b/services/m2/pom.xml
index 3f48c9c39f9e..2c7a1f284a48 100644
--- a/services/m2/pom.xml
+++ b/services/m2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
m2
AWS Java SDK :: Services :: M2
diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml
index 1945df4f5486..fc5948794d0b 100644
--- a/services/machinelearning/pom.xml
+++ b/services/machinelearning/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
machinelearning
AWS Java SDK :: Services :: Amazon Machine Learning
diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml
index 339eb062f55d..faca7f41f4f1 100644
--- a/services/macie2/pom.xml
+++ b/services/macie2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
macie2
AWS Java SDK :: Services :: Macie2
diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml
index 5fdd8c98bd1c..755d655f75a9 100644
--- a/services/managedblockchain/pom.xml
+++ b/services/managedblockchain/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
managedblockchain
AWS Java SDK :: Services :: ManagedBlockchain
diff --git a/services/managedblockchainquery/pom.xml b/services/managedblockchainquery/pom.xml
index fe9dc0d7b1c5..0aea649b2d8f 100644
--- a/services/managedblockchainquery/pom.xml
+++ b/services/managedblockchainquery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
managedblockchainquery
AWS Java SDK :: Services :: Managed Blockchain Query
diff --git a/services/marketplaceagreement/pom.xml b/services/marketplaceagreement/pom.xml
index b5c9778761eb..ecd56d9330d1 100644
--- a/services/marketplaceagreement/pom.xml
+++ b/services/marketplaceagreement/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
marketplaceagreement
AWS Java SDK :: Services :: Marketplace Agreement
diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml
index e0cf83a3d196..2702495e5d27 100644
--- a/services/marketplacecatalog/pom.xml
+++ b/services/marketplacecatalog/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
marketplacecatalog
AWS Java SDK :: Services :: Marketplace Catalog
diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml
index 2ec4eabe7b9b..266d3d376af9 100644
--- a/services/marketplacecommerceanalytics/pom.xml
+++ b/services/marketplacecommerceanalytics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
marketplacecommerceanalytics
AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics
diff --git a/services/marketplacedeployment/pom.xml b/services/marketplacedeployment/pom.xml
index a4300914d2fd..dcdf44f98bad 100644
--- a/services/marketplacedeployment/pom.xml
+++ b/services/marketplacedeployment/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
marketplacedeployment
AWS Java SDK :: Services :: Marketplace Deployment
diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml
index 08c84b760dea..236c7adbbc41 100644
--- a/services/marketplaceentitlement/pom.xml
+++ b/services/marketplaceentitlement/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
marketplaceentitlement
AWS Java SDK :: Services :: AWS Marketplace Entitlement
diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml
index 70508c935c57..26b63c93d444 100644
--- a/services/marketplacemetering/pom.xml
+++ b/services/marketplacemetering/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
marketplacemetering
AWS Java SDK :: Services :: AWS Marketplace Metering Service
diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml
index 38215800791f..bee66247de77 100644
--- a/services/mediaconnect/pom.xml
+++ b/services/mediaconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
mediaconnect
AWS Java SDK :: Services :: MediaConnect
diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml
index 4c25479ca90c..7c4eda2f444e 100644
--- a/services/mediaconvert/pom.xml
+++ b/services/mediaconvert/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
4.0.0
mediaconvert
diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml
index 2b5b121879da..61e1ecb323e9 100644
--- a/services/medialive/pom.xml
+++ b/services/medialive/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
4.0.0
medialive
diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml
index ba884299da1f..2ba7fd313907 100644
--- a/services/mediapackage/pom.xml
+++ b/services/mediapackage/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
4.0.0
mediapackage
diff --git a/services/mediapackagev2/pom.xml b/services/mediapackagev2/pom.xml
index 8480e2193fb3..b14443458077 100644
--- a/services/mediapackagev2/pom.xml
+++ b/services/mediapackagev2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
mediapackagev2
AWS Java SDK :: Services :: Media Package V2
diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml
index 08fca14c8eb8..95a4b62a923d 100644
--- a/services/mediapackagevod/pom.xml
+++ b/services/mediapackagevod/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
mediapackagevod
AWS Java SDK :: Services :: MediaPackage Vod
diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml
index 4954e6552b72..fc8441637edb 100644
--- a/services/mediastore/pom.xml
+++ b/services/mediastore/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
4.0.0
mediastore
diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml
index e9f3b6cd2420..5809365f24be 100644
--- a/services/mediastoredata/pom.xml
+++ b/services/mediastoredata/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
4.0.0
mediastoredata
diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml
index 54199d977822..d3c06da10ad8 100644
--- a/services/mediatailor/pom.xml
+++ b/services/mediatailor/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
mediatailor
AWS Java SDK :: Services :: MediaTailor
diff --git a/services/medicalimaging/pom.xml b/services/medicalimaging/pom.xml
index c28c8c68c9a2..44dd80f9753c 100644
--- a/services/medicalimaging/pom.xml
+++ b/services/medicalimaging/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
medicalimaging
AWS Java SDK :: Services :: Medical Imaging
diff --git a/services/memorydb/pom.xml b/services/memorydb/pom.xml
index e4a301faa50a..93f5c2ad53b9 100644
--- a/services/memorydb/pom.xml
+++ b/services/memorydb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
memorydb
AWS Java SDK :: Services :: Memory DB
diff --git a/services/mgn/pom.xml b/services/mgn/pom.xml
index 68867aa1fc74..c79302a4b939 100644
--- a/services/mgn/pom.xml
+++ b/services/mgn/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
mgn
AWS Java SDK :: Services :: Mgn
diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml
index a87b75ebf2cb..16f0cac5bcce 100644
--- a/services/migrationhub/pom.xml
+++ b/services/migrationhub/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
4.0.0
migrationhub
diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml
index 2bc37cf4a6ba..e7fc446b1f03 100644
--- a/services/migrationhubconfig/pom.xml
+++ b/services/migrationhubconfig/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
migrationhubconfig
AWS Java SDK :: Services :: MigrationHub Config
diff --git a/services/migrationhuborchestrator/pom.xml b/services/migrationhuborchestrator/pom.xml
index c3421679b2fb..fdd810d50645 100644
--- a/services/migrationhuborchestrator/pom.xml
+++ b/services/migrationhuborchestrator/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
migrationhuborchestrator
AWS Java SDK :: Services :: Migration Hub Orchestrator
diff --git a/services/migrationhubrefactorspaces/pom.xml b/services/migrationhubrefactorspaces/pom.xml
index 75c552da3f8f..3c0df431b65c 100644
--- a/services/migrationhubrefactorspaces/pom.xml
+++ b/services/migrationhubrefactorspaces/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
migrationhubrefactorspaces
AWS Java SDK :: Services :: Migration Hub Refactor Spaces
diff --git a/services/migrationhubstrategy/pom.xml b/services/migrationhubstrategy/pom.xml
index 1c12b48611d8..dcd9f2c4000f 100644
--- a/services/migrationhubstrategy/pom.xml
+++ b/services/migrationhubstrategy/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
migrationhubstrategy
AWS Java SDK :: Services :: Migration Hub Strategy
diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml
index e006763b0412..5212e1008842 100644
--- a/services/mobile/pom.xml
+++ b/services/mobile/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
4.0.0
mobile
diff --git a/services/mq/pom.xml b/services/mq/pom.xml
index fa4034a1c599..1868f4642eb6 100644
--- a/services/mq/pom.xml
+++ b/services/mq/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
4.0.0
mq
diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml
index a2629cbae34e..bee4ca1895e5 100644
--- a/services/mturk/pom.xml
+++ b/services/mturk/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
mturk
AWS Java SDK :: Services :: Amazon Mechanical Turk Requester
diff --git a/services/mwaa/pom.xml b/services/mwaa/pom.xml
index bcabb9772d9c..8bc9fc04cf31 100644
--- a/services/mwaa/pom.xml
+++ b/services/mwaa/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
mwaa
AWS Java SDK :: Services :: MWAA
diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml
index 2d5b3d46ed3a..573b88953efd 100644
--- a/services/neptune/pom.xml
+++ b/services/neptune/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
neptune
AWS Java SDK :: Services :: Neptune
diff --git a/services/neptunedata/pom.xml b/services/neptunedata/pom.xml
index 4fc37613eaa8..08e3889975a4 100644
--- a/services/neptunedata/pom.xml
+++ b/services/neptunedata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
neptunedata
AWS Java SDK :: Services :: Neptunedata
diff --git a/services/neptunegraph/pom.xml b/services/neptunegraph/pom.xml
index 584a74c9aef7..70bea4cdf561 100644
--- a/services/neptunegraph/pom.xml
+++ b/services/neptunegraph/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
neptunegraph
AWS Java SDK :: Services :: Neptune Graph
diff --git a/services/networkfirewall/pom.xml b/services/networkfirewall/pom.xml
index 98c432c9b61f..26adc108c5b3 100644
--- a/services/networkfirewall/pom.xml
+++ b/services/networkfirewall/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
networkfirewall
AWS Java SDK :: Services :: Network Firewall
diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml
index ac88c94d2c00..5001f120c6c6 100644
--- a/services/networkmanager/pom.xml
+++ b/services/networkmanager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
networkmanager
AWS Java SDK :: Services :: NetworkManager
diff --git a/services/networkmonitor/pom.xml b/services/networkmonitor/pom.xml
index 60dc651411c9..dc697cc6cd68 100644
--- a/services/networkmonitor/pom.xml
+++ b/services/networkmonitor/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
networkmonitor
AWS Java SDK :: Services :: Network Monitor
diff --git a/services/nimble/pom.xml b/services/nimble/pom.xml
index 01822fb39a30..e9c2f4d42dac 100644
--- a/services/nimble/pom.xml
+++ b/services/nimble/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
nimble
AWS Java SDK :: Services :: Nimble
diff --git a/services/oam/pom.xml b/services/oam/pom.xml
index e01ceeacc511..d3766af48e84 100644
--- a/services/oam/pom.xml
+++ b/services/oam/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
oam
AWS Java SDK :: Services :: OAM
diff --git a/services/omics/pom.xml b/services/omics/pom.xml
index 12e8490611cc..849a62c7bf56 100644
--- a/services/omics/pom.xml
+++ b/services/omics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
omics
AWS Java SDK :: Services :: Omics
diff --git a/services/opensearch/pom.xml b/services/opensearch/pom.xml
index 2f265bfd8edc..3ff10521b5e2 100644
--- a/services/opensearch/pom.xml
+++ b/services/opensearch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
opensearch
AWS Java SDK :: Services :: Open Search
diff --git a/services/opensearchserverless/pom.xml b/services/opensearchserverless/pom.xml
index f2a00d935f2d..61c0a645712d 100644
--- a/services/opensearchserverless/pom.xml
+++ b/services/opensearchserverless/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
opensearchserverless
AWS Java SDK :: Services :: Open Search Serverless
diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml
index dbb1b43556b1..a4a207c8c767 100644
--- a/services/opsworks/pom.xml
+++ b/services/opsworks/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
opsworks
AWS Java SDK :: Services :: AWS OpsWorks
diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml
index e952ec1ec3fa..b2eb711306a2 100644
--- a/services/opsworkscm/pom.xml
+++ b/services/opsworkscm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
opsworkscm
AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate
diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml
index a147793eae15..77b91502c3d9 100644
--- a/services/organizations/pom.xml
+++ b/services/organizations/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
organizations
AWS Java SDK :: Services :: AWS Organizations
diff --git a/services/osis/pom.xml b/services/osis/pom.xml
index 35eb13888f35..dd0c03d4bd6b 100644
--- a/services/osis/pom.xml
+++ b/services/osis/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
osis
AWS Java SDK :: Services :: OSIS
diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml
index 506b421ae7a5..257fe1d70332 100644
--- a/services/outposts/pom.xml
+++ b/services/outposts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
outposts
AWS Java SDK :: Services :: Outposts
diff --git a/services/panorama/pom.xml b/services/panorama/pom.xml
index 5d47b90d3a6a..ec603e578120 100644
--- a/services/panorama/pom.xml
+++ b/services/panorama/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
panorama
AWS Java SDK :: Services :: Panorama
diff --git a/services/paymentcryptography/pom.xml b/services/paymentcryptography/pom.xml
index 8f8192a7f864..37d67d612b14 100644
--- a/services/paymentcryptography/pom.xml
+++ b/services/paymentcryptography/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
paymentcryptography
AWS Java SDK :: Services :: Payment Cryptography
diff --git a/services/paymentcryptographydata/pom.xml b/services/paymentcryptographydata/pom.xml
index baf3b76bcf25..0cd6b5729617 100644
--- a/services/paymentcryptographydata/pom.xml
+++ b/services/paymentcryptographydata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
paymentcryptographydata
AWS Java SDK :: Services :: Payment Cryptography Data
diff --git a/services/pcaconnectorad/pom.xml b/services/pcaconnectorad/pom.xml
index da5aeb6a660a..a41d4553777b 100644
--- a/services/pcaconnectorad/pom.xml
+++ b/services/pcaconnectorad/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
pcaconnectorad
AWS Java SDK :: Services :: Pca Connector Ad
diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml
index a000a29a8fc4..93b17de8713e 100644
--- a/services/personalize/pom.xml
+++ b/services/personalize/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
personalize
AWS Java SDK :: Services :: Personalize
diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml
index 53ac7623e70f..6c5f69ad0861 100644
--- a/services/personalizeevents/pom.xml
+++ b/services/personalizeevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
personalizeevents
AWS Java SDK :: Services :: Personalize Events
diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml
index 465d174266c3..2c56b51ef7ed 100644
--- a/services/personalizeruntime/pom.xml
+++ b/services/personalizeruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
personalizeruntime
AWS Java SDK :: Services :: Personalize Runtime
diff --git a/services/pi/pom.xml b/services/pi/pom.xml
index 50d6cd15a50f..1294ac15aefe 100644
--- a/services/pi/pom.xml
+++ b/services/pi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
pi
AWS Java SDK :: Services :: PI
diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml
index 5092619e7826..5a6e71073295 100644
--- a/services/pinpoint/pom.xml
+++ b/services/pinpoint/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
pinpoint
AWS Java SDK :: Services :: Amazon Pinpoint
diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml
index f5a8e517dea5..ab627e20be5b 100644
--- a/services/pinpointemail/pom.xml
+++ b/services/pinpointemail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
pinpointemail
AWS Java SDK :: Services :: Pinpoint Email
diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml
index 60a98b47c021..9ce305ecd29f 100644
--- a/services/pinpointsmsvoice/pom.xml
+++ b/services/pinpointsmsvoice/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
pinpointsmsvoice
AWS Java SDK :: Services :: Pinpoint SMS Voice
diff --git a/services/pinpointsmsvoicev2/pom.xml b/services/pinpointsmsvoicev2/pom.xml
index 317a5befd4b3..a6a99dd44826 100644
--- a/services/pinpointsmsvoicev2/pom.xml
+++ b/services/pinpointsmsvoicev2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
pinpointsmsvoicev2
AWS Java SDK :: Services :: Pinpoint SMS Voice V2
diff --git a/services/pipes/pom.xml b/services/pipes/pom.xml
index 06c9c2579b30..949b630918f6 100644
--- a/services/pipes/pom.xml
+++ b/services/pipes/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
pipes
AWS Java SDK :: Services :: Pipes
diff --git a/services/polly/pom.xml b/services/polly/pom.xml
index 5b4b5c9ea1da..0d9d0a191025 100644
--- a/services/polly/pom.xml
+++ b/services/polly/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
polly
AWS Java SDK :: Services :: Amazon Polly
diff --git a/services/pom.xml b/services/pom.xml
index 80c9b4fbe0a5..ef8fc07f6ed5 100644
--- a/services/pom.xml
+++ b/services/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
services
AWS Java SDK :: Services
diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml
index b24b6ac25fc4..eb2e90dbc4f0 100644
--- a/services/pricing/pom.xml
+++ b/services/pricing/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
4.0.0
pricing
diff --git a/services/privatenetworks/pom.xml b/services/privatenetworks/pom.xml
index 9d2314a7e705..dc9b80a9d2a8 100644
--- a/services/privatenetworks/pom.xml
+++ b/services/privatenetworks/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
privatenetworks
AWS Java SDK :: Services :: Private Networks
diff --git a/services/proton/pom.xml b/services/proton/pom.xml
index 134f35d2e9b3..1883b8d6bb2b 100644
--- a/services/proton/pom.xml
+++ b/services/proton/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
proton
AWS Java SDK :: Services :: Proton
diff --git a/services/qbusiness/pom.xml b/services/qbusiness/pom.xml
index 03c0ecf873fa..99184ab39fa4 100644
--- a/services/qbusiness/pom.xml
+++ b/services/qbusiness/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
qbusiness
AWS Java SDK :: Services :: Q Business
diff --git a/services/qconnect/pom.xml b/services/qconnect/pom.xml
index 03f0e0f6d7ce..3b52e7804441 100644
--- a/services/qconnect/pom.xml
+++ b/services/qconnect/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
qconnect
AWS Java SDK :: Services :: Q Connect
diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml
index 46b54bffc31b..ebb9d577aa49 100644
--- a/services/qldb/pom.xml
+++ b/services/qldb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
qldb
AWS Java SDK :: Services :: QLDB
diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml
index d81f41de1dda..71d27b9464db 100644
--- a/services/qldbsession/pom.xml
+++ b/services/qldbsession/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
qldbsession
AWS Java SDK :: Services :: QLDB Session
diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml
index fa7bed86bf5b..ff06fec7f94d 100644
--- a/services/quicksight/pom.xml
+++ b/services/quicksight/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
quicksight
AWS Java SDK :: Services :: QuickSight
diff --git a/services/ram/pom.xml b/services/ram/pom.xml
index d625ba398e4e..6aaa8e131b1e 100644
--- a/services/ram/pom.xml
+++ b/services/ram/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
ram
AWS Java SDK :: Services :: RAM
diff --git a/services/rbin/pom.xml b/services/rbin/pom.xml
index 3aa8907de4a1..8b53e6a76d16 100644
--- a/services/rbin/pom.xml
+++ b/services/rbin/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
rbin
AWS Java SDK :: Services :: Rbin
diff --git a/services/rds/pom.xml b/services/rds/pom.xml
index f9eefda1559e..28660c5606d6 100644
--- a/services/rds/pom.xml
+++ b/services/rds/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
rds
AWS Java SDK :: Services :: Amazon RDS
diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml
index 7cc2bcbc0fef..a1e5dacda2d4 100644
--- a/services/rdsdata/pom.xml
+++ b/services/rdsdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
rdsdata
AWS Java SDK :: Services :: RDS Data
diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml
index 4ee880b466d2..1e19e7e7edc1 100644
--- a/services/redshift/pom.xml
+++ b/services/redshift/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
redshift
AWS Java SDK :: Services :: Amazon Redshift
diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml
index 760c2085fa0e..12780947f6a7 100644
--- a/services/redshiftdata/pom.xml
+++ b/services/redshiftdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
redshiftdata
AWS Java SDK :: Services :: Redshift Data
diff --git a/services/redshiftserverless/pom.xml b/services/redshiftserverless/pom.xml
index e3a9b4eca291..0065f5ddba0b 100644
--- a/services/redshiftserverless/pom.xml
+++ b/services/redshiftserverless/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
redshiftserverless
AWS Java SDK :: Services :: Redshift Serverless
diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml
index c3e6b09732de..4101fce1fea0 100644
--- a/services/rekognition/pom.xml
+++ b/services/rekognition/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
rekognition
AWS Java SDK :: Services :: Amazon Rekognition
diff --git a/services/repostspace/pom.xml b/services/repostspace/pom.xml
index bf4c39dbdccb..9bbd536d2da6 100644
--- a/services/repostspace/pom.xml
+++ b/services/repostspace/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
repostspace
AWS Java SDK :: Services :: Repostspace
diff --git a/services/resiliencehub/pom.xml b/services/resiliencehub/pom.xml
index f98d608fb4c6..c2105de5da2d 100644
--- a/services/resiliencehub/pom.xml
+++ b/services/resiliencehub/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
resiliencehub
AWS Java SDK :: Services :: Resiliencehub
diff --git a/services/resourceexplorer2/pom.xml b/services/resourceexplorer2/pom.xml
index d035fee98636..013bdd0e3f3d 100644
--- a/services/resourceexplorer2/pom.xml
+++ b/services/resourceexplorer2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
resourceexplorer2
AWS Java SDK :: Services :: Resource Explorer 2
diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml
index f87c17374477..6a458f879ac8 100644
--- a/services/resourcegroups/pom.xml
+++ b/services/resourcegroups/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
4.0.0
resourcegroups
diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml
index 7721e5b1bf3e..e1c5b88e3f1f 100644
--- a/services/resourcegroupstaggingapi/pom.xml
+++ b/services/resourcegroupstaggingapi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
resourcegroupstaggingapi
AWS Java SDK :: Services :: AWS Resource Groups Tagging API
diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml
index b821fdfe4ca4..13fc03c2bf2d 100644
--- a/services/robomaker/pom.xml
+++ b/services/robomaker/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
robomaker
AWS Java SDK :: Services :: RoboMaker
diff --git a/services/rolesanywhere/pom.xml b/services/rolesanywhere/pom.xml
index 5fb9717db3cf..9ad100f4386e 100644
--- a/services/rolesanywhere/pom.xml
+++ b/services/rolesanywhere/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
rolesanywhere
AWS Java SDK :: Services :: Roles Anywhere
diff --git a/services/route53/pom.xml b/services/route53/pom.xml
index 86be85d8ff15..44cb756a2983 100644
--- a/services/route53/pom.xml
+++ b/services/route53/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
route53
AWS Java SDK :: Services :: Amazon Route53
diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml
index e1282cb9c1d0..250e4b27646f 100644
--- a/services/route53domains/pom.xml
+++ b/services/route53domains/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
route53domains
AWS Java SDK :: Services :: Amazon Route53 Domains
diff --git a/services/route53recoverycluster/pom.xml b/services/route53recoverycluster/pom.xml
index 77ff27cda6c1..7363f21beaf1 100644
--- a/services/route53recoverycluster/pom.xml
+++ b/services/route53recoverycluster/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
route53recoverycluster
AWS Java SDK :: Services :: Route53 Recovery Cluster
diff --git a/services/route53recoverycontrolconfig/pom.xml b/services/route53recoverycontrolconfig/pom.xml
index 128607ec4d1c..9b4c6fd24d3c 100644
--- a/services/route53recoverycontrolconfig/pom.xml
+++ b/services/route53recoverycontrolconfig/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
route53recoverycontrolconfig
AWS Java SDK :: Services :: Route53 Recovery Control Config
diff --git a/services/route53recoveryreadiness/pom.xml b/services/route53recoveryreadiness/pom.xml
index 273e3701cae1..a5e61acb7db3 100644
--- a/services/route53recoveryreadiness/pom.xml
+++ b/services/route53recoveryreadiness/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
route53recoveryreadiness
AWS Java SDK :: Services :: Route53 Recovery Readiness
diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml
index 5841cce7b0ee..512c0e653bb0 100644
--- a/services/route53resolver/pom.xml
+++ b/services/route53resolver/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
route53resolver
AWS Java SDK :: Services :: Route53Resolver
diff --git a/services/rum/pom.xml b/services/rum/pom.xml
index da001a18a218..2680602adc01 100644
--- a/services/rum/pom.xml
+++ b/services/rum/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
rum
AWS Java SDK :: Services :: RUM
diff --git a/services/s3/pom.xml b/services/s3/pom.xml
index 0df8db4a6513..d1e715873c91 100644
--- a/services/s3/pom.xml
+++ b/services/s3/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
s3
AWS Java SDK :: Services :: Amazon S3
diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml
index 16ce37cb0be8..d33a4bcd167c 100644
--- a/services/s3control/pom.xml
+++ b/services/s3control/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
s3control
AWS Java SDK :: Services :: Amazon S3 Control
diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml
index 2039b7bf38ed..cca97dcfafb5 100644
--- a/services/s3outposts/pom.xml
+++ b/services/s3outposts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
s3outposts
AWS Java SDK :: Services :: S3 Outposts
diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml
index e593c53bf4b7..392dfd2fada7 100644
--- a/services/sagemaker/pom.xml
+++ b/services/sagemaker/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
4.0.0
sagemaker
diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml
index 8d48a5bd1dd4..4bb1d0a0f623 100644
--- a/services/sagemakera2iruntime/pom.xml
+++ b/services/sagemakera2iruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
sagemakera2iruntime
AWS Java SDK :: Services :: SageMaker A2I Runtime
diff --git a/services/sagemakeredge/pom.xml b/services/sagemakeredge/pom.xml
index 903c517ec87e..dbd5a7c62aca 100644
--- a/services/sagemakeredge/pom.xml
+++ b/services/sagemakeredge/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
sagemakeredge
AWS Java SDK :: Services :: Sagemaker Edge
diff --git a/services/sagemakerfeaturestoreruntime/pom.xml b/services/sagemakerfeaturestoreruntime/pom.xml
index 59e92882d1f6..b7f551eef17a 100644
--- a/services/sagemakerfeaturestoreruntime/pom.xml
+++ b/services/sagemakerfeaturestoreruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.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 83f85f81b6d8..cf475ee45acb 100644
--- a/services/sagemakergeospatial/pom.xml
+++ b/services/sagemakergeospatial/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
sagemakergeospatial
AWS Java SDK :: Services :: Sage Maker Geospatial
diff --git a/services/sagemakermetrics/pom.xml b/services/sagemakermetrics/pom.xml
index 3e81b2c13484..ae503fc46822 100644
--- a/services/sagemakermetrics/pom.xml
+++ b/services/sagemakermetrics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
sagemakermetrics
AWS Java SDK :: Services :: Sage Maker Metrics
diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml
index 5ca489a0e5ee..2ea21c6a0e6e 100644
--- a/services/sagemakerruntime/pom.xml
+++ b/services/sagemakerruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
sagemakerruntime
AWS Java SDK :: Services :: SageMaker Runtime
diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml
index 090406fd592b..e1a8c0176ada 100644
--- a/services/savingsplans/pom.xml
+++ b/services/savingsplans/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
savingsplans
AWS Java SDK :: Services :: Savingsplans
diff --git a/services/scheduler/pom.xml b/services/scheduler/pom.xml
index 98973a5920cb..d33af7417242 100644
--- a/services/scheduler/pom.xml
+++ b/services/scheduler/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
scheduler
AWS Java SDK :: Services :: Scheduler
diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml
index 381afa7076fa..12377d4363d7 100644
--- a/services/schemas/pom.xml
+++ b/services/schemas/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
schemas
AWS Java SDK :: Services :: Schemas
diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml
index c12f9dba2c90..d9b0f023db50 100644
--- a/services/secretsmanager/pom.xml
+++ b/services/secretsmanager/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
secretsmanager
AWS Java SDK :: Services :: AWS Secrets Manager
diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml
index 3647dbaff3d8..8f4a2aef4237 100644
--- a/services/securityhub/pom.xml
+++ b/services/securityhub/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
securityhub
AWS Java SDK :: Services :: SecurityHub
diff --git a/services/securitylake/pom.xml b/services/securitylake/pom.xml
index 391c785b8c9b..e8b8cb5f640f 100644
--- a/services/securitylake/pom.xml
+++ b/services/securitylake/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
securitylake
AWS Java SDK :: Services :: Security Lake
diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml
index cf56f0c9aded..26115a2a4d97 100644
--- a/services/serverlessapplicationrepository/pom.xml
+++ b/services/serverlessapplicationrepository/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
4.0.0
serverlessapplicationrepository
diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml
index a7fe365aa5d6..a092e1c1caef 100644
--- a/services/servicecatalog/pom.xml
+++ b/services/servicecatalog/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
servicecatalog
AWS Java SDK :: Services :: AWS Service Catalog
diff --git a/services/servicecatalogappregistry/pom.xml b/services/servicecatalogappregistry/pom.xml
index 5758723866b2..bbdd2f7bb509 100644
--- a/services/servicecatalogappregistry/pom.xml
+++ b/services/servicecatalogappregistry/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
servicecatalogappregistry
AWS Java SDK :: Services :: Service Catalog App Registry
diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml
index 45c35056a6f5..ea536301a233 100644
--- a/services/servicediscovery/pom.xml
+++ b/services/servicediscovery/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
4.0.0
servicediscovery
diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml
index 8b370e4cf810..fd7583a2d5df 100644
--- a/services/servicequotas/pom.xml
+++ b/services/servicequotas/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
servicequotas
AWS Java SDK :: Services :: Service Quotas
diff --git a/services/ses/pom.xml b/services/ses/pom.xml
index 2f8144610bb3..426de21e16e5 100644
--- a/services/ses/pom.xml
+++ b/services/ses/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
ses
AWS Java SDK :: Services :: Amazon SES
diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml
index 5d4a47eb9417..6b9d744fa55f 100644
--- a/services/sesv2/pom.xml
+++ b/services/sesv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
sesv2
AWS Java SDK :: Services :: SESv2
diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml
index ca5302948d5f..dd89c74745b5 100644
--- a/services/sfn/pom.xml
+++ b/services/sfn/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
sfn
AWS Java SDK :: Services :: AWS Step Functions
diff --git a/services/shield/pom.xml b/services/shield/pom.xml
index 391e62f1552c..0bd9105d1583 100644
--- a/services/shield/pom.xml
+++ b/services/shield/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
shield
AWS Java SDK :: Services :: AWS Shield
diff --git a/services/signer/pom.xml b/services/signer/pom.xml
index 7b23720ae850..33d4cae43535 100644
--- a/services/signer/pom.xml
+++ b/services/signer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
signer
AWS Java SDK :: Services :: Signer
diff --git a/services/simspaceweaver/pom.xml b/services/simspaceweaver/pom.xml
index 680520847cc6..e4d607c1c4b4 100644
--- a/services/simspaceweaver/pom.xml
+++ b/services/simspaceweaver/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
simspaceweaver
AWS Java SDK :: Services :: Sim Space Weaver
diff --git a/services/sms/pom.xml b/services/sms/pom.xml
index 0e25e3d213c6..8d72ec2b8f79 100644
--- a/services/sms/pom.xml
+++ b/services/sms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
sms
AWS Java SDK :: Services :: AWS Server Migration
diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml
index 72b9664bedd6..59f93e1e862c 100644
--- a/services/snowball/pom.xml
+++ b/services/snowball/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
snowball
AWS Java SDK :: Services :: Amazon Snowball
diff --git a/services/snowdevicemanagement/pom.xml b/services/snowdevicemanagement/pom.xml
index 36dd96247cf1..4f70fe0af5d5 100644
--- a/services/snowdevicemanagement/pom.xml
+++ b/services/snowdevicemanagement/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
snowdevicemanagement
AWS Java SDK :: Services :: Snow Device Management
diff --git a/services/sns/pom.xml b/services/sns/pom.xml
index 7341e67e4d6c..6ee6105a8963 100644
--- a/services/sns/pom.xml
+++ b/services/sns/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
sns
AWS Java SDK :: Services :: Amazon SNS
diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml
index 3a30196614d6..914dd307027a 100644
--- a/services/sqs/pom.xml
+++ b/services/sqs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
sqs
AWS Java SDK :: Services :: Amazon SQS
diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml
index 57aceb6e0c0d..b47de039b56b 100644
--- a/services/ssm/pom.xml
+++ b/services/ssm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.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 a53c9175699c..93402944f9eb 100644
--- a/services/ssmcontacts/pom.xml
+++ b/services/ssmcontacts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
ssmcontacts
AWS Java SDK :: Services :: SSM Contacts
diff --git a/services/ssmincidents/pom.xml b/services/ssmincidents/pom.xml
index de020319bc78..7924439d5d98 100644
--- a/services/ssmincidents/pom.xml
+++ b/services/ssmincidents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
ssmincidents
AWS Java SDK :: Services :: SSM Incidents
diff --git a/services/ssmsap/pom.xml b/services/ssmsap/pom.xml
index af64a3208a1a..5e86e472060a 100644
--- a/services/ssmsap/pom.xml
+++ b/services/ssmsap/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
ssmsap
AWS Java SDK :: Services :: Ssm Sap
diff --git a/services/sso/pom.xml b/services/sso/pom.xml
index 1f0244b35fa1..f212db3d2972 100644
--- a/services/sso/pom.xml
+++ b/services/sso/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
sso
AWS Java SDK :: Services :: SSO
diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml
index c5186421625a..eb79f245ffdd 100644
--- a/services/ssoadmin/pom.xml
+++ b/services/ssoadmin/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
ssoadmin
AWS Java SDK :: Services :: SSO Admin
diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml
index 828b20e52250..5a2cea95b82b 100644
--- a/services/ssooidc/pom.xml
+++ b/services/ssooidc/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
ssooidc
AWS Java SDK :: Services :: SSO OIDC
diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml
index 68f3085cdd22..013a687d1591 100644
--- a/services/storagegateway/pom.xml
+++ b/services/storagegateway/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
storagegateway
AWS Java SDK :: Services :: AWS Storage Gateway
diff --git a/services/sts/pom.xml b/services/sts/pom.xml
index 40b0db6a5b01..bd0ab153d99a 100644
--- a/services/sts/pom.xml
+++ b/services/sts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
sts
AWS Java SDK :: Services :: AWS STS
diff --git a/services/supplychain/pom.xml b/services/supplychain/pom.xml
index 62b2231e9b68..555c506787a0 100644
--- a/services/supplychain/pom.xml
+++ b/services/supplychain/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
supplychain
AWS Java SDK :: Services :: Supply Chain
diff --git a/services/support/pom.xml b/services/support/pom.xml
index 80f0804b3192..bf9c63446cd8 100644
--- a/services/support/pom.xml
+++ b/services/support/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
support
AWS Java SDK :: Services :: AWS Support
diff --git a/services/supportapp/pom.xml b/services/supportapp/pom.xml
index 66015ecf0a3b..dda4aebe69d8 100644
--- a/services/supportapp/pom.xml
+++ b/services/supportapp/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
supportapp
AWS Java SDK :: Services :: Support App
diff --git a/services/swf/pom.xml b/services/swf/pom.xml
index a7867e131962..950cc95614a5 100644
--- a/services/swf/pom.xml
+++ b/services/swf/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
swf
AWS Java SDK :: Services :: Amazon SWF
diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml
index 92766fef7b87..ecf613fe7674 100644
--- a/services/synthetics/pom.xml
+++ b/services/synthetics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
synthetics
AWS Java SDK :: Services :: Synthetics
diff --git a/services/textract/pom.xml b/services/textract/pom.xml
index 8dc84fab7c65..34635ea127f0 100644
--- a/services/textract/pom.xml
+++ b/services/textract/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
textract
AWS Java SDK :: Services :: Textract
diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml
index 967917857255..e07a320216d4 100644
--- a/services/timestreamquery/pom.xml
+++ b/services/timestreamquery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
timestreamquery
AWS Java SDK :: Services :: Timestream Query
diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml
index 0833c4843231..67b19605f171 100644
--- a/services/timestreamwrite/pom.xml
+++ b/services/timestreamwrite/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
timestreamwrite
AWS Java SDK :: Services :: Timestream Write
diff --git a/services/tnb/pom.xml b/services/tnb/pom.xml
index b005b43c4b54..2a4bf59050fb 100644
--- a/services/tnb/pom.xml
+++ b/services/tnb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
tnb
AWS Java SDK :: Services :: Tnb
diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml
index 82481804a236..e76dded7ccf7 100644
--- a/services/transcribe/pom.xml
+++ b/services/transcribe/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
transcribe
AWS Java SDK :: Services :: Transcribe
diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml
index 6614e1eb922f..6353a857ca7e 100644
--- a/services/transcribestreaming/pom.xml
+++ b/services/transcribestreaming/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
transcribestreaming
AWS Java SDK :: Services :: AWS Transcribe Streaming
diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml
index f809a65eec42..15c0fabdb2a4 100644
--- a/services/transfer/pom.xml
+++ b/services/transfer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
transfer
AWS Java SDK :: Services :: Transfer
diff --git a/services/translate/pom.xml b/services/translate/pom.xml
index f99f59936ecb..8b7b7b5f3e9c 100644
--- a/services/translate/pom.xml
+++ b/services/translate/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
4.0.0
translate
diff --git a/services/trustedadvisor/pom.xml b/services/trustedadvisor/pom.xml
index 7d81de2c11f8..86734ae387d1 100644
--- a/services/trustedadvisor/pom.xml
+++ b/services/trustedadvisor/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
trustedadvisor
AWS Java SDK :: Services :: Trusted Advisor
diff --git a/services/verifiedpermissions/pom.xml b/services/verifiedpermissions/pom.xml
index c8e57c1f453f..70f5f082e035 100644
--- a/services/verifiedpermissions/pom.xml
+++ b/services/verifiedpermissions/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
verifiedpermissions
AWS Java SDK :: Services :: Verified Permissions
diff --git a/services/voiceid/pom.xml b/services/voiceid/pom.xml
index b25ea057c64e..f224e7461fe2 100644
--- a/services/voiceid/pom.xml
+++ b/services/voiceid/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
voiceid
AWS Java SDK :: Services :: Voice ID
diff --git a/services/vpclattice/pom.xml b/services/vpclattice/pom.xml
index 7eca9f89eeb0..9b2ae1276a30 100644
--- a/services/vpclattice/pom.xml
+++ b/services/vpclattice/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
vpclattice
AWS Java SDK :: Services :: VPC Lattice
diff --git a/services/waf/pom.xml b/services/waf/pom.xml
index 06e179c3b2aa..0c9592c4a1d4 100644
--- a/services/waf/pom.xml
+++ b/services/waf/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
waf
AWS Java SDK :: Services :: AWS WAF
diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml
index 7a86665cb0db..c51ea35b0725 100644
--- a/services/wafv2/pom.xml
+++ b/services/wafv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
wafv2
AWS Java SDK :: Services :: WAFV2
diff --git a/services/wellarchitected/pom.xml b/services/wellarchitected/pom.xml
index 28e3a5ce7f84..20e6cc89dc4d 100644
--- a/services/wellarchitected/pom.xml
+++ b/services/wellarchitected/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
wellarchitected
AWS Java SDK :: Services :: Well Architected
diff --git a/services/wisdom/pom.xml b/services/wisdom/pom.xml
index 59721201009e..9ef344b045cf 100644
--- a/services/wisdom/pom.xml
+++ b/services/wisdom/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
wisdom
AWS Java SDK :: Services :: Wisdom
diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml
index 7cc49e03a2cb..1878028fbd17 100644
--- a/services/workdocs/pom.xml
+++ b/services/workdocs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
workdocs
AWS Java SDK :: Services :: Amazon WorkDocs
diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml
index efff354b5bd9..8bf92b586aa7 100644
--- a/services/worklink/pom.xml
+++ b/services/worklink/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
worklink
AWS Java SDK :: Services :: WorkLink
diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml
index ad439c9f8efb..aabaca344028 100644
--- a/services/workmail/pom.xml
+++ b/services/workmail/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
4.0.0
workmail
diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml
index 55348e0b390c..62a33afcfce3 100644
--- a/services/workmailmessageflow/pom.xml
+++ b/services/workmailmessageflow/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
workmailmessageflow
AWS Java SDK :: Services :: WorkMailMessageFlow
diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml
index e110ecefa586..6f7fc9481876 100644
--- a/services/workspaces/pom.xml
+++ b/services/workspaces/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
workspaces
AWS Java SDK :: Services :: Amazon WorkSpaces
diff --git a/services/workspacesthinclient/pom.xml b/services/workspacesthinclient/pom.xml
index e68670c07274..e67b852c8f08 100644
--- a/services/workspacesthinclient/pom.xml
+++ b/services/workspacesthinclient/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
workspacesthinclient
AWS Java SDK :: Services :: Work Spaces Thin Client
diff --git a/services/workspacesweb/pom.xml b/services/workspacesweb/pom.xml
index aa47a8714678..895240e0a91e 100644
--- a/services/workspacesweb/pom.xml
+++ b/services/workspacesweb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
workspacesweb
AWS Java SDK :: Services :: Work Spaces Web
diff --git a/services/xray/pom.xml b/services/xray/pom.xml
index eff39e8d35af..15621dbd8b9d 100644
--- a/services/xray/pom.xml
+++ b/services/xray/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
xray
AWS Java SDK :: Services :: AWS X-Ray
diff --git a/test/auth-tests/pom.xml b/test/auth-tests/pom.xml
index b71702962b56..f238a970b00d 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.24.14-SNAPSHOT
+ 2.25.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 248917b9d75e..5e76c3c1b6e2 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.24.14-SNAPSHOT
+ 2.25.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 df25391cf268..19711fef54a6 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.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
../../pom.xml
diff --git a/test/crt-unavailable-tests/pom.xml b/test/crt-unavailable-tests/pom.xml
index 38bbc189c099..d6e09c1d0960 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.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml
index 3ef12bed4b7f..c1001009e933 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.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
../../pom.xml
http-client-tests
diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml
index d1ce2d79b5ea..2d5baa5c85c9 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.24.14-SNAPSHOT
+ 2.25.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 a6490affc56d..1cfdca3dc7c3 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.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
../../pom.xml
diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml
index af6890fed30b..b0b4cbd30345 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.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml
index cbd8ab51dfa9..817590999802 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.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/region-testing/pom.xml b/test/region-testing/pom.xml
index 1b10fe6fd9bb..b81bc7253d35 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.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/ruleset-testing-core/pom.xml b/test/ruleset-testing-core/pom.xml
index 62b6a9b17ff5..184fb76d7712 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.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/s3-benchmarks/pom.xml b/test/s3-benchmarks/pom.xml
index 202880a3a270..ee886811dc70 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.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml
index 0619e8e332dd..845dd2369a91 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.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
../../pom.xml
diff --git a/test/sdk-native-image-test/pom.xml b/test/sdk-native-image-test/pom.xml
index 0d6791be3a47..1266aa11cccd 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.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml
index b1634858de57..8c69d4437ad7 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.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
../../pom.xml
service-test-utils
diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml
index ff70911f1ce2..dfe2d51f630f 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.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml
index 207413e11fff..70c79f0d28aa 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.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
../../pom.xml
test-utils
diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml
index 8532bd618994..fb9e3767f0ca 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.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/third-party/pom.xml b/third-party/pom.xml
index 058617bdc41d..42d87383857c 100644
--- a/third-party/pom.xml
+++ b/third-party/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.24.14-SNAPSHOT
+ 2.25.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 ed0ad3fe1265..e1f5c7c0023b 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.24.14-SNAPSHOT
+ 2.25.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 10548e7fe8bc..bbb30e0b1201 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.24.14-SNAPSHOT
+ 2.25.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 868ee9613115..b91a3b1e1ea9 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.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
4.0.0
diff --git a/utils/pom.xml b/utils/pom.xml
index 7af7413461ca..01ca06fc092c 100644
--- a/utils/pom.xml
+++ b/utils/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.24.14-SNAPSHOT
+ 2.25.0-SNAPSHOT
4.0.0
From 4970a0238ab2073721ee644f93d5e290da44ed7a Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Thu, 29 Feb 2024 19:06:51 +0000
Subject: [PATCH 05/13] Amazon Security Lake Update: Add capability to update
the Data Lake's MetaStoreManager Role in order to perform required data lake
updates to use Iceberg table format in their data lake or update the role for
any other reason.
---
.../feature-AmazonSecurityLake-3e676d2.json | 6 ++++
.../codegen-resources/service-2.json | 30 ++++++++++++-------
2 files changed, 26 insertions(+), 10 deletions(-)
create mode 100644 .changes/next-release/feature-AmazonSecurityLake-3e676d2.json
diff --git a/.changes/next-release/feature-AmazonSecurityLake-3e676d2.json b/.changes/next-release/feature-AmazonSecurityLake-3e676d2.json
new file mode 100644
index 000000000000..96e189d5ce62
--- /dev/null
+++ b/.changes/next-release/feature-AmazonSecurityLake-3e676d2.json
@@ -0,0 +1,6 @@
+{
+ "type": "feature",
+ "category": "Amazon Security Lake",
+ "contributor": "",
+ "description": "Add capability to update the Data Lake's MetaStoreManager Role in order to perform required data lake updates to use Iceberg table format in their data lake or update the role for any other reason."
+}
diff --git a/services/securitylake/src/main/resources/codegen-resources/service-2.json b/services/securitylake/src/main/resources/codegen-resources/service-2.json
index 165dbb19051e..e0fd1f2a336d 100644
--- a/services/securitylake/src/main/resources/codegen-resources/service-2.json
+++ b/services/securitylake/src/main/resources/codegen-resources/service-2.json
@@ -707,7 +707,7 @@
"type":"list",
"member":{"shape":"AwsLogSourceConfiguration"},
"max":50,
- "min":0
+ "min":1
},
"AwsLogSourceName":{
"type":"string",
@@ -717,7 +717,9 @@
"SH_FINDINGS",
"CLOUD_TRAIL_MGMT",
"LAMBDA_EXECUTION",
- "S3_DATA"
+ "S3_DATA",
+ "EKS_AUDIT",
+ "WAF"
]
},
"AwsLogSourceResource":{
@@ -736,7 +738,8 @@
},
"AwsLogSourceResourceList":{
"type":"list",
- "member":{"shape":"AwsLogSourceResource"}
+ "member":{"shape":"AwsLogSourceResource"},
+ "min":1
},
"AwsLogSourceVersion":{
"type":"string",
@@ -799,7 +802,10 @@
},
"CreateCustomLogSourceRequest":{
"type":"structure",
- "required":["sourceName"],
+ "required":[
+ "configuration",
+ "sourceName"
+ ],
"members":{
"configuration":{
"shape":"CustomLogSourceConfiguration",
@@ -861,7 +867,6 @@
},
"CreateDataLakeOrganizationConfigurationRequest":{
"type":"structure",
- "required":["autoEnableNewAccount"],
"members":{
"autoEnableNewAccount":{
"shape":"DataLakeAutoEnableNewAccountConfigurationList",
@@ -1095,7 +1100,8 @@
},
"DataLakeAutoEnableNewAccountConfigurationList":{
"type":"list",
- "member":{"shape":"DataLakeAutoEnableNewAccountConfiguration"}
+ "member":{"shape":"DataLakeAutoEnableNewAccountConfiguration"},
+ "min":1
},
"DataLakeConfiguration":{
"type":"structure",
@@ -1122,7 +1128,8 @@
},
"DataLakeConfigurationList":{
"type":"list",
- "member":{"shape":"DataLakeConfiguration"}
+ "member":{"shape":"DataLakeConfiguration"},
+ "min":1
},
"DataLakeEncryptionConfiguration":{
"type":"structure",
@@ -1412,7 +1419,6 @@
},
"DeleteDataLakeOrganizationConfigurationRequest":{
"type":"structure",
- "required":["autoEnableNewAccount"],
"members":{
"autoEnableNewAccount":{
"shape":"DataLakeAutoEnableNewAccountConfigurationList",
@@ -1765,7 +1771,7 @@
"members":{
"resourceArn":{
"shape":"AmazonResourceName",
- "documentation":"The Amazon Resource Name (ARN) of the Amazon Security Lake resource to retrieve the tags for.
",
+ "documentation":"The Amazon Resource Name (ARN) of the Amazon Security Lake resource for which you want to retrieve the tags.
",
"location":"uri",
"locationName":"resourceArn"
}
@@ -1909,7 +1915,7 @@
},
"RoleArn":{
"type":"string",
- "pattern":"^arn:.*$"
+ "pattern":"^arn:(aws[a-zA-Z-]*)?:iam::\\d{12}:role/?[a-zA-Z_0-9+=,.@\\-_/]+$"
},
"S3BucketArn":{"type":"string"},
"S3URI":{
@@ -2191,6 +2197,10 @@
"configurations":{
"shape":"DataLakeConfigurationList",
"documentation":"Specify the Region or Regions that will contribute data to the rollup region.
"
+ },
+ "metaStoreManagerRoleArn":{
+ "shape":"RoleArn",
+ "documentation":"The Amazon Resource Name (ARN) used to create and update the Glue table. This table contains partitions generated by the ingestion and normalization of Amazon Web Services log sources and custom sources.
"
}
}
},
From c0e187bf3fd77e6a0d5f8e3f77746ed83feadfb0 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Thu, 29 Feb 2024 19:06:54 +0000
Subject: [PATCH 06/13] Amazon DocumentDB Elastic Clusters Update: Launched
Elastic Clusters Readable Secondaries, Start/Stop, Configurable Shard
Instance count, Automatic Backups and Snapshot Copying
---
...azonDocumentDBElasticClusters-a82ad03.json | 6 +
.../codegen-resources/endpoint-rule-set.json | 64 +--
.../codegen-resources/service-2.json | 454 ++++++++++++++----
3 files changed, 388 insertions(+), 136 deletions(-)
create mode 100644 .changes/next-release/feature-AmazonDocumentDBElasticClusters-a82ad03.json
diff --git a/.changes/next-release/feature-AmazonDocumentDBElasticClusters-a82ad03.json b/.changes/next-release/feature-AmazonDocumentDBElasticClusters-a82ad03.json
new file mode 100644
index 000000000000..723047f7fb6e
--- /dev/null
+++ b/.changes/next-release/feature-AmazonDocumentDBElasticClusters-a82ad03.json
@@ -0,0 +1,6 @@
+{
+ "type": "feature",
+ "category": "Amazon DocumentDB Elastic Clusters",
+ "contributor": "",
+ "description": "Launched Elastic Clusters Readable Secondaries, Start/Stop, Configurable Shard Instance count, Automatic Backups and Snapshot Copying"
+}
diff --git a/services/docdbelastic/src/main/resources/codegen-resources/endpoint-rule-set.json b/services/docdbelastic/src/main/resources/codegen-resources/endpoint-rule-set.json
index dc9f24641175..086aaa0cea00 100644
--- a/services/docdbelastic/src/main/resources/codegen-resources/endpoint-rule-set.json
+++ b/services/docdbelastic/src/main/resources/codegen-resources/endpoint-rule-set.json
@@ -40,7 +40,6 @@
]
}
],
- "type": "tree",
"rules": [
{
"conditions": [
@@ -59,7 +58,6 @@
},
{
"conditions": [],
- "type": "tree",
"rules": [
{
"conditions": [
@@ -87,13 +85,14 @@
},
"type": "endpoint"
}
- ]
+ ],
+ "type": "tree"
}
- ]
+ ],
+ "type": "tree"
},
{
"conditions": [],
- "type": "tree",
"rules": [
{
"conditions": [
@@ -106,7 +105,6 @@
]
}
],
- "type": "tree",
"rules": [
{
"conditions": [
@@ -120,7 +118,6 @@
"assign": "PartitionResult"
}
],
- "type": "tree",
"rules": [
{
"conditions": [
@@ -143,7 +140,6 @@
]
}
],
- "type": "tree",
"rules": [
{
"conditions": [
@@ -178,11 +174,9 @@
]
}
],
- "type": "tree",
"rules": [
{
"conditions": [],
- "type": "tree",
"rules": [
{
"conditions": [],
@@ -193,16 +187,19 @@
},
"type": "endpoint"
}
- ]
+ ],
+ "type": "tree"
}
- ]
+ ],
+ "type": "tree"
},
{
"conditions": [],
"error": "FIPS and DualStack are enabled, but this partition does not support one or both",
"type": "error"
}
- ]
+ ],
+ "type": "tree"
},
{
"conditions": [
@@ -216,14 +213,12 @@
]
}
],
- "type": "tree",
"rules": [
{
"conditions": [
{
"fn": "booleanEquals",
"argv": [
- true,
{
"fn": "getAttr",
"argv": [
@@ -232,15 +227,14 @@
},
"supportsFIPS"
]
- }
+ },
+ true
]
}
],
- "type": "tree",
"rules": [
{
"conditions": [],
- "type": "tree",
"rules": [
{
"conditions": [],
@@ -251,16 +245,19 @@
},
"type": "endpoint"
}
- ]
+ ],
+ "type": "tree"
}
- ]
+ ],
+ "type": "tree"
},
{
"conditions": [],
"error": "FIPS is enabled but this partition does not support FIPS",
"type": "error"
}
- ]
+ ],
+ "type": "tree"
},
{
"conditions": [
@@ -274,7 +271,6 @@
]
}
],
- "type": "tree",
"rules": [
{
"conditions": [
@@ -294,11 +290,9 @@
]
}
],
- "type": "tree",
"rules": [
{
"conditions": [],
- "type": "tree",
"rules": [
{
"conditions": [],
@@ -309,20 +303,22 @@
},
"type": "endpoint"
}
- ]
+ ],
+ "type": "tree"
}
- ]
+ ],
+ "type": "tree"
},
{
"conditions": [],
"error": "DualStack is enabled but this partition does not support DualStack",
"type": "error"
}
- ]
+ ],
+ "type": "tree"
},
{
"conditions": [],
- "type": "tree",
"rules": [
{
"conditions": [],
@@ -333,18 +329,22 @@
},
"type": "endpoint"
}
- ]
+ ],
+ "type": "tree"
}
- ]
+ ],
+ "type": "tree"
}
- ]
+ ],
+ "type": "tree"
},
{
"conditions": [],
"error": "Invalid Configuration: Missing Region",
"type": "error"
}
- ]
+ ],
+ "type": "tree"
}
]
}
\ No newline at end of file
diff --git a/services/docdbelastic/src/main/resources/codegen-resources/service-2.json b/services/docdbelastic/src/main/resources/codegen-resources/service-2.json
index 63dceab32491..ef72cb5b3674 100644
--- a/services/docdbelastic/src/main/resources/codegen-resources/service-2.json
+++ b/services/docdbelastic/src/main/resources/codegen-resources/service-2.json
@@ -13,6 +13,27 @@
"uid":"docdb-elastic-2022-11-28"
},
"operations":{
+ "CopyClusterSnapshot":{
+ "name":"CopyClusterSnapshot",
+ "http":{
+ "method":"POST",
+ "requestUri":"/cluster-snapshot/{snapshotArn}/copy",
+ "responseCode":200
+ },
+ "input":{"shape":"CopyClusterSnapshotInput"},
+ "output":{"shape":"CopyClusterSnapshotOutput"},
+ "errors":[
+ {"shape":"ThrottlingException"},
+ {"shape":"ValidationException"},
+ {"shape":"ServiceQuotaExceededException"},
+ {"shape":"ConflictException"},
+ {"shape":"InternalServerException"},
+ {"shape":"ResourceNotFoundException"},
+ {"shape":"AccessDeniedException"}
+ ],
+ "documentation":"Copies a snapshot of an elastic cluster.
",
+ "idempotent":true
+ },
"CreateCluster":{
"name":"CreateCluster",
"http":{
@@ -30,7 +51,7 @@
{"shape":"InternalServerException"},
{"shape":"AccessDeniedException"}
],
- "documentation":"Creates a new Elastic DocumentDB cluster and returns its Cluster structure.
",
+ "documentation":"Creates a new Amazon DocumentDB elastic cluster and returns its cluster structure.
",
"idempotent":true
},
"CreateClusterSnapshot":{
@@ -51,7 +72,7 @@
{"shape":"ResourceNotFoundException"},
{"shape":"AccessDeniedException"}
],
- "documentation":"Creates a snapshot of a cluster.
",
+ "documentation":"Creates a snapshot of an elastic cluster.
",
"idempotent":true
},
"DeleteCluster":{
@@ -71,7 +92,7 @@
{"shape":"ResourceNotFoundException"},
{"shape":"AccessDeniedException"}
],
- "documentation":"Delete a Elastic DocumentDB cluster.
",
+ "documentation":"Delete an elastic cluster.
",
"idempotent":true
},
"DeleteClusterSnapshot":{
@@ -91,7 +112,7 @@
{"shape":"ResourceNotFoundException"},
{"shape":"AccessDeniedException"}
],
- "documentation":"Delete a Elastic DocumentDB snapshot.
",
+ "documentation":"Delete an elastic cluster snapshot.
",
"idempotent":true
},
"GetCluster":{
@@ -110,7 +131,7 @@
{"shape":"ResourceNotFoundException"},
{"shape":"AccessDeniedException"}
],
- "documentation":"Returns information about a specific Elastic DocumentDB cluster.
"
+ "documentation":"Returns information about a specific elastic cluster.
"
},
"GetClusterSnapshot":{
"name":"GetClusterSnapshot",
@@ -128,7 +149,7 @@
{"shape":"ResourceNotFoundException"},
{"shape":"AccessDeniedException"}
],
- "documentation":"Returns information about a specific Elastic DocumentDB snapshot
"
+ "documentation":"Returns information about a specific elastic cluster snapshot
"
},
"ListClusterSnapshots":{
"name":"ListClusterSnapshots",
@@ -145,7 +166,7 @@
{"shape":"InternalServerException"},
{"shape":"AccessDeniedException"}
],
- "documentation":"Returns information about Elastic DocumentDB snapshots for a specified cluster.
"
+ "documentation":"Returns information about snapshots for a specified elastic cluster.
"
},
"ListClusters":{
"name":"ListClusters",
@@ -162,7 +183,7 @@
{"shape":"InternalServerException"},
{"shape":"AccessDeniedException"}
],
- "documentation":"Returns information about provisioned Elastic DocumentDB clusters.
"
+ "documentation":"Returns information about provisioned Amazon DocumentDB elastic clusters.
"
},
"ListTagsForResource":{
"name":"ListTagsForResource",
@@ -179,7 +200,7 @@
{"shape":"InternalServerException"},
{"shape":"ResourceNotFoundException"}
],
- "documentation":"Lists all tags on a Elastic DocumentDB resource
"
+ "documentation":"Lists all tags on a elastic cluster resource
"
},
"RestoreClusterFromSnapshot":{
"name":"RestoreClusterFromSnapshot",
@@ -199,7 +220,45 @@
{"shape":"ResourceNotFoundException"},
{"shape":"AccessDeniedException"}
],
- "documentation":"Restores a Elastic DocumentDB cluster from a snapshot.
",
+ "documentation":"Restores an elastic cluster from a snapshot.
",
+ "idempotent":true
+ },
+ "StartCluster":{
+ "name":"StartCluster",
+ "http":{
+ "method":"POST",
+ "requestUri":"/cluster/{clusterArn}/start",
+ "responseCode":200
+ },
+ "input":{"shape":"StartClusterInput"},
+ "output":{"shape":"StartClusterOutput"},
+ "errors":[
+ {"shape":"ThrottlingException"},
+ {"shape":"ValidationException"},
+ {"shape":"InternalServerException"},
+ {"shape":"ResourceNotFoundException"},
+ {"shape":"AccessDeniedException"}
+ ],
+ "documentation":"Restarts the stopped elastic cluster that is specified by clusterARN
.
",
+ "idempotent":true
+ },
+ "StopCluster":{
+ "name":"StopCluster",
+ "http":{
+ "method":"POST",
+ "requestUri":"/cluster/{clusterArn}/stop",
+ "responseCode":200
+ },
+ "input":{"shape":"StopClusterInput"},
+ "output":{"shape":"StopClusterOutput"},
+ "errors":[
+ {"shape":"ThrottlingException"},
+ {"shape":"ValidationException"},
+ {"shape":"InternalServerException"},
+ {"shape":"ResourceNotFoundException"},
+ {"shape":"AccessDeniedException"}
+ ],
+ "documentation":"Stops the running elastic cluster that is specified by clusterArn
. The elastic cluster must be in the available state.
",
"idempotent":true
},
"TagResource":{
@@ -217,7 +276,7 @@
{"shape":"InternalServerException"},
{"shape":"ResourceNotFoundException"}
],
- "documentation":"Adds metadata tags to a Elastic DocumentDB resource
"
+ "documentation":"Adds metadata tags to an elastic cluster resource
"
},
"UntagResource":{
"name":"UntagResource",
@@ -234,7 +293,7 @@
{"shape":"InternalServerException"},
{"shape":"ResourceNotFoundException"}
],
- "documentation":"Removes metadata tags to a Elastic DocumentDB resource
",
+ "documentation":"Removes metadata tags from an elastic cluster resource
",
"idempotent":true
},
"UpdateCluster":{
@@ -254,7 +313,7 @@
{"shape":"ResourceNotFoundException"},
{"shape":"AccessDeniedException"}
],
- "documentation":"Modifies a Elastic DocumentDB cluster. This includes updating admin-username/password, upgrading API version setting up a backup window and maintenance window
",
+ "documentation":"Modifies an elastic cluster. This includes updating admin-username/password, upgrading the API version, and setting up a backup window and maintenance window
",
"idempotent":true
}
},
@@ -287,6 +346,10 @@
"SECRET_ARN"
]
},
+ "Boolean":{
+ "type":"boolean",
+ "box":true
+ },
"Cluster":{
"type":"structure",
"required":[
@@ -307,31 +370,39 @@
"members":{
"adminUserName":{
"shape":"String",
- "documentation":"The name of the Elastic DocumentDB cluster administrator.
"
+ "documentation":"The name of the elastic cluster administrator.
"
},
"authType":{
"shape":"Auth",
- "documentation":"The authentication type for the Elastic DocumentDB cluster.
"
+ "documentation":"The authentication type for the elastic cluster.
"
+ },
+ "backupRetentionPeriod":{
+ "shape":"Integer",
+ "documentation":"The number of days for which automatic snapshots are retained.
"
},
"clusterArn":{
"shape":"String",
- "documentation":"The arn of the Elastic DocumentDB cluster.
"
+ "documentation":"The ARN identifier of the elastic cluster.
"
},
"clusterEndpoint":{
"shape":"String",
- "documentation":"The URL used to connect to the Elastic DocumentDB cluster.
"
+ "documentation":"The URL used to connect to the elastic cluster.
"
},
"clusterName":{
"shape":"String",
- "documentation":"The name of the Elastic DocumentDB cluster.
"
+ "documentation":"The name of the elastic cluster.
"
},
"createTime":{
"shape":"String",
- "documentation":"The time when the Elastic DocumentDB cluster was created in Universal Coordinated Time (UTC).
"
+ "documentation":"The time when the elastic cluster was created in Universal Coordinated Time (UTC).
"
},
"kmsKeyId":{
"shape":"String",
- "documentation":"The KMS key identifier to use to encrypt the Elastic DocumentDB cluster.
"
+ "documentation":"The KMS key identifier to use to encrypt the elastic cluster.
"
+ },
+ "preferredBackupWindow":{
+ "shape":"String",
+ "documentation":"The daily time range during which automated backups are created if automated backups are enabled, as determined by backupRetentionPeriod
.
"
},
"preferredMaintenanceWindow":{
"shape":"String",
@@ -339,26 +410,34 @@
},
"shardCapacity":{
"shape":"Integer",
- "documentation":"The capacity of each shard in the Elastic DocumentDB cluster.
"
+ "documentation":"The number of vCPUs assigned to each elastic cluster shard. Maximum is 64. Allowed values are 2, 4, 8, 16, 32, 64.
"
},
"shardCount":{
"shape":"Integer",
- "documentation":"The number of shards in the Elastic DocumentDB cluster.
"
+ "documentation":"The number of shards assigned to the elastic cluster. Maximum is 32.
"
+ },
+ "shardInstanceCount":{
+ "shape":"Integer",
+ "documentation":"The number of replica instances applying to all shards in the cluster. A shardInstanceCount
value of 1 means there is one writer instance, and any additional instances are replicas that can be used for reads and to improve availability.
"
+ },
+ "shards":{
+ "shape":"ShardList",
+ "documentation":"The total number of shards in the cluster.
"
},
"status":{
"shape":"Status",
- "documentation":"The status of the Elastic DocumentDB cluster.
"
+ "documentation":"The status of the elastic cluster.
"
},
"subnetIds":{
"shape":"StringList",
- "documentation":"The Amazon EC2 subnet IDs for the Elastic DocumentDB cluster.
"
+ "documentation":"The Amazon EC2 subnet IDs for the elastic cluster.
"
},
"vpcSecurityGroupIds":{
"shape":"StringList",
- "documentation":"A list of EC2 VPC security groups associated with this cluster.
"
+ "documentation":"A list of EC2 VPC security groups associated with thie elastic cluster.
"
}
},
- "documentation":"Returns information about a specific Elastic DocumentDB cluster.
"
+ "documentation":"Returns information about a specific elastic cluster.
"
},
"ClusterInList":{
"type":"structure",
@@ -370,18 +449,18 @@
"members":{
"clusterArn":{
"shape":"String",
- "documentation":"The arn of the Elastic DocumentDB cluster.
"
+ "documentation":"The ARN identifier of the elastic cluster.
"
},
"clusterName":{
"shape":"String",
- "documentation":"The name of the Elastic DocumentDB cluster.
"
+ "documentation":"The name of the elastic cluster.
"
},
"status":{
"shape":"Status",
- "documentation":"The status of the Elastic DocumentDB cluster.
"
+ "documentation":"The status of the elastic cluster.
"
}
},
- "documentation":"A list of Elastic DocumentDB cluster.
"
+ "documentation":"A list of Amazon DocumentDB elastic clusters.
"
},
"ClusterList":{
"type":"list",
@@ -404,46 +483,50 @@
"members":{
"adminUserName":{
"shape":"String",
- "documentation":"The name of the Elastic DocumentDB cluster administrator.
"
+ "documentation":"The name of the elastic cluster administrator.
"
},
"clusterArn":{
"shape":"String",
- "documentation":"The arn of the Elastic DocumentDB cluster.
"
+ "documentation":"The ARN identifier of the elastic cluster.
"
},
"clusterCreationTime":{
"shape":"String",
- "documentation":"The time when the Elastic DocumentDB cluster was created in Universal Coordinated Time (UTC).
"
+ "documentation":"The time when the elastic cluster was created in Universal Coordinated Time (UTC).
"
},
"kmsKeyId":{
"shape":"String",
- "documentation":"The KMS key identifier to use to encrypt the Elastic DocumentDB cluster.
"
+ "documentation":"The KMS key identifier is the Amazon Resource Name (ARN) for the KMS encryption key. If you are creating a cluster using the same Amazon account that owns this KMS encryption key, you can use the KMS key alias instead of the ARN as the KMS encryption key. If an encryption key is not specified here, Amazon DocumentDB uses the default encryption key that KMS creates for your account. Your account has a different default encryption key for each Amazon Region.
"
},
"snapshotArn":{
"shape":"String",
- "documentation":"The arn of the Elastic DocumentDB snapshot
"
+ "documentation":"The ARN identifier of the elastic cluster snapshot.
"
},
"snapshotCreationTime":{
"shape":"String",
- "documentation":"The time when the Elastic DocumentDB snapshot was created in Universal Coordinated Time (UTC).
"
+ "documentation":"The time when the elastic cluster snapshot was created in Universal Coordinated Time (UTC).
"
},
"snapshotName":{
"shape":"String",
- "documentation":"The name of the Elastic DocumentDB snapshot.
"
+ "documentation":"The name of the elastic cluster snapshot.
"
+ },
+ "snapshotType":{
+ "shape":"SnapshotType",
+ "documentation":"The type of cluster snapshots to be returned. You can specify one of the following values:
-
automated
- Return all cluster snapshots that Amazon DocumentDB has automatically created for your Amazon Web Services account.
-
manual
- Return all cluster snapshots that you have manually created for your Amazon Web Services account.
"
},
"status":{
"shape":"Status",
- "documentation":"The status of the Elastic DocumentDB snapshot.
"
+ "documentation":"The status of the elastic cluster snapshot.
"
},
"subnetIds":{
"shape":"StringList",
- "documentation":"A list of the IDs of subnets associated with the DB cluster snapshot.
"
+ "documentation":"The Amazon EC2 subnet IDs for the elastic cluster.
"
},
"vpcSecurityGroupIds":{
"shape":"StringList",
- "documentation":"A list of the IDs of the VPC security groups associated with the cluster snapshot.
"
+ "documentation":"A list of EC2 VPC security groups to associate with the elastic cluster.
"
}
},
- "documentation":"Returns information about a specific Elastic DocumentDB snapshot.
"
+ "documentation":"Returns information about a specific elastic cluster snapshot.
"
},
"ClusterSnapshotInList":{
"type":"structure",
@@ -457,26 +540,26 @@
"members":{
"clusterArn":{
"shape":"String",
- "documentation":"The arn of the Elastic DocumentDB cluster.
"
+ "documentation":"The ARN identifier of the elastic cluster.
"
},
"snapshotArn":{
"shape":"String",
- "documentation":"The arn of the Elastic DocumentDB snapshot
"
+ "documentation":"The ARN identifier of the elastic cluster snapshot.
"
},
"snapshotCreationTime":{
"shape":"String",
- "documentation":"The time when the Elastic DocumentDB snapshot was created in Universal Coordinated Time (UTC).
"
+ "documentation":"The time when the elastic cluster snapshot was created in Universal Coordinated Time (UTC).
"
},
"snapshotName":{
"shape":"String",
- "documentation":"The name of the Elastic DocumentDB snapshot.
"
+ "documentation":"The name of the elastic cluster snapshot.
"
},
"status":{
"shape":"Status",
- "documentation":"The status of the Elastic DocumentDB snapshot.
"
+ "documentation":"The status of the elastic cluster snapshot.
"
}
},
- "documentation":"A list of Elastic DocumentDB snapshots.
"
+ "documentation":"A list of elastic cluster snapshots.
"
},
"ClusterSnapshotList":{
"type":"list",
@@ -507,6 +590,49 @@
},
"exception":true
},
+ "CopyClusterSnapshotInput":{
+ "type":"structure",
+ "required":[
+ "snapshotArn",
+ "targetSnapshotName"
+ ],
+ "members":{
+ "copyTags":{
+ "shape":"Boolean",
+ "documentation":"Set to true
to copy all tags from the source cluster snapshot to the target elastic cluster snapshot. The default is false
.
"
+ },
+ "kmsKeyId":{
+ "shape":"String",
+ "documentation":"The Amazon Web Services KMS key ID for an encrypted elastic cluster snapshot. The Amazon Web Services KMS key ID is the Amazon Resource Name (ARN), Amazon Web Services KMS key identifier, or the Amazon Web Services KMS key alias for the Amazon Web Services KMS encryption key.
If you copy an encrypted elastic cluster snapshot from your Amazon Web Services account, you can specify a value for KmsKeyId
to encrypt the copy with a new Amazon Web ServicesS KMS encryption key. If you don't specify a value for KmsKeyId
, then the copy of the elastic cluster snapshot is encrypted with the same AWS
KMS key as the source elastic cluster snapshot.
To copy an encrypted elastic cluster snapshot to another Amazon Web Services region, set KmsKeyId
to the Amazon Web Services KMS key ID that you want to use to encrypt the copy of the elastic cluster snapshot in the destination region. Amazon Web Services KMS encryption keys are specific to the Amazon Web Services region that they are created in, and you can't use encryption keys from one Amazon Web Services region in another Amazon Web Services region.
If you copy an unencrypted elastic cluster snapshot and specify a value for the KmsKeyId
parameter, an error is returned.
"
+ },
+ "snapshotArn":{
+ "shape":"String",
+ "documentation":"The Amazon Resource Name (ARN) identifier of the elastic cluster snapshot.
",
+ "location":"uri",
+ "locationName":"snapshotArn"
+ },
+ "tags":{
+ "shape":"TagMap",
+ "documentation":"The tags to be assigned to the elastic cluster snapshot.
"
+ },
+ "targetSnapshotName":{
+ "shape":"CopyClusterSnapshotInputTargetSnapshotNameString",
+ "documentation":"The identifier of the new elastic cluster snapshot to create from the source cluster snapshot. This parameter is not case sensitive.
Constraints:
-
Must contain from 1 to 63 letters, numbers, or hyphens.
-
The first character must be a letter.
-
Cannot end with a hyphen or contain two consecutive hyphens.
Example: elastic-cluster-snapshot-5
"
+ }
+ }
+ },
+ "CopyClusterSnapshotInputTargetSnapshotNameString":{
+ "type":"string",
+ "max":63,
+ "min":1
+ },
+ "CopyClusterSnapshotOutput":{
+ "type":"structure",
+ "required":["snapshot"],
+ "members":{
+ "snapshot":{"shape":"ClusterSnapshot"}
+ }
+ },
"CreateClusterInput":{
"type":"structure",
"required":[
@@ -520,28 +646,36 @@
"members":{
"adminUserName":{
"shape":"String",
- "documentation":"The name of the Elastic DocumentDB cluster administrator.
Constraints:
-
Must be from 1 to 63 letters or numbers.
-
The first character must be a letter.
-
Cannot be a reserved word.
"
+ "documentation":"The name of the Amazon DocumentDB elastic clusters administrator.
Constraints:
-
Must be from 1 to 63 letters or numbers.
-
The first character must be a letter.
-
Cannot be a reserved word.
"
},
"adminUserPassword":{
"shape":"Password",
- "documentation":"The password for the Elastic DocumentDB cluster administrator and can contain any printable ASCII characters.
Constraints:
-
Must contain from 8 to 100 characters.
-
Cannot contain a forward slash (/), double quote (\"), or the \"at\" symbol (@).
"
+ "documentation":"The password for the Amazon DocumentDB elastic clusters administrator. The password can contain any printable ASCII characters.
Constraints:
-
Must contain from 8 to 100 characters.
-
Cannot contain a forward slash (/), double quote (\"), or the \"at\" symbol (@).
"
},
"authType":{
"shape":"Auth",
- "documentation":"The authentication type for the Elastic DocumentDB cluster.
"
+ "documentation":"The authentication type used to determine where to fetch the password used for accessing the elastic cluster. Valid types are PLAIN_TEXT
or SECRET_ARN
.
"
+ },
+ "backupRetentionPeriod":{
+ "shape":"Integer",
+ "documentation":"The number of days for which automatic snapshots are retained.
"
},
"clientToken":{
"shape":"String",
- "documentation":"The client token for the Elastic DocumentDB cluster.
",
+ "documentation":"The client token for the elastic cluster.
",
"idempotencyToken":true
},
"clusterName":{
"shape":"String",
- "documentation":"The name of the new Elastic DocumentDB cluster. This parameter is stored as a lowercase string.
Constraints:
-
Must contain from 1 to 63 letters, numbers, or hyphens.
-
The first character must be a letter.
-
Cannot end with a hyphen or contain two consecutive hyphens.
Example: my-cluster
"
+ "documentation":"The name of the new elastic cluster. This parameter is stored as a lowercase string.
Constraints:
-
Must contain from 1 to 63 letters, numbers, or hyphens.
-
The first character must be a letter.
-
Cannot end with a hyphen or contain two consecutive hyphens.
Example: my-cluster
"
},
"kmsKeyId":{
"shape":"String",
- "documentation":"The KMS key identifier to use to encrypt the new Elastic DocumentDB cluster.
The KMS key identifier is the Amazon Resource Name (ARN) for the KMS encryption key. If you are creating a cluster using the same Amazon account that owns this KMS encryption key, you can use the KMS key alias instead of the ARN as the KMS encryption key.
If an encryption key is not specified, Elastic DocumentDB uses the default encryption key that KMS creates for your account. Your account has a different default encryption key for each Amazon Region.
"
+ "documentation":"The KMS key identifier to use to encrypt the new elastic cluster.
The KMS key identifier is the Amazon Resource Name (ARN) for the KMS encryption key. If you are creating a cluster using the same Amazon account that owns this KMS encryption key, you can use the KMS key alias instead of the ARN as the KMS encryption key.
If an encryption key is not specified, Amazon DocumentDB uses the default encryption key that KMS creates for your account. Your account has a different default encryption key for each Amazon Region.
"
+ },
+ "preferredBackupWindow":{
+ "shape":"String",
+ "documentation":"The daily time range during which automated backups are created if automated backups are enabled, as determined by the backupRetentionPeriod
.
"
},
"preferredMaintenanceWindow":{
"shape":"String",
@@ -549,23 +683,27 @@
},
"shardCapacity":{
"shape":"Integer",
- "documentation":"The capacity of each shard in the new Elastic DocumentDB cluster.
"
+ "documentation":"The number of vCPUs assigned to each elastic cluster shard. Maximum is 64. Allowed values are 2, 4, 8, 16, 32, 64.
"
},
"shardCount":{
"shape":"Integer",
- "documentation":"The number of shards to create in the new Elastic DocumentDB cluster.
"
+ "documentation":"The number of shards assigned to the elastic cluster. Maximum is 32.
"
+ },
+ "shardInstanceCount":{
+ "shape":"Integer",
+ "documentation":"The number of replica instances applying to all shards in the elastic cluster. A shardInstanceCount
value of 1 means there is one writer instance, and any additional instances are replicas that can be used for reads and to improve availability.
"
},
"subnetIds":{
"shape":"StringList",
- "documentation":"The Amazon EC2 subnet IDs for the new Elastic DocumentDB cluster.
"
+ "documentation":"The Amazon EC2 subnet IDs for the new elastic cluster.
"
},
"tags":{
"shape":"TagMap",
- "documentation":"The tags to be assigned to the new Elastic DocumentDB cluster.
"
+ "documentation":"The tags to be assigned to the new elastic cluster.
"
},
"vpcSecurityGroupIds":{
"shape":"StringList",
- "documentation":"A list of EC2 VPC security groups to associate with the new Elastic DocumentDB cluster.
"
+ "documentation":"A list of EC2 VPC security groups to associate with the new elastic cluster.
"
}
}
},
@@ -575,7 +713,7 @@
"members":{
"cluster":{
"shape":"Cluster",
- "documentation":"The new Elastic DocumentDB cluster that has been created.
"
+ "documentation":"The new elastic cluster that has been created.
"
}
}
},
@@ -588,15 +726,15 @@
"members":{
"clusterArn":{
"shape":"String",
- "documentation":"The arn of the Elastic DocumentDB cluster that the snapshot will be taken from.
"
+ "documentation":"The ARN identifier of the elastic cluster of which you want to create a snapshot.
"
},
"snapshotName":{
"shape":"CreateClusterSnapshotInputSnapshotNameString",
- "documentation":"The name of the Elastic DocumentDB snapshot.
"
+ "documentation":"The name of the new elastic cluster snapshot.
"
},
"tags":{
"shape":"TagMap",
- "documentation":"The tags to be assigned to the new Elastic DocumentDB snapshot.
"
+ "documentation":"The tags to be assigned to the new elastic cluster snapshot.
"
}
}
},
@@ -611,7 +749,7 @@
"members":{
"snapshot":{
"shape":"ClusterSnapshot",
- "documentation":"Returns information about the new Elastic DocumentDB snapshot.
"
+ "documentation":"Returns information about the new elastic cluster snapshot.
"
}
}
},
@@ -621,7 +759,7 @@
"members":{
"clusterArn":{
"shape":"String",
- "documentation":"The arn of the Elastic DocumentDB cluster that is to be deleted.
",
+ "documentation":"The ARN identifier of the elastic cluster that is to be deleted.
",
"location":"uri",
"locationName":"clusterArn"
}
@@ -633,7 +771,7 @@
"members":{
"cluster":{
"shape":"Cluster",
- "documentation":"Returns information about the newly deleted Elastic DocumentDB cluster.
"
+ "documentation":"Returns information about the newly deleted elastic cluster.
"
}
}
},
@@ -643,7 +781,7 @@
"members":{
"snapshotArn":{
"shape":"String",
- "documentation":"The arn of the Elastic DocumentDB snapshot that is to be deleted.
",
+ "documentation":"The ARN identifier of the elastic cluster snapshot that is to be deleted.
",
"location":"uri",
"locationName":"snapshotArn"
}
@@ -655,7 +793,7 @@
"members":{
"snapshot":{
"shape":"ClusterSnapshot",
- "documentation":"Returns information about the newly deleted Elastic DocumentDB snapshot.
"
+ "documentation":"Returns information about the newly deleted elastic cluster snapshot.
"
}
}
},
@@ -665,7 +803,7 @@
"members":{
"clusterArn":{
"shape":"String",
- "documentation":"The arn of the Elastic DocumentDB cluster.
",
+ "documentation":"The ARN identifier of the elastic cluster.
",
"location":"uri",
"locationName":"clusterArn"
}
@@ -677,7 +815,7 @@
"members":{
"cluster":{
"shape":"Cluster",
- "documentation":"Returns information about a specific Elastic DocumentDB cluster.
"
+ "documentation":"Returns information about a specific elastic cluster.
"
}
}
},
@@ -687,7 +825,7 @@
"members":{
"snapshotArn":{
"shape":"String",
- "documentation":"The arn of the Elastic DocumentDB snapshot.
",
+ "documentation":"The ARN identifier of the elastic cluster snapshot.
",
"location":"uri",
"locationName":"snapshotArn"
}
@@ -699,7 +837,7 @@
"members":{
"snapshot":{
"shape":"ClusterSnapshot",
- "documentation":"Returns information about a specific Elastic DocumentDB snapshot.
"
+ "documentation":"Returns information about a specific elastic cluster snapshot.
"
}
}
},
@@ -724,21 +862,27 @@
"members":{
"clusterArn":{
"shape":"String",
- "documentation":"The arn of the Elastic DocumentDB cluster.
",
+ "documentation":"The ARN identifier of the elastic cluster.
",
"location":"querystring",
"locationName":"clusterArn"
},
"maxResults":{
"shape":"ListClusterSnapshotsInputMaxResultsInteger",
- "documentation":"The maximum number of entries to recieve in the response.
",
+ "documentation":"The maximum number of elastic cluster snapshot results to receive in the response.
",
"location":"querystring",
"locationName":"maxResults"
},
"nextToken":{
"shape":"PaginationToken",
- "documentation":"The nextToken which is used the get the next page of data.
",
+ "documentation":"A pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond this token, up to the value specified by max-results
.
If there is no more data in the responce, the nextToken
will not be returned.
",
"location":"querystring",
"locationName":"nextToken"
+ },
+ "snapshotType":{
+ "shape":"String",
+ "documentation":"The type of cluster snapshots to be returned. You can specify one of the following values:
-
automated
- Return all cluster snapshots that Amazon DocumentDB has automatically created for your Amazon Web Services account.
-
manual
- Return all cluster snapshots that you have manually created for your Amazon Web Services account.
",
+ "location":"querystring",
+ "locationName":"snapshotType"
}
}
},
@@ -753,11 +897,11 @@
"members":{
"nextToken":{
"shape":"PaginationToken",
- "documentation":"The response will provide a nextToken if there is more data beyond the maxResults.
If there is no more data in the responce, the nextToken will not be returned.
"
+ "documentation":"A pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond this token, up to the value specified by max-results
.
If there is no more data in the responce, the nextToken
will not be returned.
"
},
"snapshots":{
"shape":"ClusterSnapshotList",
- "documentation":"A list of Elastic DocumentDB snapshots for a specified cluster.
"
+ "documentation":"A list of snapshots for a specified elastic cluster.
"
}
}
},
@@ -766,13 +910,13 @@
"members":{
"maxResults":{
"shape":"ListClustersInputMaxResultsInteger",
- "documentation":"The maximum number of entries to recieve in the response.
",
+ "documentation":"The maximum number of elastic cluster snapshot results to receive in the response.
",
"location":"querystring",
"locationName":"maxResults"
},
"nextToken":{
"shape":"PaginationToken",
- "documentation":"The nextToken which is used the get the next page of data.
",
+ "documentation":"A pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond this token, up to the value specified by max-results
.
If there is no more data in the responce, the nextToken
will not be returned.
",
"location":"querystring",
"locationName":"nextToken"
}
@@ -789,11 +933,11 @@
"members":{
"clusters":{
"shape":"ClusterList",
- "documentation":"A list of Elastic DocumentDB cluster.
"
+ "documentation":"A list of Amazon DocumentDB elastic clusters.
"
},
"nextToken":{
"shape":"PaginationToken",
- "documentation":"The response will provide a nextToken if there is more data beyond the maxResults.
If there is no more data in the responce, the nextToken will not be returned.
"
+ "documentation":"A pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond this token, up to the value specified by max-results
.
If there is no more data in the responce, the nextToken
will not be returned.
"
}
}
},
@@ -803,7 +947,7 @@
"members":{
"resourceArn":{
"shape":"Arn",
- "documentation":"The arn of the Elastic DocumentDB resource.
",
+ "documentation":"The ARN identifier of the elastic cluster resource.
",
"location":"uri",
"locationName":"resourceArn"
}
@@ -814,7 +958,7 @@
"members":{
"tags":{
"shape":"TagMap",
- "documentation":"The list of tags for the specified Elastic DocumentDB resource.
"
+ "documentation":"The list of tags for the specified elastic cluster resource.
"
}
}
},
@@ -863,29 +1007,37 @@
"members":{
"clusterName":{
"shape":"String",
- "documentation":"The name of the Elastic DocumentDB cluster.
"
+ "documentation":"The name of the elastic cluster.
"
},
"kmsKeyId":{
"shape":"String",
- "documentation":"The KMS key identifier to use to encrypt the new Elastic DocumentDB cluster.
The KMS key identifier is the Amazon Resource Name (ARN) for the KMS encryption key. If you are creating a cluster using the same Amazon account that owns this KMS encryption key, you can use the KMS key alias instead of the ARN as the KMS encryption key.
If an encryption key is not specified here, Elastic DocumentDB uses the default encryption key that KMS creates for your account. Your account has a different default encryption key for each Amazon Region.
"
+ "documentation":"The KMS key identifier to use to encrypt the new Amazon DocumentDB elastic clusters cluster.
The KMS key identifier is the Amazon Resource Name (ARN) for the KMS encryption key. If you are creating a cluster using the same Amazon account that owns this KMS encryption key, you can use the KMS key alias instead of the ARN as the KMS encryption key.
If an encryption key is not specified here, Amazon DocumentDB uses the default encryption key that KMS creates for your account. Your account has a different default encryption key for each Amazon Region.
"
+ },
+ "shardCapacity":{
+ "shape":"Integer",
+ "documentation":"The capacity of each shard in the new restored elastic cluster.
"
+ },
+ "shardInstanceCount":{
+ "shape":"Integer",
+ "documentation":"The number of replica instances applying to all shards in the elastic cluster. A shardInstanceCount
value of 1 means there is one writer instance, and any additional instances are replicas that can be used for reads and to improve availability.
"
},
"snapshotArn":{
"shape":"String",
- "documentation":"The arn of the Elastic DocumentDB snapshot.
",
+ "documentation":"The ARN identifier of the elastic cluster snapshot.
",
"location":"uri",
"locationName":"snapshotArn"
},
"subnetIds":{
"shape":"StringList",
- "documentation":"The Amazon EC2 subnet IDs for the Elastic DocumentDB cluster.
"
+ "documentation":"The Amazon EC2 subnet IDs for the elastic cluster.
"
},
"tags":{
"shape":"TagMap",
- "documentation":"A list of the tag names to be assigned to the restored DB cluster, in the form of an array of key-value pairs in which the key is the tag name and the value is the key value.
"
+ "documentation":"A list of the tag names to be assigned to the restored elastic cluster, in the form of an array of key-value pairs in which the key is the tag name and the value is the key value.
"
},
"vpcSecurityGroupIds":{
"shape":"StringList",
- "documentation":"A list of EC2 VPC security groups to associate with the Elastic DocumentDB cluster.
"
+ "documentation":"A list of EC2 VPC security groups to associate with the elastic cluster.
"
}
}
},
@@ -895,7 +1047,7 @@
"members":{
"cluster":{
"shape":"Cluster",
- "documentation":"Returns information about a the restored Elastic DocumentDB cluster.
"
+ "documentation":"Returns information about a the restored elastic cluster.
"
}
}
},
@@ -912,6 +1064,59 @@
},
"exception":true
},
+ "Shard":{
+ "type":"structure",
+ "required":[
+ "createTime",
+ "shardId",
+ "status"
+ ],
+ "members":{
+ "createTime":{
+ "shape":"String",
+ "documentation":"The time when the shard was created in Universal Coordinated Time (UTC).
"
+ },
+ "shardId":{
+ "shape":"String",
+ "documentation":"The ID of the shard.
"
+ },
+ "status":{
+ "shape":"Status",
+ "documentation":"The current status of the shard.
"
+ }
+ },
+ "documentation":"The name of the shard.
"
+ },
+ "ShardList":{
+ "type":"list",
+ "member":{"shape":"Shard"}
+ },
+ "SnapshotType":{
+ "type":"string",
+ "enum":[
+ "MANUAL",
+ "AUTOMATED"
+ ]
+ },
+ "StartClusterInput":{
+ "type":"structure",
+ "required":["clusterArn"],
+ "members":{
+ "clusterArn":{
+ "shape":"String",
+ "documentation":"The ARN identifier of the elastic cluster.
",
+ "location":"uri",
+ "locationName":"clusterArn"
+ }
+ }
+ },
+ "StartClusterOutput":{
+ "type":"structure",
+ "required":["cluster"],
+ "members":{
+ "cluster":{"shape":"Cluster"}
+ }
+ },
"Status":{
"type":"string",
"enum":[
@@ -923,9 +1128,38 @@
"IP_ADDRESS_LIMIT_EXCEEDED",
"INVALID_SECURITY_GROUP_ID",
"INVALID_SUBNET_ID",
- "INACCESSIBLE_ENCRYPTION_CREDS"
+ "INACCESSIBLE_ENCRYPTION_CREDS",
+ "INACCESSIBLE_SECRET_ARN",
+ "INACCESSIBLE_VPC_ENDPOINT",
+ "INCOMPATIBLE_NETWORK",
+ "MERGING",
+ "MODIFYING",
+ "SPLITTING",
+ "COPYING",
+ "STARTING",
+ "STOPPING",
+ "STOPPED"
]
},
+ "StopClusterInput":{
+ "type":"structure",
+ "required":["clusterArn"],
+ "members":{
+ "clusterArn":{
+ "shape":"String",
+ "documentation":"The ARN identifier of the elastic cluster.
",
+ "location":"uri",
+ "locationName":"clusterArn"
+ }
+ }
+ },
+ "StopClusterOutput":{
+ "type":"structure",
+ "required":["cluster"],
+ "members":{
+ "cluster":{"shape":"Cluster"}
+ }
+ },
"String":{"type":"string"},
"StringList":{
"type":"list",
@@ -957,13 +1191,13 @@
"members":{
"resourceArn":{
"shape":"Arn",
- "documentation":"The arn of the Elastic DocumentDB resource.
",
+ "documentation":"The ARN identifier of the elastic cluster resource.
",
"location":"uri",
"locationName":"resourceArn"
},
"tags":{
"shape":"TagMap",
- "documentation":"The tags to be assigned to the Elastic DocumentDB resource.
"
+ "documentation":"The tags that are assigned to the elastic cluster resource.
"
}
}
},
@@ -1006,13 +1240,13 @@
"members":{
"resourceArn":{
"shape":"Arn",
- "documentation":"The arn of the Elastic DocumentDB resource.
",
+ "documentation":"The ARN identifier of the elastic cluster resource.
",
"location":"uri",
"locationName":"resourceArn"
},
"tagKeys":{
"shape":"TagKeyList",
- "documentation":"The tag keys to be removed from the Elastic DocumentDB resource.
",
+ "documentation":"The tag keys to be removed from the elastic cluster resource.
",
"location":"querystring",
"locationName":"tagKeys"
}
@@ -1029,42 +1263,54 @@
"members":{
"adminUserPassword":{
"shape":"Password",
- "documentation":"The password for the Elastic DocumentDB cluster administrator. This password can contain any printable ASCII character except forward slash (/), double quote (\"), or the \"at\" symbol (@).
Constraints: Must contain from 8 to 100 characters.
"
+ "documentation":"The password associated with the elastic cluster administrator. This password can contain any printable ASCII character except forward slash (/), double quote (\"), or the \"at\" symbol (@).
Constraints: Must contain from 8 to 100 characters.
"
},
"authType":{
"shape":"Auth",
- "documentation":"The authentication type for the Elastic DocumentDB cluster.
"
+ "documentation":"The authentication type used to determine where to fetch the password used for accessing the elastic cluster. Valid types are PLAIN_TEXT
or SECRET_ARN
.
"
+ },
+ "backupRetentionPeriod":{
+ "shape":"Integer",
+ "documentation":"The number of days for which automatic snapshots are retained.
"
},
"clientToken":{
"shape":"String",
- "documentation":"The client token for the Elastic DocumentDB cluster.
",
+ "documentation":"The client token for the elastic cluster.
",
"idempotencyToken":true
},
"clusterArn":{
"shape":"String",
- "documentation":"The arn of the Elastic DocumentDB cluster.
",
+ "documentation":"The ARN identifier of the elastic cluster.
",
"location":"uri",
"locationName":"clusterArn"
},
+ "preferredBackupWindow":{
+ "shape":"String",
+ "documentation":"The daily time range during which automated backups are created if automated backups are enabled, as determined by the backupRetentionPeriod
.
"
+ },
"preferredMaintenanceWindow":{
"shape":"String",
"documentation":"The weekly time range during which system maintenance can occur, in Universal Coordinated Time (UTC).
Format: ddd:hh24:mi-ddd:hh24:mi
Default: a 30-minute window selected at random from an 8-hour block of time for each Amazon Web Services Region, occurring on a random day of the week.
Valid days: Mon, Tue, Wed, Thu, Fri, Sat, Sun
Constraints: Minimum 30-minute window.
"
},
"shardCapacity":{
"shape":"Integer",
- "documentation":"The capacity of each shard in the Elastic DocumentDB cluster.
"
+ "documentation":"The number of vCPUs assigned to each elastic cluster shard. Maximum is 64. Allowed values are 2, 4, 8, 16, 32, 64.
"
},
"shardCount":{
"shape":"Integer",
- "documentation":"The number of shards to create in the Elastic DocumentDB cluster.
"
+ "documentation":"The number of shards assigned to the elastic cluster. Maximum is 32.
"
+ },
+ "shardInstanceCount":{
+ "shape":"Integer",
+ "documentation":"The number of replica instances applying to all shards in the elastic cluster. A shardInstanceCount
value of 1 means there is one writer instance, and any additional instances are replicas that can be used for reads and to improve availability.
"
},
"subnetIds":{
"shape":"StringList",
- "documentation":"The number of shards to create in the Elastic DocumentDB cluster.
"
+ "documentation":"The Amazon EC2 subnet IDs for the elastic cluster.
"
},
"vpcSecurityGroupIds":{
"shape":"StringList",
- "documentation":"A list of EC2 VPC security groups to associate with the new Elastic DocumentDB cluster.
"
+ "documentation":"A list of EC2 VPC security groups to associate with the elastic cluster.
"
}
}
},
@@ -1074,7 +1320,7 @@
"members":{
"cluster":{
"shape":"Cluster",
- "documentation":"Returns information about the updated Elastic DocumentDB cluster.
"
+ "documentation":"Returns information about the updated elastic cluster.
"
}
}
},
@@ -1137,5 +1383,5 @@
]
}
},
- "documentation":"The new Amazon Elastic DocumentDB service endpoint.
"
+ "documentation":"Amazon DocumentDB elastic clusters
Amazon DocumentDB elastic-clusters support workloads with millions of reads/writes per second and petabytes of storage capacity. Amazon DocumentDB elastic clusters also simplify how developers interact with Amazon DocumentDB elastic-clusters by eliminating the need to choose, manage or upgrade instances.
Amazon DocumentDB elastic-clusters were created to:
-
provide a solution for customers looking for a database that provides virtually limitless scale with rich query capabilities and MongoDB API compatibility.
-
give customers higher connection limits, and to reduce downtime from patching.
-
continue investing in a cloud-native, elastic, and class leading architecture for JSON workloads.
"
}
From 01b2dc32419f246b831b6897eeec3b9d617a3666 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Thu, 29 Feb 2024 19:06:53 +0000
Subject: [PATCH 07/13] Amazon SageMaker Service Update: Adds support for
ModelDataSource in Model Packages to support unzipped models. Adds support to
specify SourceUri for models which allows registration of models without
mandating a container for hosting. Using SourceUri, customers can decouple
the model from hosting information during registration.
---
...eature-AmazonSageMakerService-26fcd36.json | 6 ++
.../codegen-resources/service-2.json | 56 +++++++++++++++----
2 files changed, 51 insertions(+), 11 deletions(-)
create mode 100644 .changes/next-release/feature-AmazonSageMakerService-26fcd36.json
diff --git a/.changes/next-release/feature-AmazonSageMakerService-26fcd36.json b/.changes/next-release/feature-AmazonSageMakerService-26fcd36.json
new file mode 100644
index 000000000000..1ebe384d0853
--- /dev/null
+++ b/.changes/next-release/feature-AmazonSageMakerService-26fcd36.json
@@ -0,0 +1,6 @@
+{
+ "type": "feature",
+ "category": "Amazon SageMaker Service",
+ "contributor": "",
+ "description": "Adds support for ModelDataSource in Model Packages to support unzipped models. Adds support to specify SourceUri for models which allows registration of models without mandating a container for hosting. Using SourceUri, customers can decouple the model from hosting information during registration."
+}
diff --git a/services/sagemaker/src/main/resources/codegen-resources/service-2.json b/services/sagemaker/src/main/resources/codegen-resources/service-2.json
index 2d32a93f54b6..4df8df84c348 100644
--- a/services/sagemaker/src/main/resources/codegen-resources/service-2.json
+++ b/services/sagemaker/src/main/resources/codegen-resources/service-2.json
@@ -486,7 +486,7 @@
"errors":[
{"shape":"ResourceLimitExceeded"}
],
- "documentation":"Creates a model in SageMaker. In the request, you name the model and describe a primary container. For the primary container, you specify the Docker image that contains inference code, artifacts (from prior training), and a custom environment map that the inference code uses when you deploy the model for predictions.
Use this API to create a model if you want to use SageMaker hosting services or run a batch transform job.
To host your model, you create an endpoint configuration with the CreateEndpointConfig
API, and then create an endpoint with the CreateEndpoint
API. SageMaker then deploys all of the containers that you defined for the model in the hosting environment.
For an example that calls this method when deploying a model to SageMaker hosting services, see Create a Model (Amazon Web Services SDK for Python (Boto 3)).
To run a batch transform using your model, you start a job with the CreateTransformJob
API. SageMaker uses your model and your dataset to get inferences which are then saved to a specified S3 location.
In the request, you also provide an IAM role that SageMaker can assume to access model artifacts and docker image for deployment on ML compute hosting instances or for batch transform jobs. In addition, you also use the IAM role to manage permissions the inference code needs. For example, if the inference code access any other Amazon Web Services resources, you grant necessary permissions via this role.
"
+ "documentation":"Creates a model in SageMaker. In the request, you name the model and describe a primary container. For the primary container, you specify the Docker image that contains inference code, artifacts (from prior training), and a custom environment map that the inference code uses when you deploy the model for predictions.
Use this API to create a model if you want to use SageMaker hosting services or run a batch transform job.
To host your model, you create an endpoint configuration with the CreateEndpointConfig
API, and then create an endpoint with the CreateEndpoint
API. SageMaker then deploys all of the containers that you defined for the model in the hosting environment.
To run a batch transform using your model, you start a job with the CreateTransformJob
API. SageMaker uses your model and your dataset to get inferences which are then saved to a specified S3 location.
In the request, you also provide an IAM role that SageMaker can assume to access model artifacts and docker image for deployment on ML compute hosting instances or for batch transform jobs. In addition, you also use the IAM role to manage permissions the inference code needs. For example, if the inference code access any other Amazon Web Services resources, you grant necessary permissions via this role.
"
},
"CreateModelBiasJobDefinition":{
"name":"CreateModelBiasJobDefinition",
@@ -3607,7 +3607,7 @@
{"shape":"ResourceNotFound"},
{"shape":"ResourceLimitExceeded"}
],
- "documentation":"Updates the feature group by either adding features or updating the online store configuration. Use one of the following request parameters at a time while using the UpdateFeatureGroup
API.
You can add features for your feature group using the FeatureAdditions
request parameter. Features cannot be removed from a feature group.
You can update the online store configuration by using the OnlineStoreConfig
request parameter. If a TtlDuration
is specified, the default TtlDuration
applies for all records added to the feature group after the feature group is updated. If a record level TtlDuration
exists from using the PutRecord
API, the record level TtlDuration
applies to that record instead of the default TtlDuration
.
"
+ "documentation":"Updates the feature group by either adding features or updating the online store configuration. Use one of the following request parameters at a time while using the UpdateFeatureGroup
API.
You can add features for your feature group using the FeatureAdditions
request parameter. Features cannot be removed from a feature group.
You can update the online store configuration by using the OnlineStoreConfig
request parameter. If a TtlDuration
is specified, the default TtlDuration
applies for all records added to the feature group after the feature group is updated. If a record level TtlDuration
exists from using the PutRecord
API, the record level TtlDuration
applies to that record instead of the default TtlDuration
. To remove the default TtlDuration
from an existing feature group, use the UpdateFeatureGroup
API and set the TtlDuration
Unit
and Value
to null
.
"
},
"UpdateFeatureMetadata":{
"name":"UpdateFeatureMetadata",
@@ -5363,7 +5363,7 @@
"members":{
"MetricName":{
"shape":"AutoMLMetricEnum",
- "documentation":"The name of the objective metric used to measure the predictive quality of a machine learning system. During training, the model's parameters are updated iteratively to optimize its performance based on the feedback provided by the objective metric when evaluating the model on the validation dataset.
The list of available metrics supported by Autopilot and the default metric applied when you do not specify a metric name explicitly depend on the problem type.
-
For tabular problem types:
-
List of available metrics:
-
Regression: InferenceLatency
, MAE
, MSE
, R2
, RMSE
-
Binary classification: Accuracy
, AUC
, BalancedAccuracy
, F1
, InferenceLatency
, LogLoss
, Precision
, Recall
-
Multiclass classification: Accuracy
, BalancedAccuracy
, F1macro
, InferenceLatency
, LogLoss
, PrecisionMacro
, RecallMacro
For a description of each metric, see Autopilot metrics for classification and regression.
-
Default objective metrics:
-
For image or text classification problem types:
-
For time-series forecasting problem types:
-
For text generation problem types (LLMs fine-tuning): Fine-tuning language models in Autopilot does not require setting the AutoMLJobObjective
field. Autopilot fine-tunes LLMs without requiring multiple candidates to be trained and evaluated. Instead, using your dataset, Autopilot directly fine-tunes your target model to enhance a default objective metric, the cross-entropy loss. After fine-tuning a language model, you can evaluate the quality of its generated text using different metrics. For a list of the available metrics, see Metrics for fine-tuning LLMs in Autopilot.
"
+ "documentation":"The name of the objective metric used to measure the predictive quality of a machine learning system. During training, the model's parameters are updated iteratively to optimize its performance based on the feedback provided by the objective metric when evaluating the model on the validation dataset.
The list of available metrics supported by Autopilot and the default metric applied when you do not specify a metric name explicitly depend on the problem type.
-
For tabular problem types:
-
List of available metrics:
-
Regression: MAE
, MSE
, R2
, RMSE
-
Binary classification: Accuracy
, AUC
, BalancedAccuracy
, F1
, Precision
, Recall
-
Multiclass classification: Accuracy
, BalancedAccuracy
, F1macro
, PrecisionMacro
, RecallMacro
For a description of each metric, see Autopilot metrics for classification and regression.
-
Default objective metrics:
-
For image or text classification problem types:
-
For time-series forecasting problem types:
-
For text generation problem types (LLMs fine-tuning): Fine-tuning language models in Autopilot does not require setting the AutoMLJobObjective
field. Autopilot fine-tunes LLMs without requiring multiple candidates to be trained and evaluated. Instead, using your dataset, Autopilot directly fine-tunes your target model to enhance a default objective metric, the cross-entropy loss. After fine-tuning a language model, you can evaluate the quality of its generated text using different metrics. For a list of the available metrics, see Metrics for fine-tuning LLMs in Autopilot.
"
}
},
"documentation":"Specifies a metric to minimize or maximize as the objective of an AutoML job.
"
@@ -9476,7 +9476,7 @@
},
"InferenceSpecification":{
"shape":"InferenceSpecification",
- "documentation":"Specifies details about inference jobs that can be run with models based on this model package, including the following:
-
The Amazon ECR paths of containers that contain the inference code and model artifacts.
-
The instance types that the model package supports for transform jobs and real-time endpoints used for inference.
-
The input and output content formats that the model package supports for inference.
"
+ "documentation":"Specifies details about inference jobs that you can run with models based on this model package, including the following information:
-
The Amazon ECR paths of containers that contain the inference code and model artifacts.
-
The instance types that the model package supports for transform jobs and real-time endpoints used for inference.
-
The input and output content formats that the model package supports for inference.
"
},
"ValidationSpecification":{
"shape":"ModelPackageValidationSpecification",
@@ -9535,6 +9535,10 @@
"SkipModelValidation":{
"shape":"SkipModelValidation",
"documentation":"Indicates if you want to skip model validation.
"
+ },
+ "SourceUri":{
+ "shape":"ModelPackageSourceUri",
+ "documentation":"The URI of the source for the model package. If you want to clone a model package, set it to the model package Amazon Resource Name (ARN). If you want to register a model, set it to the model ARN.
"
}
}
},
@@ -12085,7 +12089,7 @@
},
"CreationTime":{
"shape":"Timestamp",
- "documentation":"The creation time.
"
+ "documentation":"The creation time of the application.
After an application has been shut down for 24 hours, SageMaker deletes all metadata for the application. To be considered an update and retain application metadata, applications must be restarted within 24 hours after the previous application has been shut down. After this time window, creation of an application is considered a new application rather than an update of the previous application.
"
},
"FailureReason":{
"shape":"FailureReason",
@@ -14707,7 +14711,7 @@
},
"InferenceSpecification":{
"shape":"InferenceSpecification",
- "documentation":"Details about inference jobs that can be run with models based on this model package.
"
+ "documentation":"Details about inference jobs that you can run with models based on this model package.
"
},
"SourceAlgorithmSpecification":{
"shape":"SourceAlgorithmSpecification",
@@ -14775,6 +14779,10 @@
"SkipModelValidation":{
"shape":"SkipModelValidation",
"documentation":"Indicates if you want to skip model validation.
"
+ },
+ "SourceUri":{
+ "shape":"ModelPackageSourceUri",
+ "documentation":"The URI of the source for the model package.
"
}
}
},
@@ -17472,7 +17480,7 @@
"type":"map",
"key":{"shape":"EnvironmentKey"},
"value":{"shape":"EnvironmentValue"},
- "max":16
+ "max":100
},
"EnvironmentParameter":{
"type":"structure",
@@ -21029,7 +21037,7 @@
"FileSystemConfig":{"shape":"FileSystemConfig"},
"ContainerConfig":{"shape":"ContainerConfig"}
},
- "documentation":"The configuration for the file system and kernels in a SageMaker image running as a JupyterLab app.
"
+ "documentation":"The configuration for the file system and kernels in a SageMaker image running as a JupyterLab app. The FileSystemConfig
object is not supported.
"
},
"JupyterLabAppSettings":{
"type":"structure",
@@ -26680,7 +26688,7 @@
},
"Bias":{
"shape":"Bias",
- "documentation":"Metrics that measure bais in a model.
"
+ "documentation":"Metrics that measure bias in a model.
"
},
"Explainability":{
"shape":"Explainability",
@@ -26794,6 +26802,10 @@
"shape":"AdditionalInferenceSpecifications",
"documentation":"An array of additional Inference Specification objects.
"
},
+ "SourceUri":{
+ "shape":"ModelPackageSourceUri",
+ "documentation":"The URI of the source for the model package.
"
+ },
"Tags":{
"shape":"TagList",
"documentation":"A list of the tags associated with the model package. For more information, see Tagging Amazon Web Services resources in the Amazon Web Services General Reference Guide.
"
@@ -26845,6 +26857,10 @@
"shape":"Url",
"documentation":"The Amazon S3 path where the model artifacts, which result from model training, are stored. This path must point to a single gzip
compressed tar archive (.tar.gz
suffix).
The model artifacts must be in an S3 bucket that is in the same region as the model package.
"
},
+ "ModelDataSource":{
+ "shape":"ModelDataSource",
+ "documentation":"Specifies the location of ML model data to deploy during endpoint creation.
"
+ },
"ProductId":{
"shape":"ProductId",
"documentation":"The Amazon Web Services Marketplace product ID of the model package.
"
@@ -26986,6 +27002,12 @@
"CreationTime"
]
},
+ "ModelPackageSourceUri":{
+ "type":"string",
+ "max":1024,
+ "min":0,
+ "pattern":"[\\p{L}\\p{M}\\p{Z}\\p{N}\\p{P}]{0,1024}"
+ },
"ModelPackageStatus":{
"type":"string",
"enum":[
@@ -32848,6 +32870,10 @@
"shape":"Url",
"documentation":"The Amazon S3 path where the model artifacts, which result from model training, are stored. This path must point to a single gzip
compressed tar archive (.tar.gz
suffix).
The model artifacts must be in an S3 bucket that is in the same Amazon Web Services region as the algorithm.
"
},
+ "ModelDataSource":{
+ "shape":"ModelDataSource",
+ "documentation":"Specifies the location of ML model data to deploy during endpoint creation.
"
+ },
"AlgorithmName":{
"shape":"ArnOrName",
"documentation":"The name of an algorithm that was used to create the model package. The algorithm must be either an algorithm resource in your SageMaker account or an algorithm in Amazon Web Services Marketplace that you are subscribed to.
"
@@ -36395,6 +36421,14 @@
"AdditionalInferenceSpecificationsToAdd":{
"shape":"AdditionalInferenceSpecifications",
"documentation":"An array of additional Inference Specification objects to be added to the existing array additional Inference Specification. Total number of additional Inference Specifications can not exceed 15. Each additional Inference Specification specifies artifacts based on this model package that can be used on inference endpoints. Generally used with SageMaker Neo to store the compiled artifacts.
"
+ },
+ "InferenceSpecification":{
+ "shape":"InferenceSpecification",
+ "documentation":"Specifies details about inference jobs that you can run with models based on this model package, including the following information:
-
The Amazon ECR paths of containers that contain the inference code and model artifacts.
-
The instance types that the model package supports for transform jobs and real-time endpoints used for inference.
-
The input and output content formats that the model package supports for inference.
"
+ },
+ "SourceUri":{
+ "shape":"ModelPackageSourceUri",
+ "documentation":"The URI of the source for the model package.
"
}
}
},
@@ -37200,14 +37234,14 @@
"members":{
"Key":{
"shape":"VisibilityConditionsKey",
- "documentation":"The key that specifies the tag that you're using to filter the search results. It must be in the following format: Tags.<key>/EqualsIfExists
.
"
+ "documentation":"The key that specifies the tag that you're using to filter the search results. It must be in the following format: Tags.<key>
.
"
},
"Value":{
"shape":"VisibilityConditionsValue",
"documentation":"The value for the tag that you're using to filter the search results.
"
}
},
- "documentation":"The list of key-value pairs that you specify for your resources.
"
+ "documentation":"The list of key-value pairs used to filter your search results. If a search result contains a key from your list, it is included in the final search response if the value associated with the key in the result matches the value you specified. If the value doesn't match, the result is excluded from the search response. Any resources that don't have a key from the list that you've provided will also be included in the search response.
"
},
"VisibilityConditionsKey":{
"type":"string",
From dcbde655fe7292cff2bcedd64f837339d720ac52 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Thu, 29 Feb 2024 19:06:56 +0000
Subject: [PATCH 08/13] AWS Migration Hub Orchestrator Update: Adds new
CreateTemplate, UpdateTemplate and DeleteTemplate APIs.
---
...e-AWSMigrationHubOrchestrator-afc78aa.json | 6 +
.../codegen-resources/endpoint-rule-set.json | 64 ++--
.../codegen-resources/service-2.json | 283 ++++++++++++++++--
3 files changed, 304 insertions(+), 49 deletions(-)
create mode 100644 .changes/next-release/feature-AWSMigrationHubOrchestrator-afc78aa.json
diff --git a/.changes/next-release/feature-AWSMigrationHubOrchestrator-afc78aa.json b/.changes/next-release/feature-AWSMigrationHubOrchestrator-afc78aa.json
new file mode 100644
index 000000000000..20e156c23b76
--- /dev/null
+++ b/.changes/next-release/feature-AWSMigrationHubOrchestrator-afc78aa.json
@@ -0,0 +1,6 @@
+{
+ "type": "feature",
+ "category": "AWS Migration Hub Orchestrator",
+ "contributor": "",
+ "description": "Adds new CreateTemplate, UpdateTemplate and DeleteTemplate APIs."
+}
diff --git a/services/migrationhuborchestrator/src/main/resources/codegen-resources/endpoint-rule-set.json b/services/migrationhuborchestrator/src/main/resources/codegen-resources/endpoint-rule-set.json
index 6f809520383f..caee563f28f7 100644
--- a/services/migrationhuborchestrator/src/main/resources/codegen-resources/endpoint-rule-set.json
+++ b/services/migrationhuborchestrator/src/main/resources/codegen-resources/endpoint-rule-set.json
@@ -40,7 +40,6 @@
]
}
],
- "type": "tree",
"rules": [
{
"conditions": [
@@ -59,7 +58,6 @@
},
{
"conditions": [],
- "type": "tree",
"rules": [
{
"conditions": [
@@ -87,13 +85,14 @@
},
"type": "endpoint"
}
- ]
+ ],
+ "type": "tree"
}
- ]
+ ],
+ "type": "tree"
},
{
"conditions": [],
- "type": "tree",
"rules": [
{
"conditions": [
@@ -106,7 +105,6 @@
]
}
],
- "type": "tree",
"rules": [
{
"conditions": [
@@ -120,7 +118,6 @@
"assign": "PartitionResult"
}
],
- "type": "tree",
"rules": [
{
"conditions": [
@@ -143,7 +140,6 @@
]
}
],
- "type": "tree",
"rules": [
{
"conditions": [
@@ -178,11 +174,9 @@
]
}
],
- "type": "tree",
"rules": [
{
"conditions": [],
- "type": "tree",
"rules": [
{
"conditions": [],
@@ -193,16 +187,19 @@
},
"type": "endpoint"
}
- ]
+ ],
+ "type": "tree"
}
- ]
+ ],
+ "type": "tree"
},
{
"conditions": [],
"error": "FIPS and DualStack are enabled, but this partition does not support one or both",
"type": "error"
}
- ]
+ ],
+ "type": "tree"
},
{
"conditions": [
@@ -216,14 +213,12 @@
]
}
],
- "type": "tree",
"rules": [
{
"conditions": [
{
"fn": "booleanEquals",
"argv": [
- true,
{
"fn": "getAttr",
"argv": [
@@ -232,15 +227,14 @@
},
"supportsFIPS"
]
- }
+ },
+ true
]
}
],
- "type": "tree",
"rules": [
{
"conditions": [],
- "type": "tree",
"rules": [
{
"conditions": [],
@@ -251,16 +245,19 @@
},
"type": "endpoint"
}
- ]
+ ],
+ "type": "tree"
}
- ]
+ ],
+ "type": "tree"
},
{
"conditions": [],
"error": "FIPS is enabled but this partition does not support FIPS",
"type": "error"
}
- ]
+ ],
+ "type": "tree"
},
{
"conditions": [
@@ -274,7 +271,6 @@
]
}
],
- "type": "tree",
"rules": [
{
"conditions": [
@@ -294,11 +290,9 @@
]
}
],
- "type": "tree",
"rules": [
{
"conditions": [],
- "type": "tree",
"rules": [
{
"conditions": [],
@@ -309,20 +303,22 @@
},
"type": "endpoint"
}
- ]
+ ],
+ "type": "tree"
}
- ]
+ ],
+ "type": "tree"
},
{
"conditions": [],
"error": "DualStack is enabled but this partition does not support DualStack",
"type": "error"
}
- ]
+ ],
+ "type": "tree"
},
{
"conditions": [],
- "type": "tree",
"rules": [
{
"conditions": [],
@@ -333,18 +329,22 @@
},
"type": "endpoint"
}
- ]
+ ],
+ "type": "tree"
}
- ]
+ ],
+ "type": "tree"
}
- ]
+ ],
+ "type": "tree"
},
{
"conditions": [],
"error": "Invalid Configuration: Missing Region",
"type": "error"
}
- ]
+ ],
+ "type": "tree"
}
]
}
\ No newline at end of file
diff --git a/services/migrationhuborchestrator/src/main/resources/codegen-resources/service-2.json b/services/migrationhuborchestrator/src/main/resources/codegen-resources/service-2.json
index 89f3165ba5ca..b44ed014ee08 100644
--- a/services/migrationhuborchestrator/src/main/resources/codegen-resources/service-2.json
+++ b/services/migrationhuborchestrator/src/main/resources/codegen-resources/service-2.json
@@ -12,6 +12,24 @@
"uid":"migrationhuborchestrator-2021-08-28"
},
"operations":{
+ "CreateTemplate":{
+ "name":"CreateTemplate",
+ "http":{
+ "method":"POST",
+ "requestUri":"/template",
+ "responseCode":200
+ },
+ "input":{"shape":"CreateTemplateRequest"},
+ "output":{"shape":"CreateTemplateResponse"},
+ "errors":[
+ {"shape":"ThrottlingException"},
+ {"shape":"ConflictException"},
+ {"shape":"AccessDeniedException"},
+ {"shape":"InternalServerException"},
+ {"shape":"ValidationException"}
+ ],
+ "documentation":"Creates a migration workflow template.
"
+ },
"CreateWorkflow":{
"name":"CreateWorkflow",
"http":{
@@ -63,6 +81,25 @@
],
"documentation":"Create a step group in a migration workflow.
"
},
+ "DeleteTemplate":{
+ "name":"DeleteTemplate",
+ "http":{
+ "method":"DELETE",
+ "requestUri":"/template/{id}",
+ "responseCode":200
+ },
+ "input":{"shape":"DeleteTemplateRequest"},
+ "output":{"shape":"DeleteTemplateResponse"},
+ "errors":[
+ {"shape":"ThrottlingException"},
+ {"shape":"AccessDeniedException"},
+ {"shape":"InternalServerException"},
+ {"shape":"ValidationException"},
+ {"shape":"ResourceNotFoundException"}
+ ],
+ "documentation":"Deletes a migration workflow template.
",
+ "idempotent":true
+ },
"DeleteWorkflow":{
"name":"DeleteWorkflow",
"http":{
@@ -446,6 +483,24 @@
"documentation":"Deletes the tags for a resource.
",
"idempotent":true
},
+ "UpdateTemplate":{
+ "name":"UpdateTemplate",
+ "http":{
+ "method":"POST",
+ "requestUri":"/template/{id}",
+ "responseCode":200
+ },
+ "input":{"shape":"UpdateTemplateRequest"},
+ "output":{"shape":"UpdateTemplateResponse"},
+ "errors":[
+ {"shape":"ThrottlingException"},
+ {"shape":"AccessDeniedException"},
+ {"shape":"InternalServerException"},
+ {"shape":"ValidationException"},
+ {"shape":"ResourceNotFoundException"}
+ ],
+ "documentation":"Updates a migration workflow template.
"
+ },
"UpdateWorkflow":{
"name":"UpdateWorkflow",
"http":{
@@ -526,12 +581,31 @@
"type":"boolean",
"box":true
},
+ "ClientToken":{
+ "type":"string",
+ "max":256,
+ "min":1,
+ "pattern":"[-a-zA-Z0-9]*"
+ },
+ "ConflictException":{
+ "type":"structure",
+ "required":["message"],
+ "members":{
+ "message":{"shape":"String"}
+ },
+ "documentation":"This exception is thrown when an attempt to update or delete a resource would cause an inconsistent state.
",
+ "error":{
+ "httpStatusCode":409,
+ "senderFault":true
+ },
+ "exception":true,
+ "retryable":{"throttling":false}
+ },
"CreateMigrationWorkflowRequest":{
"type":"structure",
"required":[
"name",
"templateId",
- "applicationConfigurationId",
"inputParameters"
],
"members":{
@@ -568,8 +642,8 @@
"CreateMigrationWorkflowRequestApplicationConfigurationIdString":{
"type":"string",
"max":100,
- "min":1,
- "pattern":"[-a-zA-Z0-9_.+]+[-a-zA-Z0-9_.+ ]*"
+ "min":0,
+ "pattern":"[-a-zA-Z0-9_.+]*"
},
"CreateMigrationWorkflowRequestDescriptionString":{
"type":"string",
@@ -638,6 +712,65 @@
}
}
},
+ "CreateTemplateRequest":{
+ "type":"structure",
+ "required":[
+ "templateName",
+ "templateSource"
+ ],
+ "members":{
+ "templateName":{
+ "shape":"CreateTemplateRequestTemplateNameString",
+ "documentation":"The name of the migration workflow template.
"
+ },
+ "templateDescription":{
+ "shape":"CreateTemplateRequestTemplateDescriptionString",
+ "documentation":"A description of the migration workflow template.
"
+ },
+ "templateSource":{
+ "shape":"TemplateSource",
+ "documentation":"The source of the migration workflow template.
"
+ },
+ "clientToken":{
+ "shape":"ClientToken",
+ "documentation":"A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Idempotency in the Smithy documentation.
",
+ "idempotencyToken":true
+ },
+ "tags":{
+ "shape":"TagMap",
+ "documentation":"The tags to add to the migration workflow template.
"
+ }
+ }
+ },
+ "CreateTemplateRequestTemplateDescriptionString":{
+ "type":"string",
+ "max":250,
+ "min":0,
+ "pattern":".*"
+ },
+ "CreateTemplateRequestTemplateNameString":{
+ "type":"string",
+ "max":128,
+ "min":1,
+ "pattern":"[ a-zA-Z0-9]*"
+ },
+ "CreateTemplateResponse":{
+ "type":"structure",
+ "members":{
+ "templateId":{
+ "shape":"String",
+ "documentation":"The ID of the migration workflow template.
"
+ },
+ "templateArn":{
+ "shape":"String",
+ "documentation":"The Amazon Resource Name (ARN) of the migration workflow template. The format for an Migration Hub Orchestrator template ARN is arn:aws:migrationhub-orchestrator:region:account:template/template-abcd1234
. For more information about ARNs, see Amazon Resource Names (ARNs) in the AWS General Reference.
"
+ },
+ "tags":{
+ "shape":"StringMap",
+ "documentation":"The tags added to the migration workflow template.
"
+ }
+ }
+ },
"CreateWorkflowStepGroupRequest":{
"type":"structure",
"required":[
@@ -814,6 +947,23 @@
}
}
},
+ "DeleteTemplateRequest":{
+ "type":"structure",
+ "required":["id"],
+ "members":{
+ "id":{
+ "shape":"TemplateId",
+ "documentation":"The ID of the request to delete a migration workflow template.
",
+ "location":"uri",
+ "locationName":"id"
+ }
+ }
+ },
+ "DeleteTemplateResponse":{
+ "type":"structure",
+ "members":{
+ }
+ },
"DeleteWorkflowStepGroupRequest":{
"type":"structure",
"required":[
@@ -989,6 +1139,10 @@
"shape":"String",
"documentation":"The ID of the template.
"
},
+ "templateArn":{
+ "shape":"String",
+ "documentation":">The Amazon Resource Name (ARN) of the migration workflow template. The format for an Migration Hub Orchestrator template ARN is arn:aws:migrationhub-orchestrator:region:account:template/template-abcd1234
. For more information about ARNs, see Amazon Resource Names (ARNs) in the AWS General Reference.
"
+ },
"name":{
"shape":"String",
"documentation":"The name of the template.
"
@@ -1005,13 +1159,29 @@
"shape":"ToolsList",
"documentation":"List of AWS services utilized in a migration workflow.
"
},
+ "creationTime":{
+ "shape":"Timestamp",
+ "documentation":"The time at which the template was last created.
"
+ },
+ "owner":{
+ "shape":"String",
+ "documentation":"The owner of the migration workflow template.
"
+ },
"status":{
"shape":"TemplateStatus",
"documentation":"The status of the template.
"
},
- "creationTime":{
- "shape":"Timestamp",
- "documentation":"The time at which the template was last created.
"
+ "statusMessage":{
+ "shape":"String",
+ "documentation":"The status message of retrieving migration workflow templates.
"
+ },
+ "templateClass":{
+ "shape":"String",
+ "documentation":"The class of the migration workflow template. The available template classes are:
-
A2C
-
MGN
-
SAP_MULTI
-
SQL_EC2
-
SQL_RDS
-
VMIE
"
+ },
+ "tags":{
+ "shape":"StringMap",
+ "documentation":"The tags added to the migration workflow template.
"
}
}
},
@@ -1248,7 +1418,7 @@
},
"stepGroupId":{
"shape":"StepGroupId",
- "documentation":"desThe ID of the step group.
",
+ "documentation":"The ID of the step group.
",
"location":"querystring",
"locationName":"stepGroupId"
},
@@ -1693,6 +1863,15 @@
"max":100,
"min":0
},
+ "MaxStringList":{
+ "type":"list",
+ "member":{"shape":"MaxStringValue"}
+ },
+ "MaxStringValue":{
+ "type":"string",
+ "max":2048,
+ "min":0
+ },
"MigrationWorkflowDescription":{
"type":"string",
"max":500,
@@ -1876,7 +2055,7 @@
},
"ResourceArn":{
"type":"string",
- "pattern":"arn:aws:migrationhub-orchestrator:[a-z0-9-]+:[0-9]+:workflow/[.]*"
+ "pattern":"arn:aws:migrationhub-orchestrator:[a-z0-9-]+:[0-9]+:(template|workflow)/[.]*"
},
"ResourceNotFoundException":{
"type":"structure",
@@ -2076,8 +2255,7 @@
"members":{
"integerValue":{
"shape":"Integer",
- "documentation":"The value of the integer.
",
- "box":true
+ "documentation":"The value of the integer.
"
},
"stringValue":{
"shape":"StringValue",
@@ -2139,6 +2317,7 @@
"type":"string",
"enum":[
"AWAITING_DEPENDENCIES",
+ "SKIPPED",
"READY",
"IN_PROGRESS",
"COMPLETED",
@@ -2191,7 +2370,7 @@
},
"StringListMember":{
"type":"string",
- "max":100,
+ "max":500,
"min":0
},
"StringMap":{
@@ -2309,9 +2488,26 @@
"min":1,
"pattern":"[-a-zA-Z0-9_.+]+[-a-zA-Z0-9_.+ ]*"
},
+ "TemplateSource":{
+ "type":"structure",
+ "members":{
+ "workflowId":{
+ "shape":"MigrationWorkflowId",
+ "documentation":"The ID of the workflow from the source migration workflow template.
"
+ }
+ },
+ "documentation":"The migration workflow template used as the source for the new template.
",
+ "union":true
+ },
"TemplateStatus":{
"type":"string",
- "enum":["CREATED"]
+ "enum":[
+ "CREATED",
+ "READY",
+ "PENDING_CREATION",
+ "CREATING",
+ "CREATION_FAILED"
+ ]
},
"TemplateStepGroupSummary":{
"type":"structure",
@@ -2562,6 +2758,60 @@
}
}
},
+ "UpdateTemplateRequest":{
+ "type":"structure",
+ "required":["id"],
+ "members":{
+ "id":{
+ "shape":"TemplateId",
+ "documentation":"The ID of the request to update a migration workflow template.
",
+ "location":"uri",
+ "locationName":"id"
+ },
+ "templateName":{
+ "shape":"UpdateTemplateRequestTemplateNameString",
+ "documentation":"The name of the migration workflow template to update.
"
+ },
+ "templateDescription":{
+ "shape":"UpdateTemplateRequestTemplateDescriptionString",
+ "documentation":"The description of the migration workflow template to update.
"
+ },
+ "clientToken":{
+ "shape":"ClientToken",
+ "documentation":"A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
",
+ "idempotencyToken":true
+ }
+ }
+ },
+ "UpdateTemplateRequestTemplateDescriptionString":{
+ "type":"string",
+ "max":250,
+ "min":0,
+ "pattern":".*"
+ },
+ "UpdateTemplateRequestTemplateNameString":{
+ "type":"string",
+ "max":128,
+ "min":1,
+ "pattern":"[ a-zA-Z0-9]*"
+ },
+ "UpdateTemplateResponse":{
+ "type":"structure",
+ "members":{
+ "templateId":{
+ "shape":"String",
+ "documentation":"The ID of the migration workflow template being updated.
"
+ },
+ "templateArn":{
+ "shape":"String",
+ "documentation":"The ARN of the migration workflow template being updated. The format for an Migration Hub Orchestrator template ARN is arn:aws:migrationhub-orchestrator:region:account:template/template-abcd1234
. For more information about ARNs, see Amazon Resource Names (ARNs) in the AWS General Reference.
"
+ },
+ "tags":{
+ "shape":"StringMap",
+ "documentation":"The tags added to the migration workflow template.
"
+ }
+ }
+ },
"UpdateWorkflowStepGroupRequest":{
"type":"structure",
"required":[
@@ -2828,15 +3078,14 @@
"members":{
"integerValue":{
"shape":"Integer",
- "documentation":"The integer value.
",
- "box":true
+ "documentation":"The integer value.
"
},
"stringValue":{
- "shape":"StringValue",
+ "shape":"MaxStringValue",
"documentation":"The string value.
"
},
"listOfStringValue":{
- "shape":"StringList",
+ "shape":"MaxStringList",
"documentation":"The list of string value.
"
}
},
@@ -2906,5 +3155,5 @@
"member":{"shape":"WorkflowStepSummary"}
}
},
- "documentation":"This API reference provides descriptions, syntax, and other details about each of the actions and data types for AWS Migration Hub Orchestrator. he topic for each action shows the API request parameters and the response. Alternatively, you can use one of the AWS SDKs to access an API that is tailored to the programming language or platform that you're using.
"
+ "documentation":"This API reference provides descriptions, syntax, and other details about each of the actions and data types for AWS Migration Hub Orchestrator. The topic for each action shows the API request parameters and responses. Alternatively, you can use one of the AWS SDKs to access an API that is tailored to the programming language or platform that you're using.
"
}
From 8e95256fdd231a678b6679ebc75ec495d53aaefd Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Thu, 29 Feb 2024 19:06:56 +0000
Subject: [PATCH 09/13] Amazon Lex Model Building V2 Update: This release makes
AMAZON.QnAIntent generally available in Amazon Lex. This generative AI
feature leverages large language models available through Amazon Bedrock to
automate frequently asked questions (FAQ) experience for end-users.
---
...ture-AmazonLexModelBuildingV2-beb2bdc.json | 6 +
.../codegen-resources/service-2.json | 163 +++++++++++++++++-
2 files changed, 167 insertions(+), 2 deletions(-)
create mode 100644 .changes/next-release/feature-AmazonLexModelBuildingV2-beb2bdc.json
diff --git a/.changes/next-release/feature-AmazonLexModelBuildingV2-beb2bdc.json b/.changes/next-release/feature-AmazonLexModelBuildingV2-beb2bdc.json
new file mode 100644
index 000000000000..24b7ea47260a
--- /dev/null
+++ b/.changes/next-release/feature-AmazonLexModelBuildingV2-beb2bdc.json
@@ -0,0 +1,6 @@
+{
+ "type": "feature",
+ "category": "Amazon Lex Model Building V2",
+ "contributor": "",
+ "description": "This release makes AMAZON.QnAIntent generally available in Amazon Lex. This generative AI feature leverages large language models available through Amazon Bedrock to automate frequently asked questions (FAQ) experience for end-users."
+}
diff --git a/services/lexmodelsv2/src/main/resources/codegen-resources/service-2.json b/services/lexmodelsv2/src/main/resources/codegen-resources/service-2.json
index c55e824971f8..6671405782a4 100644
--- a/services/lexmodelsv2/src/main/resources/codegen-resources/service-2.json
+++ b/services/lexmodelsv2/src/main/resources/codegen-resources/service-2.json
@@ -2982,6 +2982,7 @@
"type":"string",
"enum":["UtteranceTimestamp"]
},
+ "AnswerField":{"type":"string"},
"AssociatedTranscript":{
"type":"structure",
"members":{
@@ -3294,9 +3295,26 @@
}
}
},
+ "BedrockKnowledgeBaseArn":{
+ "type":"string",
+ "max":200,
+ "min":1,
+ "pattern":"^arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,40}:[0-9]{12}:knowledge-base\\/[A-Za-z0-9]{10}$|^[A-Za-z0-9]{10}$"
+ },
+ "BedrockKnowledgeStoreConfiguration":{
+ "type":"structure",
+ "required":["bedrockKnowledgeBaseArn"],
+ "members":{
+ "bedrockKnowledgeBaseArn":{
+ "shape":"BedrockKnowledgeBaseArn",
+ "documentation":"The ARN of the knowledge base used.
"
+ }
+ },
+ "documentation":"Contains details about the configuration of a Amazon Bedrock knowledge base.
"
+ },
"BedrockModelArn":{
"type":"string",
- "pattern":"^arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}::foundation-model\\/[a-z0-9-]{1,63}[.]{1}[a-z0-9-]{1,63}$"
+ "pattern":"^arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}::foundation-model\\/[a-z0-9-]{1,63}[.]{1}([a-z0-9-]{1,63}[.]){0,2}[a-z0-9-]{1,63}([:][a-z0-9-]{1,63}){0,2}$"
},
"BedrockModelSpecification":{
"type":"structure",
@@ -4186,7 +4204,10 @@
"shape":"DescriptiveBotBuilderSpecification",
"documentation":"An object containing specifications for the descriptive bot building feature.
"
},
- "sampleUtteranceGeneration":{"shape":"SampleUtteranceGenerationSpecification"}
+ "sampleUtteranceGeneration":{
+ "shape":"SampleUtteranceGenerationSpecification",
+ "documentation":"Contains specifications for the sample utterance generation feature.
"
+ }
},
"documentation":"Contains specifications about the Amazon Lex build time generative AI capabilities from Amazon Bedrock that you can turn on for your bot.
"
},
@@ -5177,6 +5198,10 @@
"initialResponseSetting":{
"shape":"InitialResponseSetting",
"documentation":"Configuration settings for the response that is sent to the user at the beginning of a conversation, before eliciting slot values.
"
+ },
+ "qnAIntentConfiguration":{
+ "shape":"QnAIntentConfiguration",
+ "documentation":"Specifies the configuration of the built-in Amazon.QnAIntent
. The AMAZON.QnAIntent
intent is called when Amazon Lex can't determine another intent to invoke. If you specify this field, you can't specify the kendraConfiguration
field.
"
}
}
},
@@ -5250,6 +5275,10 @@
"initialResponseSetting":{
"shape":"InitialResponseSetting",
"documentation":"Configuration settings for the response that is sent to the user at the beginning of a conversation, before eliciting slot values.
"
+ },
+ "qnAIntentConfiguration":{
+ "shape":"QnAIntentConfiguration",
+ "documentation":"Details about the the configuration of the built-in Amazon.QnAIntent
.
"
}
}
},
@@ -5788,6 +5817,24 @@
},
"documentation":"By default, data stored by Amazon Lex is encrypted. The DataPrivacy
structure provides settings that determine how Amazon Lex handles special cases of securing the data for your bot.
"
},
+ "DataSourceConfiguration":{
+ "type":"structure",
+ "members":{
+ "opensearchConfiguration":{
+ "shape":"OpensearchConfiguration",
+ "documentation":"Contains details about the configuration of the Amazon OpenSearch Service database used for the AMAZON.QnAIntent
. To create a domain, follow the steps at Creating and managing Amazon OpenSearch Service domains.
"
+ },
+ "kendraConfiguration":{
+ "shape":"QnAKendraConfiguration",
+ "documentation":"Contains details about the configuration of the Amazon Kendra index used for the AMAZON.QnAIntent
. To create a Amazon Kendra index, follow the steps at Creating an index.
"
+ },
+ "bedrockKnowledgeStoreConfiguration":{
+ "shape":"BedrockKnowledgeStoreConfiguration",
+ "documentation":"Contains details about the configuration of the Amazon Bedrock knowledge base used for the AMAZON.QnAIntent
. To set up a knowledge base, follow the steps at Building a knowledge base.
"
+ }
+ },
+ "documentation":"Contains details about the configuration of the knowledge store used for the AMAZON.QnAIntent
. You must have already created the knowledge store and indexed the documents within it.
"
+ },
"DateRangeFilter":{
"type":"structure",
"required":[
@@ -7167,6 +7214,10 @@
"initialResponseSetting":{
"shape":"InitialResponseSetting",
"documentation":"Configuration setting for a response sent to the user before Amazon Lex starts eliciting slots.
"
+ },
+ "qnAIntentConfiguration":{
+ "shape":"QnAIntentConfiguration",
+ "documentation":"Details about the configuration of the built-in Amazon.QnAIntent
.
"
}
}
},
@@ -7722,6 +7773,10 @@
},
"documentation":"The current state of the conversation with the user.
"
},
+ "DomainEndpoint":{
+ "type":"string",
+ "pattern":"^(http|https):\\/\\/+[^\\s]+[\\w]"
+ },
"DraftBotVersion":{
"type":"string",
"max":5,
@@ -7779,6 +7834,24 @@
]
},
"ErrorMessage":{"type":"string"},
+ "ExactResponseFields":{
+ "type":"structure",
+ "required":[
+ "questionField",
+ "answerField"
+ ],
+ "members":{
+ "questionField":{
+ "shape":"QuestionField",
+ "documentation":"The name of the field that contains the query made to the OpenSearch Service database.
"
+ },
+ "answerField":{
+ "shape":"AnswerField",
+ "documentation":"The name of the field that contains the answer to the query made to the OpenSearch Service database.
"
+ }
+ },
+ "documentation":"Contains the names of the fields used for an exact response to the user.
"
+ },
"ExceptionMessage":{"type":"string"},
"ExecutionErrorDetails":{
"type":"structure",
@@ -8463,6 +8536,7 @@
"min":5,
"pattern":"^([0-9a-zA-Z_])+$"
},
+ "IncludeField":{"type":"string"},
"InitialResponseSetting":{
"type":"structure",
"members":{
@@ -10705,6 +10779,18 @@
"min":1,
"pattern":"^[0-9]+$"
},
+ "OSIncludeFields":{
+ "type":"list",
+ "member":{"shape":"IncludeField"},
+ "max":5,
+ "min":1
+ },
+ "OSIndexName":{
+ "type":"string",
+ "max":255,
+ "min":1,
+ "pattern":"^(?![_-])[a-z0-9][a-z0-9_\\-]{0,254}$"
+ },
"ObfuscationSetting":{
"type":"structure",
"required":["obfuscationSettingType"],
@@ -10734,6 +10820,36 @@
"max":2,
"min":1
},
+ "OpensearchConfiguration":{
+ "type":"structure",
+ "required":[
+ "domainEndpoint",
+ "indexName"
+ ],
+ "members":{
+ "domainEndpoint":{
+ "shape":"DomainEndpoint",
+ "documentation":"The endpoint of the Amazon OpenSearch Service domain.
"
+ },
+ "indexName":{
+ "shape":"OSIndexName",
+ "documentation":"The name of the Amazon OpenSearch Service index.
"
+ },
+ "exactResponse":{
+ "shape":"Boolean",
+ "documentation":"Specifies whether to return an exact response or to return an answer generated by the model using the fields you specify from the database.
"
+ },
+ "exactResponseFields":{
+ "shape":"ExactResponseFields",
+ "documentation":"Contains the names of the fields used for an exact response to the user.
"
+ },
+ "includeFields":{
+ "shape":"OSIncludeFields",
+ "documentation":"Contains a list of fields from the Amazon OpenSearch Service that the model can use to generate the answer to the query.
"
+ }
+ },
+ "documentation":"Contains details about the configuration of the Amazon OpenSearch Service database used for the AMAZON.QnAIntent
.
"
+ },
"Operation":{
"type":"string",
"max":50,
@@ -11058,11 +11174,46 @@
},
"documentation":"Specifies a list of message groups that Amazon Lex sends to a user to elicit a response.
"
},
+ "QnAIntentConfiguration":{
+ "type":"structure",
+ "members":{
+ "dataSourceConfiguration":{
+ "shape":"DataSourceConfiguration",
+ "documentation":"Contains details about the configuration of the data source used for the AMAZON.QnAIntent
.
"
+ },
+ "bedrockModelConfiguration":{"shape":"BedrockModelSpecification"}
+ },
+ "documentation":"Details about the the configuration of the built-in Amazon.QnAIntent
.
"
+ },
+ "QnAKendraConfiguration":{
+ "type":"structure",
+ "required":["kendraIndex"],
+ "members":{
+ "kendraIndex":{
+ "shape":"KendraIndexArn",
+ "documentation":"The ARN of the Amazon Kendra index to use.
"
+ },
+ "queryFilterStringEnabled":{
+ "shape":"Boolean",
+ "documentation":"Specifies whether to enable an Amazon Kendra filter string or not.
"
+ },
+ "queryFilterString":{
+ "shape":"QueryFilterString",
+ "documentation":"Contains the Amazon Kendra filter string to use if enabled. For more information on the Amazon Kendra search filter JSON format, see Using document attributes to filter search results.
"
+ },
+ "exactResponse":{
+ "shape":"Boolean",
+ "documentation":"Specifies whether to return an exact response from the Amazon Kendra index or to let the Amazon Bedrock model you select generate a response based on the results. To use this feature, you must first add FAQ questions to your index by following the steps at Adding frequently asked questions (FAQs) to an index.
"
+ }
+ },
+ "documentation":"Contains details about the configuration of the Amazon Kendra index used for the AMAZON.QnAIntent
.
"
+ },
"QueryFilterString":{
"type":"string",
"max":5000,
"min":1
},
+ "QuestionField":{"type":"string"},
"RecommendedAction":{"type":"string"},
"RecommendedActions":{
"type":"list",
@@ -13869,6 +14020,10 @@
"initialResponseSetting":{
"shape":"InitialResponseSetting",
"documentation":"Configuration settings for a response sent to the user before Amazon Lex starts eliciting slots.
"
+ },
+ "qnAIntentConfiguration":{
+ "shape":"QnAIntentConfiguration",
+ "documentation":"Specifies the configuration of the built-in Amazon.QnAIntent
. The AMAZON.QnAIntent
intent is called when Amazon Lex can't determine another intent to invoke. If you specify this field, you can't specify the kendraConfiguration
field.
"
}
}
},
@@ -13950,6 +14105,10 @@
"initialResponseSetting":{
"shape":"InitialResponseSetting",
"documentation":"Configuration settings for a response sent to the user before Amazon Lex starts eliciting slots.
"
+ },
+ "qnAIntentConfiguration":{
+ "shape":"QnAIntentConfiguration",
+ "documentation":"Details about the configuration of the built-in Amazon.QnAIntent
.
"
}
}
},
From 2cce8c24d2e658d03c0424393dbb7a3f67764d8e Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Thu, 29 Feb 2024 19:06:56 +0000
Subject: [PATCH 10/13] Amazon Elastic Kubernetes Service Update: Added support
for new AL2023 AMIs to the supported AMITypes.
---
.../feature-AmazonElasticKubernetesService-26edc54.json | 6 ++++++
.../eks/src/main/resources/codegen-resources/service-2.json | 4 +++-
2 files changed, 9 insertions(+), 1 deletion(-)
create mode 100644 .changes/next-release/feature-AmazonElasticKubernetesService-26edc54.json
diff --git a/.changes/next-release/feature-AmazonElasticKubernetesService-26edc54.json b/.changes/next-release/feature-AmazonElasticKubernetesService-26edc54.json
new file mode 100644
index 000000000000..6ffa1a7ee093
--- /dev/null
+++ b/.changes/next-release/feature-AmazonElasticKubernetesService-26edc54.json
@@ -0,0 +1,6 @@
+{
+ "type": "feature",
+ "category": "Amazon Elastic Kubernetes Service",
+ "contributor": "",
+ "description": "Added support for new AL2023 AMIs to the supported AMITypes."
+}
diff --git a/services/eks/src/main/resources/codegen-resources/service-2.json b/services/eks/src/main/resources/codegen-resources/service-2.json
index 76ec58104f02..847bf54eb89c 100644
--- a/services/eks/src/main/resources/codegen-resources/service-2.json
+++ b/services/eks/src/main/resources/codegen-resources/service-2.json
@@ -958,7 +958,9 @@
"WINDOWS_CORE_2019_x86_64",
"WINDOWS_FULL_2019_x86_64",
"WINDOWS_CORE_2022_x86_64",
- "WINDOWS_FULL_2022_x86_64"
+ "WINDOWS_FULL_2022_x86_64",
+ "AL2023_x86_64_STANDARD",
+ "AL2023_ARM_64_STANDARD"
]
},
"AccessConfigResponse":{
From 806424c4b3243aef1ce7b271cee3a5b7ae835f4a Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Thu, 29 Feb 2024 19:06:54 +0000
Subject: [PATCH 11/13] Amazon QuickSight Update: TooltipTarget for Combo chart
visuals; ColumnConfiguration limit increase to 2000; Documentation Update
---
.../feature-AmazonQuickSight-bb9f679.json | 6 ++++++
.../codegen-resources/service-2.json | 20 +++++++++++++++++--
2 files changed, 24 insertions(+), 2 deletions(-)
create mode 100644 .changes/next-release/feature-AmazonQuickSight-bb9f679.json
diff --git a/.changes/next-release/feature-AmazonQuickSight-bb9f679.json b/.changes/next-release/feature-AmazonQuickSight-bb9f679.json
new file mode 100644
index 000000000000..5248414f9add
--- /dev/null
+++ b/.changes/next-release/feature-AmazonQuickSight-bb9f679.json
@@ -0,0 +1,6 @@
+{
+ "type": "feature",
+ "category": "Amazon QuickSight",
+ "contributor": "",
+ "description": "TooltipTarget for Combo chart visuals; ColumnConfiguration limit increase to 2000; Documentation Update"
+}
diff --git a/services/quicksight/src/main/resources/codegen-resources/service-2.json b/services/quicksight/src/main/resources/codegen-resources/service-2.json
index c9f17d960de8..e7b1b5d2082a 100644
--- a/services/quicksight/src/main/resources/codegen-resources/service-2.json
+++ b/services/quicksight/src/main/resources/codegen-resources/service-2.json
@@ -6320,7 +6320,7 @@
"ColumnConfigurationList":{
"type":"list",
"member":{"shape":"ColumnConfiguration"},
- "max":200
+ "max":2000
},
"ColumnDataRole":{
"type":"string",
@@ -6603,6 +6603,10 @@
"Aggregation":{
"shape":"AggregationFunction",
"documentation":"The aggregation function of the column tooltip item.
"
+ },
+ "TooltipTarget":{
+ "shape":"TooltipTarget",
+ "documentation":"Determines the target of the column tooltip item in a combo chart visual.
"
}
},
"documentation":"The tooltip item for the columns that are not part of a field well.
"
@@ -14876,6 +14880,10 @@
"Visibility":{
"shape":"Visibility",
"documentation":"The visibility of the tooltip item.
"
+ },
+ "TooltipTarget":{
+ "shape":"TooltipTarget",
+ "documentation":"Determines the target of the field tooltip item in a combo chart visual.
"
}
},
"documentation":"The tooltip item for the fields.
"
@@ -16363,7 +16371,7 @@
},
"AuthorizedResourceArns":{
"shape":"ArnList",
- "documentation":"The Amazon Resource Names (ARNs) for the Amazon QuickSight resources that the user is authorized to access during the lifetime of the session. If you choose Dashboard
embedding experience, pass the list of dashboard ARNs in the account that you want the user to be able to view. Currently, you can pass up to 25 dashboard ARNs in each API call.
"
+ "documentation":"The Amazon Resource Names (ARNs) for the Amazon QuickSight resources that the user is authorized to access during the lifetime of the session.
If you choose Dashboard
embedding experience, pass the list of dashboard ARNs in the account that you want the user to be able to view.
Currently, you can pass up to 25 dashboard ARNs in each API call.
"
},
"ExperienceConfiguration":{
"shape":"AnonymousUserEmbeddingExperienceConfiguration",
@@ -28251,6 +28259,14 @@
},
"documentation":"The display options for the visual tooltip.
"
},
+ "TooltipTarget":{
+ "type":"string",
+ "enum":[
+ "BOTH",
+ "BAR",
+ "LINE"
+ ]
+ },
"TooltipTitleType":{
"type":"string",
"enum":[
From ced4a241fb2caea23143ba008c86a39344074e14 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Thu, 29 Feb 2024 19:08:17 +0000
Subject: [PATCH 12/13] Updated endpoints.json and partitions.json.
---
.../feature-AWSSDKforJavav2-0443982.json | 6 +
.../regions/internal/region/endpoints.json | 209 +++++++++++++++---
2 files changed, 190 insertions(+), 25 deletions(-)
create mode 100644 .changes/next-release/feature-AWSSDKforJavav2-0443982.json
diff --git a/.changes/next-release/feature-AWSSDKforJavav2-0443982.json b/.changes/next-release/feature-AWSSDKforJavav2-0443982.json
new file mode 100644
index 000000000000..e5b5ee3ca5e3
--- /dev/null
+++ b/.changes/next-release/feature-AWSSDKforJavav2-0443982.json
@@ -0,0 +1,6 @@
+{
+ "type": "feature",
+ "category": "AWS SDK for Java v2",
+ "contributor": "",
+ "description": "Updated endpoint and partition metadata."
+}
diff --git a/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json b/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json
index c931c4beaa86..6667248064dc 100644
--- a/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json
+++ b/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json
@@ -7195,6 +7195,7 @@
"eu-central-1" : { },
"eu-north-1" : { },
"eu-south-1" : { },
+ "eu-south-2" : { },
"eu-west-1" : { },
"eu-west-2" : { },
"eu-west-3" : { },
@@ -8408,6 +8409,7 @@
"ap-southeast-3" : { },
"ap-southeast-4" : { },
"ca-central-1" : { },
+ "ca-west-1" : { },
"eu-central-1" : { },
"eu-central-2" : { },
"eu-north-1" : { },
@@ -11242,27 +11244,152 @@
},
"logs" : {
"endpoints" : {
- "af-south-1" : { },
- "ap-east-1" : { },
- "ap-northeast-1" : { },
- "ap-northeast-2" : { },
- "ap-northeast-3" : { },
- "ap-south-1" : { },
- "ap-south-2" : { },
- "ap-southeast-1" : { },
- "ap-southeast-2" : { },
- "ap-southeast-3" : { },
- "ap-southeast-4" : { },
- "ca-central-1" : { },
- "ca-west-1" : { },
- "eu-central-1" : { },
- "eu-central-2" : { },
- "eu-north-1" : { },
- "eu-south-1" : { },
- "eu-south-2" : { },
- "eu-west-1" : { },
- "eu-west-2" : { },
- "eu-west-3" : { },
+ "af-south-1" : {
+ "variants" : [ {
+ "hostname" : "logs.af-south-1.api.aws",
+ "tags" : [ "dualstack" ]
+ } ]
+ },
+ "ap-east-1" : {
+ "variants" : [ {
+ "hostname" : "logs.ap-east-1.api.aws",
+ "tags" : [ "dualstack" ]
+ } ]
+ },
+ "ap-northeast-1" : {
+ "variants" : [ {
+ "hostname" : "logs.ap-northeast-1.api.aws",
+ "tags" : [ "dualstack" ]
+ } ]
+ },
+ "ap-northeast-2" : {
+ "variants" : [ {
+ "hostname" : "logs.ap-northeast-2.api.aws",
+ "tags" : [ "dualstack" ]
+ } ]
+ },
+ "ap-northeast-3" : {
+ "variants" : [ {
+ "hostname" : "logs.ap-northeast-3.api.aws",
+ "tags" : [ "dualstack" ]
+ } ]
+ },
+ "ap-south-1" : {
+ "variants" : [ {
+ "hostname" : "logs.ap-south-1.api.aws",
+ "tags" : [ "dualstack" ]
+ } ]
+ },
+ "ap-south-2" : {
+ "variants" : [ {
+ "hostname" : "logs.ap-south-2.api.aws",
+ "tags" : [ "dualstack" ]
+ } ]
+ },
+ "ap-southeast-1" : {
+ "variants" : [ {
+ "hostname" : "logs.ap-southeast-1.api.aws",
+ "tags" : [ "dualstack" ]
+ } ]
+ },
+ "ap-southeast-2" : {
+ "variants" : [ {
+ "hostname" : "logs.ap-southeast-2.api.aws",
+ "tags" : [ "dualstack" ]
+ } ]
+ },
+ "ap-southeast-3" : {
+ "variants" : [ {
+ "hostname" : "logs.ap-southeast-3.api.aws",
+ "tags" : [ "dualstack" ]
+ } ]
+ },
+ "ap-southeast-4" : {
+ "variants" : [ {
+ "hostname" : "logs.ap-southeast-4.api.aws",
+ "tags" : [ "dualstack" ]
+ } ]
+ },
+ "ca-central-1" : {
+ "variants" : [ {
+ "hostname" : "logs-fips.ca-central-1.amazonaws.com",
+ "tags" : [ "fips" ]
+ }, {
+ "hostname" : "logs.ca-central-1.api.aws",
+ "tags" : [ "dualstack" ]
+ } ]
+ },
+ "ca-west-1" : {
+ "variants" : [ {
+ "hostname" : "logs-fips.ca-west-1.amazonaws.com",
+ "tags" : [ "fips" ]
+ }, {
+ "hostname" : "logs.ca-west-1.api.aws",
+ "tags" : [ "dualstack" ]
+ } ]
+ },
+ "eu-central-1" : {
+ "variants" : [ {
+ "hostname" : "logs.eu-central-1.api.aws",
+ "tags" : [ "dualstack" ]
+ } ]
+ },
+ "eu-central-2" : {
+ "variants" : [ {
+ "hostname" : "logs.eu-central-2.api.aws",
+ "tags" : [ "dualstack" ]
+ } ]
+ },
+ "eu-north-1" : {
+ "variants" : [ {
+ "hostname" : "logs.eu-north-1.api.aws",
+ "tags" : [ "dualstack" ]
+ } ]
+ },
+ "eu-south-1" : {
+ "variants" : [ {
+ "hostname" : "logs.eu-south-1.api.aws",
+ "tags" : [ "dualstack" ]
+ } ]
+ },
+ "eu-south-2" : {
+ "variants" : [ {
+ "hostname" : "logs.eu-south-2.api.aws",
+ "tags" : [ "dualstack" ]
+ } ]
+ },
+ "eu-west-1" : {
+ "variants" : [ {
+ "hostname" : "logs.eu-west-1.api.aws",
+ "tags" : [ "dualstack" ]
+ } ]
+ },
+ "eu-west-2" : {
+ "variants" : [ {
+ "hostname" : "logs.eu-west-2.api.aws",
+ "tags" : [ "dualstack" ]
+ } ]
+ },
+ "eu-west-3" : {
+ "variants" : [ {
+ "hostname" : "logs.eu-west-3.api.aws",
+ "tags" : [ "dualstack" ]
+ } ]
+ },
+ "fips-ca-central-1" : {
+ "credentialScope" : {
+ "region" : "ca-central-1"
+ },
+ "deprecated" : true,
+ "hostname" : "logs-fips.ca-central-1.amazonaws.com"
+ },
+ "fips-ca-west-1" : {
+ "credentialScope" : {
+ "region" : "ca-west-1"
+ },
+ "deprecated" : true,
+ "hostname" : "logs-fips.ca-west-1.amazonaws.com"
+ },
"fips-us-east-1" : {
"credentialScope" : {
"region" : "us-east-1"
@@ -11291,32 +11418,64 @@
"deprecated" : true,
"hostname" : "logs-fips.us-west-2.amazonaws.com"
},
- "il-central-1" : { },
- "me-central-1" : { },
- "me-south-1" : { },
- "sa-east-1" : { },
+ "il-central-1" : {
+ "variants" : [ {
+ "hostname" : "logs.il-central-1.api.aws",
+ "tags" : [ "dualstack" ]
+ } ]
+ },
+ "me-central-1" : {
+ "variants" : [ {
+ "hostname" : "logs.me-central-1.api.aws",
+ "tags" : [ "dualstack" ]
+ } ]
+ },
+ "me-south-1" : {
+ "variants" : [ {
+ "hostname" : "logs.me-south-1.api.aws",
+ "tags" : [ "dualstack" ]
+ } ]
+ },
+ "sa-east-1" : {
+ "variants" : [ {
+ "hostname" : "logs.sa-east-1.api.aws",
+ "tags" : [ "dualstack" ]
+ } ]
+ },
"us-east-1" : {
"variants" : [ {
"hostname" : "logs-fips.us-east-1.amazonaws.com",
"tags" : [ "fips" ]
+ }, {
+ "hostname" : "logs.us-east-1.api.aws",
+ "tags" : [ "dualstack" ]
} ]
},
"us-east-2" : {
"variants" : [ {
"hostname" : "logs-fips.us-east-2.amazonaws.com",
"tags" : [ "fips" ]
+ }, {
+ "hostname" : "logs.us-east-2.api.aws",
+ "tags" : [ "dualstack" ]
} ]
},
"us-west-1" : {
"variants" : [ {
"hostname" : "logs-fips.us-west-1.amazonaws.com",
"tags" : [ "fips" ]
+ }, {
+ "hostname" : "logs.us-west-1.api.aws",
+ "tags" : [ "dualstack" ]
} ]
},
"us-west-2" : {
"variants" : [ {
"hostname" : "logs-fips.us-west-2.amazonaws.com",
"tags" : [ "fips" ]
+ }, {
+ "hostname" : "logs.us-west-2.api.aws",
+ "tags" : [ "dualstack" ]
} ]
}
}
From 773edc37a8a8227743bbc33913b45b268416eb40 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Thu, 29 Feb 2024 19:09:31 +0000
Subject: [PATCH 13/13] Release 2.25.0. Updated CHANGELOG.md, README.md and all
pom.xml.
---
.changes/2.25.0.json | 78 +++++++++++++++++++
.../bugfix-AWSCRTHTTPClient-cfe4870.json | 6 --
.../bugfix-AWSSDKforJavav2-c277e61.json | 6 --
...ugfix-NettyNIOAsyncHTTPClient-edd86be.json | 6 --
.../feature-AWSCRTHTTPClient-69af591.json | 6 --
...e-AWSMigrationHubOrchestrator-afc78aa.json | 6 --
.../feature-AWSSDKforJavav2-0443982.json | 6 --
...azonDocumentDBElasticClusters-a82ad03.json | 6 --
...mazonElasticKubernetesService-26edc54.json | 6 --
...ture-AmazonLexModelBuildingV2-beb2bdc.json | 6 --
.../feature-AmazonQuickSight-bb9f679.json | 6 --
...eature-AmazonSageMakerService-26fcd36.json | 6 --
.../feature-AmazonSecurityLake-3e676d2.json | 6 --
CHANGELOG.md | 48 ++++++++++++
README.md | 8 +-
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 +-
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/regions/pom.xml | 2 +-
core/sdk-core/pom.xml | 2 +-
http-client-spi/pom.xml | 2 +-
http-clients/apache-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 +-
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 +-
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/alexaforbusiness/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/appmesh/pom.xml | 2 +-
services/apprunner/pom.xml | 2 +-
services/appstream/pom.xml | 2 +-
services/appsync/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/backupstorage/pom.xml | 2 +-
services/batch/pom.xml | 2 +-
services/bcmdataexports/pom.xml | 2 +-
services/bedrock/pom.xml | 2 +-
services/bedrockagent/pom.xml | 2 +-
services/bedrockagentruntime/pom.xml | 2 +-
services/bedrockruntime/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/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/codestar/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/config/pom.xml | 2 +-
services/connect/pom.xml | 2 +-
services/connectcampaigns/pom.xml | 2 +-
services/connectcases/pom.xml | 2 +-
services/connectcontactlens/pom.xml | 2 +-
services/connectparticipant/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/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/dlm/pom.xml | 2 +-
services/docdb/pom.xml | 2 +-
services/docdbelastic/pom.xml | 2 +-
services/drs/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/elasticinference/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/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/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/honeycode/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/iot/pom.xml | 2 +-
services/iot1clickdevices/pom.xml | 2 +-
services/iot1clickprojects/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/iotfleethub/pom.xml | 2 +-
services/iotfleetwise/pom.xml | 2 +-
services/iotjobsdataplane/pom.xml | 2 +-
services/iotroborunner/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/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/lookoutmetrics/pom.xml | 2 +-
services/lookoutvision/pom.xml | 2 +-
services/m2/pom.xml | 2 +-
services/machinelearning/pom.xml | 2 +-
services/macie2/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/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/mobile/pom.xml | 2 +-
services/mq/pom.xml | 2 +-
services/mturk/pom.xml | 2 +-
services/mwaa/pom.xml | 2 +-
services/neptune/pom.xml | 2 +-
services/neptunedata/pom.xml | 2 +-
services/neptunegraph/pom.xml | 2 +-
services/networkfirewall/pom.xml | 2 +-
services/networkmanager/pom.xml | 2 +-
services/networkmonitor/pom.xml | 2 +-
services/nimble/pom.xml | 2 +-
services/oam/pom.xml | 2 +-
services/omics/pom.xml | 2 +-
services/opensearch/pom.xml | 2 +-
services/opensearchserverless/pom.xml | 2 +-
services/opsworks/pom.xml | 2 +-
services/opsworkscm/pom.xml | 2 +-
services/organizations/pom.xml | 2 +-
services/osis/pom.xml | 2 +-
services/outposts/pom.xml | 2 +-
services/panorama/pom.xml | 2 +-
services/paymentcryptography/pom.xml | 2 +-
services/paymentcryptographydata/pom.xml | 2 +-
services/pcaconnectorad/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/privatenetworks/pom.xml | 2 +-
services/proton/pom.xml | 2 +-
services/qbusiness/pom.xml | 2 +-
services/qconnect/pom.xml | 2 +-
services/qldb/pom.xml | 2 +-
services/qldbsession/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/robomaker/pom.xml | 2 +-
services/rolesanywhere/pom.xml | 2 +-
services/route53/pom.xml | 2 +-
services/route53domains/pom.xml | 2 +-
services/route53recoverycluster/pom.xml | 2 +-
services/route53recoverycontrolconfig/pom.xml | 2 +-
services/route53recoveryreadiness/pom.xml | 2 +-
services/route53resolver/pom.xml | 2 +-
services/rum/pom.xml | 2 +-
services/s3/pom.xml | 2 +-
services/s3control/pom.xml | 2 +-
services/s3outposts/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/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/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/simspaceweaver/pom.xml | 2 +-
services/sms/pom.xml | 2 +-
services/snowball/pom.xml | 2 +-
services/snowdevicemanagement/pom.xml | 2 +-
services/sns/pom.xml | 2 +-
services/sqs/pom.xml | 2 +-
services/ssm/pom.xml | 2 +-
services/ssmcontacts/pom.xml | 2 +-
services/ssmincidents/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/textract/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/worklink/pom.xml | 2 +-
services/workmail/pom.xml | 2 +-
services/workmailmessageflow/pom.xml | 2 +-
services/workspaces/pom.xml | 2 +-
services/workspacesthinclient/pom.xml | 2 +-
services/workspacesweb/pom.xml | 2 +-
services/xray/pom.xml | 2 +-
test/auth-tests/pom.xml | 2 +-
.../pom.xml | 2 +-
test/codegen-generated-classes-test/pom.xml | 2 +-
test/crt-unavailable-tests/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/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 +-
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/pom.xml | 2 +-
471 files changed, 586 insertions(+), 532 deletions(-)
create mode 100644 .changes/2.25.0.json
delete mode 100644 .changes/next-release/bugfix-AWSCRTHTTPClient-cfe4870.json
delete mode 100644 .changes/next-release/bugfix-AWSSDKforJavav2-c277e61.json
delete mode 100644 .changes/next-release/bugfix-NettyNIOAsyncHTTPClient-edd86be.json
delete mode 100644 .changes/next-release/feature-AWSCRTHTTPClient-69af591.json
delete mode 100644 .changes/next-release/feature-AWSMigrationHubOrchestrator-afc78aa.json
delete mode 100644 .changes/next-release/feature-AWSSDKforJavav2-0443982.json
delete mode 100644 .changes/next-release/feature-AmazonDocumentDBElasticClusters-a82ad03.json
delete mode 100644 .changes/next-release/feature-AmazonElasticKubernetesService-26edc54.json
delete mode 100644 .changes/next-release/feature-AmazonLexModelBuildingV2-beb2bdc.json
delete mode 100644 .changes/next-release/feature-AmazonQuickSight-bb9f679.json
delete mode 100644 .changes/next-release/feature-AmazonSageMakerService-26fcd36.json
delete mode 100644 .changes/next-release/feature-AmazonSecurityLake-3e676d2.json
diff --git a/.changes/2.25.0.json b/.changes/2.25.0.json
new file mode 100644
index 000000000000..85a8901990c5
--- /dev/null
+++ b/.changes/2.25.0.json
@@ -0,0 +1,78 @@
+{
+ "version": "2.25.0",
+ "date": "2024-02-29",
+ "entries": [
+ {
+ "type": "bugfix",
+ "category": "AWS CRT HTTP Client",
+ "contributor": "",
+ "description": "Addressing Issue [#4745](https://github.com/aws/aws-sdk-java-v2/issues/4745) , Netty and CRT clients' default proxy settings have been made consistent with the Apache client, now using environment and system property settings by default.\\n To disable the use of environment variables and system properties by default, set useSystemPropertyValue(false) and useEnvironmentVariablesValues(false) in ProxyConfigurations."
+ },
+ {
+ "type": "bugfix",
+ "category": "AWS SDK for Java v2",
+ "contributor": "",
+ "description": "Addressing Issue [#4745](https://github.com/aws/aws-sdk-java-v2/issues/4745) , Netty and CRT clients' default proxy settings have been made consistent with the Apache client, now using environment and system property settings by default.\n To disable the use of environment variables and system properties by default, set useSystemPropertyValue(false) and useEnvironmentVariablesValues(false) in ProxyConfigurations."
+ },
+ {
+ "type": "bugfix",
+ "category": "Netty NIO Async HTTP Client",
+ "contributor": "",
+ "description": "Addressing Issue [#4745](https://github.com/aws/aws-sdk-java-v2/issues/4745) , Netty and CRT clients' default proxy settings have been made consistent with the Apache client, now using environment and system property settings by default.\\n To disable the use of environment variables and system properties by default, set useSystemPropertyValue(false) and useEnvironmentVariablesValues(false) in ProxyConfigurations"
+ },
+ {
+ "type": "feature",
+ "category": "AWS CRT HTTP Client",
+ "contributor": "",
+ "description": "Support Non proxy host settings in the ProxyConfiguration for Crt http client."
+ },
+ {
+ "type": "feature",
+ "category": "AWS Migration Hub Orchestrator",
+ "contributor": "",
+ "description": "Adds new CreateTemplate, UpdateTemplate and DeleteTemplate APIs."
+ },
+ {
+ "type": "feature",
+ "category": "Amazon DocumentDB Elastic Clusters",
+ "contributor": "",
+ "description": "Launched Elastic Clusters Readable Secondaries, Start/Stop, Configurable Shard Instance count, Automatic Backups and Snapshot Copying"
+ },
+ {
+ "type": "feature",
+ "category": "Amazon Elastic Kubernetes Service",
+ "contributor": "",
+ "description": "Added support for new AL2023 AMIs to the supported AMITypes."
+ },
+ {
+ "type": "feature",
+ "category": "Amazon Lex Model Building V2",
+ "contributor": "",
+ "description": "This release makes AMAZON.QnAIntent generally available in Amazon Lex. This generative AI feature leverages large language models available through Amazon Bedrock to automate frequently asked questions (FAQ) experience for end-users."
+ },
+ {
+ "type": "feature",
+ "category": "Amazon QuickSight",
+ "contributor": "",
+ "description": "TooltipTarget for Combo chart visuals; ColumnConfiguration limit increase to 2000; Documentation Update"
+ },
+ {
+ "type": "feature",
+ "category": "Amazon SageMaker Service",
+ "contributor": "",
+ "description": "Adds support for ModelDataSource in Model Packages to support unzipped models. Adds support to specify SourceUri for models which allows registration of models without mandating a container for hosting. Using SourceUri, customers can decouple the model from hosting information during registration."
+ },
+ {
+ "type": "feature",
+ "category": "Amazon Security Lake",
+ "contributor": "",
+ "description": "Add capability to update the Data Lake's MetaStoreManager Role in order to perform required data lake updates to use Iceberg table format in their data lake or update the role for any other reason."
+ },
+ {
+ "type": "feature",
+ "category": "AWS SDK for Java v2",
+ "contributor": "",
+ "description": "Updated endpoint and partition metadata."
+ }
+ ]
+}
\ No newline at end of file
diff --git a/.changes/next-release/bugfix-AWSCRTHTTPClient-cfe4870.json b/.changes/next-release/bugfix-AWSCRTHTTPClient-cfe4870.json
deleted file mode 100644
index f4c2b6e1c75d..000000000000
--- a/.changes/next-release/bugfix-AWSCRTHTTPClient-cfe4870.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "bugfix",
- "category": "AWS CRT HTTP Client",
- "contributor": "",
- "description": "Addressing Issue [#4745](https://github.com/aws/aws-sdk-java-v2/issues/4745) , Netty and CRT clients' default proxy settings have been made consistent with the Apache client, now using environment and system property settings by default.\\n To disable the use of environment variables and system properties by default, set useSystemPropertyValue(false) and useEnvironmentVariablesValues(false) in ProxyConfigurations."
-}
diff --git a/.changes/next-release/bugfix-AWSSDKforJavav2-c277e61.json b/.changes/next-release/bugfix-AWSSDKforJavav2-c277e61.json
deleted file mode 100644
index 003fe1e06c0c..000000000000
--- a/.changes/next-release/bugfix-AWSSDKforJavav2-c277e61.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "bugfix",
- "category": "AWS SDK for Java v2",
- "contributor": "",
- "description": "Addressing Issue [#4745](https://github.com/aws/aws-sdk-java-v2/issues/4745) , Netty and CRT clients' default proxy settings have been made consistent with the Apache client, now using environment and system property settings by default.\n To disable the use of environment variables and system properties by default, set useSystemPropertyValue(false) and useEnvironmentVariablesValues(false) in ProxyConfigurations."
-}
diff --git a/.changes/next-release/bugfix-NettyNIOAsyncHTTPClient-edd86be.json b/.changes/next-release/bugfix-NettyNIOAsyncHTTPClient-edd86be.json
deleted file mode 100644
index 637cc3f02d89..000000000000
--- a/.changes/next-release/bugfix-NettyNIOAsyncHTTPClient-edd86be.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "bugfix",
- "category": "Netty NIO Async HTTP Client",
- "contributor": "",
- "description": "Addressing Issue [#4745](https://github.com/aws/aws-sdk-java-v2/issues/4745) , Netty and CRT clients' default proxy settings have been made consistent with the Apache client, now using environment and system property settings by default.\\n To disable the use of environment variables and system properties by default, set useSystemPropertyValue(false) and useEnvironmentVariablesValues(false) in ProxyConfigurations"
-}
diff --git a/.changes/next-release/feature-AWSCRTHTTPClient-69af591.json b/.changes/next-release/feature-AWSCRTHTTPClient-69af591.json
deleted file mode 100644
index a135684797b7..000000000000
--- a/.changes/next-release/feature-AWSCRTHTTPClient-69af591.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "feature",
- "category": "AWS CRT HTTP Client",
- "contributor": "",
- "description": "Support Non proxy host settings in the ProxyConfiguration for Crt http client."
-}
diff --git a/.changes/next-release/feature-AWSMigrationHubOrchestrator-afc78aa.json b/.changes/next-release/feature-AWSMigrationHubOrchestrator-afc78aa.json
deleted file mode 100644
index 20e156c23b76..000000000000
--- a/.changes/next-release/feature-AWSMigrationHubOrchestrator-afc78aa.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "feature",
- "category": "AWS Migration Hub Orchestrator",
- "contributor": "",
- "description": "Adds new CreateTemplate, UpdateTemplate and DeleteTemplate APIs."
-}
diff --git a/.changes/next-release/feature-AWSSDKforJavav2-0443982.json b/.changes/next-release/feature-AWSSDKforJavav2-0443982.json
deleted file mode 100644
index e5b5ee3ca5e3..000000000000
--- a/.changes/next-release/feature-AWSSDKforJavav2-0443982.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "feature",
- "category": "AWS SDK for Java v2",
- "contributor": "",
- "description": "Updated endpoint and partition metadata."
-}
diff --git a/.changes/next-release/feature-AmazonDocumentDBElasticClusters-a82ad03.json b/.changes/next-release/feature-AmazonDocumentDBElasticClusters-a82ad03.json
deleted file mode 100644
index 723047f7fb6e..000000000000
--- a/.changes/next-release/feature-AmazonDocumentDBElasticClusters-a82ad03.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "feature",
- "category": "Amazon DocumentDB Elastic Clusters",
- "contributor": "",
- "description": "Launched Elastic Clusters Readable Secondaries, Start/Stop, Configurable Shard Instance count, Automatic Backups and Snapshot Copying"
-}
diff --git a/.changes/next-release/feature-AmazonElasticKubernetesService-26edc54.json b/.changes/next-release/feature-AmazonElasticKubernetesService-26edc54.json
deleted file mode 100644
index 6ffa1a7ee093..000000000000
--- a/.changes/next-release/feature-AmazonElasticKubernetesService-26edc54.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "feature",
- "category": "Amazon Elastic Kubernetes Service",
- "contributor": "",
- "description": "Added support for new AL2023 AMIs to the supported AMITypes."
-}
diff --git a/.changes/next-release/feature-AmazonLexModelBuildingV2-beb2bdc.json b/.changes/next-release/feature-AmazonLexModelBuildingV2-beb2bdc.json
deleted file mode 100644
index 24b7ea47260a..000000000000
--- a/.changes/next-release/feature-AmazonLexModelBuildingV2-beb2bdc.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "feature",
- "category": "Amazon Lex Model Building V2",
- "contributor": "",
- "description": "This release makes AMAZON.QnAIntent generally available in Amazon Lex. This generative AI feature leverages large language models available through Amazon Bedrock to automate frequently asked questions (FAQ) experience for end-users."
-}
diff --git a/.changes/next-release/feature-AmazonQuickSight-bb9f679.json b/.changes/next-release/feature-AmazonQuickSight-bb9f679.json
deleted file mode 100644
index 5248414f9add..000000000000
--- a/.changes/next-release/feature-AmazonQuickSight-bb9f679.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "feature",
- "category": "Amazon QuickSight",
- "contributor": "",
- "description": "TooltipTarget for Combo chart visuals; ColumnConfiguration limit increase to 2000; Documentation Update"
-}
diff --git a/.changes/next-release/feature-AmazonSageMakerService-26fcd36.json b/.changes/next-release/feature-AmazonSageMakerService-26fcd36.json
deleted file mode 100644
index 1ebe384d0853..000000000000
--- a/.changes/next-release/feature-AmazonSageMakerService-26fcd36.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "feature",
- "category": "Amazon SageMaker Service",
- "contributor": "",
- "description": "Adds support for ModelDataSource in Model Packages to support unzipped models. Adds support to specify SourceUri for models which allows registration of models without mandating a container for hosting. Using SourceUri, customers can decouple the model from hosting information during registration."
-}
diff --git a/.changes/next-release/feature-AmazonSecurityLake-3e676d2.json b/.changes/next-release/feature-AmazonSecurityLake-3e676d2.json
deleted file mode 100644
index 96e189d5ce62..000000000000
--- a/.changes/next-release/feature-AmazonSecurityLake-3e676d2.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "feature",
- "category": "Amazon Security Lake",
- "contributor": "",
- "description": "Add capability to update the Data Lake's MetaStoreManager Role in order to perform required data lake updates to use Iceberg table format in their data lake or update the role for any other reason."
-}
diff --git a/CHANGELOG.md b/CHANGELOG.md
index a9233d91ad29..d7fc10876c8a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1 +1,49 @@
#### 👋 _Looking for changelogs for older versions? You can find them in the [changelogs](./changelogs) directory._
+# __2.25.0__ __2024-02-29__
+## __AWS CRT HTTP Client__
+ - ### Features
+ - Support Non proxy host settings in the ProxyConfiguration for Crt http client.
+
+ - ### Bugfixes
+ - Addressing Issue [#4745](https://github.com/aws/aws-sdk-java-v2/issues/4745) , Netty and CRT clients' default proxy settings have been made consistent with the Apache client, now using environment and system property settings by default.\n To disable the use of environment variables and system properties by default, set useSystemPropertyValue(false) and useEnvironmentVariablesValues(false) in ProxyConfigurations.
+
+## __AWS Migration Hub Orchestrator__
+ - ### Features
+ - Adds new CreateTemplate, UpdateTemplate and DeleteTemplate APIs.
+
+## __AWS SDK for Java v2__
+ - ### Features
+ - Updated endpoint and partition metadata.
+
+ - ### Bugfixes
+ - Addressing Issue [#4745](https://github.com/aws/aws-sdk-java-v2/issues/4745) , Netty and CRT clients' default proxy settings have been made consistent with the Apache client, now using environment and system property settings by default.
+ To disable the use of environment variables and system properties by default, set useSystemPropertyValue(false) and useEnvironmentVariablesValues(false) in ProxyConfigurations.
+
+## __Amazon DocumentDB Elastic Clusters__
+ - ### Features
+ - Launched Elastic Clusters Readable Secondaries, Start/Stop, Configurable Shard Instance count, Automatic Backups and Snapshot Copying
+
+## __Amazon Elastic Kubernetes Service__
+ - ### Features
+ - Added support for new AL2023 AMIs to the supported AMITypes.
+
+## __Amazon Lex Model Building V2__
+ - ### Features
+ - This release makes AMAZON.QnAIntent generally available in Amazon Lex. This generative AI feature leverages large language models available through Amazon Bedrock to automate frequently asked questions (FAQ) experience for end-users.
+
+## __Amazon QuickSight__
+ - ### Features
+ - TooltipTarget for Combo chart visuals; ColumnConfiguration limit increase to 2000; Documentation Update
+
+## __Amazon SageMaker Service__
+ - ### Features
+ - Adds support for ModelDataSource in Model Packages to support unzipped models. Adds support to specify SourceUri for models which allows registration of models without mandating a container for hosting. Using SourceUri, customers can decouple the model from hosting information during registration.
+
+## __Amazon Security Lake__
+ - ### Features
+ - Add capability to update the Data Lake's MetaStoreManager Role in order to perform required data lake updates to use Iceberg table format in their data lake or update the role for any other reason.
+
+## __Netty NIO Async HTTP Client__
+ - ### Bugfixes
+ - Addressing Issue [#4745](https://github.com/aws/aws-sdk-java-v2/issues/4745) , Netty and CRT clients' default proxy settings have been made consistent with the Apache client, now using environment and system property settings by default.\n To disable the use of environment variables and system properties by default, set useSystemPropertyValue(false) and useEnvironmentVariablesValues(false) in ProxyConfigurations
+
diff --git a/README.md b/README.md
index d601a0177c44..eb6bff9e8fb1 100644
--- a/README.md
+++ b/README.md
@@ -52,7 +52,7 @@ To automatically manage module versions (currently all modules have the same ver
software.amazon.awssdk
bom
- 2.24.13
+ 2.25.0
pom
import
@@ -86,12 +86,12 @@ Alternatively you can add dependencies for the specific services you use only:
software.amazon.awssdk
ec2
- 2.24.13
+ 2.25.0
software.amazon.awssdk
s3
- 2.24.13
+ 2.25.0
```
@@ -103,7 +103,7 @@ You can import the whole SDK into your project (includes *ALL* services). Please
software.amazon.awssdk
aws-sdk-java
- 2.24.13
+ 2.25.0
```
diff --git a/archetypes/archetype-app-quickstart/pom.xml b/archetypes/archetype-app-quickstart/pom.xml
index f7d293d02c9c..b7922864d063 100644
--- a/archetypes/archetype-app-quickstart/pom.xml
+++ b/archetypes/archetype-app-quickstart/pom.xml
@@ -20,7 +20,7 @@
archetypes
software.amazon.awssdk
- 2.25.0-SNAPSHOT
+ 2.25.0
4.0.0
diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml
index 0fb71b06d836..c938c3439f14 100644
--- a/archetypes/archetype-lambda/pom.xml
+++ b/archetypes/archetype-lambda/pom.xml
@@ -20,7 +20,7 @@
archetypes
software.amazon.awssdk
- 2.25.0-SNAPSHOT
+ 2.25.0
4.0.0
archetype-lambda
diff --git a/archetypes/archetype-tools/pom.xml b/archetypes/archetype-tools/pom.xml
index 1ca4d236e4af..75b347eb8262 100644
--- a/archetypes/archetype-tools/pom.xml
+++ b/archetypes/archetype-tools/pom.xml
@@ -20,7 +20,7 @@
archetypes
software.amazon.awssdk
- 2.25.0-SNAPSHOT
+ 2.25.0
4.0.0
diff --git a/archetypes/pom.xml b/archetypes/pom.xml
index 0dc19a8bfbe3..778b2ab3c78b 100644
--- a/archetypes/pom.xml
+++ b/archetypes/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.25.0-SNAPSHOT
+ 2.25.0
4.0.0
archetypes
diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml
index 1737ec3c3747..3407831680b1 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.25.0-SNAPSHOT
+ 2.25.0
../pom.xml
aws-sdk-java
diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml
index 3f9afbaa7adb..e080c32ee768 100644
--- a/bom-internal/pom.xml
+++ b/bom-internal/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.25.0-SNAPSHOT
+ 2.25.0
4.0.0
diff --git a/bom/pom.xml b/bom/pom.xml
index 131b97cea2fa..cabc675d219e 100644
--- a/bom/pom.xml
+++ b/bom/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.0-SNAPSHOT
+ 2.25.0
../pom.xml
bom
diff --git a/bundle-logging-bridge/pom.xml b/bundle-logging-bridge/pom.xml
index a98150c0fc2d..e1b2c4618a4d 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.25.0-SNAPSHOT
+ 2.25.0
bundle-logging-bridge
jar
diff --git a/bundle-sdk/pom.xml b/bundle-sdk/pom.xml
index 2a53434af025..815b47108b21 100644
--- a/bundle-sdk/pom.xml
+++ b/bundle-sdk/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.0-SNAPSHOT
+ 2.25.0
bundle-sdk
jar
diff --git a/bundle/pom.xml b/bundle/pom.xml
index 7f2f9912cceb..4d5c0679410a 100644
--- a/bundle/pom.xml
+++ b/bundle/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.0-SNAPSHOT
+ 2.25.0
bundle
jar
diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml
index 66800e6af9ca..175772e3431d 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.25.0-SNAPSHOT
+ 2.25.0
../pom.xml
codegen-lite-maven-plugin
diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml
index e9f7dcfbaf34..cfc46b92902f 100644
--- a/codegen-lite/pom.xml
+++ b/codegen-lite/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.0-SNAPSHOT
+ 2.25.0
codegen-lite
AWS Java SDK :: Code Generator Lite
diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml
index 560f090ca945..221d75a283af 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.25.0-SNAPSHOT
+ 2.25.0
../pom.xml
codegen-maven-plugin
diff --git a/codegen/pom.xml b/codegen/pom.xml
index 6ad3d5e7fa88..f997ca8afccc 100644
--- a/codegen/pom.xml
+++ b/codegen/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.0-SNAPSHOT
+ 2.25.0
codegen
AWS Java SDK :: Code Generator
diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml
index 2ba7e97ec4a6..8a35b236e44a 100644
--- a/core/annotations/pom.xml
+++ b/core/annotations/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.25.0-SNAPSHOT
+ 2.25.0
4.0.0
diff --git a/core/arns/pom.xml b/core/arns/pom.xml
index 74ba63890a83..079fc8a12cb3 100644
--- a/core/arns/pom.xml
+++ b/core/arns/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.25.0-SNAPSHOT
+ 2.25.0
4.0.0
diff --git a/core/auth-crt/pom.xml b/core/auth-crt/pom.xml
index c71d3ce7c1c7..3ebbdad9a70e 100644
--- a/core/auth-crt/pom.xml
+++ b/core/auth-crt/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.25.0-SNAPSHOT
+ 2.25.0
auth-crt
diff --git a/core/auth/pom.xml b/core/auth/pom.xml
index 6d839aaf8e56..3db913dea3ee 100644
--- a/core/auth/pom.xml
+++ b/core/auth/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.25.0-SNAPSHOT
+ 2.25.0
auth
diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml
index b3b16d56e4b1..0422068d2725 100644
--- a/core/aws-core/pom.xml
+++ b/core/aws-core/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.25.0-SNAPSHOT
+ 2.25.0
aws-core
diff --git a/core/checksums-spi/pom.xml b/core/checksums-spi/pom.xml
index a9d75689bf9e..16211968635e 100644
--- a/core/checksums-spi/pom.xml
+++ b/core/checksums-spi/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.25.0-SNAPSHOT
+ 2.25.0
checksums-spi
diff --git a/core/checksums/pom.xml b/core/checksums/pom.xml
index 7321c7a65312..6d112e1c3181 100644
--- a/core/checksums/pom.xml
+++ b/core/checksums/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.25.0-SNAPSHOT
+ 2.25.0
checksums
diff --git a/core/crt-core/pom.xml b/core/crt-core/pom.xml
index 2b00f6c13338..76a6f8e9ce01 100644
--- a/core/crt-core/pom.xml
+++ b/core/crt-core/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
core
- 2.25.0-SNAPSHOT
+ 2.25.0
crt-core
diff --git a/core/endpoints-spi/pom.xml b/core/endpoints-spi/pom.xml
index b6bccc1674ac..0a0f25eca461 100644
--- a/core/endpoints-spi/pom.xml
+++ b/core/endpoints-spi/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.25.0-SNAPSHOT
+ 2.25.0
4.0.0
diff --git a/core/http-auth-aws-crt/pom.xml b/core/http-auth-aws-crt/pom.xml
index f529a79aac55..c46fd86dd4d3 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.25.0-SNAPSHOT
+ 2.25.0
http-auth-aws-crt
diff --git a/core/http-auth-aws-eventstream/pom.xml b/core/http-auth-aws-eventstream/pom.xml
index c925f8dc3ccb..0954264a70fa 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.25.0-SNAPSHOT
+ 2.25.0
http-auth-aws-eventstream
diff --git a/core/http-auth-aws/pom.xml b/core/http-auth-aws/pom.xml
index 68c41352dee1..e81539855e31 100644
--- a/core/http-auth-aws/pom.xml
+++ b/core/http-auth-aws/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.25.0-SNAPSHOT
+ 2.25.0
http-auth-aws
diff --git a/core/http-auth-spi/pom.xml b/core/http-auth-spi/pom.xml
index 3a97941d1deb..00e77ad5bcb0 100644
--- a/core/http-auth-spi/pom.xml
+++ b/core/http-auth-spi/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.25.0-SNAPSHOT
+ 2.25.0
http-auth-spi
diff --git a/core/http-auth/pom.xml b/core/http-auth/pom.xml
index 2843a071d41d..ed2384453167 100644
--- a/core/http-auth/pom.xml
+++ b/core/http-auth/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.25.0-SNAPSHOT
+ 2.25.0
http-auth
diff --git a/core/identity-spi/pom.xml b/core/identity-spi/pom.xml
index 36e03bbafb95..e4ffdc68940c 100644
--- a/core/identity-spi/pom.xml
+++ b/core/identity-spi/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.25.0-SNAPSHOT
+ 2.25.0
identity-spi
diff --git a/core/imds/pom.xml b/core/imds/pom.xml
index a1dd781440fc..5e9a46061086 100644
--- a/core/imds/pom.xml
+++ b/core/imds/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.25.0-SNAPSHOT
+ 2.25.0
4.0.0
imds
diff --git a/core/json-utils/pom.xml b/core/json-utils/pom.xml
index 29c56d071ca1..11a5a18a2d6f 100644
--- a/core/json-utils/pom.xml
+++ b/core/json-utils/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.25.0-SNAPSHOT
+ 2.25.0
4.0.0
diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml
index 9056352d1d47..33f8473a603f 100644
--- a/core/metrics-spi/pom.xml
+++ b/core/metrics-spi/pom.xml
@@ -5,7 +5,7 @@
core
software.amazon.awssdk
- 2.25.0-SNAPSHOT
+ 2.25.0
4.0.0
diff --git a/core/pom.xml b/core/pom.xml
index a144fd2dd7a7..b00a85e5a207 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.25.0-SNAPSHOT
+ 2.25.0
core
diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml
index bcb0fc04bffa..3baa178de886 100644
--- a/core/profiles/pom.xml
+++ b/core/profiles/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.25.0-SNAPSHOT
+ 2.25.0
profiles
diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml
index 40478721f3c0..3d52bff5304f 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.25.0-SNAPSHOT
+ 2.25.0
4.0.0
diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml
index 36ac37ac2fd3..d82507c0251e 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.25.0-SNAPSHOT
+ 2.25.0
4.0.0
diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml
index b71022b8364c..6acfa15c1f7c 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.25.0-SNAPSHOT
+ 2.25.0
4.0.0
diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml
index 615c0e0e4e64..a2b991c9562e 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.25.0-SNAPSHOT
+ 2.25.0
4.0.0
diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml
index 3c6e8df97ff9..ac728fd8920b 100644
--- a/core/protocols/pom.xml
+++ b/core/protocols/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.25.0-SNAPSHOT
+ 2.25.0
4.0.0
diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml
index b024438014de..228c610c61a7 100644
--- a/core/protocols/protocol-core/pom.xml
+++ b/core/protocols/protocol-core/pom.xml
@@ -20,7 +20,7 @@
protocols
software.amazon.awssdk
- 2.25.0-SNAPSHOT
+ 2.25.0
4.0.0
diff --git a/core/regions/pom.xml b/core/regions/pom.xml
index e7e5aced66f5..56539213f0f3 100644
--- a/core/regions/pom.xml
+++ b/core/regions/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.25.0-SNAPSHOT
+ 2.25.0
regions
diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml
index c459f0a4b456..cecde990a5a5 100644
--- a/core/sdk-core/pom.xml
+++ b/core/sdk-core/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
core
- 2.25.0-SNAPSHOT
+ 2.25.0
sdk-core
AWS Java SDK :: SDK Core
diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml
index f0799ce832d9..89c185f28c18 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.25.0-SNAPSHOT
+ 2.25.0
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 ef3a43f18bac..75f4aa0656ac 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.25.0-SNAPSHOT
+ 2.25.0
apache-client
diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml
index efcb7a8f7fd4..83e772e6f622 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.25.0-SNAPSHOT
+ 2.25.0
4.0.0
diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml
index a32b8e9056c5..a4a882d08689 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.25.0-SNAPSHOT
+ 2.25.0
4.0.0
diff --git a/http-clients/pom.xml b/http-clients/pom.xml
index eb4bc09adc23..8a471960f4c8 100644
--- a/http-clients/pom.xml
+++ b/http-clients/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.25.0-SNAPSHOT
+ 2.25.0
4.0.0
diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml
index 2720886b2061..78b9f57c60ff 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.25.0-SNAPSHOT
+ 2.25.0
4.0.0
diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml
index 092b746134a2..09328a3cda7d 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.25.0-SNAPSHOT
+ 2.25.0
cloudwatch-metric-publisher
diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml
index 29cd5b81f846..e4a169a8bb66 100644
--- a/metric-publishers/pom.xml
+++ b/metric-publishers/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.0-SNAPSHOT
+ 2.25.0
metric-publishers
diff --git a/pom.xml b/pom.xml
index 58abe6ed3ef0..4b9f2fb54d85 100644
--- a/pom.xml
+++ b/pom.xml
@@ -20,7 +20,7 @@
4.0.0
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.0-SNAPSHOT
+ 2.25.0
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 a9461a06b0a5..13d5279ae4a5 100644
--- a/release-scripts/pom.xml
+++ b/release-scripts/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.0-SNAPSHOT
+ 2.25.0
../pom.xml
release-scripts
diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml
index dca7c8ac515c..ca328036ee39 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.25.0-SNAPSHOT
+ 2.25.0
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 dea832abb43e..dc9dfdfc3094 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.25.0-SNAPSHOT
+ 2.25.0
../../pom.xml
iam-policy-builder
diff --git a/services-custom/pom.xml b/services-custom/pom.xml
index 09dc64bfb743..44c25fd31b54 100644
--- a/services-custom/pom.xml
+++ b/services-custom/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.0-SNAPSHOT
+ 2.25.0
services-custom
AWS Java SDK :: Custom Services
diff --git a/services-custom/s3-transfer-manager/pom.xml b/services-custom/s3-transfer-manager/pom.xml
index fe0382103ecb..bad03fbb738c 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.25.0-SNAPSHOT
+ 2.25.0
../../pom.xml
s3-transfer-manager
diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml
index 9962ad9c41cc..273fa2607cd0 100644
--- a/services/accessanalyzer/pom.xml
+++ b/services/accessanalyzer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
accessanalyzer
AWS Java SDK :: Services :: AccessAnalyzer
diff --git a/services/account/pom.xml b/services/account/pom.xml
index 45ad4ee45c5b..a17719b54cf5 100644
--- a/services/account/pom.xml
+++ b/services/account/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
account
AWS Java SDK :: Services :: Account
diff --git a/services/acm/pom.xml b/services/acm/pom.xml
index e0d4b352d6a2..0d3a78f5cdfc 100644
--- a/services/acm/pom.xml
+++ b/services/acm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
acm
AWS Java SDK :: Services :: AWS Certificate Manager
diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml
index f06694f472e6..c692e6ad2933 100644
--- a/services/acmpca/pom.xml
+++ b/services/acmpca/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
acmpca
AWS Java SDK :: Services :: ACM PCA
diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml
index ab70efff332d..f7e39fc4a953 100644
--- a/services/alexaforbusiness/pom.xml
+++ b/services/alexaforbusiness/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.0-SNAPSHOT
+ 2.25.0
4.0.0
alexaforbusiness
diff --git a/services/amp/pom.xml b/services/amp/pom.xml
index 9f613dd5f6b1..febaefc80387 100644
--- a/services/amp/pom.xml
+++ b/services/amp/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
amp
AWS Java SDK :: Services :: Amp
diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml
index d2afa6213f8b..6341f57fa398 100644
--- a/services/amplify/pom.xml
+++ b/services/amplify/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
amplify
AWS Java SDK :: Services :: Amplify
diff --git a/services/amplifybackend/pom.xml b/services/amplifybackend/pom.xml
index 8c086dbfaf8c..3fca7b4effed 100644
--- a/services/amplifybackend/pom.xml
+++ b/services/amplifybackend/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
amplifybackend
AWS Java SDK :: Services :: Amplify Backend
diff --git a/services/amplifyuibuilder/pom.xml b/services/amplifyuibuilder/pom.xml
index ea8eb888ca38..e00c29f770a3 100644
--- a/services/amplifyuibuilder/pom.xml
+++ b/services/amplifyuibuilder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
amplifyuibuilder
AWS Java SDK :: Services :: Amplify UI Builder
diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml
index 000494707ad0..da3feaff5951 100644
--- a/services/apigateway/pom.xml
+++ b/services/apigateway/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
apigateway
AWS Java SDK :: Services :: Amazon API Gateway
diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml
index 8a47cee06860..c67ebad19ada 100644
--- a/services/apigatewaymanagementapi/pom.xml
+++ b/services/apigatewaymanagementapi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
apigatewaymanagementapi
AWS Java SDK :: Services :: ApiGatewayManagementApi
diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml
index c8c1a5858796..e6402646bc23 100644
--- a/services/apigatewayv2/pom.xml
+++ b/services/apigatewayv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
apigatewayv2
AWS Java SDK :: Services :: ApiGatewayV2
diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml
index c03529b238d2..2d6b64d1c79c 100644
--- a/services/appconfig/pom.xml
+++ b/services/appconfig/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
appconfig
AWS Java SDK :: Services :: AppConfig
diff --git a/services/appconfigdata/pom.xml b/services/appconfigdata/pom.xml
index 54d34b848c95..f87fe43c7c38 100644
--- a/services/appconfigdata/pom.xml
+++ b/services/appconfigdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
appconfigdata
AWS Java SDK :: Services :: App Config Data
diff --git a/services/appfabric/pom.xml b/services/appfabric/pom.xml
index c0b1b879b9ee..1021d2ae2247 100644
--- a/services/appfabric/pom.xml
+++ b/services/appfabric/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
appfabric
AWS Java SDK :: Services :: App Fabric
diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml
index 56f8b1c75a07..c17deb086eac 100644
--- a/services/appflow/pom.xml
+++ b/services/appflow/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
appflow
AWS Java SDK :: Services :: Appflow
diff --git a/services/appintegrations/pom.xml b/services/appintegrations/pom.xml
index 2f2420eea2a7..88d7a4ea8ead 100644
--- a/services/appintegrations/pom.xml
+++ b/services/appintegrations/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
appintegrations
AWS Java SDK :: Services :: App Integrations
diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml
index 6b98372f6951..a4301c30ac13 100644
--- a/services/applicationautoscaling/pom.xml
+++ b/services/applicationautoscaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
applicationautoscaling
AWS Java SDK :: Services :: AWS Application Auto Scaling
diff --git a/services/applicationcostprofiler/pom.xml b/services/applicationcostprofiler/pom.xml
index 9f23c2b9c0fa..fbd07617561c 100644
--- a/services/applicationcostprofiler/pom.xml
+++ b/services/applicationcostprofiler/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
applicationcostprofiler
AWS Java SDK :: Services :: Application Cost Profiler
diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml
index 415a64aa56db..ac08308f57ce 100644
--- a/services/applicationdiscovery/pom.xml
+++ b/services/applicationdiscovery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
applicationdiscovery
AWS Java SDK :: Services :: AWS Application Discovery Service
diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml
index 7dbfdae9c1f6..a6bcdc2c997a 100644
--- a/services/applicationinsights/pom.xml
+++ b/services/applicationinsights/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
applicationinsights
AWS Java SDK :: Services :: Application Insights
diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml
index 49ac007393c8..b7b520afe6eb 100644
--- a/services/appmesh/pom.xml
+++ b/services/appmesh/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
appmesh
AWS Java SDK :: Services :: App Mesh
diff --git a/services/apprunner/pom.xml b/services/apprunner/pom.xml
index 52f8789d188d..08bf0502c4ce 100644
--- a/services/apprunner/pom.xml
+++ b/services/apprunner/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
apprunner
AWS Java SDK :: Services :: App Runner
diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml
index 6e96f5c7aace..a964779c9167 100644
--- a/services/appstream/pom.xml
+++ b/services/appstream/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
appstream
AWS Java SDK :: Services :: Amazon AppStream
diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml
index 2c98f89f57ed..69714768fd89 100644
--- a/services/appsync/pom.xml
+++ b/services/appsync/pom.xml
@@ -21,7 +21,7 @@
services
software.amazon.awssdk
- 2.25.0-SNAPSHOT
+ 2.25.0
appsync
diff --git a/services/arczonalshift/pom.xml b/services/arczonalshift/pom.xml
index 8e080f98fdbb..13450c942444 100644
--- a/services/arczonalshift/pom.xml
+++ b/services/arczonalshift/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
arczonalshift
AWS Java SDK :: Services :: ARC Zonal Shift
diff --git a/services/artifact/pom.xml b/services/artifact/pom.xml
index 7f271101713b..4866485ebaaf 100644
--- a/services/artifact/pom.xml
+++ b/services/artifact/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
artifact
AWS Java SDK :: Services :: Artifact
diff --git a/services/athena/pom.xml b/services/athena/pom.xml
index 63337d0146b5..8e6790a6d7a4 100644
--- a/services/athena/pom.xml
+++ b/services/athena/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
athena
AWS Java SDK :: Services :: Amazon Athena
diff --git a/services/auditmanager/pom.xml b/services/auditmanager/pom.xml
index 294857b68272..aedcea2c3acc 100644
--- a/services/auditmanager/pom.xml
+++ b/services/auditmanager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
auditmanager
AWS Java SDK :: Services :: Audit Manager
diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml
index 4c918c097704..0cd82a84602b 100644
--- a/services/autoscaling/pom.xml
+++ b/services/autoscaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
autoscaling
AWS Java SDK :: Services :: Auto Scaling
diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml
index 44206471fc54..bfc1f7fb5f2a 100644
--- a/services/autoscalingplans/pom.xml
+++ b/services/autoscalingplans/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
autoscalingplans
AWS Java SDK :: Services :: Auto Scaling Plans
diff --git a/services/b2bi/pom.xml b/services/b2bi/pom.xml
index 5f9050e286e8..6be5f4633602 100644
--- a/services/b2bi/pom.xml
+++ b/services/b2bi/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
b2bi
AWS Java SDK :: Services :: B2 Bi
diff --git a/services/backup/pom.xml b/services/backup/pom.xml
index 4d345fd2a3a3..eaeee2486540 100644
--- a/services/backup/pom.xml
+++ b/services/backup/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
backup
AWS Java SDK :: Services :: Backup
diff --git a/services/backupgateway/pom.xml b/services/backupgateway/pom.xml
index cf4d69ddda06..d80a0ea9015d 100644
--- a/services/backupgateway/pom.xml
+++ b/services/backupgateway/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
backupgateway
AWS Java SDK :: Services :: Backup Gateway
diff --git a/services/backupstorage/pom.xml b/services/backupstorage/pom.xml
index 9c424acde003..0f0ca884a5c1 100644
--- a/services/backupstorage/pom.xml
+++ b/services/backupstorage/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
backupstorage
AWS Java SDK :: Services :: Backup Storage
diff --git a/services/batch/pom.xml b/services/batch/pom.xml
index 342c7b495973..d0847cc730ba 100644
--- a/services/batch/pom.xml
+++ b/services/batch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
batch
AWS Java SDK :: Services :: AWS Batch
diff --git a/services/bcmdataexports/pom.xml b/services/bcmdataexports/pom.xml
index 5709b9f0a68b..763b571f5134 100644
--- a/services/bcmdataexports/pom.xml
+++ b/services/bcmdataexports/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
bcmdataexports
AWS Java SDK :: Services :: BCM Data Exports
diff --git a/services/bedrock/pom.xml b/services/bedrock/pom.xml
index 7ca0f85370f4..f7cfd50ad083 100644
--- a/services/bedrock/pom.xml
+++ b/services/bedrock/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
bedrock
AWS Java SDK :: Services :: Bedrock
diff --git a/services/bedrockagent/pom.xml b/services/bedrockagent/pom.xml
index 7b90a628114d..cee5868a880f 100644
--- a/services/bedrockagent/pom.xml
+++ b/services/bedrockagent/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
bedrockagent
AWS Java SDK :: Services :: Bedrock Agent
diff --git a/services/bedrockagentruntime/pom.xml b/services/bedrockagentruntime/pom.xml
index 02f568a86c93..089fb524f6a4 100644
--- a/services/bedrockagentruntime/pom.xml
+++ b/services/bedrockagentruntime/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
bedrockagentruntime
AWS Java SDK :: Services :: Bedrock Agent Runtime
diff --git a/services/bedrockruntime/pom.xml b/services/bedrockruntime/pom.xml
index 68c893b6a355..ec0f69b4467a 100644
--- a/services/bedrockruntime/pom.xml
+++ b/services/bedrockruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
bedrockruntime
AWS Java SDK :: Services :: Bedrock Runtime
diff --git a/services/billingconductor/pom.xml b/services/billingconductor/pom.xml
index 8e7636423f3c..ecc92ba268be 100644
--- a/services/billingconductor/pom.xml
+++ b/services/billingconductor/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
billingconductor
AWS Java SDK :: Services :: Billingconductor
diff --git a/services/braket/pom.xml b/services/braket/pom.xml
index 63cfe67d2379..3d39aeb40121 100644
--- a/services/braket/pom.xml
+++ b/services/braket/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
braket
AWS Java SDK :: Services :: Braket
diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml
index ed366aa2dfce..9a614e3cbf17 100644
--- a/services/budgets/pom.xml
+++ b/services/budgets/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
budgets
AWS Java SDK :: Services :: AWS Budgets
diff --git a/services/chatbot/pom.xml b/services/chatbot/pom.xml
index 3c191cf73eba..fa984f9b8df3 100644
--- a/services/chatbot/pom.xml
+++ b/services/chatbot/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
chatbot
AWS Java SDK :: Services :: Chatbot
diff --git a/services/chime/pom.xml b/services/chime/pom.xml
index db845d2ffaa4..3f9fdf135d26 100644
--- a/services/chime/pom.xml
+++ b/services/chime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
chime
AWS Java SDK :: Services :: Chime
diff --git a/services/chimesdkidentity/pom.xml b/services/chimesdkidentity/pom.xml
index 2d2571cc5c40..9e10a51afab3 100644
--- a/services/chimesdkidentity/pom.xml
+++ b/services/chimesdkidentity/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
chimesdkidentity
AWS Java SDK :: Services :: Chime SDK Identity
diff --git a/services/chimesdkmediapipelines/pom.xml b/services/chimesdkmediapipelines/pom.xml
index 296763dd1aea..6fe43886478c 100644
--- a/services/chimesdkmediapipelines/pom.xml
+++ b/services/chimesdkmediapipelines/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
chimesdkmediapipelines
AWS Java SDK :: Services :: Chime SDK Media Pipelines
diff --git a/services/chimesdkmeetings/pom.xml b/services/chimesdkmeetings/pom.xml
index 924f0c0c626e..db8da05ff1ce 100644
--- a/services/chimesdkmeetings/pom.xml
+++ b/services/chimesdkmeetings/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
chimesdkmeetings
AWS Java SDK :: Services :: Chime SDK Meetings
diff --git a/services/chimesdkmessaging/pom.xml b/services/chimesdkmessaging/pom.xml
index 0eaf72a10edd..74c4de5d7a3a 100644
--- a/services/chimesdkmessaging/pom.xml
+++ b/services/chimesdkmessaging/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
chimesdkmessaging
AWS Java SDK :: Services :: Chime SDK Messaging
diff --git a/services/chimesdkvoice/pom.xml b/services/chimesdkvoice/pom.xml
index 356a4956c7ec..9a837a4b8a56 100644
--- a/services/chimesdkvoice/pom.xml
+++ b/services/chimesdkvoice/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
chimesdkvoice
AWS Java SDK :: Services :: Chime SDK Voice
diff --git a/services/cleanrooms/pom.xml b/services/cleanrooms/pom.xml
index b1b23c413375..5874d6b21bda 100644
--- a/services/cleanrooms/pom.xml
+++ b/services/cleanrooms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
cleanrooms
AWS Java SDK :: Services :: Clean Rooms
diff --git a/services/cleanroomsml/pom.xml b/services/cleanroomsml/pom.xml
index eecce01eb168..37d4635b6e4b 100644
--- a/services/cleanroomsml/pom.xml
+++ b/services/cleanroomsml/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
cleanroomsml
AWS Java SDK :: Services :: Clean Rooms ML
diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml
index b9c433e9105a..5739801229fe 100644
--- a/services/cloud9/pom.xml
+++ b/services/cloud9/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.0-SNAPSHOT
+ 2.25.0
4.0.0
cloud9
diff --git a/services/cloudcontrol/pom.xml b/services/cloudcontrol/pom.xml
index 560fbc093903..ed9b44b202e4 100644
--- a/services/cloudcontrol/pom.xml
+++ b/services/cloudcontrol/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
cloudcontrol
AWS Java SDK :: Services :: Cloud Control
diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml
index e01ed6b9ee9d..8b22eda45b31 100644
--- a/services/clouddirectory/pom.xml
+++ b/services/clouddirectory/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
clouddirectory
AWS Java SDK :: Services :: Amazon CloudDirectory
diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml
index 7215948e247c..9780aee43d88 100644
--- a/services/cloudformation/pom.xml
+++ b/services/cloudformation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
cloudformation
AWS Java SDK :: Services :: AWS CloudFormation
diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml
index 916c9f6b1216..8b901fc1f59f 100644
--- a/services/cloudfront/pom.xml
+++ b/services/cloudfront/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
cloudfront
AWS Java SDK :: Services :: Amazon CloudFront
diff --git a/services/cloudfrontkeyvaluestore/pom.xml b/services/cloudfrontkeyvaluestore/pom.xml
index acfcab5cc5f0..879e8bc69722 100644
--- a/services/cloudfrontkeyvaluestore/pom.xml
+++ b/services/cloudfrontkeyvaluestore/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
cloudfrontkeyvaluestore
AWS Java SDK :: Services :: Cloud Front Key Value Store
diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml
index ed7f4db2c777..061c5b6f5515 100644
--- a/services/cloudhsm/pom.xml
+++ b/services/cloudhsm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
cloudhsm
AWS Java SDK :: Services :: AWS CloudHSM
diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml
index e23620f33f99..ef77c00ffc61 100644
--- a/services/cloudhsmv2/pom.xml
+++ b/services/cloudhsmv2/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.0-SNAPSHOT
+ 2.25.0
4.0.0
cloudhsmv2
diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml
index cfff349de110..be50f3277a67 100644
--- a/services/cloudsearch/pom.xml
+++ b/services/cloudsearch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
cloudsearch
AWS Java SDK :: Services :: Amazon CloudSearch
diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml
index 68b5fc1811a1..b14971893a96 100644
--- a/services/cloudsearchdomain/pom.xml
+++ b/services/cloudsearchdomain/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
cloudsearchdomain
AWS Java SDK :: Services :: Amazon CloudSearch Domain
diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml
index a651f5a8f452..8491bdffc90b 100644
--- a/services/cloudtrail/pom.xml
+++ b/services/cloudtrail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
cloudtrail
AWS Java SDK :: Services :: AWS CloudTrail
diff --git a/services/cloudtraildata/pom.xml b/services/cloudtraildata/pom.xml
index b6999d91fd77..9dce2710d85a 100644
--- a/services/cloudtraildata/pom.xml
+++ b/services/cloudtraildata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
cloudtraildata
AWS Java SDK :: Services :: Cloud Trail Data
diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml
index 265dac278cc3..d51373917d67 100644
--- a/services/cloudwatch/pom.xml
+++ b/services/cloudwatch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
cloudwatch
AWS Java SDK :: Services :: Amazon CloudWatch
diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml
index 45587659a50d..20f744c3d72c 100644
--- a/services/cloudwatchevents/pom.xml
+++ b/services/cloudwatchevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
cloudwatchevents
AWS Java SDK :: Services :: Amazon CloudWatch Events
diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml
index 2167b275249f..ccf03a66ef3a 100644
--- a/services/cloudwatchlogs/pom.xml
+++ b/services/cloudwatchlogs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
cloudwatchlogs
AWS Java SDK :: Services :: Amazon CloudWatch Logs
diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml
index 905a4ff51d09..518102151714 100644
--- a/services/codeartifact/pom.xml
+++ b/services/codeartifact/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
codeartifact
AWS Java SDK :: Services :: Codeartifact
diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml
index 52c70a61b71e..83aeff6c3a45 100644
--- a/services/codebuild/pom.xml
+++ b/services/codebuild/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
codebuild
AWS Java SDK :: Services :: AWS Code Build
diff --git a/services/codecatalyst/pom.xml b/services/codecatalyst/pom.xml
index 3c6345b79b90..e23ccbd298cc 100644
--- a/services/codecatalyst/pom.xml
+++ b/services/codecatalyst/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
codecatalyst
AWS Java SDK :: Services :: Code Catalyst
diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml
index c009071ebe9c..ef97da803e62 100644
--- a/services/codecommit/pom.xml
+++ b/services/codecommit/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
codecommit
AWS Java SDK :: Services :: AWS CodeCommit
diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml
index c59994d0afaf..413c77cbd61a 100644
--- a/services/codedeploy/pom.xml
+++ b/services/codedeploy/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
codedeploy
AWS Java SDK :: Services :: AWS CodeDeploy
diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml
index 9d6d570bc0d7..878590d1b06f 100644
--- a/services/codeguruprofiler/pom.xml
+++ b/services/codeguruprofiler/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
codeguruprofiler
AWS Java SDK :: Services :: CodeGuruProfiler
diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml
index b235ef5335f7..2bf5d99e2419 100644
--- a/services/codegurureviewer/pom.xml
+++ b/services/codegurureviewer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
codegurureviewer
AWS Java SDK :: Services :: CodeGuru Reviewer
diff --git a/services/codegurusecurity/pom.xml b/services/codegurusecurity/pom.xml
index f7963f6bcb93..186209a409c4 100644
--- a/services/codegurusecurity/pom.xml
+++ b/services/codegurusecurity/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
codegurusecurity
AWS Java SDK :: Services :: Code Guru Security
diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml
index d8abb38b0ede..c7403a19a672 100644
--- a/services/codepipeline/pom.xml
+++ b/services/codepipeline/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
codepipeline
AWS Java SDK :: Services :: AWS CodePipeline
diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml
index 5c4a0d94862f..24c9d79bfd2f 100644
--- a/services/codestar/pom.xml
+++ b/services/codestar/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
codestar
AWS Java SDK :: Services :: AWS CodeStar
diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml
index f5c3586c23cb..002eb9d91723 100644
--- a/services/codestarconnections/pom.xml
+++ b/services/codestarconnections/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
codestarconnections
AWS Java SDK :: Services :: CodeStar connections
diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml
index 30506ee67273..19461306bbd1 100644
--- a/services/codestarnotifications/pom.xml
+++ b/services/codestarnotifications/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
codestarnotifications
AWS Java SDK :: Services :: Codestar Notifications
diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml
index 8f9038d45af0..681cdcbeec0c 100644
--- a/services/cognitoidentity/pom.xml
+++ b/services/cognitoidentity/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
cognitoidentity
AWS Java SDK :: Services :: Amazon Cognito Identity
diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml
index 067e5519d35e..d8302ea13a55 100644
--- a/services/cognitoidentityprovider/pom.xml
+++ b/services/cognitoidentityprovider/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
cognitoidentityprovider
AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service
diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml
index 596655c00ad8..000bf3c163cb 100644
--- a/services/cognitosync/pom.xml
+++ b/services/cognitosync/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
cognitosync
AWS Java SDK :: Services :: Amazon Cognito Sync
diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml
index b891a4b7b46d..d6f981c69b48 100644
--- a/services/comprehend/pom.xml
+++ b/services/comprehend/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.0-SNAPSHOT
+ 2.25.0
4.0.0
comprehend
diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml
index 6e5a5bbe84f3..ac1c7a924de8 100644
--- a/services/comprehendmedical/pom.xml
+++ b/services/comprehendmedical/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
comprehendmedical
AWS Java SDK :: Services :: ComprehendMedical
diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml
index 1102dd58b9f1..317351800b3a 100644
--- a/services/computeoptimizer/pom.xml
+++ b/services/computeoptimizer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
computeoptimizer
AWS Java SDK :: Services :: Compute Optimizer
diff --git a/services/config/pom.xml b/services/config/pom.xml
index 32c576cf22d5..ca20bd9c4394 100644
--- a/services/config/pom.xml
+++ b/services/config/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
config
AWS Java SDK :: Services :: AWS Config
diff --git a/services/connect/pom.xml b/services/connect/pom.xml
index 5c104989f11f..48bcb9088d6f 100644
--- a/services/connect/pom.xml
+++ b/services/connect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
connect
AWS Java SDK :: Services :: Connect
diff --git a/services/connectcampaigns/pom.xml b/services/connectcampaigns/pom.xml
index d64c1fa0d296..6465bb1a0bc8 100644
--- a/services/connectcampaigns/pom.xml
+++ b/services/connectcampaigns/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
connectcampaigns
AWS Java SDK :: Services :: Connect Campaigns
diff --git a/services/connectcases/pom.xml b/services/connectcases/pom.xml
index 21c55d46e3c8..06e3ea3ba754 100644
--- a/services/connectcases/pom.xml
+++ b/services/connectcases/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
connectcases
AWS Java SDK :: Services :: Connect Cases
diff --git a/services/connectcontactlens/pom.xml b/services/connectcontactlens/pom.xml
index ac6d27703b92..a2c7bf22c3c2 100644
--- a/services/connectcontactlens/pom.xml
+++ b/services/connectcontactlens/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
connectcontactlens
AWS Java SDK :: Services :: Connect Contact Lens
diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml
index 4d1af035d785..68fcf036615a 100644
--- a/services/connectparticipant/pom.xml
+++ b/services/connectparticipant/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
connectparticipant
AWS Java SDK :: Services :: ConnectParticipant
diff --git a/services/controltower/pom.xml b/services/controltower/pom.xml
index 560eeb016b1c..375d13d02006 100644
--- a/services/controltower/pom.xml
+++ b/services/controltower/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
controltower
AWS Java SDK :: Services :: Control Tower
diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml
index 61a0672b7915..721353d865e3 100644
--- a/services/costandusagereport/pom.xml
+++ b/services/costandusagereport/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
costandusagereport
AWS Java SDK :: Services :: AWS Cost and Usage Report
diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml
index 144a712afa8f..7797c3d35a3e 100644
--- a/services/costexplorer/pom.xml
+++ b/services/costexplorer/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.0-SNAPSHOT
+ 2.25.0
4.0.0
costexplorer
diff --git a/services/costoptimizationhub/pom.xml b/services/costoptimizationhub/pom.xml
index 85fd5aff0f08..5727fc39cae7 100644
--- a/services/costoptimizationhub/pom.xml
+++ b/services/costoptimizationhub/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
costoptimizationhub
AWS Java SDK :: Services :: Cost Optimization Hub
diff --git a/services/customerprofiles/pom.xml b/services/customerprofiles/pom.xml
index 941ad0296ca7..590c14bf08cd 100644
--- a/services/customerprofiles/pom.xml
+++ b/services/customerprofiles/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
customerprofiles
AWS Java SDK :: Services :: Customer Profiles
diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml
index 49d25bd1d536..7581def5093a 100644
--- a/services/databasemigration/pom.xml
+++ b/services/databasemigration/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
databasemigration
AWS Java SDK :: Services :: AWS Database Migration Service
diff --git a/services/databrew/pom.xml b/services/databrew/pom.xml
index 928723ca2613..18ddc2660a5a 100644
--- a/services/databrew/pom.xml
+++ b/services/databrew/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
databrew
AWS Java SDK :: Services :: Data Brew
diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml
index b627d5086aec..dec3ee693372 100644
--- a/services/dataexchange/pom.xml
+++ b/services/dataexchange/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
dataexchange
AWS Java SDK :: Services :: DataExchange
diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml
index b42a66bd6314..f85f28751ebe 100644
--- a/services/datapipeline/pom.xml
+++ b/services/datapipeline/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
datapipeline
AWS Java SDK :: Services :: AWS Data Pipeline
diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml
index df6c9718c02c..5fc577e45036 100644
--- a/services/datasync/pom.xml
+++ b/services/datasync/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
datasync
AWS Java SDK :: Services :: DataSync
diff --git a/services/datazone/pom.xml b/services/datazone/pom.xml
index ed797fec6f93..72ed315b18c2 100644
--- a/services/datazone/pom.xml
+++ b/services/datazone/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
datazone
AWS Java SDK :: Services :: Data Zone
diff --git a/services/dax/pom.xml b/services/dax/pom.xml
index f70968caa045..51b393f934ac 100644
--- a/services/dax/pom.xml
+++ b/services/dax/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
dax
AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX)
diff --git a/services/detective/pom.xml b/services/detective/pom.xml
index d4672a854ba7..3cc04ac2c8ab 100644
--- a/services/detective/pom.xml
+++ b/services/detective/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
detective
AWS Java SDK :: Services :: Detective
diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml
index a64c9a885000..9844d9b0753b 100644
--- a/services/devicefarm/pom.xml
+++ b/services/devicefarm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
devicefarm
AWS Java SDK :: Services :: AWS Device Farm
diff --git a/services/devopsguru/pom.xml b/services/devopsguru/pom.xml
index ce49118399ef..e1953f6baae1 100644
--- a/services/devopsguru/pom.xml
+++ b/services/devopsguru/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
devopsguru
AWS Java SDK :: Services :: Dev Ops Guru
diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml
index 2d9480a70b05..197150ce58dc 100644
--- a/services/directconnect/pom.xml
+++ b/services/directconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
directconnect
AWS Java SDK :: Services :: AWS Direct Connect
diff --git a/services/directory/pom.xml b/services/directory/pom.xml
index 9fd236afad80..65941ff1c788 100644
--- a/services/directory/pom.xml
+++ b/services/directory/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
directory
AWS Java SDK :: Services :: AWS Directory Service
diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml
index 7990ed8d72fb..4bc6480e7e8e 100644
--- a/services/dlm/pom.xml
+++ b/services/dlm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
dlm
AWS Java SDK :: Services :: DLM
diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml
index 8d4255615cde..c320bb1772bc 100644
--- a/services/docdb/pom.xml
+++ b/services/docdb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
docdb
AWS Java SDK :: Services :: DocDB
diff --git a/services/docdbelastic/pom.xml b/services/docdbelastic/pom.xml
index c08011d5d87d..f99d58d54e40 100644
--- a/services/docdbelastic/pom.xml
+++ b/services/docdbelastic/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
docdbelastic
AWS Java SDK :: Services :: Doc DB Elastic
diff --git a/services/drs/pom.xml b/services/drs/pom.xml
index e4115a308f0d..f478ea98d491 100644
--- a/services/drs/pom.xml
+++ b/services/drs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
drs
AWS Java SDK :: Services :: Drs
diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml
index 86eae358161b..96c1d82dc11c 100644
--- a/services/dynamodb/pom.xml
+++ b/services/dynamodb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
dynamodb
AWS Java SDK :: Services :: Amazon DynamoDB
diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml
index 9d7724616937..88403b3e35df 100644
--- a/services/ebs/pom.xml
+++ b/services/ebs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
ebs
AWS Java SDK :: Services :: EBS
diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml
index 1cd66e1e2350..436f2782cff5 100644
--- a/services/ec2/pom.xml
+++ b/services/ec2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
ec2
AWS Java SDK :: Services :: Amazon EC2
diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml
index b0dbe75bb7ae..b1adf7645dac 100644
--- a/services/ec2instanceconnect/pom.xml
+++ b/services/ec2instanceconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
ec2instanceconnect
AWS Java SDK :: Services :: EC2 Instance Connect
diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml
index 94e81a8acd01..fdd1ab0f642a 100644
--- a/services/ecr/pom.xml
+++ b/services/ecr/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
ecr
AWS Java SDK :: Services :: Amazon EC2 Container Registry
diff --git a/services/ecrpublic/pom.xml b/services/ecrpublic/pom.xml
index 36eeec473888..44e9d8307365 100644
--- a/services/ecrpublic/pom.xml
+++ b/services/ecrpublic/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
ecrpublic
AWS Java SDK :: Services :: ECR PUBLIC
diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml
index f0609924f70b..c02196edc5e6 100644
--- a/services/ecs/pom.xml
+++ b/services/ecs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
ecs
AWS Java SDK :: Services :: Amazon EC2 Container Service
diff --git a/services/efs/pom.xml b/services/efs/pom.xml
index 36610bd64446..c9ac093d926c 100644
--- a/services/efs/pom.xml
+++ b/services/efs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
efs
AWS Java SDK :: Services :: Amazon Elastic File System
diff --git a/services/eks/pom.xml b/services/eks/pom.xml
index 2a7c91696e97..09fa9c03570b 100644
--- a/services/eks/pom.xml
+++ b/services/eks/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
eks
AWS Java SDK :: Services :: EKS
diff --git a/services/eksauth/pom.xml b/services/eksauth/pom.xml
index f865d8380ecb..c9f4ba094300 100644
--- a/services/eksauth/pom.xml
+++ b/services/eksauth/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
eksauth
AWS Java SDK :: Services :: EKS Auth
diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml
index 2ff6376afaf0..8fdabe08204a 100644
--- a/services/elasticache/pom.xml
+++ b/services/elasticache/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
elasticache
AWS Java SDK :: Services :: Amazon ElastiCache
diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml
index fd8a2e90495b..14d9b716d2fb 100644
--- a/services/elasticbeanstalk/pom.xml
+++ b/services/elasticbeanstalk/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
elasticbeanstalk
AWS Java SDK :: Services :: AWS Elastic Beanstalk
diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml
index ecfdacf5c12c..6abacb1a2656 100644
--- a/services/elasticinference/pom.xml
+++ b/services/elasticinference/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
elasticinference
AWS Java SDK :: Services :: Elastic Inference
diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml
index 7ec8ab49f46e..9080f90c42ac 100644
--- a/services/elasticloadbalancing/pom.xml
+++ b/services/elasticloadbalancing/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
elasticloadbalancing
AWS Java SDK :: Services :: Elastic Load Balancing
diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml
index e819dd667f70..225357c932bf 100644
--- a/services/elasticloadbalancingv2/pom.xml
+++ b/services/elasticloadbalancingv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
elasticloadbalancingv2
AWS Java SDK :: Services :: Elastic Load Balancing V2
diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml
index ab96ea154e80..c4e66841894d 100644
--- a/services/elasticsearch/pom.xml
+++ b/services/elasticsearch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
elasticsearch
AWS Java SDK :: Services :: Amazon Elasticsearch Service
diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml
index 332c45413932..11046ac0480e 100644
--- a/services/elastictranscoder/pom.xml
+++ b/services/elastictranscoder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
elastictranscoder
AWS Java SDK :: Services :: Amazon Elastic Transcoder
diff --git a/services/emr/pom.xml b/services/emr/pom.xml
index 5832f6acf7ab..bb929533254e 100644
--- a/services/emr/pom.xml
+++ b/services/emr/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
emr
AWS Java SDK :: Services :: Amazon EMR
diff --git a/services/emrcontainers/pom.xml b/services/emrcontainers/pom.xml
index 42825853a111..ac233024a96e 100644
--- a/services/emrcontainers/pom.xml
+++ b/services/emrcontainers/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
emrcontainers
AWS Java SDK :: Services :: EMR Containers
diff --git a/services/emrserverless/pom.xml b/services/emrserverless/pom.xml
index 54989c2d9157..351a5923ecb5 100644
--- a/services/emrserverless/pom.xml
+++ b/services/emrserverless/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
emrserverless
AWS Java SDK :: Services :: EMR Serverless
diff --git a/services/entityresolution/pom.xml b/services/entityresolution/pom.xml
index 9c025f077615..31838f9a93f5 100644
--- a/services/entityresolution/pom.xml
+++ b/services/entityresolution/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
entityresolution
AWS Java SDK :: Services :: Entity Resolution
diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml
index 31f59a8efc65..5685d8aba438 100644
--- a/services/eventbridge/pom.xml
+++ b/services/eventbridge/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
eventbridge
AWS Java SDK :: Services :: EventBridge
diff --git a/services/evidently/pom.xml b/services/evidently/pom.xml
index b2a6fabf4789..2fab861dc26d 100644
--- a/services/evidently/pom.xml
+++ b/services/evidently/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
evidently
AWS Java SDK :: Services :: Evidently
diff --git a/services/finspace/pom.xml b/services/finspace/pom.xml
index 4387cb61df4d..e2112351a96e 100644
--- a/services/finspace/pom.xml
+++ b/services/finspace/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
finspace
AWS Java SDK :: Services :: Finspace
diff --git a/services/finspacedata/pom.xml b/services/finspacedata/pom.xml
index 4511873148a8..1f585b7d4d87 100644
--- a/services/finspacedata/pom.xml
+++ b/services/finspacedata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
finspacedata
AWS Java SDK :: Services :: Finspace Data
diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml
index 831d8ee64e0a..46d27785e053 100644
--- a/services/firehose/pom.xml
+++ b/services/firehose/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
firehose
AWS Java SDK :: Services :: Amazon Kinesis Firehose
diff --git a/services/fis/pom.xml b/services/fis/pom.xml
index cedb4e6ec649..4a05a49f6265 100644
--- a/services/fis/pom.xml
+++ b/services/fis/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
fis
AWS Java SDK :: Services :: Fis
diff --git a/services/fms/pom.xml b/services/fms/pom.xml
index db61e56324bd..a3495f023968 100644
--- a/services/fms/pom.xml
+++ b/services/fms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
fms
AWS Java SDK :: Services :: FMS
diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml
index 137522aa0b1b..54fd8b3b3250 100644
--- a/services/forecast/pom.xml
+++ b/services/forecast/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
forecast
AWS Java SDK :: Services :: Forecast
diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml
index 60bc2708e828..9501cacbf39c 100644
--- a/services/forecastquery/pom.xml
+++ b/services/forecastquery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
forecastquery
AWS Java SDK :: Services :: Forecastquery
diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml
index 7a8b28db0599..bddf534849b2 100644
--- a/services/frauddetector/pom.xml
+++ b/services/frauddetector/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
frauddetector
AWS Java SDK :: Services :: FraudDetector
diff --git a/services/freetier/pom.xml b/services/freetier/pom.xml
index 1a93a30d228e..502850eab7ae 100644
--- a/services/freetier/pom.xml
+++ b/services/freetier/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
freetier
AWS Java SDK :: Services :: Free Tier
diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml
index 485f57026782..eb3700ba13be 100644
--- a/services/fsx/pom.xml
+++ b/services/fsx/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
fsx
AWS Java SDK :: Services :: FSx
diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml
index 29625a6058ff..520b938a3b34 100644
--- a/services/gamelift/pom.xml
+++ b/services/gamelift/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
gamelift
AWS Java SDK :: Services :: AWS GameLift
diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml
index 6c6383c48d4d..7c45bcc578bf 100644
--- a/services/glacier/pom.xml
+++ b/services/glacier/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
glacier
AWS Java SDK :: Services :: Amazon Glacier
diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml
index bd6083d8e2cb..0c04b4a30f0f 100644
--- a/services/globalaccelerator/pom.xml
+++ b/services/globalaccelerator/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
globalaccelerator
AWS Java SDK :: Services :: Global Accelerator
diff --git a/services/glue/pom.xml b/services/glue/pom.xml
index e080c5b35119..b0a0470a91a4 100644
--- a/services/glue/pom.xml
+++ b/services/glue/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.0-SNAPSHOT
+ 2.25.0
4.0.0
glue
diff --git a/services/grafana/pom.xml b/services/grafana/pom.xml
index 70f036fe0bce..a71f7c5edf6f 100644
--- a/services/grafana/pom.xml
+++ b/services/grafana/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
grafana
AWS Java SDK :: Services :: Grafana
diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml
index fccfcefaead3..1f31596fd573 100644
--- a/services/greengrass/pom.xml
+++ b/services/greengrass/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
greengrass
AWS Java SDK :: Services :: AWS Greengrass
diff --git a/services/greengrassv2/pom.xml b/services/greengrassv2/pom.xml
index 6eb13eb34e54..abb2786e6d31 100644
--- a/services/greengrassv2/pom.xml
+++ b/services/greengrassv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
greengrassv2
AWS Java SDK :: Services :: Greengrass V2
diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml
index 7a812fb15ef2..074fc153d3c1 100644
--- a/services/groundstation/pom.xml
+++ b/services/groundstation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
groundstation
AWS Java SDK :: Services :: GroundStation
diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml
index b862bce0835a..27f08d90ddac 100644
--- a/services/guardduty/pom.xml
+++ b/services/guardduty/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.0-SNAPSHOT
+ 2.25.0
4.0.0
guardduty
diff --git a/services/health/pom.xml b/services/health/pom.xml
index 0689aab18437..14ad72bfa3cd 100644
--- a/services/health/pom.xml
+++ b/services/health/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
health
AWS Java SDK :: Services :: AWS Health APIs and Notifications
diff --git a/services/healthlake/pom.xml b/services/healthlake/pom.xml
index a85b75d23e8c..2f75ce10eeed 100644
--- a/services/healthlake/pom.xml
+++ b/services/healthlake/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
healthlake
AWS Java SDK :: Services :: Health Lake
diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml
index d38f58bee641..f579391a55eb 100644
--- a/services/honeycode/pom.xml
+++ b/services/honeycode/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
honeycode
AWS Java SDK :: Services :: Honeycode
diff --git a/services/iam/pom.xml b/services/iam/pom.xml
index 6e759c04aacf..49272b6eab65 100644
--- a/services/iam/pom.xml
+++ b/services/iam/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
iam
AWS Java SDK :: Services :: AWS IAM
diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml
index d37bc24ea395..c2874cc92ec3 100644
--- a/services/identitystore/pom.xml
+++ b/services/identitystore/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
identitystore
AWS Java SDK :: Services :: Identitystore
diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml
index c078c72da4d9..99f520b3193a 100644
--- a/services/imagebuilder/pom.xml
+++ b/services/imagebuilder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
imagebuilder
AWS Java SDK :: Services :: Imagebuilder
diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml
index 803f41b9ba8e..bf72ed829b96 100644
--- a/services/inspector/pom.xml
+++ b/services/inspector/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
inspector
AWS Java SDK :: Services :: Amazon Inspector Service
diff --git a/services/inspector2/pom.xml b/services/inspector2/pom.xml
index b0acd511519a..78bbaacb49ef 100644
--- a/services/inspector2/pom.xml
+++ b/services/inspector2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
inspector2
AWS Java SDK :: Services :: Inspector2
diff --git a/services/inspectorscan/pom.xml b/services/inspectorscan/pom.xml
index bcf47f189df1..4dd13ca5f624 100644
--- a/services/inspectorscan/pom.xml
+++ b/services/inspectorscan/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
inspectorscan
AWS Java SDK :: Services :: Inspector Scan
diff --git a/services/internetmonitor/pom.xml b/services/internetmonitor/pom.xml
index ae937478c92b..508c87244930 100644
--- a/services/internetmonitor/pom.xml
+++ b/services/internetmonitor/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
internetmonitor
AWS Java SDK :: Services :: Internet Monitor
diff --git a/services/iot/pom.xml b/services/iot/pom.xml
index 6477a2fa1aee..1a9c3b18b156 100644
--- a/services/iot/pom.xml
+++ b/services/iot/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
iot
AWS Java SDK :: Services :: AWS IoT
diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml
index 6d4f5dfb1e43..66e8aad32d48 100644
--- a/services/iot1clickdevices/pom.xml
+++ b/services/iot1clickdevices/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
iot1clickdevices
AWS Java SDK :: Services :: IoT 1Click Devices Service
diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml
index cf8399a007a3..7466ba85793e 100644
--- a/services/iot1clickprojects/pom.xml
+++ b/services/iot1clickprojects/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
iot1clickprojects
AWS Java SDK :: Services :: IoT 1Click Projects
diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml
index 2a68865ba43c..d1029d28ea62 100644
--- a/services/iotanalytics/pom.xml
+++ b/services/iotanalytics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
iotanalytics
AWS Java SDK :: Services :: IoTAnalytics
diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml
index 74c4e0340406..aa14da83f21e 100644
--- a/services/iotdataplane/pom.xml
+++ b/services/iotdataplane/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
iotdataplane
AWS Java SDK :: Services :: AWS IoT Data Plane
diff --git a/services/iotdeviceadvisor/pom.xml b/services/iotdeviceadvisor/pom.xml
index 4c12eae3a2dd..0e169d9064b8 100644
--- a/services/iotdeviceadvisor/pom.xml
+++ b/services/iotdeviceadvisor/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
iotdeviceadvisor
AWS Java SDK :: Services :: Iot Device Advisor
diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml
index c151bf023655..84effdf7d66e 100644
--- a/services/iotevents/pom.xml
+++ b/services/iotevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
iotevents
AWS Java SDK :: Services :: IoT Events
diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml
index 585a67af7713..616dc27d58a4 100644
--- a/services/ioteventsdata/pom.xml
+++ b/services/ioteventsdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
ioteventsdata
AWS Java SDK :: Services :: IoT Events Data
diff --git a/services/iotfleethub/pom.xml b/services/iotfleethub/pom.xml
index ca9fd58cbdf3..c7008eb772a1 100644
--- a/services/iotfleethub/pom.xml
+++ b/services/iotfleethub/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
iotfleethub
AWS Java SDK :: Services :: Io T Fleet Hub
diff --git a/services/iotfleetwise/pom.xml b/services/iotfleetwise/pom.xml
index 4242e3681d04..c3a307dcbfb7 100644
--- a/services/iotfleetwise/pom.xml
+++ b/services/iotfleetwise/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
iotfleetwise
AWS Java SDK :: Services :: Io T Fleet Wise
diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml
index 8ecfa0d13796..423e65561c5b 100644
--- a/services/iotjobsdataplane/pom.xml
+++ b/services/iotjobsdataplane/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
iotjobsdataplane
AWS Java SDK :: Services :: IoT Jobs Data Plane
diff --git a/services/iotroborunner/pom.xml b/services/iotroborunner/pom.xml
index 5fd41d554e42..7bad79b0ed31 100644
--- a/services/iotroborunner/pom.xml
+++ b/services/iotroborunner/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
iotroborunner
AWS Java SDK :: Services :: IoT Robo Runner
diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml
index fc1aa8c87d12..b6e2e21a2065 100644
--- a/services/iotsecuretunneling/pom.xml
+++ b/services/iotsecuretunneling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
iotsecuretunneling
AWS Java SDK :: Services :: IoTSecureTunneling
diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml
index c16803646f23..259dad313b7b 100644
--- a/services/iotsitewise/pom.xml
+++ b/services/iotsitewise/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
iotsitewise
AWS Java SDK :: Services :: Io T Site Wise
diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml
index 2ed50d417277..8ef13874c8cf 100644
--- a/services/iotthingsgraph/pom.xml
+++ b/services/iotthingsgraph/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
iotthingsgraph
AWS Java SDK :: Services :: IoTThingsGraph
diff --git a/services/iottwinmaker/pom.xml b/services/iottwinmaker/pom.xml
index 8713098e62b7..4735f78e716a 100644
--- a/services/iottwinmaker/pom.xml
+++ b/services/iottwinmaker/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
iottwinmaker
AWS Java SDK :: Services :: Io T Twin Maker
diff --git a/services/iotwireless/pom.xml b/services/iotwireless/pom.xml
index c404e3519803..9b493f393bd8 100644
--- a/services/iotwireless/pom.xml
+++ b/services/iotwireless/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
iotwireless
AWS Java SDK :: Services :: IoT Wireless
diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml
index f750e3df936a..715dc574a593 100644
--- a/services/ivs/pom.xml
+++ b/services/ivs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
ivs
AWS Java SDK :: Services :: Ivs
diff --git a/services/ivschat/pom.xml b/services/ivschat/pom.xml
index 3045644bbd2e..d4a895c0db1b 100644
--- a/services/ivschat/pom.xml
+++ b/services/ivschat/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
ivschat
AWS Java SDK :: Services :: Ivschat
diff --git a/services/ivsrealtime/pom.xml b/services/ivsrealtime/pom.xml
index 4c4ed1b453fb..4459cfda2423 100644
--- a/services/ivsrealtime/pom.xml
+++ b/services/ivsrealtime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
ivsrealtime
AWS Java SDK :: Services :: IVS Real Time
diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml
index 96523acfd8e3..7514191cba67 100644
--- a/services/kafka/pom.xml
+++ b/services/kafka/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
kafka
AWS Java SDK :: Services :: Kafka
diff --git a/services/kafkaconnect/pom.xml b/services/kafkaconnect/pom.xml
index cd7c87ae1415..05ead32b95ef 100644
--- a/services/kafkaconnect/pom.xml
+++ b/services/kafkaconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
kafkaconnect
AWS Java SDK :: Services :: Kafka Connect
diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml
index 70ff954f2f95..216630d7ec89 100644
--- a/services/kendra/pom.xml
+++ b/services/kendra/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
kendra
AWS Java SDK :: Services :: Kendra
diff --git a/services/kendraranking/pom.xml b/services/kendraranking/pom.xml
index 43747dc114c1..f44d64bd7099 100644
--- a/services/kendraranking/pom.xml
+++ b/services/kendraranking/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
kendraranking
AWS Java SDK :: Services :: Kendra Ranking
diff --git a/services/keyspaces/pom.xml b/services/keyspaces/pom.xml
index ecd7e764a932..91064d97f138 100644
--- a/services/keyspaces/pom.xml
+++ b/services/keyspaces/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
keyspaces
AWS Java SDK :: Services :: Keyspaces
diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml
index d2305350fad3..0799bf8be151 100644
--- a/services/kinesis/pom.xml
+++ b/services/kinesis/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
kinesis
AWS Java SDK :: Services :: Amazon Kinesis
diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml
index 760bdddda88d..0218730461a3 100644
--- a/services/kinesisanalytics/pom.xml
+++ b/services/kinesisanalytics/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
kinesisanalytics
AWS Java SDK :: Services :: Amazon Kinesis Analytics
diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml
index 078931842c83..ad622fce0ea5 100644
--- a/services/kinesisanalyticsv2/pom.xml
+++ b/services/kinesisanalyticsv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
kinesisanalyticsv2
AWS Java SDK :: Services :: Kinesis Analytics V2
diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml
index 17fa8c071f6b..52fbcc8f81ab 100644
--- a/services/kinesisvideo/pom.xml
+++ b/services/kinesisvideo/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.0-SNAPSHOT
+ 2.25.0
4.0.0
kinesisvideo
diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml
index c6d4b0520780..feab6b1366de 100644
--- a/services/kinesisvideoarchivedmedia/pom.xml
+++ b/services/kinesisvideoarchivedmedia/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
kinesisvideoarchivedmedia
AWS Java SDK :: Services :: Kinesis Video Archived Media
diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml
index c715d2741054..9e6d91bd0764 100644
--- a/services/kinesisvideomedia/pom.xml
+++ b/services/kinesisvideomedia/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
kinesisvideomedia
AWS Java SDK :: Services :: Kinesis Video Media
diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml
index e87969ca2621..cb316501d338 100644
--- a/services/kinesisvideosignaling/pom.xml
+++ b/services/kinesisvideosignaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
kinesisvideosignaling
AWS Java SDK :: Services :: Kinesis Video Signaling
diff --git a/services/kinesisvideowebrtcstorage/pom.xml b/services/kinesisvideowebrtcstorage/pom.xml
index efa195d0b006..f11c26bd6c10 100644
--- a/services/kinesisvideowebrtcstorage/pom.xml
+++ b/services/kinesisvideowebrtcstorage/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
kinesisvideowebrtcstorage
AWS Java SDK :: Services :: Kinesis Video Web RTC Storage
diff --git a/services/kms/pom.xml b/services/kms/pom.xml
index c7d97aa47bde..4d95e529e916 100644
--- a/services/kms/pom.xml
+++ b/services/kms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
kms
AWS Java SDK :: Services :: AWS KMS
diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml
index edbbd8babc35..84e550e95e32 100644
--- a/services/lakeformation/pom.xml
+++ b/services/lakeformation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
lakeformation
AWS Java SDK :: Services :: LakeFormation
diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml
index 95b6e7fefa0d..ac9806f0dbaf 100644
--- a/services/lambda/pom.xml
+++ b/services/lambda/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
lambda
AWS Java SDK :: Services :: AWS Lambda
diff --git a/services/launchwizard/pom.xml b/services/launchwizard/pom.xml
index 8982bf4a3f84..10acdf624044 100644
--- a/services/launchwizard/pom.xml
+++ b/services/launchwizard/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
launchwizard
AWS Java SDK :: Services :: Launch Wizard
diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml
index b91fe5df8a30..5f86e48e99c6 100644
--- a/services/lexmodelbuilding/pom.xml
+++ b/services/lexmodelbuilding/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
lexmodelbuilding
AWS Java SDK :: Services :: Amazon Lex Model Building
diff --git a/services/lexmodelsv2/pom.xml b/services/lexmodelsv2/pom.xml
index acb9e4eb20b0..9d32faf0db6a 100644
--- a/services/lexmodelsv2/pom.xml
+++ b/services/lexmodelsv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
lexmodelsv2
AWS Java SDK :: Services :: Lex Models V2
diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml
index e9e37e3e8377..8568c74ea00a 100644
--- a/services/lexruntime/pom.xml
+++ b/services/lexruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
lexruntime
AWS Java SDK :: Services :: Amazon Lex Runtime
diff --git a/services/lexruntimev2/pom.xml b/services/lexruntimev2/pom.xml
index 29515ea3523e..d560d566b18a 100644
--- a/services/lexruntimev2/pom.xml
+++ b/services/lexruntimev2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
lexruntimev2
AWS Java SDK :: Services :: Lex Runtime V2
diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml
index 284e1167f592..6ec31eaa2120 100644
--- a/services/licensemanager/pom.xml
+++ b/services/licensemanager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
licensemanager
AWS Java SDK :: Services :: License Manager
diff --git a/services/licensemanagerlinuxsubscriptions/pom.xml b/services/licensemanagerlinuxsubscriptions/pom.xml
index 331b3f2d947e..29fa597082e0 100644
--- a/services/licensemanagerlinuxsubscriptions/pom.xml
+++ b/services/licensemanagerlinuxsubscriptions/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
licensemanagerlinuxsubscriptions
AWS Java SDK :: Services :: License Manager Linux Subscriptions
diff --git a/services/licensemanagerusersubscriptions/pom.xml b/services/licensemanagerusersubscriptions/pom.xml
index c77d75469144..807f58c8c061 100644
--- a/services/licensemanagerusersubscriptions/pom.xml
+++ b/services/licensemanagerusersubscriptions/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
licensemanagerusersubscriptions
AWS Java SDK :: Services :: License Manager User Subscriptions
diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml
index 3a91d3038240..208c14202ad1 100644
--- a/services/lightsail/pom.xml
+++ b/services/lightsail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
lightsail
AWS Java SDK :: Services :: Amazon Lightsail
diff --git a/services/location/pom.xml b/services/location/pom.xml
index 76c52e953a4e..cb75445a5809 100644
--- a/services/location/pom.xml
+++ b/services/location/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
location
AWS Java SDK :: Services :: Location
diff --git a/services/lookoutequipment/pom.xml b/services/lookoutequipment/pom.xml
index fd5d55eb5cdc..148ae5139b43 100644
--- a/services/lookoutequipment/pom.xml
+++ b/services/lookoutequipment/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
lookoutequipment
AWS Java SDK :: Services :: Lookout Equipment
diff --git a/services/lookoutmetrics/pom.xml b/services/lookoutmetrics/pom.xml
index 13018fa65d68..51743bc922f0 100644
--- a/services/lookoutmetrics/pom.xml
+++ b/services/lookoutmetrics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
lookoutmetrics
AWS Java SDK :: Services :: Lookout Metrics
diff --git a/services/lookoutvision/pom.xml b/services/lookoutvision/pom.xml
index 8710d79a569a..445a4af091fc 100644
--- a/services/lookoutvision/pom.xml
+++ b/services/lookoutvision/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
lookoutvision
AWS Java SDK :: Services :: Lookout Vision
diff --git a/services/m2/pom.xml b/services/m2/pom.xml
index 2c7a1f284a48..ec5614a82e34 100644
--- a/services/m2/pom.xml
+++ b/services/m2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
m2
AWS Java SDK :: Services :: M2
diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml
index fc5948794d0b..41b71a026fa2 100644
--- a/services/machinelearning/pom.xml
+++ b/services/machinelearning/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
machinelearning
AWS Java SDK :: Services :: Amazon Machine Learning
diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml
index faca7f41f4f1..52101748e40e 100644
--- a/services/macie2/pom.xml
+++ b/services/macie2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
macie2
AWS Java SDK :: Services :: Macie2
diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml
index 755d655f75a9..9add2ae430ee 100644
--- a/services/managedblockchain/pom.xml
+++ b/services/managedblockchain/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
managedblockchain
AWS Java SDK :: Services :: ManagedBlockchain
diff --git a/services/managedblockchainquery/pom.xml b/services/managedblockchainquery/pom.xml
index 0aea649b2d8f..26359f6e46c4 100644
--- a/services/managedblockchainquery/pom.xml
+++ b/services/managedblockchainquery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
managedblockchainquery
AWS Java SDK :: Services :: Managed Blockchain Query
diff --git a/services/marketplaceagreement/pom.xml b/services/marketplaceagreement/pom.xml
index ecd56d9330d1..420049021dc6 100644
--- a/services/marketplaceagreement/pom.xml
+++ b/services/marketplaceagreement/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
marketplaceagreement
AWS Java SDK :: Services :: Marketplace Agreement
diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml
index 2702495e5d27..f8ab470ab508 100644
--- a/services/marketplacecatalog/pom.xml
+++ b/services/marketplacecatalog/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
marketplacecatalog
AWS Java SDK :: Services :: Marketplace Catalog
diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml
index 266d3d376af9..a14561768e9f 100644
--- a/services/marketplacecommerceanalytics/pom.xml
+++ b/services/marketplacecommerceanalytics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
marketplacecommerceanalytics
AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics
diff --git a/services/marketplacedeployment/pom.xml b/services/marketplacedeployment/pom.xml
index dcdf44f98bad..467a112b8481 100644
--- a/services/marketplacedeployment/pom.xml
+++ b/services/marketplacedeployment/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
marketplacedeployment
AWS Java SDK :: Services :: Marketplace Deployment
diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml
index 236c7adbbc41..4d3e5eb88a3e 100644
--- a/services/marketplaceentitlement/pom.xml
+++ b/services/marketplaceentitlement/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
marketplaceentitlement
AWS Java SDK :: Services :: AWS Marketplace Entitlement
diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml
index 26b63c93d444..b682addbf4cf 100644
--- a/services/marketplacemetering/pom.xml
+++ b/services/marketplacemetering/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
marketplacemetering
AWS Java SDK :: Services :: AWS Marketplace Metering Service
diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml
index bee66247de77..2d65e0f7b92b 100644
--- a/services/mediaconnect/pom.xml
+++ b/services/mediaconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
mediaconnect
AWS Java SDK :: Services :: MediaConnect
diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml
index 7c4eda2f444e..e11fa239a747 100644
--- a/services/mediaconvert/pom.xml
+++ b/services/mediaconvert/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.0-SNAPSHOT
+ 2.25.0
4.0.0
mediaconvert
diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml
index 61e1ecb323e9..d73f891697aa 100644
--- a/services/medialive/pom.xml
+++ b/services/medialive/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.0-SNAPSHOT
+ 2.25.0
4.0.0
medialive
diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml
index 2ba7fd313907..eb4328ad6fb9 100644
--- a/services/mediapackage/pom.xml
+++ b/services/mediapackage/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.0-SNAPSHOT
+ 2.25.0
4.0.0
mediapackage
diff --git a/services/mediapackagev2/pom.xml b/services/mediapackagev2/pom.xml
index b14443458077..ce62dd281134 100644
--- a/services/mediapackagev2/pom.xml
+++ b/services/mediapackagev2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
mediapackagev2
AWS Java SDK :: Services :: Media Package V2
diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml
index 95a4b62a923d..4a5f9b048276 100644
--- a/services/mediapackagevod/pom.xml
+++ b/services/mediapackagevod/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
mediapackagevod
AWS Java SDK :: Services :: MediaPackage Vod
diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml
index fc8441637edb..59ebbbbdee96 100644
--- a/services/mediastore/pom.xml
+++ b/services/mediastore/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.0-SNAPSHOT
+ 2.25.0
4.0.0
mediastore
diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml
index 5809365f24be..2b555ac7a0ab 100644
--- a/services/mediastoredata/pom.xml
+++ b/services/mediastoredata/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.0-SNAPSHOT
+ 2.25.0
4.0.0
mediastoredata
diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml
index d3c06da10ad8..f68b67bf1c57 100644
--- a/services/mediatailor/pom.xml
+++ b/services/mediatailor/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
mediatailor
AWS Java SDK :: Services :: MediaTailor
diff --git a/services/medicalimaging/pom.xml b/services/medicalimaging/pom.xml
index 44dd80f9753c..2126f1abbadd 100644
--- a/services/medicalimaging/pom.xml
+++ b/services/medicalimaging/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
medicalimaging
AWS Java SDK :: Services :: Medical Imaging
diff --git a/services/memorydb/pom.xml b/services/memorydb/pom.xml
index 93f5c2ad53b9..2e9cf91737a2 100644
--- a/services/memorydb/pom.xml
+++ b/services/memorydb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
memorydb
AWS Java SDK :: Services :: Memory DB
diff --git a/services/mgn/pom.xml b/services/mgn/pom.xml
index c79302a4b939..26ce6620d9f0 100644
--- a/services/mgn/pom.xml
+++ b/services/mgn/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
mgn
AWS Java SDK :: Services :: Mgn
diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml
index 16f0cac5bcce..d4cb93be189f 100644
--- a/services/migrationhub/pom.xml
+++ b/services/migrationhub/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.0-SNAPSHOT
+ 2.25.0
4.0.0
migrationhub
diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml
index e7fc446b1f03..05f9fc98e996 100644
--- a/services/migrationhubconfig/pom.xml
+++ b/services/migrationhubconfig/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
migrationhubconfig
AWS Java SDK :: Services :: MigrationHub Config
diff --git a/services/migrationhuborchestrator/pom.xml b/services/migrationhuborchestrator/pom.xml
index fdd810d50645..4e6ad7fddc5d 100644
--- a/services/migrationhuborchestrator/pom.xml
+++ b/services/migrationhuborchestrator/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
migrationhuborchestrator
AWS Java SDK :: Services :: Migration Hub Orchestrator
diff --git a/services/migrationhubrefactorspaces/pom.xml b/services/migrationhubrefactorspaces/pom.xml
index 3c0df431b65c..46bd29559279 100644
--- a/services/migrationhubrefactorspaces/pom.xml
+++ b/services/migrationhubrefactorspaces/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
migrationhubrefactorspaces
AWS Java SDK :: Services :: Migration Hub Refactor Spaces
diff --git a/services/migrationhubstrategy/pom.xml b/services/migrationhubstrategy/pom.xml
index dcd9f2c4000f..b3f666d2f5f2 100644
--- a/services/migrationhubstrategy/pom.xml
+++ b/services/migrationhubstrategy/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
migrationhubstrategy
AWS Java SDK :: Services :: Migration Hub Strategy
diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml
index 5212e1008842..a0ae5a850f76 100644
--- a/services/mobile/pom.xml
+++ b/services/mobile/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.0-SNAPSHOT
+ 2.25.0
4.0.0
mobile
diff --git a/services/mq/pom.xml b/services/mq/pom.xml
index 1868f4642eb6..d2267fa5458d 100644
--- a/services/mq/pom.xml
+++ b/services/mq/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.0-SNAPSHOT
+ 2.25.0
4.0.0
mq
diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml
index bee4ca1895e5..13cad3a5a413 100644
--- a/services/mturk/pom.xml
+++ b/services/mturk/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
mturk
AWS Java SDK :: Services :: Amazon Mechanical Turk Requester
diff --git a/services/mwaa/pom.xml b/services/mwaa/pom.xml
index 8bc9fc04cf31..0e56c5567cdd 100644
--- a/services/mwaa/pom.xml
+++ b/services/mwaa/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
mwaa
AWS Java SDK :: Services :: MWAA
diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml
index 573b88953efd..39c14ffb30d8 100644
--- a/services/neptune/pom.xml
+++ b/services/neptune/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
neptune
AWS Java SDK :: Services :: Neptune
diff --git a/services/neptunedata/pom.xml b/services/neptunedata/pom.xml
index 08e3889975a4..00b10fbe656d 100644
--- a/services/neptunedata/pom.xml
+++ b/services/neptunedata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
neptunedata
AWS Java SDK :: Services :: Neptunedata
diff --git a/services/neptunegraph/pom.xml b/services/neptunegraph/pom.xml
index 70bea4cdf561..0b7ee2feaf94 100644
--- a/services/neptunegraph/pom.xml
+++ b/services/neptunegraph/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
neptunegraph
AWS Java SDK :: Services :: Neptune Graph
diff --git a/services/networkfirewall/pom.xml b/services/networkfirewall/pom.xml
index 26adc108c5b3..a317943bd674 100644
--- a/services/networkfirewall/pom.xml
+++ b/services/networkfirewall/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
networkfirewall
AWS Java SDK :: Services :: Network Firewall
diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml
index 5001f120c6c6..f231ce4a7288 100644
--- a/services/networkmanager/pom.xml
+++ b/services/networkmanager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
networkmanager
AWS Java SDK :: Services :: NetworkManager
diff --git a/services/networkmonitor/pom.xml b/services/networkmonitor/pom.xml
index dc697cc6cd68..f3eeb891a14a 100644
--- a/services/networkmonitor/pom.xml
+++ b/services/networkmonitor/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
networkmonitor
AWS Java SDK :: Services :: Network Monitor
diff --git a/services/nimble/pom.xml b/services/nimble/pom.xml
index e9c2f4d42dac..4a7c1c1ecc25 100644
--- a/services/nimble/pom.xml
+++ b/services/nimble/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
nimble
AWS Java SDK :: Services :: Nimble
diff --git a/services/oam/pom.xml b/services/oam/pom.xml
index d3766af48e84..ba72407758bb 100644
--- a/services/oam/pom.xml
+++ b/services/oam/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
oam
AWS Java SDK :: Services :: OAM
diff --git a/services/omics/pom.xml b/services/omics/pom.xml
index 849a62c7bf56..c4429e70e905 100644
--- a/services/omics/pom.xml
+++ b/services/omics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
omics
AWS Java SDK :: Services :: Omics
diff --git a/services/opensearch/pom.xml b/services/opensearch/pom.xml
index 3ff10521b5e2..995416662a2a 100644
--- a/services/opensearch/pom.xml
+++ b/services/opensearch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
opensearch
AWS Java SDK :: Services :: Open Search
diff --git a/services/opensearchserverless/pom.xml b/services/opensearchserverless/pom.xml
index 61c0a645712d..a80f113aa97a 100644
--- a/services/opensearchserverless/pom.xml
+++ b/services/opensearchserverless/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
opensearchserverless
AWS Java SDK :: Services :: Open Search Serverless
diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml
index a4a207c8c767..120311b4afe3 100644
--- a/services/opsworks/pom.xml
+++ b/services/opsworks/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
opsworks
AWS Java SDK :: Services :: AWS OpsWorks
diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml
index b2eb711306a2..718a881b67f8 100644
--- a/services/opsworkscm/pom.xml
+++ b/services/opsworkscm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
opsworkscm
AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate
diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml
index 77b91502c3d9..c9c240e45c0d 100644
--- a/services/organizations/pom.xml
+++ b/services/organizations/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
organizations
AWS Java SDK :: Services :: AWS Organizations
diff --git a/services/osis/pom.xml b/services/osis/pom.xml
index dd0c03d4bd6b..6d20b20299a8 100644
--- a/services/osis/pom.xml
+++ b/services/osis/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
osis
AWS Java SDK :: Services :: OSIS
diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml
index 257fe1d70332..d47e6c7cd644 100644
--- a/services/outposts/pom.xml
+++ b/services/outposts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
outposts
AWS Java SDK :: Services :: Outposts
diff --git a/services/panorama/pom.xml b/services/panorama/pom.xml
index ec603e578120..ae2cf40278d4 100644
--- a/services/panorama/pom.xml
+++ b/services/panorama/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
panorama
AWS Java SDK :: Services :: Panorama
diff --git a/services/paymentcryptography/pom.xml b/services/paymentcryptography/pom.xml
index 37d67d612b14..443438b622ee 100644
--- a/services/paymentcryptography/pom.xml
+++ b/services/paymentcryptography/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
paymentcryptography
AWS Java SDK :: Services :: Payment Cryptography
diff --git a/services/paymentcryptographydata/pom.xml b/services/paymentcryptographydata/pom.xml
index 0cd6b5729617..ec699603c28c 100644
--- a/services/paymentcryptographydata/pom.xml
+++ b/services/paymentcryptographydata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
paymentcryptographydata
AWS Java SDK :: Services :: Payment Cryptography Data
diff --git a/services/pcaconnectorad/pom.xml b/services/pcaconnectorad/pom.xml
index a41d4553777b..902422fbd95c 100644
--- a/services/pcaconnectorad/pom.xml
+++ b/services/pcaconnectorad/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
pcaconnectorad
AWS Java SDK :: Services :: Pca Connector Ad
diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml
index 93b17de8713e..ef82634300f7 100644
--- a/services/personalize/pom.xml
+++ b/services/personalize/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
personalize
AWS Java SDK :: Services :: Personalize
diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml
index 6c5f69ad0861..2e6b42178ebb 100644
--- a/services/personalizeevents/pom.xml
+++ b/services/personalizeevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
personalizeevents
AWS Java SDK :: Services :: Personalize Events
diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml
index 2c56b51ef7ed..2b9b2ccb9f50 100644
--- a/services/personalizeruntime/pom.xml
+++ b/services/personalizeruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
personalizeruntime
AWS Java SDK :: Services :: Personalize Runtime
diff --git a/services/pi/pom.xml b/services/pi/pom.xml
index 1294ac15aefe..f4705a39c4ec 100644
--- a/services/pi/pom.xml
+++ b/services/pi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
pi
AWS Java SDK :: Services :: PI
diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml
index 5a6e71073295..198a15fafec9 100644
--- a/services/pinpoint/pom.xml
+++ b/services/pinpoint/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
pinpoint
AWS Java SDK :: Services :: Amazon Pinpoint
diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml
index ab627e20be5b..4bd5f83ca6f2 100644
--- a/services/pinpointemail/pom.xml
+++ b/services/pinpointemail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
pinpointemail
AWS Java SDK :: Services :: Pinpoint Email
diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml
index 9ce305ecd29f..932b41b3ec43 100644
--- a/services/pinpointsmsvoice/pom.xml
+++ b/services/pinpointsmsvoice/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
pinpointsmsvoice
AWS Java SDK :: Services :: Pinpoint SMS Voice
diff --git a/services/pinpointsmsvoicev2/pom.xml b/services/pinpointsmsvoicev2/pom.xml
index a6a99dd44826..79d567580ff3 100644
--- a/services/pinpointsmsvoicev2/pom.xml
+++ b/services/pinpointsmsvoicev2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
pinpointsmsvoicev2
AWS Java SDK :: Services :: Pinpoint SMS Voice V2
diff --git a/services/pipes/pom.xml b/services/pipes/pom.xml
index 949b630918f6..03886e8de867 100644
--- a/services/pipes/pom.xml
+++ b/services/pipes/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
pipes
AWS Java SDK :: Services :: Pipes
diff --git a/services/polly/pom.xml b/services/polly/pom.xml
index 0d9d0a191025..5fc2dad35191 100644
--- a/services/polly/pom.xml
+++ b/services/polly/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
polly
AWS Java SDK :: Services :: Amazon Polly
diff --git a/services/pom.xml b/services/pom.xml
index ef8fc07f6ed5..ca6430fa355e 100644
--- a/services/pom.xml
+++ b/services/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.0-SNAPSHOT
+ 2.25.0
services
AWS Java SDK :: Services
diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml
index eb2e90dbc4f0..6d708709539e 100644
--- a/services/pricing/pom.xml
+++ b/services/pricing/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.0-SNAPSHOT
+ 2.25.0
4.0.0
pricing
diff --git a/services/privatenetworks/pom.xml b/services/privatenetworks/pom.xml
index dc9b80a9d2a8..39c626956136 100644
--- a/services/privatenetworks/pom.xml
+++ b/services/privatenetworks/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
privatenetworks
AWS Java SDK :: Services :: Private Networks
diff --git a/services/proton/pom.xml b/services/proton/pom.xml
index 1883b8d6bb2b..39052379b798 100644
--- a/services/proton/pom.xml
+++ b/services/proton/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
proton
AWS Java SDK :: Services :: Proton
diff --git a/services/qbusiness/pom.xml b/services/qbusiness/pom.xml
index 99184ab39fa4..a115a5a8348b 100644
--- a/services/qbusiness/pom.xml
+++ b/services/qbusiness/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
qbusiness
AWS Java SDK :: Services :: Q Business
diff --git a/services/qconnect/pom.xml b/services/qconnect/pom.xml
index 3b52e7804441..41c9eea4c47f 100644
--- a/services/qconnect/pom.xml
+++ b/services/qconnect/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
qconnect
AWS Java SDK :: Services :: Q Connect
diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml
index ebb9d577aa49..3c45236811db 100644
--- a/services/qldb/pom.xml
+++ b/services/qldb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
qldb
AWS Java SDK :: Services :: QLDB
diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml
index 71d27b9464db..76b26a31352b 100644
--- a/services/qldbsession/pom.xml
+++ b/services/qldbsession/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
qldbsession
AWS Java SDK :: Services :: QLDB Session
diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml
index ff06fec7f94d..b061aa5c863c 100644
--- a/services/quicksight/pom.xml
+++ b/services/quicksight/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
quicksight
AWS Java SDK :: Services :: QuickSight
diff --git a/services/ram/pom.xml b/services/ram/pom.xml
index 6aaa8e131b1e..2766d0e2f90e 100644
--- a/services/ram/pom.xml
+++ b/services/ram/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
ram
AWS Java SDK :: Services :: RAM
diff --git a/services/rbin/pom.xml b/services/rbin/pom.xml
index 8b53e6a76d16..f7e5aef7d89e 100644
--- a/services/rbin/pom.xml
+++ b/services/rbin/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
rbin
AWS Java SDK :: Services :: Rbin
diff --git a/services/rds/pom.xml b/services/rds/pom.xml
index 28660c5606d6..51a22a0b8967 100644
--- a/services/rds/pom.xml
+++ b/services/rds/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
rds
AWS Java SDK :: Services :: Amazon RDS
diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml
index a1e5dacda2d4..ad858e2db5b0 100644
--- a/services/rdsdata/pom.xml
+++ b/services/rdsdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
rdsdata
AWS Java SDK :: Services :: RDS Data
diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml
index 1e19e7e7edc1..81621a3f283f 100644
--- a/services/redshift/pom.xml
+++ b/services/redshift/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
redshift
AWS Java SDK :: Services :: Amazon Redshift
diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml
index 12780947f6a7..b7b0cacc49eb 100644
--- a/services/redshiftdata/pom.xml
+++ b/services/redshiftdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
redshiftdata
AWS Java SDK :: Services :: Redshift Data
diff --git a/services/redshiftserverless/pom.xml b/services/redshiftserverless/pom.xml
index 0065f5ddba0b..db8a7bf42f67 100644
--- a/services/redshiftserverless/pom.xml
+++ b/services/redshiftserverless/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
redshiftserverless
AWS Java SDK :: Services :: Redshift Serverless
diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml
index 4101fce1fea0..317e1cb03c9f 100644
--- a/services/rekognition/pom.xml
+++ b/services/rekognition/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
rekognition
AWS Java SDK :: Services :: Amazon Rekognition
diff --git a/services/repostspace/pom.xml b/services/repostspace/pom.xml
index 9bbd536d2da6..813479373bf2 100644
--- a/services/repostspace/pom.xml
+++ b/services/repostspace/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
repostspace
AWS Java SDK :: Services :: Repostspace
diff --git a/services/resiliencehub/pom.xml b/services/resiliencehub/pom.xml
index c2105de5da2d..789317c3db66 100644
--- a/services/resiliencehub/pom.xml
+++ b/services/resiliencehub/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
resiliencehub
AWS Java SDK :: Services :: Resiliencehub
diff --git a/services/resourceexplorer2/pom.xml b/services/resourceexplorer2/pom.xml
index 013bdd0e3f3d..9022b38a8b1f 100644
--- a/services/resourceexplorer2/pom.xml
+++ b/services/resourceexplorer2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
resourceexplorer2
AWS Java SDK :: Services :: Resource Explorer 2
diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml
index 6a458f879ac8..3cb855d702bf 100644
--- a/services/resourcegroups/pom.xml
+++ b/services/resourcegroups/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.0-SNAPSHOT
+ 2.25.0
4.0.0
resourcegroups
diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml
index e1c5b88e3f1f..10eeee216b6e 100644
--- a/services/resourcegroupstaggingapi/pom.xml
+++ b/services/resourcegroupstaggingapi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
resourcegroupstaggingapi
AWS Java SDK :: Services :: AWS Resource Groups Tagging API
diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml
index 13fc03c2bf2d..e6e8c491ebaa 100644
--- a/services/robomaker/pom.xml
+++ b/services/robomaker/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
robomaker
AWS Java SDK :: Services :: RoboMaker
diff --git a/services/rolesanywhere/pom.xml b/services/rolesanywhere/pom.xml
index 9ad100f4386e..49ecc9208bcd 100644
--- a/services/rolesanywhere/pom.xml
+++ b/services/rolesanywhere/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
rolesanywhere
AWS Java SDK :: Services :: Roles Anywhere
diff --git a/services/route53/pom.xml b/services/route53/pom.xml
index 44cb756a2983..7630a0d679bb 100644
--- a/services/route53/pom.xml
+++ b/services/route53/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
route53
AWS Java SDK :: Services :: Amazon Route53
diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml
index 250e4b27646f..87a4dad97928 100644
--- a/services/route53domains/pom.xml
+++ b/services/route53domains/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
route53domains
AWS Java SDK :: Services :: Amazon Route53 Domains
diff --git a/services/route53recoverycluster/pom.xml b/services/route53recoverycluster/pom.xml
index 7363f21beaf1..5d313094c7d0 100644
--- a/services/route53recoverycluster/pom.xml
+++ b/services/route53recoverycluster/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
route53recoverycluster
AWS Java SDK :: Services :: Route53 Recovery Cluster
diff --git a/services/route53recoverycontrolconfig/pom.xml b/services/route53recoverycontrolconfig/pom.xml
index 9b4c6fd24d3c..9f3ddda368a7 100644
--- a/services/route53recoverycontrolconfig/pom.xml
+++ b/services/route53recoverycontrolconfig/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
route53recoverycontrolconfig
AWS Java SDK :: Services :: Route53 Recovery Control Config
diff --git a/services/route53recoveryreadiness/pom.xml b/services/route53recoveryreadiness/pom.xml
index a5e61acb7db3..e6b8b577c661 100644
--- a/services/route53recoveryreadiness/pom.xml
+++ b/services/route53recoveryreadiness/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
route53recoveryreadiness
AWS Java SDK :: Services :: Route53 Recovery Readiness
diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml
index 512c0e653bb0..7f100255e19e 100644
--- a/services/route53resolver/pom.xml
+++ b/services/route53resolver/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
route53resolver
AWS Java SDK :: Services :: Route53Resolver
diff --git a/services/rum/pom.xml b/services/rum/pom.xml
index 2680602adc01..0da640f339d5 100644
--- a/services/rum/pom.xml
+++ b/services/rum/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
rum
AWS Java SDK :: Services :: RUM
diff --git a/services/s3/pom.xml b/services/s3/pom.xml
index d1e715873c91..77fae1525c7b 100644
--- a/services/s3/pom.xml
+++ b/services/s3/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
s3
AWS Java SDK :: Services :: Amazon S3
diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml
index d33a4bcd167c..d74ee1f8e84d 100644
--- a/services/s3control/pom.xml
+++ b/services/s3control/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
s3control
AWS Java SDK :: Services :: Amazon S3 Control
diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml
index cca97dcfafb5..a030970ea1bb 100644
--- a/services/s3outposts/pom.xml
+++ b/services/s3outposts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
s3outposts
AWS Java SDK :: Services :: S3 Outposts
diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml
index 392dfd2fada7..a3f9be8fe73d 100644
--- a/services/sagemaker/pom.xml
+++ b/services/sagemaker/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.0-SNAPSHOT
+ 2.25.0
4.0.0
sagemaker
diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml
index 4bb1d0a0f623..22d9d07d78b2 100644
--- a/services/sagemakera2iruntime/pom.xml
+++ b/services/sagemakera2iruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
sagemakera2iruntime
AWS Java SDK :: Services :: SageMaker A2I Runtime
diff --git a/services/sagemakeredge/pom.xml b/services/sagemakeredge/pom.xml
index dbd5a7c62aca..c7b548b5b090 100644
--- a/services/sagemakeredge/pom.xml
+++ b/services/sagemakeredge/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
sagemakeredge
AWS Java SDK :: Services :: Sagemaker Edge
diff --git a/services/sagemakerfeaturestoreruntime/pom.xml b/services/sagemakerfeaturestoreruntime/pom.xml
index b7f551eef17a..ac3efa527a8f 100644
--- a/services/sagemakerfeaturestoreruntime/pom.xml
+++ b/services/sagemakerfeaturestoreruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
sagemakerfeaturestoreruntime
AWS Java SDK :: Services :: Sage Maker Feature Store Runtime
diff --git a/services/sagemakergeospatial/pom.xml b/services/sagemakergeospatial/pom.xml
index cf475ee45acb..9cfda75f50df 100644
--- a/services/sagemakergeospatial/pom.xml
+++ b/services/sagemakergeospatial/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
sagemakergeospatial
AWS Java SDK :: Services :: Sage Maker Geospatial
diff --git a/services/sagemakermetrics/pom.xml b/services/sagemakermetrics/pom.xml
index ae503fc46822..b1c9f3ef06d5 100644
--- a/services/sagemakermetrics/pom.xml
+++ b/services/sagemakermetrics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
sagemakermetrics
AWS Java SDK :: Services :: Sage Maker Metrics
diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml
index 2ea21c6a0e6e..9813111bc652 100644
--- a/services/sagemakerruntime/pom.xml
+++ b/services/sagemakerruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
sagemakerruntime
AWS Java SDK :: Services :: SageMaker Runtime
diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml
index e1a8c0176ada..c66fb8821d61 100644
--- a/services/savingsplans/pom.xml
+++ b/services/savingsplans/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
savingsplans
AWS Java SDK :: Services :: Savingsplans
diff --git a/services/scheduler/pom.xml b/services/scheduler/pom.xml
index d33af7417242..8c8a946e9abd 100644
--- a/services/scheduler/pom.xml
+++ b/services/scheduler/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
scheduler
AWS Java SDK :: Services :: Scheduler
diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml
index 12377d4363d7..dc7438ac1f3b 100644
--- a/services/schemas/pom.xml
+++ b/services/schemas/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
schemas
AWS Java SDK :: Services :: Schemas
diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml
index d9b0f023db50..755c0705dff3 100644
--- a/services/secretsmanager/pom.xml
+++ b/services/secretsmanager/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
secretsmanager
AWS Java SDK :: Services :: AWS Secrets Manager
diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml
index 8f4a2aef4237..9fa6724df9e8 100644
--- a/services/securityhub/pom.xml
+++ b/services/securityhub/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
securityhub
AWS Java SDK :: Services :: SecurityHub
diff --git a/services/securitylake/pom.xml b/services/securitylake/pom.xml
index e8b8cb5f640f..e2de330c49c3 100644
--- a/services/securitylake/pom.xml
+++ b/services/securitylake/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
securitylake
AWS Java SDK :: Services :: Security Lake
diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml
index 26115a2a4d97..6931e69b08b3 100644
--- a/services/serverlessapplicationrepository/pom.xml
+++ b/services/serverlessapplicationrepository/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.0-SNAPSHOT
+ 2.25.0
4.0.0
serverlessapplicationrepository
diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml
index a092e1c1caef..e17b34865ded 100644
--- a/services/servicecatalog/pom.xml
+++ b/services/servicecatalog/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
servicecatalog
AWS Java SDK :: Services :: AWS Service Catalog
diff --git a/services/servicecatalogappregistry/pom.xml b/services/servicecatalogappregistry/pom.xml
index bbdd2f7bb509..9715c5b6a66c 100644
--- a/services/servicecatalogappregistry/pom.xml
+++ b/services/servicecatalogappregistry/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
servicecatalogappregistry
AWS Java SDK :: Services :: Service Catalog App Registry
diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml
index ea536301a233..67ac54669515 100644
--- a/services/servicediscovery/pom.xml
+++ b/services/servicediscovery/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.0-SNAPSHOT
+ 2.25.0
4.0.0
servicediscovery
diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml
index fd7583a2d5df..638f78cd1db3 100644
--- a/services/servicequotas/pom.xml
+++ b/services/servicequotas/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
servicequotas
AWS Java SDK :: Services :: Service Quotas
diff --git a/services/ses/pom.xml b/services/ses/pom.xml
index 426de21e16e5..9ace54b41c89 100644
--- a/services/ses/pom.xml
+++ b/services/ses/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
ses
AWS Java SDK :: Services :: Amazon SES
diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml
index 6b9d744fa55f..ad6acce7a5a3 100644
--- a/services/sesv2/pom.xml
+++ b/services/sesv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
sesv2
AWS Java SDK :: Services :: SESv2
diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml
index dd89c74745b5..6cae35dc2cee 100644
--- a/services/sfn/pom.xml
+++ b/services/sfn/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
sfn
AWS Java SDK :: Services :: AWS Step Functions
diff --git a/services/shield/pom.xml b/services/shield/pom.xml
index 0bd9105d1583..7f5022ebbe41 100644
--- a/services/shield/pom.xml
+++ b/services/shield/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
shield
AWS Java SDK :: Services :: AWS Shield
diff --git a/services/signer/pom.xml b/services/signer/pom.xml
index 33d4cae43535..7e90d4903ac5 100644
--- a/services/signer/pom.xml
+++ b/services/signer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
signer
AWS Java SDK :: Services :: Signer
diff --git a/services/simspaceweaver/pom.xml b/services/simspaceweaver/pom.xml
index e4d607c1c4b4..0d6ad17776d4 100644
--- a/services/simspaceweaver/pom.xml
+++ b/services/simspaceweaver/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
simspaceweaver
AWS Java SDK :: Services :: Sim Space Weaver
diff --git a/services/sms/pom.xml b/services/sms/pom.xml
index 8d72ec2b8f79..fe1b77323c6b 100644
--- a/services/sms/pom.xml
+++ b/services/sms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
sms
AWS Java SDK :: Services :: AWS Server Migration
diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml
index 59f93e1e862c..a9ed71fcdf66 100644
--- a/services/snowball/pom.xml
+++ b/services/snowball/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
snowball
AWS Java SDK :: Services :: Amazon Snowball
diff --git a/services/snowdevicemanagement/pom.xml b/services/snowdevicemanagement/pom.xml
index 4f70fe0af5d5..0a266b8f9502 100644
--- a/services/snowdevicemanagement/pom.xml
+++ b/services/snowdevicemanagement/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
snowdevicemanagement
AWS Java SDK :: Services :: Snow Device Management
diff --git a/services/sns/pom.xml b/services/sns/pom.xml
index 6ee6105a8963..c2cd0d430d46 100644
--- a/services/sns/pom.xml
+++ b/services/sns/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
sns
AWS Java SDK :: Services :: Amazon SNS
diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml
index 914dd307027a..1f8a1976394b 100644
--- a/services/sqs/pom.xml
+++ b/services/sqs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
sqs
AWS Java SDK :: Services :: Amazon SQS
diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml
index b47de039b56b..464c86e38f89 100644
--- a/services/ssm/pom.xml
+++ b/services/ssm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
ssm
AWS Java SDK :: Services :: AWS Simple Systems Management (SSM)
diff --git a/services/ssmcontacts/pom.xml b/services/ssmcontacts/pom.xml
index 93402944f9eb..78543bcbb693 100644
--- a/services/ssmcontacts/pom.xml
+++ b/services/ssmcontacts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
ssmcontacts
AWS Java SDK :: Services :: SSM Contacts
diff --git a/services/ssmincidents/pom.xml b/services/ssmincidents/pom.xml
index 7924439d5d98..da84d5f8e422 100644
--- a/services/ssmincidents/pom.xml
+++ b/services/ssmincidents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
ssmincidents
AWS Java SDK :: Services :: SSM Incidents
diff --git a/services/ssmsap/pom.xml b/services/ssmsap/pom.xml
index 5e86e472060a..3fecb4f3541b 100644
--- a/services/ssmsap/pom.xml
+++ b/services/ssmsap/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
ssmsap
AWS Java SDK :: Services :: Ssm Sap
diff --git a/services/sso/pom.xml b/services/sso/pom.xml
index f212db3d2972..1a33fc7d4641 100644
--- a/services/sso/pom.xml
+++ b/services/sso/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
sso
AWS Java SDK :: Services :: SSO
diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml
index eb79f245ffdd..1fbdea181ec1 100644
--- a/services/ssoadmin/pom.xml
+++ b/services/ssoadmin/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
ssoadmin
AWS Java SDK :: Services :: SSO Admin
diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml
index 5a2cea95b82b..e23892d6a8ae 100644
--- a/services/ssooidc/pom.xml
+++ b/services/ssooidc/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
ssooidc
AWS Java SDK :: Services :: SSO OIDC
diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml
index 013a687d1591..ca81dfecbf5b 100644
--- a/services/storagegateway/pom.xml
+++ b/services/storagegateway/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
storagegateway
AWS Java SDK :: Services :: AWS Storage Gateway
diff --git a/services/sts/pom.xml b/services/sts/pom.xml
index bd0ab153d99a..9c3d47eb5dd5 100644
--- a/services/sts/pom.xml
+++ b/services/sts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
sts
AWS Java SDK :: Services :: AWS STS
diff --git a/services/supplychain/pom.xml b/services/supplychain/pom.xml
index 555c506787a0..c58d2f80cfab 100644
--- a/services/supplychain/pom.xml
+++ b/services/supplychain/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
supplychain
AWS Java SDK :: Services :: Supply Chain
diff --git a/services/support/pom.xml b/services/support/pom.xml
index bf9c63446cd8..dd0addbf4dac 100644
--- a/services/support/pom.xml
+++ b/services/support/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
support
AWS Java SDK :: Services :: AWS Support
diff --git a/services/supportapp/pom.xml b/services/supportapp/pom.xml
index dda4aebe69d8..bd8b333d8d26 100644
--- a/services/supportapp/pom.xml
+++ b/services/supportapp/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
supportapp
AWS Java SDK :: Services :: Support App
diff --git a/services/swf/pom.xml b/services/swf/pom.xml
index 950cc95614a5..5ec298c00395 100644
--- a/services/swf/pom.xml
+++ b/services/swf/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
swf
AWS Java SDK :: Services :: Amazon SWF
diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml
index ecf613fe7674..0ecd18ba3da2 100644
--- a/services/synthetics/pom.xml
+++ b/services/synthetics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
synthetics
AWS Java SDK :: Services :: Synthetics
diff --git a/services/textract/pom.xml b/services/textract/pom.xml
index 34635ea127f0..edbf7527c455 100644
--- a/services/textract/pom.xml
+++ b/services/textract/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
textract
AWS Java SDK :: Services :: Textract
diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml
index e07a320216d4..675694fc5b88 100644
--- a/services/timestreamquery/pom.xml
+++ b/services/timestreamquery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
timestreamquery
AWS Java SDK :: Services :: Timestream Query
diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml
index 67b19605f171..bfa7c2c3a66f 100644
--- a/services/timestreamwrite/pom.xml
+++ b/services/timestreamwrite/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
timestreamwrite
AWS Java SDK :: Services :: Timestream Write
diff --git a/services/tnb/pom.xml b/services/tnb/pom.xml
index 2a4bf59050fb..0ffa0173b340 100644
--- a/services/tnb/pom.xml
+++ b/services/tnb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
tnb
AWS Java SDK :: Services :: Tnb
diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml
index e76dded7ccf7..30f879c2820c 100644
--- a/services/transcribe/pom.xml
+++ b/services/transcribe/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
transcribe
AWS Java SDK :: Services :: Transcribe
diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml
index 6353a857ca7e..c968f0332703 100644
--- a/services/transcribestreaming/pom.xml
+++ b/services/transcribestreaming/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
transcribestreaming
AWS Java SDK :: Services :: AWS Transcribe Streaming
diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml
index 15c0fabdb2a4..750189dc8f08 100644
--- a/services/transfer/pom.xml
+++ b/services/transfer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
transfer
AWS Java SDK :: Services :: Transfer
diff --git a/services/translate/pom.xml b/services/translate/pom.xml
index 8b7b7b5f3e9c..2c5cab235db9 100644
--- a/services/translate/pom.xml
+++ b/services/translate/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.0-SNAPSHOT
+ 2.25.0
4.0.0
translate
diff --git a/services/trustedadvisor/pom.xml b/services/trustedadvisor/pom.xml
index 86734ae387d1..6537ede2eda4 100644
--- a/services/trustedadvisor/pom.xml
+++ b/services/trustedadvisor/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
trustedadvisor
AWS Java SDK :: Services :: Trusted Advisor
diff --git a/services/verifiedpermissions/pom.xml b/services/verifiedpermissions/pom.xml
index 70f5f082e035..1195f561e7fc 100644
--- a/services/verifiedpermissions/pom.xml
+++ b/services/verifiedpermissions/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
verifiedpermissions
AWS Java SDK :: Services :: Verified Permissions
diff --git a/services/voiceid/pom.xml b/services/voiceid/pom.xml
index f224e7461fe2..71d65e315ba3 100644
--- a/services/voiceid/pom.xml
+++ b/services/voiceid/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
voiceid
AWS Java SDK :: Services :: Voice ID
diff --git a/services/vpclattice/pom.xml b/services/vpclattice/pom.xml
index 9b2ae1276a30..8c12a0528cee 100644
--- a/services/vpclattice/pom.xml
+++ b/services/vpclattice/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
vpclattice
AWS Java SDK :: Services :: VPC Lattice
diff --git a/services/waf/pom.xml b/services/waf/pom.xml
index 0c9592c4a1d4..f22ed7597cc2 100644
--- a/services/waf/pom.xml
+++ b/services/waf/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
waf
AWS Java SDK :: Services :: AWS WAF
diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml
index c51ea35b0725..305e52872767 100644
--- a/services/wafv2/pom.xml
+++ b/services/wafv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
wafv2
AWS Java SDK :: Services :: WAFV2
diff --git a/services/wellarchitected/pom.xml b/services/wellarchitected/pom.xml
index 20e6cc89dc4d..b7b216c88f56 100644
--- a/services/wellarchitected/pom.xml
+++ b/services/wellarchitected/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
wellarchitected
AWS Java SDK :: Services :: Well Architected
diff --git a/services/wisdom/pom.xml b/services/wisdom/pom.xml
index 9ef344b045cf..8697fc78f016 100644
--- a/services/wisdom/pom.xml
+++ b/services/wisdom/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
wisdom
AWS Java SDK :: Services :: Wisdom
diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml
index 1878028fbd17..8c851a0f3fbc 100644
--- a/services/workdocs/pom.xml
+++ b/services/workdocs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
workdocs
AWS Java SDK :: Services :: Amazon WorkDocs
diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml
index 8bf92b586aa7..9b19862650e0 100644
--- a/services/worklink/pom.xml
+++ b/services/worklink/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
worklink
AWS Java SDK :: Services :: WorkLink
diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml
index aabaca344028..8ad142b6568c 100644
--- a/services/workmail/pom.xml
+++ b/services/workmail/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.0-SNAPSHOT
+ 2.25.0
4.0.0
workmail
diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml
index 62a33afcfce3..6aa3f80eb273 100644
--- a/services/workmailmessageflow/pom.xml
+++ b/services/workmailmessageflow/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
workmailmessageflow
AWS Java SDK :: Services :: WorkMailMessageFlow
diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml
index 6f7fc9481876..cd9ae576dc00 100644
--- a/services/workspaces/pom.xml
+++ b/services/workspaces/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
workspaces
AWS Java SDK :: Services :: Amazon WorkSpaces
diff --git a/services/workspacesthinclient/pom.xml b/services/workspacesthinclient/pom.xml
index e67b852c8f08..19c8a355d6cf 100644
--- a/services/workspacesthinclient/pom.xml
+++ b/services/workspacesthinclient/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
workspacesthinclient
AWS Java SDK :: Services :: Work Spaces Thin Client
diff --git a/services/workspacesweb/pom.xml b/services/workspacesweb/pom.xml
index 895240e0a91e..bbb4ac2344d5 100644
--- a/services/workspacesweb/pom.xml
+++ b/services/workspacesweb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
workspacesweb
AWS Java SDK :: Services :: Work Spaces Web
diff --git a/services/xray/pom.xml b/services/xray/pom.xml
index 15621dbd8b9d..0e5c5c9bcd24 100644
--- a/services/xray/pom.xml
+++ b/services/xray/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.0-SNAPSHOT
+ 2.25.0
xray
AWS Java SDK :: Services :: AWS X-Ray
diff --git a/test/auth-tests/pom.xml b/test/auth-tests/pom.xml
index f238a970b00d..6a963f2cb21d 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.25.0-SNAPSHOT
+ 2.25.0
../../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 5e76c3c1b6e2..19b4ef514816 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.25.0-SNAPSHOT
+ 2.25.0
../../pom.xml
4.0.0
diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml
index 19711fef54a6..1de62a051b7a 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.25.0-SNAPSHOT
+ 2.25.0
../../pom.xml
diff --git a/test/crt-unavailable-tests/pom.xml b/test/crt-unavailable-tests/pom.xml
index d6e09c1d0960..3d8bce4afe13 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.25.0-SNAPSHOT
+ 2.25.0
../../pom.xml
4.0.0
diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml
index c1001009e933..a1cff67a8dd0 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.25.0-SNAPSHOT
+ 2.25.0
../../pom.xml
http-client-tests
diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml
index 2d5baa5c85c9..b692ca7ccd0e 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.25.0-SNAPSHOT
+ 2.25.0
../../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 1cfdca3dc7c3..eedbcd354b57 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.25.0-SNAPSHOT
+ 2.25.0
../../pom.xml
diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml
index b0b4cbd30345..97ed0e6c6a2a 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.25.0-SNAPSHOT
+ 2.25.0
../../pom.xml
4.0.0
diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml
index 817590999802..c377230f65a9 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.25.0-SNAPSHOT
+ 2.25.0
../../pom.xml
4.0.0
diff --git a/test/region-testing/pom.xml b/test/region-testing/pom.xml
index b81bc7253d35..f450bcf62ac9 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.25.0-SNAPSHOT
+ 2.25.0
../../pom.xml
4.0.0
diff --git a/test/ruleset-testing-core/pom.xml b/test/ruleset-testing-core/pom.xml
index 184fb76d7712..1accef638782 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.25.0-SNAPSHOT
+ 2.25.0
../../pom.xml
4.0.0
diff --git a/test/s3-benchmarks/pom.xml b/test/s3-benchmarks/pom.xml
index ee886811dc70..a6d081a7bb2a 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.25.0-SNAPSHOT
+ 2.25.0
../../pom.xml
4.0.0
diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml
index 845dd2369a91..cdbbe2df4698 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.25.0-SNAPSHOT
+ 2.25.0
../../pom.xml
diff --git a/test/sdk-native-image-test/pom.xml b/test/sdk-native-image-test/pom.xml
index 1266aa11cccd..65c3ac886989 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.25.0-SNAPSHOT
+ 2.25.0
../../pom.xml
4.0.0
diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml
index 8c69d4437ad7..f37756bcbfc6 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.25.0-SNAPSHOT
+ 2.25.0
../../pom.xml
service-test-utils
diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml
index dfe2d51f630f..4a413929148c 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.25.0-SNAPSHOT
+ 2.25.0
../../pom.xml
4.0.0
diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml
index 70c79f0d28aa..1f9db562b857 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.25.0-SNAPSHOT
+ 2.25.0
../../pom.xml
test-utils
diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml
index fb9e3767f0ca..31a55829e8e0 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.25.0-SNAPSHOT
+ 2.25.0
../../pom.xml
4.0.0
diff --git a/third-party/pom.xml b/third-party/pom.xml
index 42d87383857c..013663ea54bb 100644
--- a/third-party/pom.xml
+++ b/third-party/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.25.0-SNAPSHOT
+ 2.25.0
third-party
diff --git a/third-party/third-party-jackson-core/pom.xml b/third-party/third-party-jackson-core/pom.xml
index e1f5c7c0023b..7b259bd2841e 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.25.0-SNAPSHOT
+ 2.25.0
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 bbb30e0b1201..86a942cfc867 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.25.0-SNAPSHOT
+ 2.25.0
4.0.0
diff --git a/third-party/third-party-slf4j-api/pom.xml b/third-party/third-party-slf4j-api/pom.xml
index b91a3b1e1ea9..a89ce7532b7b 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.25.0-SNAPSHOT
+ 2.25.0
4.0.0
diff --git a/utils/pom.xml b/utils/pom.xml
index 01ca06fc092c..6353e9079ab7 100644
--- a/utils/pom.xml
+++ b/utils/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.25.0-SNAPSHOT
+ 2.25.0
4.0.0