By default, it will time out if streaming hasn't started within 10 seconds, and you can configure the timeout
- * via {@link BlockingInputStreamAsyncRequestBody#builder()}
+ * By default, it will time out if streaming hasn't started within 10 seconds, and use application/octet-stream as
+ * content type. You can configure it via {@link BlockingInputStreamAsyncRequestBody#builder()}
*
Example Usage
*
*
diff --git a/core/sdk-core/src/main/java/software/amazon/awssdk/core/async/BlockingInputStreamAsyncRequestBody.java b/core/sdk-core/src/main/java/software/amazon/awssdk/core/async/BlockingInputStreamAsyncRequestBody.java
index 9210f3bb5e41..3639d82c04c1 100644
--- a/core/sdk-core/src/main/java/software/amazon/awssdk/core/async/BlockingInputStreamAsyncRequestBody.java
+++ b/core/sdk-core/src/main/java/software/amazon/awssdk/core/async/BlockingInputStreamAsyncRequestBody.java
@@ -26,6 +26,7 @@
import software.amazon.awssdk.annotations.SdkPublicApi;
import software.amazon.awssdk.core.exception.NonRetryableException;
import software.amazon.awssdk.core.internal.io.SdkLengthAwareInputStream;
+import software.amazon.awssdk.core.internal.util.Mimetype;
import software.amazon.awssdk.core.internal.util.NoopSubscription;
import software.amazon.awssdk.utils.Validate;
import software.amazon.awssdk.utils.async.InputStreamConsumingPublisher;
@@ -39,14 +40,17 @@
@SdkPublicApi
public final class BlockingInputStreamAsyncRequestBody implements AsyncRequestBody {
private static final Duration DEFAULT_SUBSCRIBE_TIMEOUT = Duration.ofSeconds(10);
+ private static final String DEFAULT_CONTENT_TYPE = Mimetype.MIMETYPE_OCTET_STREAM;
private final InputStreamConsumingPublisher delegate = new InputStreamConsumingPublisher();
private final CountDownLatch subscribedLatch = new CountDownLatch(1);
private final AtomicBoolean subscribeCalled = new AtomicBoolean(false);
private final Long contentLength;
+ private final String contentType;
private final Duration subscribeTimeout;
BlockingInputStreamAsyncRequestBody(Builder builder) {
this.contentLength = builder.contentLength;
+ this.contentType = builder.contentType != null ? builder.contentType : DEFAULT_CONTENT_TYPE;
this.subscribeTimeout = Validate.isPositiveOrNull(builder.subscribeTimeout, "subscribeTimeout") != null ?
builder.subscribeTimeout :
DEFAULT_SUBSCRIBE_TIMEOUT;
@@ -64,6 +68,11 @@ public Optional contentLength() {
return Optional.ofNullable(contentLength);
}
+ @Override
+ public String contentType() {
+ return contentType;
+ }
+
/**
* Block the calling thread and write the provided input stream to the downstream service.
*
@@ -123,6 +132,7 @@ private void waitForSubscriptionIfNeeded() throws InterruptedException {
public static final class Builder {
private Duration subscribeTimeout;
private Long contentLength;
+ private String contentType;
private Builder() {
}
@@ -152,6 +162,17 @@ public Builder contentLength(Long contentLength) {
return this;
}
+ /**
+ * The content type of the output stream.
+ *
+ * @param contentType the content type
+ * @return Returns a reference to this object so that method calls can be chained together.
+ */
+ public Builder contentType(String contentType) {
+ this.contentType = contentType;
+ return this;
+ }
+
public BlockingInputStreamAsyncRequestBody build() {
return new BlockingInputStreamAsyncRequestBody(this);
}
diff --git a/core/sdk-core/src/test/java/software/amazon/awssdk/core/async/BlockingInputStreamAsyncRequestBodyTest.java b/core/sdk-core/src/test/java/software/amazon/awssdk/core/async/BlockingInputStreamAsyncRequestBodyTest.java
index d0d8ef761bf0..483220a2f508 100644
--- a/core/sdk-core/src/test/java/software/amazon/awssdk/core/async/BlockingInputStreamAsyncRequestBodyTest.java
+++ b/core/sdk-core/src/test/java/software/amazon/awssdk/core/async/BlockingInputStreamAsyncRequestBodyTest.java
@@ -23,6 +23,7 @@
import java.io.ByteArrayInputStream;
import java.nio.ByteBuffer;
import java.time.Duration;
+import java.util.Optional;
import java.util.concurrent.Executors;
import java.util.concurrent.ScheduledExecutorService;
import org.junit.jupiter.api.Test;
@@ -76,4 +77,26 @@ public void doBlockingWrite_writesToSubscriber() {
}
}
+ @Test
+ public void builder_withContentType_buildsCorrectly() {
+ BlockingInputStreamAsyncRequestBody.Builder requestBodyBuilder = BlockingInputStreamAsyncRequestBody.builder();
+ BlockingInputStreamAsyncRequestBody requestBody = requestBodyBuilder
+ .contentLength(20L)
+ .contentType("text/plain")
+ .build();
+
+ assertThat(requestBody.contentLength()).isEqualTo(Optional.of(20L));
+ assertThat(requestBody.contentType()).isEqualTo("text/plain");
+ }
+
+ @Test
+ public void builder_withoutContentType_defaultsToOctetStream() {
+ BlockingInputStreamAsyncRequestBody.Builder requestBodyBuilder = BlockingInputStreamAsyncRequestBody.builder();
+ BlockingInputStreamAsyncRequestBody requestBody = requestBodyBuilder
+ .contentLength(20L)
+ .build();
+
+ assertThat(requestBody.contentLength()).isEqualTo(Optional.of(20L));
+ assertThat(requestBody.contentType()).isEqualTo("application/octet-stream");
+ }
}
\ No newline at end of file
diff --git a/services/s3/src/it/java/software/amazon/awssdk/services/s3/PutObjectIntegrationTest.java b/services/s3/src/it/java/software/amazon/awssdk/services/s3/PutObjectIntegrationTest.java
index 547d95b3036c..f54d20e0487d 100644
--- a/services/s3/src/it/java/software/amazon/awssdk/services/s3/PutObjectIntegrationTest.java
+++ b/services/s3/src/it/java/software/amazon/awssdk/services/s3/PutObjectIntegrationTest.java
@@ -28,19 +28,27 @@
import java.nio.charset.StandardCharsets;
import java.util.ArrayList;
import java.util.List;
+import java.util.concurrent.CompletableFuture;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Test;
+import software.amazon.awssdk.core.async.BlockingInputStreamAsyncRequestBody;
import software.amazon.awssdk.core.sync.RequestBody;
import software.amazon.awssdk.http.ContentStreamProvider;
+import software.amazon.awssdk.services.s3.model.HeadObjectResponse;
+import software.amazon.awssdk.services.s3.model.PutObjectRequest;
+import software.amazon.awssdk.services.s3.model.PutObjectResponse;
/**
* Integration tests for {@code PutObject}.
*/
public class PutObjectIntegrationTest extends S3IntegrationTestBase {
private static final String BUCKET = temporaryBucketName(PutObjectIntegrationTest.class);
- private static final String KEY = "key";
+ private static final String ASYNC_KEY = "async-key";
+ private static final String SYNC_KEY = "sync-key";
+
private static final byte[] CONTENT = "Hello".getBytes(StandardCharsets.UTF_8);
+ private static final String TEXT_CONTENT_TYPE = "text/plain";
@BeforeClass
public static void setUp() throws Exception {
@@ -56,13 +64,36 @@ public static void tearDown() {
@Test
public void objectInputStreamsAreClosed() {
TestContentProvider provider = new TestContentProvider(CONTENT);
- s3.putObject(r -> r.bucket(BUCKET).key(KEY), RequestBody.fromContentProvider(provider, CONTENT.length, "binary/octet-stream"));
+ s3.putObject(r -> r.bucket(BUCKET).key(SYNC_KEY),
+ RequestBody.fromContentProvider(provider, CONTENT.length, "binary/octet-stream"));
for (CloseTrackingInputStream is : provider.getCreatedStreams()) {
assertThat(is.isClosed()).isTrue();
}
}
+ @Test
+ public void blockingInputStreamAsyncRequestBody_withContentType_isHonored() {
+ BlockingInputStreamAsyncRequestBody requestBody =
+ BlockingInputStreamAsyncRequestBody.builder()
+ .contentLength((long) CONTENT.length)
+ .contentType(TEXT_CONTENT_TYPE)
+ .build();
+
+ PutObjectRequest.Builder request = PutObjectRequest.builder()
+ .bucket(BUCKET)
+ .key(ASYNC_KEY);
+
+ CompletableFuture responseFuture = s3Async.putObject(request.build(), requestBody);
+ requestBody.writeInputStream(new ByteArrayInputStream(CONTENT));
+ responseFuture.join();
+
+ HeadObjectResponse response = s3Async.headObject(r -> r.bucket(BUCKET).key(ASYNC_KEY)).join();
+
+ assertThat(response.contentLength()).isEqualTo(CONTENT.length);
+ assertThat(response.contentType()).isEqualTo(TEXT_CONTENT_TYPE);
+ }
+
@Test
public void s3Client_usingHttpAndDisableChunkedEncoding() {
try (S3Client s3Client = s3ClientBuilder()
@@ -71,7 +102,7 @@ public void s3Client_usingHttpAndDisableChunkedEncoding() {
.chunkedEncodingEnabled(false)
.build())
.build()) {
- assertThat(s3Client.putObject(b -> b.bucket(BUCKET).key(KEY), RequestBody.fromBytes(
+ assertThat(s3Client.putObject(b -> b.bucket(BUCKET).key(SYNC_KEY), RequestBody.fromBytes(
"helloworld".getBytes()))).isNotNull();
}
}
From 2732d57311012d18f2b15a87d1f15d98c3eb06dd Mon Sep 17 00:00:00 2001
From: "allcontributors[bot]"
<46447321+allcontributors[bot]@users.noreply.github.com>
Date: Wed, 5 Jun 2024 15:52:48 -0700
Subject: [PATCH 08/30] docs: add chaykin as a contributor for code (#5268)
* docs: update README.md [skip ci]
* docs: update .all-contributorsrc [skip ci]
---------
Co-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com>
Co-authored-by: David Ho <70000000+davidh44@users.noreply.github.com>
---
.all-contributorsrc | 9 +++++++++
README.md | 3 ++-
2 files changed, 11 insertions(+), 1 deletion(-)
diff --git a/.all-contributorsrc b/.all-contributorsrc
index 370d7a7d7a81..85a96b9e095c 100644
--- a/.all-contributorsrc
+++ b/.all-contributorsrc
@@ -985,6 +985,15 @@
"contributions": [
"doc"
]
+ },
+ {
+ "login": "chaykin",
+ "name": "Kirill Chaykin",
+ "avatar_url": "https://avatars.githubusercontent.com/u/2480265?v=4",
+ "profile": "https://github.com/chaykin",
+ "contributions": [
+ "code"
+ ]
}
],
"contributorsPerLine": 7,
diff --git a/README.md b/README.md
index 9841a6c496ea..3ebfd5c47f91 100644
--- a/README.md
+++ b/README.md
@@ -4,7 +4,7 @@
[![Gitter](https://badges.gitter.im/aws/aws-sdk-java-v2.svg)](https://gitter.im/aws/aws-sdk-java-v2?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
[![codecov](https://codecov.io/gh/aws/aws-sdk-java-v2/branch/master/graph/badge.svg)](https://codecov.io/gh/aws/aws-sdk-java-v2)
-[![All Contributors](https://img.shields.io/badge/all_contributors-109-orange.svg?style=flat-square)](#contributors-)
+[![All Contributors](https://img.shields.io/badge/all_contributors-110-orange.svg?style=flat-square)](#contributors-)
The **AWS SDK for Java 2.0** is a rewrite of 1.0 with some great new features. As with version 1.0,
@@ -331,6 +331,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
Eckard Mühlich 💻 |
Tobias Soloschenko 💻 |
Luis Madrigal 📖 |
+ Kirill Chaykin 💻 |
From fce21d0f96feccd3901e9e71e21b3405fdcd2136 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Thu, 6 Jun 2024 18:07:03 +0000
Subject: [PATCH 09/30] Amazon Simple Notification Service Update: Doc-only
update for SNS. These changes include customer-reported issues and TXC3
updates.
---
...-AmazonSimpleNotificationService-1efd268.json | 6 ++++++
.../resources/codegen-resources/service-2.json | 16 +++++++++-------
2 files changed, 15 insertions(+), 7 deletions(-)
create mode 100644 .changes/next-release/feature-AmazonSimpleNotificationService-1efd268.json
diff --git a/.changes/next-release/feature-AmazonSimpleNotificationService-1efd268.json b/.changes/next-release/feature-AmazonSimpleNotificationService-1efd268.json
new file mode 100644
index 000000000000..8b47d4ea1bd8
--- /dev/null
+++ b/.changes/next-release/feature-AmazonSimpleNotificationService-1efd268.json
@@ -0,0 +1,6 @@
+{
+ "type": "feature",
+ "category": "Amazon Simple Notification Service",
+ "contributor": "",
+ "description": "Doc-only update for SNS. These changes include customer-reported issues and TXC3 updates."
+}
diff --git a/services/sns/src/main/resources/codegen-resources/service-2.json b/services/sns/src/main/resources/codegen-resources/service-2.json
index c97124fa7656..fda8eca1a7af 100644
--- a/services/sns/src/main/resources/codegen-resources/service-2.json
+++ b/services/sns/src/main/resources/codegen-resources/service-2.json
@@ -4,12 +4,14 @@
"apiVersion":"2010-03-31",
"endpointPrefix":"sns",
"protocol":"query",
+ "protocols":["query"],
"serviceAbbreviation":"Amazon SNS",
"serviceFullName":"Amazon Simple Notification Service",
"serviceId":"SNS",
"signatureVersion":"v4",
"uid":"sns-2010-03-31",
- "xmlNamespace":"http://sns.amazonaws.com/doc/2010-03-31/"
+ "xmlNamespace":"http://sns.amazonaws.com/doc/2010-03-31/",
+ "auth":["aws.auth#sigv4"]
},
"operations":{
"AddPermission":{
@@ -84,7 +86,7 @@
{"shape":"InternalErrorException"},
{"shape":"AuthorizationErrorException"}
],
- "documentation":"Creates a platform application object for one of the supported push notification services, such as APNS and GCM (Firebase Cloud Messaging), to which devices and mobile apps may register. You must specify PlatformPrincipal
and PlatformCredential
attributes when using the CreatePlatformApplication
action.
PlatformPrincipal
and PlatformCredential
are received from the notification service.
-
For ADM
, PlatformPrincipal
is client id
and PlatformCredential
is client secret
.
-
For Baidu
, PlatformPrincipal
is API key
and PlatformCredential
is secret key
.
-
For APNS
and APNS_SANDBOX
using certificate credentials, PlatformPrincipal
is SSL certificate
and PlatformCredential
is private key
.
-
For APNS
and APNS_SANDBOX
using token credentials, PlatformPrincipal
is signing key ID
and PlatformCredential
is signing key
.
-
For GCM (Firebase Cloud Messaging) using key credentials, there is no PlatformPrincipal
. The PlatformCredential
is API key
.
-
For GCM (Firebase Cloud Messaging) using token credentials, there is no PlatformPrincipal
. The PlatformCredential
is a JSON formatted private key file. When using the Amazon Web Services CLI, the file must be in string format and special characters must be ignored. To format the file correctly, Amazon SNS recommends using the following command: SERVICE_JSON=`jq @json <<< cat service.json`
.
-
For MPNS
, PlatformPrincipal
is TLS certificate
and PlatformCredential
is private key
.
-
For WNS
, PlatformPrincipal
is Package Security Identifier
and PlatformCredential
is secret key
.
You can use the returned PlatformApplicationArn
as an attribute for the CreatePlatformEndpoint
action.
"
+ "documentation":"Creates a platform application object for one of the supported push notification services, such as APNS and GCM (Firebase Cloud Messaging), to which devices and mobile apps may register. You must specify PlatformPrincipal
and PlatformCredential
attributes when using the CreatePlatformApplication
action.
PlatformPrincipal
and PlatformCredential
are received from the notification service.
-
For ADM, PlatformPrincipal
is client id
and PlatformCredential
is client secret
.
-
For APNS and APNS_SANDBOX
using certificate credentials, PlatformPrincipal
is SSL certificate
and PlatformCredential
is private key
.
-
For APNS and APNS_SANDBOX
using token credentials, PlatformPrincipal
is signing key ID
and PlatformCredential
is signing key
.
-
For Baidu, PlatformPrincipal
is API key
and PlatformCredential
is secret key
.
-
For GCM (Firebase Cloud Messaging) using key credentials, there is no PlatformPrincipal
. The PlatformCredential
is API key
.
-
For GCM (Firebase Cloud Messaging) using token credentials, there is no PlatformPrincipal
. The PlatformCredential
is a JSON formatted private key file. When using the Amazon Web Services CLI, the file must be in string format and special characters must be ignored. To format the file correctly, Amazon SNS recommends using the following command: SERVICE_JSON=`jq @json <<< cat service.json`
.
-
For MPNS, PlatformPrincipal
is TLS certificate
and PlatformCredential
is private key
.
-
For WNS, PlatformPrincipal
is Package Security Identifier
and PlatformCredential
is secret key
.
You can use the returned PlatformApplicationArn
as an attribute for the CreatePlatformEndpoint
action.
"
},
"CreatePlatformEndpoint":{
"name":"CreatePlatformEndpoint",
@@ -1097,7 +1099,7 @@
},
"Attributes":{
"shape":"TopicAttributesMap",
- "documentation":"A map of attributes with their corresponding values.
The following lists the names, descriptions, and values of the special request parameters that the CreateTopic
action uses:
-
DeliveryPolicy
– The policy that defines how Amazon SNS retries failed deliveries to HTTP/S endpoints.
-
DisplayName
– The display name to use for a topic with SMS subscriptions.
-
FifoTopic
– Set to true to create a FIFO topic.
-
Policy
– The policy that defines who can access your topic. By default, only the topic owner can publish or subscribe to the topic.
-
SignatureVersion
– The signature version corresponds to the hashing algorithm used while creating the signature of the notifications, subscription confirmations, or unsubscribe confirmation messages sent by Amazon SNS. By default, SignatureVersion
is set to 1
.
-
TracingConfig
– Tracing mode of an Amazon SNS topic. By default TracingConfig
is set to PassThrough
, and the topic passes through the tracing header it receives from an Amazon SNS publisher to its subscriptions. If set to Active
, Amazon SNS will vend X-Ray segment data to topic owner account if the sampled flag in the tracing header is true. This is only supported on standard topics.
The following attribute applies only to server-side encryption:
-
KmsMasterKeyId
– The ID of an Amazon Web Services managed customer master key (CMK) for Amazon SNS or a custom CMK. For more information, see Key Terms. For more examples, see KeyId in the Key Management Service API Reference.
The following attributes apply only to FIFO topics:
-
ArchivePolicy
– Adds or updates an inline policy document to archive messages stored in the specified Amazon SNS topic.
-
BeginningArchiveTime
– The earliest starting point at which a message in the topic’s archive can be replayed from. This point in time is based on the configured message retention period set by the topic’s message archiving policy.
-
ContentBasedDeduplication
– Enables content-based deduplication for FIFO topics.
-
By default, ContentBasedDeduplication
is set to false
. If you create a FIFO topic and this attribute is false
, you must specify a value for the MessageDeduplicationId
parameter for the Publish action.
-
When you set ContentBasedDeduplication
to true
, Amazon SNS uses a SHA-256 hash to generate the MessageDeduplicationId
using the body of the message (but not the attributes of the message).
(Optional) To override the generated value, you can specify a value for the MessageDeduplicationId
parameter for the Publish
action.
"
+ "documentation":"A map of attributes with their corresponding values.
The following lists names, descriptions, and values of the special request parameters that the CreateTopic
action uses:
-
DeliveryPolicy
– The policy that defines how Amazon SNS retries failed deliveries to HTTP/S endpoints.
-
DisplayName
– The display name to use for a topic with SMS subscriptions.
-
FifoTopic
– Set to true to create a FIFO topic.
-
Policy
– The policy that defines who can access your topic. By default, only the topic owner can publish or subscribe to the topic.
-
SignatureVersion
– The signature version corresponds to the hashing algorithm used while creating the signature of the notifications, subscription confirmations, or unsubscribe confirmation messages sent by Amazon SNS. By default, SignatureVersion
is set to 1
.
-
TracingConfig
– Tracing mode of an Amazon SNS topic. By default TracingConfig
is set to PassThrough
, and the topic passes through the tracing header it receives from an Amazon SNS publisher to its subscriptions. If set to Active
, Amazon SNS will vend X-Ray segment data to topic owner account if the sampled flag in the tracing header is true. This is only supported on standard topics.
The following attribute applies only to server-side encryption:
-
KmsMasterKeyId
– The ID of an Amazon Web Services managed customer master key (CMK) for Amazon SNS or a custom CMK. For more information, see Key Terms. For more examples, see KeyId in the Key Management Service API Reference.
The following attributes apply only to FIFO topics:
-
ArchivePolicy
– Adds or updates an inline policy document to archive messages stored in the specified Amazon SNS topic.
-
BeginningArchiveTime
– The earliest starting point at which a message in the topic’s archive can be replayed from. This point in time is based on the configured message retention period set by the topic’s message archiving policy.
-
ContentBasedDeduplication
– Enables content-based deduplication for FIFO topics.
-
By default, ContentBasedDeduplication
is set to false
. If you create a FIFO topic and this attribute is false
, you must specify a value for the MessageDeduplicationId
parameter for the Publish action.
-
When you set ContentBasedDeduplication
to true
, Amazon SNS uses a SHA-256 hash to generate the MessageDeduplicationId
using the body of the message (but not the attributes of the message).
(Optional) To override the generated value, you can specify a value for the MessageDeduplicationId
parameter for the Publish
action.
"
},
"Tags":{
"shape":"TagList",
@@ -1339,7 +1341,7 @@
"members":{
"Attributes":{
"shape":"SubscriptionAttributesMap",
- "documentation":"A map of the subscription's attributes. Attributes in this map include the following:
-
ConfirmationWasAuthenticated
– true
if the subscription confirmation request was authenticated.
-
DeliveryPolicy
– The JSON serialization of the subscription's delivery policy.
-
EffectiveDeliveryPolicy
– The JSON serialization of the effective delivery policy that takes into account the topic delivery policy and account system defaults.
-
FilterPolicy
– The filter policy JSON that is assigned to the subscription. For more information, see Amazon SNS Message Filtering in the Amazon SNS Developer Guide.
-
FilterPolicyScope
– This attribute lets you choose the filtering scope by using one of the following string value types:
-
Owner
– The Amazon Web Services account ID of the subscription's owner.
-
PendingConfirmation
– true
if the subscription hasn't been confirmed. To confirm a pending subscription, call the ConfirmSubscription
action with a confirmation token.
-
RawMessageDelivery
– true
if raw message delivery is enabled for the subscription. Raw messages are free of JSON formatting and can be sent to HTTP/S and Amazon SQS endpoints.
-
RedrivePolicy
– When specified, sends undeliverable messages to the specified Amazon SQS dead-letter queue. Messages that can't be delivered due to client errors (for example, when the subscribed endpoint is unreachable) or server errors (for example, when the service that powers the subscribed endpoint becomes unavailable) are held in the dead-letter queue for further analysis or reprocessing.
-
SubscriptionArn
– The subscription's ARN.
-
TopicArn
– The topic ARN that the subscription is associated with.
The following attribute applies only to Amazon Kinesis Data Firehose delivery stream subscriptions:
-
SubscriptionRoleArn
– The ARN of the IAM role that has the following:
Specifying a valid ARN for this attribute is required for Kinesis Data Firehose delivery stream subscriptions. For more information, see Fanout to Kinesis Data Firehose delivery streams in the Amazon SNS Developer Guide.
"
+ "documentation":"A map of the subscription's attributes. Attributes in this map include the following:
-
ConfirmationWasAuthenticated
– true
if the subscription confirmation request was authenticated.
-
DeliveryPolicy
– The JSON serialization of the subscription's delivery policy.
-
EffectiveDeliveryPolicy
– The JSON serialization of the effective delivery policy that takes into account the topic delivery policy and account system defaults.
-
FilterPolicy
– The filter policy JSON that is assigned to the subscription. For more information, see Amazon SNS Message Filtering in the Amazon SNS Developer Guide.
-
FilterPolicyScope
– This attribute lets you choose the filtering scope by using one of the following string value types:
-
Owner
– The Amazon Web Services account ID of the subscription's owner.
-
PendingConfirmation
– true
if the subscription hasn't been confirmed. To confirm a pending subscription, call the ConfirmSubscription
action with a confirmation token.
-
RawMessageDelivery
– true
if raw message delivery is enabled for the subscription. Raw messages are free of JSON formatting and can be sent to HTTP/S and Amazon SQS endpoints.
-
RedrivePolicy
– When specified, sends undeliverable messages to the specified Amazon SQS dead-letter queue. Messages that can't be delivered due to client errors (for example, when the subscribed endpoint is unreachable) or server errors (for example, when the service that powers the subscribed endpoint becomes unavailable) are held in the dead-letter queue for further analysis or reprocessing.
-
SubscriptionArn
– The subscription's ARN.
-
TopicArn
– The topic ARN that the subscription is associated with.
The following attribute applies only to Amazon Data Firehose delivery stream subscriptions:
-
SubscriptionRoleArn
– The ARN of the IAM role that has the following:
Specifying a valid ARN for this attribute is required for Firehose delivery stream subscriptions. For more information, see Fanout to Firehose delivery streams in the Amazon SNS Developer Guide.
"
}
},
"documentation":"Response for GetSubscriptionAttributes action.
"
@@ -2090,7 +2092,7 @@
},
"Subject":{
"shape":"subject",
- "documentation":"Optional parameter to be used as the \"Subject\" line when the message is delivered to email endpoints. This field will also be included, if present, in the standard JSON messages delivered to other endpoints.
Constraints: Subjects must be ASCII text that begins with a letter, number, or punctuation mark; must not include line breaks or control characters; and must be less than 100 characters long.
"
+ "documentation":"Optional parameter to be used as the \"Subject\" line when the message is delivered to email endpoints. This field will also be included, if present, in the standard JSON messages delivered to other endpoints.
Constraints: Subjects must be UTF-8 text with no line breaks or control characters, and less than 100 characters long.
"
},
"MessageStructure":{
"shape":"messageStructure",
@@ -2287,7 +2289,7 @@
},
"AttributeName":{
"shape":"attributeName",
- "documentation":"A map of attributes with their corresponding values.
The following lists the names, descriptions, and values of the special request parameters that this action uses:
-
DeliveryPolicy
– The policy that defines how Amazon SNS retries failed deliveries to HTTP/S endpoints.
-
FilterPolicy
– The simple JSON object that lets your subscriber receive only a subset of messages, rather than receiving every message published to the topic.
-
FilterPolicyScope
– This attribute lets you choose the filtering scope by using one of the following string value types:
-
RawMessageDelivery
– When set to true
, enables raw message delivery to Amazon SQS or HTTP/S endpoints. This eliminates the need for the endpoints to process JSON formatting, which is otherwise created for Amazon SNS metadata.
-
RedrivePolicy
– When specified, sends undeliverable messages to the specified Amazon SQS dead-letter queue. Messages that can't be delivered due to client errors (for example, when the subscribed endpoint is unreachable) or server errors (for example, when the service that powers the subscribed endpoint becomes unavailable) are held in the dead-letter queue for further analysis or reprocessing.
The following attribute applies only to Amazon Kinesis Data Firehose delivery stream subscriptions:
-
SubscriptionRoleArn
– The ARN of the IAM role that has the following:
Specifying a valid ARN for this attribute is required for Kinesis Data Firehose delivery stream subscriptions. For more information, see Fanout to Kinesis Data Firehose delivery streams in the Amazon SNS Developer Guide.
"
+ "documentation":"A map of attributes with their corresponding values.
The following lists the names, descriptions, and values of the special request parameters that this action uses:
-
DeliveryPolicy
– The policy that defines how Amazon SNS retries failed deliveries to HTTP/S endpoints.
-
FilterPolicy
– The simple JSON object that lets your subscriber receive only a subset of messages, rather than receiving every message published to the topic.
-
FilterPolicyScope
– This attribute lets you choose the filtering scope by using one of the following string value types:
-
RawMessageDelivery
– When set to true
, enables raw message delivery to Amazon SQS or HTTP/S endpoints. This eliminates the need for the endpoints to process JSON formatting, which is otherwise created for Amazon SNS metadata.
-
RedrivePolicy
– When specified, sends undeliverable messages to the specified Amazon SQS dead-letter queue. Messages that can't be delivered due to client errors (for example, when the subscribed endpoint is unreachable) or server errors (for example, when the service that powers the subscribed endpoint becomes unavailable) are held in the dead-letter queue for further analysis or reprocessing.
The following attribute applies only to Amazon Data Firehose delivery stream subscriptions:
-
SubscriptionRoleArn
– The ARN of the IAM role that has the following:
Specifying a valid ARN for this attribute is required for Firehose delivery stream subscriptions. For more information, see Fanout to Firehose delivery streams in the Amazon SNS Developer Guide.
"
},
"AttributeValue":{
"shape":"attributeValue",
@@ -2353,7 +2355,7 @@
},
"Attributes":{
"shape":"SubscriptionAttributesMap",
- "documentation":"A map of attributes with their corresponding values.
The following lists the names, descriptions, and values of the special request parameters that the Subscribe
action uses:
-
DeliveryPolicy
– The policy that defines how Amazon SNS retries failed deliveries to HTTP/S endpoints.
-
FilterPolicy
– The simple JSON object that lets your subscriber receive only a subset of messages, rather than receiving every message published to the topic.
-
FilterPolicyScope
– This attribute lets you choose the filtering scope by using one of the following string value types:
-
RawMessageDelivery
– When set to true
, enables raw message delivery to Amazon SQS or HTTP/S endpoints. This eliminates the need for the endpoints to process JSON formatting, which is otherwise created for Amazon SNS metadata.
-
RedrivePolicy
– When specified, sends undeliverable messages to the specified Amazon SQS dead-letter queue. Messages that can't be delivered due to client errors (for example, when the subscribed endpoint is unreachable) or server errors (for example, when the service that powers the subscribed endpoint becomes unavailable) are held in the dead-letter queue for further analysis or reprocessing.
The following attribute applies only to Amazon Kinesis Data Firehose delivery stream subscriptions:
-
SubscriptionRoleArn
– The ARN of the IAM role that has the following:
Specifying a valid ARN for this attribute is required for Kinesis Data Firehose delivery stream subscriptions. For more information, see Fanout to Kinesis Data Firehose delivery streams in the Amazon SNS Developer Guide.
The following attributes apply only to FIFO topics:
-
ReplayPolicy
– Adds or updates an inline policy document for a subscription to replay messages stored in the specified Amazon SNS topic.
-
ReplayStatus
– Retrieves the status of the subscription message replay, which can be one of the following:
-
Completed
– The replay has successfully redelivered all messages, and is now delivering newly published messages. If an ending point was specified in the ReplayPolicy
then the subscription will no longer receive newly published messages.
-
In progress
– The replay is currently replaying the selected messages.
-
Failed
– The replay was unable to complete.
-
Pending
– The default state while the replay initiates.
"
+ "documentation":"A map of attributes with their corresponding values.
The following lists the names, descriptions, and values of the special request parameters that the Subscribe
action uses:
-
DeliveryPolicy
– The policy that defines how Amazon SNS retries failed deliveries to HTTP/S endpoints.
-
FilterPolicy
– The simple JSON object that lets your subscriber receive only a subset of messages, rather than receiving every message published to the topic.
-
FilterPolicyScope
– This attribute lets you choose the filtering scope by using one of the following string value types:
-
RawMessageDelivery
– When set to true
, enables raw message delivery to Amazon SQS or HTTP/S endpoints. This eliminates the need for the endpoints to process JSON formatting, which is otherwise created for Amazon SNS metadata.
-
RedrivePolicy
– When specified, sends undeliverable messages to the specified Amazon SQS dead-letter queue. Messages that can't be delivered due to client errors (for example, when the subscribed endpoint is unreachable) or server errors (for example, when the service that powers the subscribed endpoint becomes unavailable) are held in the dead-letter queue for further analysis or reprocessing.
The following attribute applies only to Amazon Data Firehose delivery stream subscriptions:
-
SubscriptionRoleArn
– The ARN of the IAM role that has the following:
Specifying a valid ARN for this attribute is required for Firehose delivery stream subscriptions. For more information, see Fanout to Firehose delivery streams in the Amazon SNS Developer Guide.
The following attributes apply only to FIFO topics:
-
ReplayPolicy
– Adds or updates an inline policy document for a subscription to replay messages stored in the specified Amazon SNS topic.
-
ReplayStatus
– Retrieves the status of the subscription message replay, which can be one of the following:
-
Completed
– The replay has successfully redelivered all messages, and is now delivering newly published messages. If an ending point was specified in the ReplayPolicy
then the subscription will no longer receive newly published messages.
-
In progress
– The replay is currently replaying the selected messages.
-
Failed
– The replay was unable to complete.
-
Pending
– The default state while the replay initiates.
"
},
"ReturnSubscriptionArn":{
"shape":"boolean",
From b0b351a742dcb24b30b0819822253fa3316957e6 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Thu, 6 Jun 2024 18:07:03 +0000
Subject: [PATCH 10/30] AWS IoT Wireless Update: Adds support for wireless
device to be in Conflict FUOTA Device Status due to a FUOTA Task, so it
couldn't be attached to a new one.
---
.changes/next-release/feature-AWSIoTWireless-03ff273.json | 6 ++++++
.../src/main/resources/codegen-resources/service-2.json | 4 +++-
2 files changed, 9 insertions(+), 1 deletion(-)
create mode 100644 .changes/next-release/feature-AWSIoTWireless-03ff273.json
diff --git a/.changes/next-release/feature-AWSIoTWireless-03ff273.json b/.changes/next-release/feature-AWSIoTWireless-03ff273.json
new file mode 100644
index 000000000000..f039b52f7c69
--- /dev/null
+++ b/.changes/next-release/feature-AWSIoTWireless-03ff273.json
@@ -0,0 +1,6 @@
+{
+ "type": "feature",
+ "category": "AWS IoT Wireless",
+ "contributor": "",
+ "description": "Adds support for wireless device to be in Conflict FUOTA Device Status due to a FUOTA Task, so it couldn't be attached to a new one."
+}
diff --git a/services/iotwireless/src/main/resources/codegen-resources/service-2.json b/services/iotwireless/src/main/resources/codegen-resources/service-2.json
index 840f1342f124..abb9ee7f49bc 100644
--- a/services/iotwireless/src/main/resources/codegen-resources/service-2.json
+++ b/services/iotwireless/src/main/resources/codegen-resources/service-2.json
@@ -4,6 +4,7 @@
"apiVersion":"2020-11-22",
"endpointPrefix":"api.iotwireless",
"protocol":"rest-json",
+ "protocols":["rest-json"],
"serviceFullName":"AWS IoT Wireless",
"serviceId":"IoT Wireless",
"signatureVersion":"v4",
@@ -3936,7 +3937,8 @@
"MissingFrag",
"MemoryError",
"MICError",
- "Successful"
+ "Successful",
+ "Device_exist_in_conflict_fuota_task"
]
},
"FuotaTask":{
From 6087ca6d867fdf6df5061b49be589c98309175f5 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Thu, 6 Jun 2024 18:07:06 +0000
Subject: [PATCH 11/30] AWS Storage Gateway Update: Adds
SoftwareUpdatePreferences to DescribeMaintenanceStartTime and
UpdateMaintenanceStartTime, a structure which contains AutomaticUpdatePolicy.
---
.../feature-AWSStorageGateway-399ed09.json | 6 ++
.../codegen-resources/service-2.json | 59 +++++++++++++------
2 files changed, 47 insertions(+), 18 deletions(-)
create mode 100644 .changes/next-release/feature-AWSStorageGateway-399ed09.json
diff --git a/.changes/next-release/feature-AWSStorageGateway-399ed09.json b/.changes/next-release/feature-AWSStorageGateway-399ed09.json
new file mode 100644
index 000000000000..bb79d3ccc0d0
--- /dev/null
+++ b/.changes/next-release/feature-AWSStorageGateway-399ed09.json
@@ -0,0 +1,6 @@
+{
+ "type": "feature",
+ "category": "AWS Storage Gateway",
+ "contributor": "",
+ "description": "Adds SoftwareUpdatePreferences to DescribeMaintenanceStartTime and UpdateMaintenanceStartTime, a structure which contains AutomaticUpdatePolicy."
+}
diff --git a/services/storagegateway/src/main/resources/codegen-resources/service-2.json b/services/storagegateway/src/main/resources/codegen-resources/service-2.json
index 23b61383f86f..93da2d52d468 100644
--- a/services/storagegateway/src/main/resources/codegen-resources/service-2.json
+++ b/services/storagegateway/src/main/resources/codegen-resources/service-2.json
@@ -5,11 +5,13 @@
"endpointPrefix":"storagegateway",
"jsonVersion":"1.1",
"protocol":"json",
+ "protocols":["json"],
"serviceFullName":"AWS Storage Gateway",
"serviceId":"Storage Gateway",
"signatureVersion":"v4",
"targetPrefix":"StorageGateway_20130630",
- "uid":"storagegateway-2013-06-30"
+ "uid":"storagegateway-2013-06-30",
+ "auth":["aws.auth#sigv4"]
},
"operations":{
"ActivateGateway":{
@@ -544,7 +546,7 @@
{"shape":"InvalidGatewayRequestException"},
{"shape":"InternalServerError"}
],
- "documentation":"Returns your gateway's weekly maintenance start time including the day and time of the week. Note that values are in terms of the gateway's time zone.
"
+ "documentation":"Returns your gateway's maintenance window schedule information, with values for monthly or weekly cadence, specific day and time to begin maintenance, and which types of updates to apply. Time values returned are for the gateway's time zone.
"
},
"DescribeNFSFileShares":{
"name":"DescribeNFSFileShares",
@@ -1146,7 +1148,7 @@
{"shape":"InvalidGatewayRequestException"},
{"shape":"InternalServerError"}
],
- "documentation":"Updates a gateway's metadata, which includes the gateway's name and time zone. To specify which gateway to update, use the Amazon Resource Name (ARN) of the gateway in your request.
For gateways activated after September 2, 2015, the gateway's ARN contains the gateway ID rather than the gateway name. However, changing the name of the gateway has no effect on the gateway's ARN.
"
+ "documentation":"Updates a gateway's metadata, which includes the gateway's name, time zone, and metadata cache size. To specify which gateway to update, use the Amazon Resource Name (ARN) of the gateway in your request.
For gateways activated after September 2, 2015, the gateway's ARN contains the gateway ID rather than the gateway name. However, changing the name of the gateway has no effect on the gateway's ARN.
"
},
"UpdateGatewaySoftwareNow":{
"name":"UpdateGatewaySoftwareNow",
@@ -1174,7 +1176,7 @@
{"shape":"InvalidGatewayRequestException"},
{"shape":"InternalServerError"}
],
- "documentation":"Updates a gateway's weekly maintenance start time information, including day and time of the week. The maintenance time is the time in your gateway's time zone.
"
+ "documentation":"Updates a gateway's maintenance window schedule, with settings for monthly or weekly cadence, specific day and time to begin maintenance, and which types of updates to apply. Time configuration uses the gateway's time zone. You can pass values for a complete maintenance schedule, or update policy, or both. Previous values will persist for whichever setting you choose not to modify. If an incomplete or invalid maintenance schedule is passed, the entire request will be rejected with an error and no changes will occur.
A complete maintenance schedule must include values for both MinuteOfHour
and HourOfDay
, and either DayOfMonth
or DayOfWeek
.
We recommend keeping maintenance updates turned on, except in specific use cases where the brief disruptions caused by updating the gateway could critically impact your deployment.
"
},
"UpdateNFSFileShare":{
"name":"UpdateNFSFileShare",
@@ -1244,7 +1246,7 @@
{"shape":"InvalidGatewayRequestException"},
{"shape":"InternalServerError"}
],
- "documentation":"Updates the SMB security strategy on a file gateway. This action is only supported in file gateways.
This API is called Security level in the User Guide.
A higher security level can affect performance of the gateway.
"
+ "documentation":"Updates the SMB security strategy level for an Amazon S3 file gateway. This action is only supported for Amazon S3 file gateways.
For information about configuring this setting using the Amazon Web Services console, see Setting a security level for your gateway in the Amazon S3 File Gateway User Guide.
A higher security strategy level can affect performance of the gateway.
"
},
"UpdateSnapshotSchedule":{
"name":"UpdateSnapshotSchedule",
@@ -1623,6 +1625,13 @@
"max":10,
"min":1
},
+ "AutomaticUpdatePolicy":{
+ "type":"string",
+ "enum":[
+ "ALL_VERSIONS",
+ "EMERGENCY_VERSIONS_ONLY"
+ ]
+ },
"AvailabilityMonitorTestStatus":{
"type":"string",
"enum":[
@@ -2980,14 +2989,18 @@
},
"DayOfMonth":{
"shape":"DayOfMonth",
- "documentation":"The day of the month component of the maintenance start time represented as an ordinal number from 1 to 28, where 1 represents the first day of the month and 28 represents the last day of the month.
"
+ "documentation":"The day of the month component of the maintenance start time represented as an ordinal number from 1 to 28, where 1 represents the first day of the month. It is not possible to set the maintenance schedule to start on days 29 through 31.
"
},
"Timezone":{
"shape":"GatewayTimezone",
"documentation":"A value that indicates the time zone that is set for the gateway. The start time and day of week specified should be in the time zone of the gateway.
"
+ },
+ "SoftwareUpdatePreferences":{
+ "shape":"SoftwareUpdatePreferences",
+ "documentation":"A set of variables indicating the software update preferences for the gateway.
Includes AutomaticUpdatePolicy
field with the following inputs:
ALL_VERSIONS
- Enables regular gateway maintenance updates.
EMERGENCY_VERSIONS_ONLY
- Disables regular gateway maintenance updates.
"
}
},
- "documentation":"A JSON object containing the following fields:
"
+ "documentation":"A JSON object containing the following fields:
"
},
"DescribeNFSFileSharesInput":{
"type":"structure",
@@ -3056,7 +3069,7 @@
},
"SMBSecurityStrategy":{
"shape":"SMBSecurityStrategy",
- "documentation":"The type of security strategy that was specified for file gateway.
-
ClientSpecified
: If you choose this option, requests are established based on what is negotiated by the client. This option is recommended when you want to maximize compatibility across different clients in your environment. Supported only for S3 File Gateway.
-
MandatorySigning
: If you use this option, File Gateway only allows connections from SMBv2 or SMBv3 clients that have signing turned on. This option works with SMB clients on Microsoft Windows Vista, Windows Server 2008, or later.
-
MandatoryEncryption
: If you use this option, File Gateway only allows connections from SMBv3 clients that have encryption turned on. Both 256-bit and 128-bit algorithms are allowed. This option is recommended for environments that handle sensitive data. It works with SMB clients on Microsoft Windows 8, Windows Server 2012, or later.
-
EnforceEncryption
: If you use this option, File Gateway only allows connections from SMBv3 clients that use 256-bit AES encryption algorithms. 128-bit algorithms are not allowed. This option is recommended for environments that handle sensitive data. It works with SMB clients on Microsoft Windows 8, Windows Server 2012, or later.
"
+ "documentation":"The type of security strategy that was specified for file gateway.
-
ClientSpecified
: If you choose this option, requests are established based on what is negotiated by the client. This option is recommended when you want to maximize compatibility across different clients in your environment. Supported only for S3 File Gateway.
-
MandatorySigning
: If you choose this option, File Gateway only allows connections from SMBv2 or SMBv3 clients that have signing turned on. This option works with SMB clients on Microsoft Windows Vista, Windows Server 2008, or later.
-
MandatoryEncryption
: If you choose this option, File Gateway only allows connections from SMBv3 clients that have encryption turned on. Both 256-bit and 128-bit algorithms are allowed. This option is recommended for environments that handle sensitive data. It works with SMB clients on Microsoft Windows 8, Windows Server 2012, or later.
-
MandatoryEncryptionNoAes128
: If you choose this option, File Gateway only allows connections from SMBv3 clients that use 256-bit AES encryption algorithms. 128-bit algorithms are not allowed. This option is recommended for environments that handle sensitive data. It works with SMB clients on Microsoft Windows 8, Windows Server 2012, or later.
"
},
"FileSharesVisible":{
"shape":"Boolean",
@@ -4948,6 +4961,16 @@
"type":"string",
"pattern":"\\Asnap-([0-9A-Fa-f]{8}|[0-9A-Fa-f]{17})\\z"
},
+ "SoftwareUpdatePreferences":{
+ "type":"structure",
+ "members":{
+ "AutomaticUpdatePolicy":{
+ "shape":"AutomaticUpdatePolicy",
+ "documentation":"Indicates the automatic update policy for a gateway.
ALL_VERSIONS
- Enables regular gateway maintenance updates.
EMERGENCY_VERSIONS_ONLY
- Disables regular gateway maintenance updates.
"
+ }
+ },
+ "documentation":"A set of variables indicating the software update preferences for the gateway.
"
+ },
"SoftwareUpdatesEndDate":{
"type":"string",
"max":25,
@@ -5511,7 +5534,7 @@
},
"GatewayCapacity":{
"shape":"GatewayCapacity",
- "documentation":"Specifies the size of the gateway's metadata cache.
"
+ "documentation":"Specifies the size of the gateway's metadata cache. This setting impacts gateway performance and hardware recommendations. For more information, see Performance guidance for gateways with multiple file shares in the Amazon S3 File Gateway User Guide.
"
}
}
},
@@ -5543,11 +5566,7 @@
},
"UpdateMaintenanceStartTimeInput":{
"type":"structure",
- "required":[
- "GatewayARN",
- "HourOfDay",
- "MinuteOfHour"
- ],
+ "required":["GatewayARN"],
"members":{
"GatewayARN":{"shape":"GatewayARN"},
"HourOfDay":{
@@ -5560,14 +5579,18 @@
},
"DayOfWeek":{
"shape":"DayOfWeek",
- "documentation":"The day of the week component of the maintenance start time week represented as an ordinal number from 0 to 6, where 0 represents Sunday and 6 Saturday.
"
+ "documentation":"The day of the week component of the maintenance start time week represented as an ordinal number from 0 to 6, where 0 represents Sunday and 6 represents Saturday.
"
},
"DayOfMonth":{
"shape":"DayOfMonth",
- "documentation":"The day of the month component of the maintenance start time represented as an ordinal number from 1 to 28, where 1 represents the first day of the month and 28 represents the last day of the month.
"
+ "documentation":"The day of the month component of the maintenance start time represented as an ordinal number from 1 to 28, where 1 represents the first day of the month. It is not possible to set the maintenance schedule to start on days 29 through 31.
"
+ },
+ "SoftwareUpdatePreferences":{
+ "shape":"SoftwareUpdatePreferences",
+ "documentation":"A set of variables indicating the software update preferences for the gateway.
Includes AutomaticUpdatePolicy
field with the following inputs:
ALL_VERSIONS
- Enables regular gateway maintenance updates.
EMERGENCY_VERSIONS_ONLY
- Disables regular gateway maintenance updates.
"
}
},
- "documentation":"A JSON object containing the following fields:
"
+ "documentation":"A JSON object containing the following fields:
"
},
"UpdateMaintenanceStartTimeOutput":{
"type":"structure",
@@ -5796,7 +5819,7 @@
"GatewayARN":{"shape":"GatewayARN"},
"SMBSecurityStrategy":{
"shape":"SMBSecurityStrategy",
- "documentation":"Specifies the type of security strategy.
ClientSpecified: if you use this option, requests are established based on what is negotiated by the client. This option is recommended when you want to maximize compatibility across different clients in your environment. Supported only in S3 File Gateway.
MandatorySigning: if you use this option, file gateway only allows connections from SMBv2 or SMBv3 clients that have signing enabled. This option works with SMB clients on Microsoft Windows Vista, Windows Server 2008 or newer.
MandatoryEncryption: if you use this option, file gateway only allows connections from SMBv3 clients that have encryption enabled. This option is highly recommended for environments that handle sensitive data. This option works with SMB clients on Microsoft Windows 8, Windows Server 2012 or newer.
"
+ "documentation":"Specifies the type of security strategy.
ClientSpecified
: If you choose this option, requests are established based on what is negotiated by the client. This option is recommended when you want to maximize compatibility across different clients in your environment. Supported only for S3 File Gateway.
MandatorySigning
: If you choose this option, File Gateway only allows connections from SMBv2 or SMBv3 clients that have signing enabled. This option works with SMB clients on Microsoft Windows Vista, Windows Server 2008 or newer.
MandatoryEncryption
: If you choose this option, File Gateway only allows connections from SMBv3 clients that have encryption enabled. This option is recommended for environments that handle sensitive data. This option works with SMB clients on Microsoft Windows 8, Windows Server 2012 or newer.
MandatoryEncryptionNoAes128
: If you choose this option, File Gateway only allows connections from SMBv3 clients that use 256-bit AES encryption algorithms. 128-bit algorithms are not allowed. This option is recommended for environments that handle sensitive data. It works with SMB clients on Microsoft Windows 8, Windows Server 2012, or later.
"
}
}
},
From 683eef0d682820c6dd6ee2b3da7583efa78a8ae6 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Thu, 6 Jun 2024 18:07:09 +0000
Subject: [PATCH 12/30] Amazon Kinesis Firehose Update: Adds integration with
Secrets Manager for Redshift, Splunk, HttpEndpoint, and Snowflake
destinations
---
...feature-AmazonKinesisFirehose-c55852b.json | 6 ++
.../codegen-resources/service-2.json | 102 +++++++++++++++---
2 files changed, 91 insertions(+), 17 deletions(-)
create mode 100644 .changes/next-release/feature-AmazonKinesisFirehose-c55852b.json
diff --git a/.changes/next-release/feature-AmazonKinesisFirehose-c55852b.json b/.changes/next-release/feature-AmazonKinesisFirehose-c55852b.json
new file mode 100644
index 000000000000..947be710bad9
--- /dev/null
+++ b/.changes/next-release/feature-AmazonKinesisFirehose-c55852b.json
@@ -0,0 +1,6 @@
+{
+ "type": "feature",
+ "category": "Amazon Kinesis Firehose",
+ "contributor": "",
+ "description": "Adds integration with Secrets Manager for Redshift, Splunk, HttpEndpoint, and Snowflake destinations"
+}
diff --git a/services/firehose/src/main/resources/codegen-resources/service-2.json b/services/firehose/src/main/resources/codegen-resources/service-2.json
index 646a6268014b..5c6548c588f4 100644
--- a/services/firehose/src/main/resources/codegen-resources/service-2.json
+++ b/services/firehose/src/main/resources/codegen-resources/service-2.json
@@ -5,6 +5,7 @@
"endpointPrefix":"firehose",
"jsonVersion":"1.1",
"protocol":"json",
+ "protocols":["json"],
"serviceAbbreviation":"Firehose",
"serviceFullName":"Amazon Kinesis Firehose",
"serviceId":"Firehose",
@@ -130,7 +131,7 @@
{"shape":"LimitExceededException"},
{"shape":"InvalidKMSResourceException"}
],
- "documentation":"Enables server-side encryption (SSE) for the delivery stream.
This operation is asynchronous. It returns immediately. When you invoke it, Firehose first sets the encryption status of the stream to ENABLING
, and then to ENABLED
. The encryption status of a delivery stream is the Status
property in DeliveryStreamEncryptionConfiguration. If the operation fails, the encryption status changes to ENABLING_FAILED
. You can continue to read and write data to your delivery stream while the encryption status is ENABLING
, but the data is not encrypted. It can take up to 5 seconds after the encryption status changes to ENABLED
before all records written to the delivery stream are encrypted. To find out whether a record or a batch of records was encrypted, check the response elements PutRecordOutput$Encrypted and PutRecordBatchOutput$Encrypted, respectively.
To check the encryption status of a delivery stream, use DescribeDeliveryStream.
Even if encryption is currently enabled for a delivery stream, you can still invoke this operation on it to change the ARN of the CMK or both its type and ARN. If you invoke this method to change the CMK, and the old CMK is of type CUSTOMER_MANAGED_CMK
, Firehose schedules the grant it had on the old CMK for retirement. If the new CMK is of type CUSTOMER_MANAGED_CMK
, Firehose creates a grant that enables it to use the new CMK to encrypt and decrypt data and to manage the grant.
For the KMS grant creation to be successful, Firehose APIs StartDeliveryStreamEncryption
and CreateDeliveryStream
should not be called with session credentials that are more than 6 hours old.
If a delivery stream already has encryption enabled and then you invoke this operation to change the ARN of the CMK or both its type and ARN and you get ENABLING_FAILED
, this only means that the attempt to change the CMK failed. In this case, encryption remains enabled with the old CMK.
If the encryption status of your delivery stream is ENABLING_FAILED
, you can invoke this operation again with a valid CMK. The CMK must be enabled and the key policy mustn't explicitly deny the permission for Firehose to invoke KMS encrypt and decrypt operations.
You can enable SSE for a delivery stream only if it's a delivery stream that uses DirectPut
as its source.
The StartDeliveryStreamEncryption
and StopDeliveryStreamEncryption
operations have a combined limit of 25 calls per delivery stream per 24 hours. For example, you reach the limit if you call StartDeliveryStreamEncryption
13 times and StopDeliveryStreamEncryption
12 times for the same delivery stream in a 24-hour period.
"
+ "documentation":"Enables server-side encryption (SSE) for the delivery stream.
This operation is asynchronous. It returns immediately. When you invoke it, Firehose first sets the encryption status of the stream to ENABLING
, and then to ENABLED
. The encryption status of a delivery stream is the Status
property in DeliveryStreamEncryptionConfiguration. If the operation fails, the encryption status changes to ENABLING_FAILED
. You can continue to read and write data to your delivery stream while the encryption status is ENABLING
, but the data is not encrypted. It can take up to 5 seconds after the encryption status changes to ENABLED
before all records written to the delivery stream are encrypted. To find out whether a record or a batch of records was encrypted, check the response elements PutRecordOutput$Encrypted and PutRecordBatchOutput$Encrypted, respectively.
To check the encryption status of a delivery stream, use DescribeDeliveryStream.
Even if encryption is currently enabled for a delivery stream, you can still invoke this operation on it to change the ARN of the CMK or both its type and ARN. If you invoke this method to change the CMK, and the old CMK is of type CUSTOMER_MANAGED_CMK
, Firehose schedules the grant it had on the old CMK for retirement. If the new CMK is of type CUSTOMER_MANAGED_CMK
, Firehose creates a grant that enables it to use the new CMK to encrypt and decrypt data and to manage the grant.
For the KMS grant creation to be successful, the Firehose API operations StartDeliveryStreamEncryption
and CreateDeliveryStream
should not be called with session credentials that are more than 6 hours old.
If a delivery stream already has encryption enabled and then you invoke this operation to change the ARN of the CMK or both its type and ARN and you get ENABLING_FAILED
, this only means that the attempt to change the CMK failed. In this case, encryption remains enabled with the old CMK.
If the encryption status of your delivery stream is ENABLING_FAILED
, you can invoke this operation again with a valid CMK. The CMK must be enabled and the key policy mustn't explicitly deny the permission for Firehose to invoke KMS encrypt and decrypt operations.
You can enable SSE for a delivery stream only if it's a delivery stream that uses DirectPut
as its source.
The StartDeliveryStreamEncryption
and StopDeliveryStreamEncryption
operations have a combined limit of 25 calls per delivery stream per 24 hours. For example, you reach the limit if you call StartDeliveryStreamEncryption
13 times and StopDeliveryStreamEncryption
12 times for the same delivery stream in a 24-hour period.
"
},
"StopDeliveryStreamEncryption":{
"name":"StopDeliveryStreamEncryption",
@@ -1842,7 +1843,7 @@
"CloudWatchLoggingOptions":{"shape":"CloudWatchLoggingOptions"},
"RequestConfiguration":{
"shape":"HttpEndpointRequestConfiguration",
- "documentation":"The configuration of the requeste sent to the HTTP endpoint specified as the destination.
"
+ "documentation":"The configuration of the request sent to the HTTP endpoint that is specified as the destination.
"
},
"ProcessingConfiguration":{"shape":"ProcessingConfiguration"},
"RoleARN":{
@@ -1857,7 +1858,11 @@
"shape":"HttpEndpointS3BackupMode",
"documentation":"Describes the S3 bucket backup options for the data that Firehose delivers to the HTTP endpoint destination. You can back up all documents (AllData
) or only the documents that Firehose could not deliver to the specified HTTP endpoint destination (FailedDataOnly
).
"
},
- "S3Configuration":{"shape":"S3DestinationConfiguration"}
+ "S3Configuration":{"shape":"S3DestinationConfiguration"},
+ "SecretsManagerConfiguration":{
+ "shape":"SecretsManagerConfiguration",
+ "documentation":" The configuration that defines how you access secrets for HTTP Endpoint destination.
"
+ }
},
"documentation":"Describes the configuration of the HTTP endpoint destination.
"
},
@@ -1890,7 +1895,11 @@
"shape":"HttpEndpointS3BackupMode",
"documentation":"Describes the S3 bucket backup options for the data that Kinesis Firehose delivers to the HTTP endpoint destination. You can back up all documents (AllData
) or only the documents that Firehose could not deliver to the specified HTTP endpoint destination (FailedDataOnly
).
"
},
- "S3DestinationDescription":{"shape":"S3DestinationDescription"}
+ "S3DestinationDescription":{"shape":"S3DestinationDescription"},
+ "SecretsManagerConfiguration":{
+ "shape":"SecretsManagerConfiguration",
+ "documentation":" The configuration that defines how you access secrets for HTTP Endpoint destination.
"
+ }
},
"documentation":"Describes the HTTP endpoint destination.
"
},
@@ -1923,7 +1932,11 @@
"shape":"HttpEndpointS3BackupMode",
"documentation":"Describes the S3 bucket backup options for the data that Kinesis Firehose delivers to the HTTP endpoint destination. You can back up all documents (AllData
) or only the documents that Firehose could not deliver to the specified HTTP endpoint destination (FailedDataOnly
).
"
},
- "S3Update":{"shape":"S3DestinationUpdate"}
+ "S3Update":{"shape":"S3DestinationUpdate"},
+ "SecretsManagerConfiguration":{
+ "shape":"SecretsManagerConfiguration",
+ "documentation":" The configuration that defines how you access secrets for HTTP Endpoint destination.
"
+ }
},
"documentation":"Updates the specified HTTP endpoint destination.
"
},
@@ -2404,7 +2417,7 @@
"documentation":"Indicates the version of row format to output. The possible values are V1
and V2
. The default is V1
.
"
}
},
- "documentation":"A serializer to use for converting data to the Parquet format before storing it in Amazon S3. For more information, see Apache Parquet.
"
+ "documentation":"A serializer to use for converting data to the Parquet format before storing it in Amazon S3. For more information, see Apache Parquet.
"
},
"ParquetWriterVersion":{
"type":"string",
@@ -2639,8 +2652,6 @@
"RoleARN",
"ClusterJDBCURL",
"CopyCommand",
- "Username",
- "Password",
"S3Configuration"
],
"members":{
@@ -2687,6 +2698,10 @@
"CloudWatchLoggingOptions":{
"shape":"CloudWatchLoggingOptions",
"documentation":"The CloudWatch logging options for your delivery stream.
"
+ },
+ "SecretsManagerConfiguration":{
+ "shape":"SecretsManagerConfiguration",
+ "documentation":" The configuration that defines how you access secrets for Amazon Redshift.
"
}
},
"documentation":"Describes the configuration of a destination in Amazon Redshift.
"
@@ -2697,7 +2712,6 @@
"RoleARN",
"ClusterJDBCURL",
"CopyCommand",
- "Username",
"S3DestinationDescription"
],
"members":{
@@ -2740,6 +2754,10 @@
"CloudWatchLoggingOptions":{
"shape":"CloudWatchLoggingOptions",
"documentation":"The Amazon CloudWatch logging options for your delivery stream.
"
+ },
+ "SecretsManagerConfiguration":{
+ "shape":"SecretsManagerConfiguration",
+ "documentation":" The configuration that defines how you access secrets for Amazon Redshift.
"
}
},
"documentation":"Describes a destination in Amazon Redshift.
"
@@ -2790,6 +2808,10 @@
"CloudWatchLoggingOptions":{
"shape":"CloudWatchLoggingOptions",
"documentation":"The Amazon CloudWatch logging options for your delivery stream.
"
+ },
+ "SecretsManagerConfiguration":{
+ "shape":"SecretsManagerConfiguration",
+ "documentation":" The configuration that defines how you access secrets for Amazon Redshift.
"
}
},
"documentation":"Describes an update for a destination in Amazon Redshift.
"
@@ -3021,6 +3043,31 @@
},
"documentation":"Specifies the schema to which you want Firehose to configure your data before it writes it to Amazon S3. This parameter is required if Enabled
is set to true.
"
},
+ "SecretARN":{
+ "type":"string",
+ "max":2048,
+ "min":1,
+ "pattern":"arn:.*"
+ },
+ "SecretsManagerConfiguration":{
+ "type":"structure",
+ "required":["Enabled"],
+ "members":{
+ "SecretARN":{
+ "shape":"SecretARN",
+ "documentation":"The ARN of the secret that stores your credentials. It must be in the same region as the Firehose stream and the role. The secret ARN can reside in a different account than the delivery stream and role as Firehose supports cross-account secret access. This parameter is required when Enabled is set to True
.
"
+ },
+ "RoleARN":{
+ "shape":"RoleARN",
+ "documentation":" Specifies the role that Firehose assumes when calling the Secrets Manager API operation. When you provide the role, it overrides any destination specific role defined in the destination configuration. If you do not provide the then we use the destination specific role. This parameter is required for Splunk.
"
+ },
+ "Enabled":{
+ "shape":"BooleanObject",
+ "documentation":"Specifies whether you want to use the the secrets manager feature. When set as True
the secrets manager configuration overwrites the existing secrets in the destination configuration. When it's set to False
Firehose falls back to the credentials in the destination configuration.
"
+ }
+ },
+ "documentation":"The structure that defines how Firehose accesses the secret.
"
+ },
"SecurityGroupIdList":{
"type":"list",
"member":{"shape":"NonEmptyStringWithoutWhitespace"},
@@ -3089,8 +3136,6 @@
"type":"structure",
"required":[
"AccountUrl",
- "PrivateKey",
- "User",
"Database",
"Schema",
"Table",
@@ -3160,7 +3205,11 @@
"shape":"SnowflakeS3BackupMode",
"documentation":"Choose an S3 backup mode
"
},
- "S3Configuration":{"shape":"S3DestinationConfiguration"}
+ "S3Configuration":{"shape":"S3DestinationConfiguration"},
+ "SecretsManagerConfiguration":{
+ "shape":"SecretsManagerConfiguration",
+ "documentation":" The configuration that defines how you access secrets for Snowflake.
"
+ }
},
"documentation":"Configure Snowflake destination
"
},
@@ -3221,7 +3270,11 @@
"shape":"SnowflakeS3BackupMode",
"documentation":"Choose an S3 backup mode
"
},
- "S3DestinationDescription":{"shape":"S3DestinationDescription"}
+ "S3DestinationDescription":{"shape":"S3DestinationDescription"},
+ "SecretsManagerConfiguration":{
+ "shape":"SecretsManagerConfiguration",
+ "documentation":" The configuration that defines how you access secrets for Snowflake.
"
+ }
},
"documentation":"Optional Snowflake destination description
"
},
@@ -3286,7 +3339,11 @@
"shape":"SnowflakeS3BackupMode",
"documentation":"Choose an S3 backup mode
"
},
- "S3Update":{"shape":"S3DestinationUpdate"}
+ "S3Update":{"shape":"S3DestinationUpdate"},
+ "SecretsManagerConfiguration":{
+ "shape":"SecretsManagerConfiguration",
+ "documentation":" Describes the Secrets Manager configuration in Snowflake.
"
+ }
},
"documentation":"Update to configuration settings
"
},
@@ -3430,7 +3487,6 @@
"required":[
"HECEndpoint",
"HECEndpointType",
- "HECToken",
"S3Configuration"
],
"members":{
@@ -3473,6 +3529,10 @@
"BufferingHints":{
"shape":"SplunkBufferingHints",
"documentation":"The buffering options. If no value is specified, the default values for Splunk are used.
"
+ },
+ "SecretsManagerConfiguration":{
+ "shape":"SecretsManagerConfiguration",
+ "documentation":" The configuration that defines how you access secrets for Splunk.
"
}
},
"documentation":"Describes the configuration of a destination in Splunk.
"
@@ -3519,6 +3579,10 @@
"BufferingHints":{
"shape":"SplunkBufferingHints",
"documentation":"The buffering options. If no value is specified, the default values for Splunk are used.
"
+ },
+ "SecretsManagerConfiguration":{
+ "shape":"SecretsManagerConfiguration",
+ "documentation":" The configuration that defines how you access secrets for Splunk.
"
}
},
"documentation":"Describes a destination in Splunk.
"
@@ -3565,6 +3629,10 @@
"BufferingHints":{
"shape":"SplunkBufferingHints",
"documentation":"The buffering options. If no value is specified, the default values for Splunk are used.
"
+ },
+ "SecretsManagerConfiguration":{
+ "shape":"SecretsManagerConfiguration",
+ "documentation":" The configuration that defines how you access secrets for Splunk.
"
}
},
"documentation":"Describes an update for a destination in Splunk.
"
@@ -3776,7 +3844,7 @@
},
"SnowflakeDestinationUpdate":{
"shape":"SnowflakeDestinationUpdate",
- "documentation":"Update to the Snowflake destination condiguration settings
"
+ "documentation":"Update to the Snowflake destination configuration settings.
"
}
}
},
@@ -3844,5 +3912,5 @@
"documentation":"The details of the VPC of the Amazon ES destination.
"
}
},
- "documentation":"Amazon Data Firehose Amazon Data Firehose was previously known as Amazon Kinesis Data Firehose.
Amazon Data Firehose is a fully managed service that delivers real-time streaming data to destinations such as Amazon Simple Storage Service (Amazon S3), Amazon OpenSearch Service, Amazon Redshift, Splunk, and various other supportd destinations.
"
+ "documentation":"Amazon Data Firehose Amazon Data Firehose was previously known as Amazon Kinesis Data Firehose.
Amazon Data Firehose is a fully managed service that delivers real-time streaming data to destinations such as Amazon Simple Storage Service (Amazon S3), Amazon OpenSearch Service, Amazon Redshift, Splunk, and various other supported destinations.
"
}
From 666e31a29c54459b1c0008ce5d081aa23c22b712 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Thu, 6 Jun 2024 18:07:07 +0000
Subject: [PATCH 13/30] Amazon FSx Update: This release adds support to
increase metadata performance on FSx for Lustre file systems beyond the
default level provisioned when a file system is created. This can be done by
specifying MetadataConfiguration during the creation of Persistent_2 file
systems or by updating it on demand.
---
.../feature-AmazonFSx-18aa8f3.json | 6 +
.../codegen-resources/service-2.json | 109 ++++++++++++++----
2 files changed, 95 insertions(+), 20 deletions(-)
create mode 100644 .changes/next-release/feature-AmazonFSx-18aa8f3.json
diff --git a/.changes/next-release/feature-AmazonFSx-18aa8f3.json b/.changes/next-release/feature-AmazonFSx-18aa8f3.json
new file mode 100644
index 000000000000..22778dc75036
--- /dev/null
+++ b/.changes/next-release/feature-AmazonFSx-18aa8f3.json
@@ -0,0 +1,6 @@
+{
+ "type": "feature",
+ "category": "Amazon FSx",
+ "contributor": "",
+ "description": "This release adds support to increase metadata performance on FSx for Lustre file systems beyond the default level provisioned when a file system is created. This can be done by specifying MetadataConfiguration during the creation of Persistent_2 file systems or by updating it on demand."
+}
diff --git a/services/fsx/src/main/resources/codegen-resources/service-2.json b/services/fsx/src/main/resources/codegen-resources/service-2.json
index a26b252ce26f..3d15bca4b38b 100644
--- a/services/fsx/src/main/resources/codegen-resources/service-2.json
+++ b/services/fsx/src/main/resources/codegen-resources/service-2.json
@@ -5,6 +5,7 @@
"endpointPrefix":"fsx",
"jsonVersion":"1.1",
"protocol":"json",
+ "protocols":["json"],
"serviceFullName":"Amazon FSx",
"serviceId":"FSx",
"signatureVersion":"v4",
@@ -187,7 +188,7 @@
{"shape":"InternalServerError"},
{"shape":"MissingFileSystemConfiguration"}
],
- "documentation":"Creates a new, empty Amazon FSx file system. You can create the following supported Amazon FSx file systems using the CreateFileSystem
API operation:
This operation requires a client request token in the request that Amazon FSx uses to ensure idempotent creation. This means that calling the operation multiple times with the same client request token has no effect. By using the idempotent operation, you can retry a CreateFileSystem
operation without the risk of creating an extra file system. This approach can be useful when an initial call fails in a way that makes it unclear whether a file system was created. Examples are if a transport level timeout occurred, or your connection was reset. If you use the same client request token and the initial call created a file system, the client receives success as long as the parameters are the same.
If a file system with the specified client request token exists and the parameters match, CreateFileSystem
returns the description of the existing file system. If a file system with the specified client request token exists and the parameters don't match, this call returns IncompatibleParameterError
. If a file system with the specified client request token doesn't exist, CreateFileSystem
does the following:
-
Creates a new, empty Amazon FSx file system with an assigned ID, and an initial lifecycle state of CREATING
.
-
Returns the description of the file system in JSON format.
The CreateFileSystem
call returns while the file system's lifecycle state is still CREATING
. You can check the file-system creation status by calling the DescribeFileSystems operation, which returns the file system state along with other information.
"
+ "documentation":"Creates a new, empty Amazon FSx file system. You can create the following supported Amazon FSx file systems using the CreateFileSystem
API operation:
This operation requires a client request token in the request that Amazon FSx uses to ensure idempotent creation. This means that calling the operation multiple times with the same client request token has no effect. By using the idempotent operation, you can retry a CreateFileSystem
operation without the risk of creating an extra file system. This approach can be useful when an initial call fails in a way that makes it unclear whether a file system was created. Examples are if a transport level timeout occurred, or your connection was reset. If you use the same client request token and the initial call created a file system, the client receives success as long as the parameters are the same.
If a file system with the specified client request token exists and the parameters match, CreateFileSystem
returns the description of the existing file system. If a file system with the specified client request token exists and the parameters don't match, this call returns IncompatibleParameterError
. If a file system with the specified client request token doesn't exist, CreateFileSystem
does the following:
-
Creates a new, empty Amazon FSx file system with an assigned ID, and an initial lifecycle state of CREATING
.
-
Returns the description of the file system in JSON format.
The CreateFileSystem
call returns while the file system's lifecycle state is still CREATING
. You can check the file-system creation status by calling the DescribeFileSystems operation, which returns the file system state along with other information.
"
},
"CreateFileSystemFromBackup":{
"name":"CreateFileSystemFromBackup",
@@ -357,7 +358,7 @@
{"shape":"ServiceLimitExceeded"},
{"shape":"InternalServerError"}
],
- "documentation":"Deletes a file system. After deletion, the file system no longer exists, and its data is gone. Any existing automatic backups and snapshots are also deleted.
To delete an Amazon FSx for NetApp ONTAP file system, first delete all the volumes and storage virtual machines (SVMs) on the file system. Then provide a FileSystemId
value to the DeleFileSystem
operation.
By default, when you delete an Amazon FSx for Windows File Server file system, a final backup is created upon deletion. This final backup isn't subject to the file system's retention policy, and must be manually deleted.
To delete an Amazon FSx for Lustre file system, first unmount it from every connected Amazon EC2 instance, then provide a FileSystemId
value to the DeleFileSystem
operation. By default, Amazon FSx will not take a final backup when the DeleteFileSystem
operation is invoked. On file systems not linked to an Amazon S3 bucket, set SkipFinalBackup
to false
to take a final backup of the file system you are deleting. Backups cannot be enabled on S3-linked file systems. To ensure all of your data is written back to S3 before deleting your file system, you can either monitor for the AgeOfOldestQueuedMessage metric to be zero (if using automatic export) or you can run an export data repository task. If you have automatic export enabled and want to use an export data repository task, you have to disable automatic export before executing the export data repository task.
The DeleteFileSystem
operation returns while the file system has the DELETING
status. You can check the file system deletion status by calling the DescribeFileSystems operation, which returns a list of file systems in your account. If you pass the file system ID for a deleted file system, the DescribeFileSystems
operation returns a FileSystemNotFound
error.
If a data repository task is in a PENDING
or EXECUTING
state, deleting an Amazon FSx for Lustre file system will fail with an HTTP status code 400 (Bad Request).
The data in a deleted file system is also deleted and can't be recovered by any means.
",
+ "documentation":"Deletes a file system. After deletion, the file system no longer exists, and its data is gone. Any existing automatic backups and snapshots are also deleted.
To delete an Amazon FSx for NetApp ONTAP file system, first delete all the volumes and storage virtual machines (SVMs) on the file system. Then provide a FileSystemId
value to the DeleteFileSystem
operation.
By default, when you delete an Amazon FSx for Windows File Server file system, a final backup is created upon deletion. This final backup isn't subject to the file system's retention policy, and must be manually deleted.
To delete an Amazon FSx for Lustre file system, first unmount it from every connected Amazon EC2 instance, then provide a FileSystemId
value to the DeleteFileSystem
operation. By default, Amazon FSx will not take a final backup when the DeleteFileSystem
operation is invoked. On file systems not linked to an Amazon S3 bucket, set SkipFinalBackup
to false
to take a final backup of the file system you are deleting. Backups cannot be enabled on S3-linked file systems. To ensure all of your data is written back to S3 before deleting your file system, you can either monitor for the AgeOfOldestQueuedMessage metric to be zero (if using automatic export) or you can run an export data repository task. If you have automatic export enabled and want to use an export data repository task, you have to disable automatic export before executing the export data repository task.
The DeleteFileSystem
operation returns while the file system has the DELETING
status. You can check the file system deletion status by calling the DescribeFileSystems operation, which returns a list of file systems in your account. If you pass the file system ID for a deleted file system, the DescribeFileSystems
operation returns a FileSystemNotFound
error.
If a data repository task is in a PENDING
or EXECUTING
state, deleting an Amazon FSx for Lustre file system will fail with an HTTP status code 400 (Bad Request).
The data in a deleted file system is also deleted and can't be recovered by any means.
",
"idempotent":true
},
"DeleteSnapshot":{
@@ -738,7 +739,7 @@
{"shape":"MissingFileSystemConfiguration"},
{"shape":"ServiceLimitExceeded"}
],
- "documentation":"Use this operation to update the configuration of an existing Amazon FSx file system. You can update multiple properties in a single request.
For FSx for Windows File Server file systems, you can update the following properties:
-
AuditLogConfiguration
-
AutomaticBackupRetentionDays
-
DailyAutomaticBackupStartTime
-
SelfManagedActiveDirectoryConfiguration
-
StorageCapacity
-
StorageType
-
ThroughputCapacity
-
DiskIopsConfiguration
-
WeeklyMaintenanceStartTime
For FSx for Lustre file systems, you can update the following properties:
-
AutoImportPolicy
-
AutomaticBackupRetentionDays
-
DailyAutomaticBackupStartTime
-
DataCompressionType
-
LogConfiguration
-
LustreRootSquashConfiguration
-
PerUnitStorageThroughput
-
StorageCapacity
-
WeeklyMaintenanceStartTime
For FSx for ONTAP file systems, you can update the following properties:
-
AddRouteTableIds
-
AutomaticBackupRetentionDays
-
DailyAutomaticBackupStartTime
-
DiskIopsConfiguration
-
FsxAdminPassword
-
HAPairs
-
RemoveRouteTableIds
-
StorageCapacity
-
ThroughputCapacity
-
ThroughputCapacityPerHAPair
-
WeeklyMaintenanceStartTime
For FSx for OpenZFS file systems, you can update the following properties:
-
AddRouteTableIds
-
AutomaticBackupRetentionDays
-
CopyTagsToBackups
-
CopyTagsToVolumes
-
DailyAutomaticBackupStartTime
-
DiskIopsConfiguration
-
RemoveRouteTableIds
-
StorageCapacity
-
ThroughputCapacity
-
WeeklyMaintenanceStartTime
"
+ "documentation":"Use this operation to update the configuration of an existing Amazon FSx file system. You can update multiple properties in a single request.
For FSx for Windows File Server file systems, you can update the following properties:
-
AuditLogConfiguration
-
AutomaticBackupRetentionDays
-
DailyAutomaticBackupStartTime
-
SelfManagedActiveDirectoryConfiguration
-
StorageCapacity
-
StorageType
-
ThroughputCapacity
-
DiskIopsConfiguration
-
WeeklyMaintenanceStartTime
For FSx for Lustre file systems, you can update the following properties:
-
AutoImportPolicy
-
AutomaticBackupRetentionDays
-
DailyAutomaticBackupStartTime
-
DataCompressionType
-
LogConfiguration
-
LustreRootSquashConfiguration
-
MetadataConfiguration
-
PerUnitStorageThroughput
-
StorageCapacity
-
WeeklyMaintenanceStartTime
For FSx for ONTAP file systems, you can update the following properties:
-
AddRouteTableIds
-
AutomaticBackupRetentionDays
-
DailyAutomaticBackupStartTime
-
DiskIopsConfiguration
-
FsxAdminPassword
-
HAPairs
-
RemoveRouteTableIds
-
StorageCapacity
-
ThroughputCapacity
-
ThroughputCapacityPerHAPair
-
WeeklyMaintenanceStartTime
For FSx for OpenZFS file systems, you can update the following properties:
-
AddRouteTableIds
-
AutomaticBackupRetentionDays
-
CopyTagsToBackups
-
CopyTagsToVolumes
-
DailyAutomaticBackupStartTime
-
DiskIopsConfiguration
-
RemoveRouteTableIds
-
StorageCapacity
-
ThroughputCapacity
-
WeeklyMaintenanceStartTime
"
},
"UpdateSharedVpcConfiguration":{
"name":"UpdateSharedVpcConfiguration",
@@ -1718,7 +1719,7 @@
},
"DeploymentType":{
"shape":"LustreDeploymentType",
- "documentation":"(Optional) Choose SCRATCH_1
and SCRATCH_2
deployment types when you need temporary storage and shorter-term processing of data. The SCRATCH_2
deployment type provides in-transit encryption of data and higher burst throughput capacity than SCRATCH_1
.
Choose PERSISTENT_1
for longer-term storage and for throughput-focused workloads that aren’t latency-sensitive. PERSISTENT_1
supports encryption of data in transit, and is available in all Amazon Web Services Regions in which FSx for Lustre is available.
Choose PERSISTENT_2
for longer-term storage and for latency-sensitive workloads that require the highest levels of IOPS/throughput. PERSISTENT_2
supports SSD storage, and offers higher PerUnitStorageThroughput
(up to 1000 MB/s/TiB). PERSISTENT_2
is available in a limited number of Amazon Web Services Regions. For more information, and an up-to-date list of Amazon Web Services Regions in which PERSISTENT_2
is available, see File system deployment options for FSx for Lustre in the Amazon FSx for Lustre User Guide.
If you choose PERSISTENT_2
, and you set FileSystemTypeVersion
to 2.10
, the CreateFileSystem
operation fails.
Encryption of data in transit is automatically turned on when you access SCRATCH_2
, PERSISTENT_1
and PERSISTENT_2
file systems from Amazon EC2 instances that support automatic encryption in the Amazon Web Services Regions where they are available. For more information about encryption in transit for FSx for Lustre file systems, see Encrypting data in transit in the Amazon FSx for Lustre User Guide.
(Default = SCRATCH_1
)
"
+ "documentation":"(Optional) Choose SCRATCH_1
and SCRATCH_2
deployment types when you need temporary storage and shorter-term processing of data. The SCRATCH_2
deployment type provides in-transit encryption of data and higher burst throughput capacity than SCRATCH_1
.
Choose PERSISTENT_1
for longer-term storage and for throughput-focused workloads that aren’t latency-sensitive. PERSISTENT_1
supports encryption of data in transit, and is available in all Amazon Web Services Regions in which FSx for Lustre is available.
Choose PERSISTENT_2
for longer-term storage and for latency-sensitive workloads that require the highest levels of IOPS/throughput. PERSISTENT_2
supports SSD storage, and offers higher PerUnitStorageThroughput
(up to 1000 MB/s/TiB). You can optionally specify a metadata configuration mode for PERSISTENT_2
which supports increasing metadata performance. PERSISTENT_2
is available in a limited number of Amazon Web Services Regions. For more information, and an up-to-date list of Amazon Web Services Regions in which PERSISTENT_2
is available, see File system deployment options for FSx for Lustre in the Amazon FSx for Lustre User Guide.
If you choose PERSISTENT_2
, and you set FileSystemTypeVersion
to 2.10
, the CreateFileSystem
operation fails.
Encryption of data in transit is automatically turned on when you access SCRATCH_2
, PERSISTENT_1
, and PERSISTENT_2
file systems from Amazon EC2 instances that support automatic encryption in the Amazon Web Services Regions where they are available. For more information about encryption in transit for FSx for Lustre file systems, see Encrypting data in transit in the Amazon FSx for Lustre User Guide.
(Default = SCRATCH_1
)
"
},
"AutoImportPolicy":{
"shape":"AutoImportPolicyType",
@@ -1752,10 +1753,29 @@
"RootSquashConfiguration":{
"shape":"LustreRootSquashConfiguration",
"documentation":"The Lustre root squash configuration used when creating an Amazon FSx for Lustre file system. When enabled, root squash restricts root-level access from clients that try to access your file system as a root user.
"
+ },
+ "MetadataConfiguration":{
+ "shape":"CreateFileSystemLustreMetadataConfiguration",
+ "documentation":"The Lustre metadata performance configuration for the creation of an FSx for Lustre file system using a PERSISTENT_2
deployment type.
"
}
},
"documentation":"The Lustre configuration for the file system being created.
The following parameters are not supported for file systems with a data repository association created with .
-
AutoImportPolicy
-
ExportPath
-
ImportedFileChunkSize
-
ImportPath
"
},
+ "CreateFileSystemLustreMetadataConfiguration":{
+ "type":"structure",
+ "required":["Mode"],
+ "members":{
+ "Iops":{
+ "shape":"MetadataIops",
+ "documentation":"(USER_PROVISIONED mode only) Specifies the number of Metadata IOPS to provision for the file system. This parameter sets the maximum rate of metadata disk IOPS supported by the file system. Valid values are 1500
, 3000
, 6000
, 12000
, and multiples of 12000
up to a maximum of 192000
.
Iops doesn’t have a default value. If you're using USER_PROVISIONED mode, you can choose to specify a valid value. If you're using AUTOMATIC mode, you cannot specify a value because FSx for Lustre automatically sets the value based on your file system storage capacity.
"
+ },
+ "Mode":{
+ "shape":"MetadataConfigurationMode",
+ "documentation":"The metadata configuration mode for provisioning Metadata IOPS for an FSx for Lustre file system using a PERSISTENT_2
deployment type.
-
In AUTOMATIC mode, FSx for Lustre automatically provisions and scales the number of Metadata IOPS for your file system based on your file system storage capacity.
-
In USER_PROVISIONED mode, you specify the number of Metadata IOPS to provision for your file system.
"
+ }
+ },
+ "documentation":"The Lustre metadata performance configuration for the creation of an Amazon FSx for Lustre file system using a PERSISTENT_2
deployment type. The configuration uses a Metadata IOPS value to set the maximum rate of metadata disk IOPS supported by the file system.
After creation, the file system supports increasing metadata performance. For more information on Metadata IOPS, see Lustre metadata performance configuration in the Amazon FSx for Lustre User Guide.
"
+ },
"CreateFileSystemOntapConfiguration":{
"type":"structure",
"required":["DeploymentType"],
@@ -1793,7 +1813,7 @@
"WeeklyMaintenanceStartTime":{"shape":"WeeklyTime"},
"HAPairs":{
"shape":"HAPairs",
- "documentation":"Specifies how many high-availability (HA) pairs of file servers will power your file system. Scale-up file systems are powered by 1 HA pair. The default value is 1. FSx for ONTAP scale-out file systems are powered by up to 12 HA pairs. The value of this property affects the values of StorageCapacity
, Iops
, and ThroughputCapacity
. For more information, see High-availability (HA) pairs in the FSx for ONTAP user guide.
Amazon FSx responds with an HTTP status code 400 (Bad Request) for the following conditions:
"
+ "documentation":"Specifies how many high-availability (HA) pairs of file servers will power your file system. Scale-up file systems are powered by 1 HA pair. The default value is 1. FSx for ONTAP scale-out file systems are powered by up to 12 HA pairs. The value of this property affects the values of StorageCapacity
, Iops
, and ThroughputCapacity
. For more information, see High-availability (HA) pairs in the FSx for ONTAP user guide.
Amazon FSx responds with an HTTP status code 400 (Bad Request) for the following conditions:
"
},
"ThroughputCapacityPerHAPair":{
"shape":"ThroughputCapacityPerHAPair",
@@ -1867,11 +1887,11 @@
},
"StorageCapacity":{
"shape":"StorageCapacity",
- "documentation":"Sets the storage capacity of the file system that you're creating, in gibibytes (GiB).
FSx for Lustre file systems - The amount of storage capacity that you can configure depends on the value that you set for StorageType
and the Lustre DeploymentType
, as follows:
-
For SCRATCH_2
, PERSISTENT_2
and PERSISTENT_1
deployment types using SSD storage type, the valid values are 1200 GiB, 2400 GiB, and increments of 2400 GiB.
-
For PERSISTENT_1
HDD file systems, valid values are increments of 6000 GiB for 12 MB/s/TiB file systems and increments of 1800 GiB for 40 MB/s/TiB file systems.
-
For SCRATCH_1
deployment type, valid values are 1200 GiB, 2400 GiB, and increments of 3600 GiB.
FSx for ONTAP file systems - The amount of storage capacity that you can configure depends on the value of the HAPairs
property. The minimum value is calculated as 1,024 * HAPairs
and the maximum is calculated as 524,288 * HAPairs
.
FSx for OpenZFS file systems - The amount of storage capacity that you can configure is from 64 GiB up to 524,288 GiB (512 TiB).
FSx for Windows File Server file systems - The amount of storage capacity that you can configure depends on the value that you set for StorageType
as follows:
-
For SSD storage, valid values are 32 GiB-65,536 GiB (64 TiB).
-
For HDD storage, valid values are 2000 GiB-65,536 GiB (64 TiB).
"
+ "documentation":"Sets the storage capacity of the file system that you're creating, in gibibytes (GiB).
FSx for Lustre file systems - The amount of storage capacity that you can configure depends on the value that you set for StorageType
and the Lustre DeploymentType
, as follows:
-
For SCRATCH_2
, PERSISTENT_2
, and PERSISTENT_1
deployment types using SSD storage type, the valid values are 1200 GiB, 2400 GiB, and increments of 2400 GiB.
-
For PERSISTENT_1
HDD file systems, valid values are increments of 6000 GiB for 12 MB/s/TiB file systems and increments of 1800 GiB for 40 MB/s/TiB file systems.
-
For SCRATCH_1
deployment type, valid values are 1200 GiB, 2400 GiB, and increments of 3600 GiB.
FSx for ONTAP file systems - The amount of storage capacity that you can configure depends on the value of the HAPairs
property. The minimum value is calculated as 1,024 * HAPairs
and the maximum is calculated as 524,288 * HAPairs
.
FSx for OpenZFS file systems - The amount of storage capacity that you can configure is from 64 GiB up to 524,288 GiB (512 TiB).
FSx for Windows File Server file systems - The amount of storage capacity that you can configure depends on the value that you set for StorageType
as follows:
-
For SSD storage, valid values are 32 GiB-65,536 GiB (64 TiB).
-
For HDD storage, valid values are 2000 GiB-65,536 GiB (64 TiB).
"
},
"StorageType":{
"shape":"StorageType",
- "documentation":"Sets the storage type for the file system that you're creating. Valid values are SSD
and HDD
.
-
Set to SSD
to use solid state drive storage. SSD is supported on all Windows, Lustre, ONTAP, and OpenZFS deployment types.
-
Set to HDD
to use hard disk drive storage. HDD is supported on SINGLE_AZ_2
and MULTI_AZ_1
Windows file system deployment types, and on PERSISTENT_1
Lustre file system deployment types.
Default value is SSD
. For more information, see Storage type options in the FSx for Windows File Server User Guide and Multiple storage options in the FSx for Lustre User Guide.
"
+ "documentation":"Sets the storage type for the file system that you're creating. Valid values are SSD
and HDD
.
-
Set to SSD
to use solid state drive storage. SSD is supported on all Windows, Lustre, ONTAP, and OpenZFS deployment types.
-
Set to HDD
to use hard disk drive storage. HDD is supported on SINGLE_AZ_2
and MULTI_AZ_1
Windows file system deployment types, and on PERSISTENT_1
Lustre file system deployment types.
Default value is SSD
. For more information, see Storage type options in the FSx for Windows File Server User Guide and Multiple storage options in the FSx for Lustre User Guide.
"
},
"SubnetIds":{
"shape":"SubnetIds",
@@ -1894,7 +1914,7 @@
"OntapConfiguration":{"shape":"CreateFileSystemOntapConfiguration"},
"FileSystemTypeVersion":{
"shape":"FileSystemTypeVersion",
- "documentation":"(Optional) For FSx for Lustre file systems, sets the Lustre version for the file system that you're creating. Valid values are 2.10
, 2.12
, and 2.15
:
-
2.10 is supported by the Scratch and Persistent_1 Lustre deployment types.
-
2.12 and 2.15 are supported by all Lustre deployment types. 2.12
or 2.15
is required when setting FSx for Lustre DeploymentType
to PERSISTENT_2
.
Default value = 2.10
, except when DeploymentType
is set to PERSISTENT_2
, then the default is 2.12
.
If you set FileSystemTypeVersion
to 2.10
for a PERSISTENT_2
Lustre deployment type, the CreateFileSystem
operation fails.
"
+ "documentation":"For FSx for Lustre file systems, sets the Lustre version for the file system that you're creating. Valid values are 2.10
, 2.12
, and 2.15
:
-
2.10
is supported by the Scratch and Persistent_1 Lustre deployment types.
-
2.12
is supported by all Lustre deployment types, except for PERSISTENT_2
with a metadata configuration mode.
-
2.15
is supported by all Lustre deployment types and is recommended for all new file systems.
Default value is 2.10
, except for the following deployments:
-
Default value is 2.12
when DeploymentType
is set to PERSISTENT_2
without a metadata configuration mode.
-
Default value is 2.15
when DeploymentType
is set to PERSISTENT_2
with a metadata configuration mode.
"
},
"OpenZFSConfiguration":{
"shape":"CreateFileSystemOpenZFSConfiguration",
@@ -1975,7 +1995,7 @@
},
"SecurityStyle":{
"shape":"SecurityStyle",
- "documentation":"Specifies the security style for the volume. If a volume's security style is not specified, it is automatically set to the root volume's security style. The security style determines the type of permissions that FSx for ONTAP uses to control data access. For more information, see Volume security style in the Amazon FSx for NetApp ONTAP User Guide. Specify one of the following values:
-
UNIX
if the file system is managed by a UNIX administrator, the majority of users are NFS clients, and an application accessing the data uses a UNIX user as the service account.
-
NTFS
if the file system is managed by a Windows administrator, the majority of users are SMB clients, and an application accessing the data uses a Windows user as the service account.
-
MIXED
This is an advanced setting. For more information, see the topic What the security styles and their effects are in the NetApp Documentation Center.
For more information, see Volume security style in the FSx for ONTAP User Guide.
"
+ "documentation":"Specifies the security style for the volume. If a volume's security style is not specified, it is automatically set to the root volume's security style. The security style determines the type of permissions that FSx for ONTAP uses to control data access. Specify one of the following values:
-
UNIX
if the file system is managed by a UNIX administrator, the majority of users are NFS clients, and an application accessing the data uses a UNIX user as the service account.
-
NTFS
if the file system is managed by a Windows administrator, the majority of users are SMB clients, and an application accessing the data uses a Windows user as the service account.
-
MIXED
This is an advanced setting. For more information, see the topic What the security styles and their effects are in the NetApp Documentation Center.
For more information, see Volume security style in the FSx for ONTAP User Guide.
"
},
"SizeInMegabytes":{
"shape":"VolumeCapacity",
@@ -1994,7 +2014,7 @@
"TieringPolicy":{"shape":"TieringPolicy"},
"OntapVolumeType":{
"shape":"InputOntapVolumeType",
- "documentation":"Specifies the type of volume you are creating. Valid values are the following:
For more information, see Volume types in the Amazon FSx for NetApp ONTAP User Guide.
"
+ "documentation":"Specifies the type of volume you are creating. Valid values are the following:
For more information, see Volume types in the Amazon FSx for NetApp ONTAP User Guide.
"
},
"SnapshotPolicy":{
"shape":"SnapshotPolicy",
@@ -2010,7 +2030,7 @@
},
"VolumeStyle":{
"shape":"VolumeStyle",
- "documentation":"Use to specify the style of an ONTAP volume. FSx for ONTAP offers two styles of volumes that you can use for different purposes, FlexVol and FlexGroup volumes. For more information, see Volume styles in the Amazon FSx for NetApp ONTAP User Guide.
"
+ "documentation":"Use to specify the style of an ONTAP volume. FSx for ONTAP offers two styles of volumes that you can use for different purposes, FlexVol and FlexGroup volumes. For more information, see Volume styles in the Amazon FSx for NetApp ONTAP User Guide.
"
},
"AggregateConfiguration":{
"shape":"CreateAggregateConfiguration",
@@ -2174,7 +2194,7 @@
"Tags":{"shape":"Tags"},
"RootVolumeSecurityStyle":{
"shape":"StorageVirtualMachineRootVolumeSecurityStyle",
- "documentation":"The security style of the root volume of the SVM. Specify one of the following values:
-
UNIX
if the file system is managed by a UNIX administrator, the majority of users are NFS clients, and an application accessing the data uses a UNIX user as the service account.
-
NTFS
if the file system is managed by a Microsoft Windows administrator, the majority of users are SMB clients, and an application accessing the data uses a Microsoft Windows user as the service account.
-
MIXED
This is an advanced setting. For more information, see Volume security style in the Amazon FSx for NetApp ONTAP User Guide.
"
+ "documentation":"The security style of the root volume of the SVM. Specify one of the following values:
-
UNIX
if the file system is managed by a UNIX administrator, the majority of users are NFS clients, and an application accessing the data uses a UNIX user as the service account.
-
NTFS
if the file system is managed by a Microsoft Windows administrator, the majority of users are SMB clients, and an application accessing the data uses a Microsoft Windows user as the service account.
-
MIXED
This is an advanced setting. For more information, see Volume security style in the Amazon FSx for NetApp ONTAP User Guide.
"
}
}
},
@@ -3487,7 +3507,7 @@
},
"DataRepositoryPath":{
"shape":"ArchivePath",
- "documentation":"The path to the S3 or NFS data repository that links to the cache. You must provide one of the following paths:
"
+ "documentation":"The path to the S3 or NFS data repository that links to the cache. You must provide one of the following paths:
"
},
"DataRepositorySubdirectories":{
"shape":"SubDirectoriesPaths",
@@ -3756,6 +3776,21 @@
"MISCONFIGURED_UNAVAILABLE"
]
},
+ "FileSystemLustreMetadataConfiguration":{
+ "type":"structure",
+ "required":["Mode"],
+ "members":{
+ "Iops":{
+ "shape":"MetadataIops",
+ "documentation":"The number of Metadata IOPS provisioned for the file system. Valid values are 1500
, 3000
, 6000
, 12000
, and multiples of 12000
up to a maximum of 192000
.
"
+ },
+ "Mode":{
+ "shape":"MetadataConfigurationMode",
+ "documentation":"The metadata configuration mode for provisioning Metadata IOPS for the file system.
-
In AUTOMATIC mode, FSx for Lustre automatically provisions and scales the number of Metadata IOPS on your file system based on your file system storage capacity.
-
In USER_PROVISIONED mode, you can choose to specify the number of Metadata IOPS to provision for your file system.
"
+ }
+ },
+ "documentation":"The Lustre metadata performance configuration of an Amazon FSx for Lustre file system using a PERSISTENT_2
deployment type. The configuration enables the file system to support increasing metadata performance.
"
+ },
"FileSystemMaintenanceOperation":{
"type":"string",
"documentation":"An enumeration specifying the currently ongoing maintenance operation.
",
@@ -4133,6 +4168,10 @@
"RootSquashConfiguration":{
"shape":"LustreRootSquashConfiguration",
"documentation":"The Lustre root squash configuration for an Amazon FSx for Lustre file system. When enabled, root squash restricts root-level access from clients that try to access your file system as a root user.
"
+ },
+ "MetadataConfiguration":{
+ "shape":"FileSystemLustreMetadataConfiguration",
+ "documentation":"The Lustre metadata performance configuration for an Amazon FSx for Lustre file system using a PERSISTENT_2
deployment type.
"
}
},
"documentation":"The configuration for the Amazon FSx for Lustre file system.
"
@@ -4221,6 +4260,18 @@
"max":100000,
"min":8
},
+ "MetadataConfigurationMode":{
+ "type":"string",
+ "enum":[
+ "AUTOMATIC",
+ "USER_PROVISIONED"
+ ]
+ },
+ "MetadataIops":{
+ "type":"integer",
+ "max":192000,
+ "min":1500
+ },
"MetadataStorageCapacity":{
"type":"integer",
"max":2147483647,
@@ -5054,30 +5105,30 @@
"members":{
"UserName":{
"shape":"DirectoryUserName",
- "documentation":"Specifies the updated user name for the service account on your self-managed AD domain. Amazon FSx uses this account to join to your self-managed AD domain.
This account must have the permissions required to join computers to the domain in the organizational unit provided in OrganizationalUnitDistinguishedName
.
"
+ "documentation":"Specifies the updated user name for the service account on your self-managed Active Directory domain. Amazon FSx uses this account to join to your self-managed Active Directory domain.
This account must have the permissions required to join computers to the domain in the organizational unit provided in OrganizationalUnitDistinguishedName
.
"
},
"Password":{
"shape":"DirectoryPassword",
- "documentation":"Specifies the updated password for the service account on your self-managed AD domain. Amazon FSx uses this account to join to your self-managed AD domain.
"
+ "documentation":"Specifies the updated password for the service account on your self-managed Active Directory domain. Amazon FSx uses this account to join to your self-managed Active Directory domain.
"
},
"DnsIps":{
"shape":"DnsIps",
- "documentation":"A list of up to three DNS server or domain controller IP addresses in your self-managed AD domain.
"
+ "documentation":"A list of up to three DNS server or domain controller IP addresses in your self-managed Active Directory domain.
"
},
"DomainName":{
"shape":"ActiveDirectoryFullyQualifiedName",
- "documentation":"Specifies an updated fully qualified domain name of your self-managed AD configuration.
"
+ "documentation":"Specifies an updated fully qualified domain name of your self-managed Active Directory configuration.
"
},
"OrganizationalUnitDistinguishedName":{
"shape":"OrganizationalUnitDistinguishedName",
- "documentation":"Specifies an updated fully qualified distinguished name of the organization unit within your self-managed AD.
"
+ "documentation":"Specifies an updated fully qualified distinguished name of the organization unit within your self-managed Active Directory.
"
},
"FileSystemAdministratorsGroup":{
"shape":"FileSystemAdministratorsGroupName",
- "documentation":"Specifies the updated name of the self-managed AD domain group whose members are granted administrative privileges for the Amazon FSx resource.
"
+ "documentation":"For FSx for ONTAP file systems only - Specifies the updated name of the self-managed Active Directory domain group whose members are granted administrative privileges for the Amazon FSx resource.
"
}
},
- "documentation":"Specifies changes you are making to the self-managed Microsoft Active Directory (AD) configuration to which an FSx for Windows File Server file system or an FSx for ONTAP SVM is joined.
"
+ "documentation":"Specifies changes you are making to the self-managed Microsoft Active Directory configuration to which an FSx for Windows File Server file system or an FSx for ONTAP SVM is joined.
"
},
"ServiceLimit":{
"type":"string",
@@ -5793,10 +5844,28 @@
"PerUnitStorageThroughput":{
"shape":"PerUnitStorageThroughput",
"documentation":"The throughput of an Amazon FSx for Lustre Persistent SSD-based file system, measured in megabytes per second per tebibyte (MB/s/TiB). You can increase or decrease your file system's throughput. Valid values depend on the deployment type of the file system, as follows:
-
For PERSISTENT_1
SSD-based deployment types, valid values are 50, 100, and 200 MB/s/TiB.
-
For PERSISTENT_2
SSD-based deployment types, valid values are 125, 250, 500, and 1000 MB/s/TiB.
For more information, see Managing throughput capacity.
"
+ },
+ "MetadataConfiguration":{
+ "shape":"UpdateFileSystemLustreMetadataConfiguration",
+ "documentation":"The Lustre metadata performance configuration for an Amazon FSx for Lustre file system using a PERSISTENT_2
deployment type. When this configuration is enabled, the file system supports increasing metadata performance.
"
}
},
"documentation":"The configuration object for Amazon FSx for Lustre file systems used in the UpdateFileSystem
operation.
"
},
+ "UpdateFileSystemLustreMetadataConfiguration":{
+ "type":"structure",
+ "members":{
+ "Iops":{
+ "shape":"MetadataIops",
+ "documentation":"(USER_PROVISIONED mode only) Specifies the number of Metadata IOPS to provision for your file system. Valid values are 1500
, 3000
, 6000
, 12000
, and multiples of 12000
up to a maximum of 192000
.
The value you provide must be greater than or equal to the current number of Metadata IOPS provisioned for the file system.
"
+ },
+ "Mode":{
+ "shape":"MetadataConfigurationMode",
+ "documentation":"The metadata configuration mode for provisioning Metadata IOPS for an FSx for Lustre file system using a PERSISTENT_2
deployment type.
-
To increase the Metadata IOPS or to switch from AUTOMATIC mode, specify USER_PROVISIONED
as the value for this parameter. Then use the Iops parameter to provide a Metadata IOPS value that is greater than or equal to the current number of Metadata IOPS provisioned for the file system.
-
To switch from USER_PROVISIONED mode, specify AUTOMATIC
as the value for this parameter, but do not input a value for Iops.
If you request to switch from USER_PROVISIONED to AUTOMATIC mode and the current Metadata IOPS value is greater than the automated default, FSx for Lustre rejects the request because downscaling Metadata IOPS is not supported.
"
+ }
+ },
+ "documentation":"The Lustre metadata performance configuration update for an Amazon FSx for Lustre file system using a PERSISTENT_2
deployment type. You can request an increase in your file system's Metadata IOPS and/or switch your file system's metadata configuration mode. For more information, see Managing metadata performance in the Amazon FSx for Lustre User Guide.
"
+ },
"UpdateFileSystemOntapConfiguration":{
"type":"structure",
"members":{
From 57a276321db7f3b3af928d7de8a12b2d827e0d56 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Thu, 6 Jun 2024 18:07:04 +0000
Subject: [PATCH 14/30] AWS Account Update: This release adds 3 new APIs
(AcceptPrimaryEmailUpdate, GetPrimaryEmail, and StartPrimaryEmailUpdate) used
to centrally manage the root user email address of member accounts within an
AWS organization.
---
.../feature-AWSAccount-d8f4e47.json | 6 +
.../codegen-resources/endpoint-rule-set.json | 40 ++---
.../codegen-resources/service-2.json | 166 +++++++++++++++++-
3 files changed, 184 insertions(+), 28 deletions(-)
create mode 100644 .changes/next-release/feature-AWSAccount-d8f4e47.json
diff --git a/.changes/next-release/feature-AWSAccount-d8f4e47.json b/.changes/next-release/feature-AWSAccount-d8f4e47.json
new file mode 100644
index 000000000000..369c0c4ddc97
--- /dev/null
+++ b/.changes/next-release/feature-AWSAccount-d8f4e47.json
@@ -0,0 +1,6 @@
+{
+ "type": "feature",
+ "category": "AWS Account",
+ "contributor": "",
+ "description": "This release adds 3 new APIs (AcceptPrimaryEmailUpdate, GetPrimaryEmail, and StartPrimaryEmailUpdate) used to centrally manage the root user email address of member accounts within an AWS organization."
+}
diff --git a/services/account/src/main/resources/codegen-resources/endpoint-rule-set.json b/services/account/src/main/resources/codegen-resources/endpoint-rule-set.json
index 88e9002a1f6a..8f8a08191d9a 100644
--- a/services/account/src/main/resources/codegen-resources/endpoint-rule-set.json
+++ b/services/account/src/main/resources/codegen-resources/endpoint-rule-set.json
@@ -40,7 +40,6 @@
]
}
],
- "type": "tree",
"rules": [
{
"conditions": [
@@ -83,7 +82,8 @@
},
"type": "endpoint"
}
- ]
+ ],
+ "type": "tree"
},
{
"conditions": [
@@ -96,7 +96,6 @@
]
}
],
- "type": "tree",
"rules": [
{
"conditions": [
@@ -110,7 +109,6 @@
"assign": "PartitionResult"
}
],
- "type": "tree",
"rules": [
{
"conditions": [
@@ -235,7 +233,6 @@
]
}
],
- "type": "tree",
"rules": [
{
"conditions": [
@@ -270,7 +267,6 @@
]
}
],
- "type": "tree",
"rules": [
{
"conditions": [],
@@ -281,14 +277,16 @@
},
"type": "endpoint"
}
- ]
+ ],
+ "type": "tree"
},
{
"conditions": [],
"error": "FIPS and DualStack are enabled, but this partition does not support one or both",
"type": "error"
}
- ]
+ ],
+ "type": "tree"
},
{
"conditions": [
@@ -302,14 +300,12 @@
]
}
],
- "type": "tree",
"rules": [
{
"conditions": [
{
"fn": "booleanEquals",
"argv": [
- true,
{
"fn": "getAttr",
"argv": [
@@ -318,11 +314,11 @@
},
"supportsFIPS"
]
- }
+ },
+ true
]
}
],
- "type": "tree",
"rules": [
{
"conditions": [],
@@ -333,14 +329,16 @@
},
"type": "endpoint"
}
- ]
+ ],
+ "type": "tree"
},
{
"conditions": [],
"error": "FIPS is enabled but this partition does not support FIPS",
"type": "error"
}
- ]
+ ],
+ "type": "tree"
},
{
"conditions": [
@@ -354,7 +352,6 @@
]
}
],
- "type": "tree",
"rules": [
{
"conditions": [
@@ -374,7 +371,6 @@
]
}
],
- "type": "tree",
"rules": [
{
"conditions": [],
@@ -385,14 +381,16 @@
},
"type": "endpoint"
}
- ]
+ ],
+ "type": "tree"
},
{
"conditions": [],
"error": "DualStack is enabled but this partition does not support DualStack",
"type": "error"
}
- ]
+ ],
+ "type": "tree"
},
{
"conditions": [],
@@ -403,9 +401,11 @@
},
"type": "endpoint"
}
- ]
+ ],
+ "type": "tree"
}
- ]
+ ],
+ "type": "tree"
},
{
"conditions": [],
diff --git a/services/account/src/main/resources/codegen-resources/service-2.json b/services/account/src/main/resources/codegen-resources/service-2.json
index 65ba47afbbcb..5620b7d1c0fa 100644
--- a/services/account/src/main/resources/codegen-resources/service-2.json
+++ b/services/account/src/main/resources/codegen-resources/service-2.json
@@ -12,6 +12,25 @@
"uid":"account-2021-02-01"
},
"operations":{
+ "AcceptPrimaryEmailUpdate":{
+ "name":"AcceptPrimaryEmailUpdate",
+ "http":{
+ "method":"POST",
+ "requestUri":"/acceptPrimaryEmailUpdate",
+ "responseCode":200
+ },
+ "input":{"shape":"AcceptPrimaryEmailUpdateRequest"},
+ "output":{"shape":"AcceptPrimaryEmailUpdateResponse"},
+ "errors":[
+ {"shape":"ResourceNotFoundException"},
+ {"shape":"ValidationException"},
+ {"shape":"ConflictException"},
+ {"shape":"AccessDeniedException"},
+ {"shape":"TooManyRequestsException"},
+ {"shape":"InternalServerException"}
+ ],
+ "documentation":"Accepts the request that originated from StartPrimaryEmailUpdate to update the primary email address (also known as the root user email address) for the specified account.
"
+ },
"DeleteAlternateContact":{
"name":"DeleteAlternateContact",
"http":{
@@ -45,7 +64,7 @@
{"shape":"TooManyRequestsException"},
{"shape":"InternalServerException"}
],
- "documentation":"Disables (opts-out) a particular Region for an account.
"
+ "documentation":"Disables (opts-out) a particular Region for an account.
The act of disabling a Region will remove all IAM access to any resources that reside in that Region.
"
},
"EnableRegion":{
"name":"EnableRegion",
@@ -100,6 +119,24 @@
],
"documentation":"Retrieves the primary contact information of an Amazon Web Services account.
For complete details about how to use the primary contact operations, see Update the primary and alternate contact information.
"
},
+ "GetPrimaryEmail":{
+ "name":"GetPrimaryEmail",
+ "http":{
+ "method":"POST",
+ "requestUri":"/getPrimaryEmail",
+ "responseCode":200
+ },
+ "input":{"shape":"GetPrimaryEmailRequest"},
+ "output":{"shape":"GetPrimaryEmailResponse"},
+ "errors":[
+ {"shape":"ResourceNotFoundException"},
+ {"shape":"ValidationException"},
+ {"shape":"AccessDeniedException"},
+ {"shape":"TooManyRequestsException"},
+ {"shape":"InternalServerException"}
+ ],
+ "documentation":"Retrieves the primary email address for the specified account.
"
+ },
"GetRegionOptStatus":{
"name":"GetRegionOptStatus",
"http":{
@@ -167,9 +204,59 @@
],
"documentation":"Updates the primary contact information of an Amazon Web Services account.
For complete details about how to use the primary contact operations, see Update the primary and alternate contact information.
",
"idempotent":true
+ },
+ "StartPrimaryEmailUpdate":{
+ "name":"StartPrimaryEmailUpdate",
+ "http":{
+ "method":"POST",
+ "requestUri":"/startPrimaryEmailUpdate",
+ "responseCode":200
+ },
+ "input":{"shape":"StartPrimaryEmailUpdateRequest"},
+ "output":{"shape":"StartPrimaryEmailUpdateResponse"},
+ "errors":[
+ {"shape":"ResourceNotFoundException"},
+ {"shape":"ValidationException"},
+ {"shape":"ConflictException"},
+ {"shape":"AccessDeniedException"},
+ {"shape":"TooManyRequestsException"},
+ {"shape":"InternalServerException"}
+ ],
+ "documentation":"Starts the process to update the primary email address for the specified account.
"
}
},
"shapes":{
+ "AcceptPrimaryEmailUpdateRequest":{
+ "type":"structure",
+ "required":[
+ "AccountId",
+ "Otp",
+ "PrimaryEmail"
+ ],
+ "members":{
+ "AccountId":{
+ "shape":"AccountId",
+ "documentation":"Specifies the 12-digit account ID number of the Amazon Web Services account that you want to access or modify with this operation. To use this parameter, the caller must be an identity in the organization's management account or a delegated administrator account. The specified account ID must be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned.
This operation can only be called from the management account or the delegated administrator account of an organization for a member account.
The management account can't specify its own AccountId
.
"
+ },
+ "Otp":{
+ "shape":"Otp",
+ "documentation":"The OTP code sent to the PrimaryEmail
specified on the StartPrimaryEmailUpdate
API call.
"
+ },
+ "PrimaryEmail":{
+ "shape":"PrimaryEmailAddress",
+ "documentation":"The new primary email address for use with the specified account. This must match the PrimaryEmail
from the StartPrimaryEmailUpdate
API call.
"
+ }
+ }
+ },
+ "AcceptPrimaryEmailUpdateResponse":{
+ "type":"structure",
+ "members":{
+ "Status":{
+ "shape":"PrimaryEmailUpdateStatus",
+ "documentation":"Retrieves the status of the accepted primary email update request.
"
+ }
+ }
+ },
"AccessDeniedException":{
"type":"structure",
"required":["message"],
@@ -305,7 +392,7 @@
},
"StateOrRegion":{
"shape":"StateOrRegion",
- "documentation":"The state or region of the primary contact address. This field is required in selected countries.
"
+ "documentation":"The state or region of the primary contact address. If the mailing address is within the United States (US), the value in this field can be either a two character state code (for example, NJ
) or the full state name (for example, New Jersey
). This field is required in the following countries: US
, CA
, GB
, DE
, JP
, IN
, and BR
.
"
},
"WebsiteUrl":{
"shape":"WebsiteUrl",
@@ -347,7 +434,7 @@
"members":{
"AccountId":{
"shape":"AccountId",
- "documentation":"Specifies the 12-digit account ID number of the Amazon Web Services account that you want to access or modify with this operation. If you don't specify this parameter, it defaults to the Amazon Web Services account of the identity used to call the operation. To use this parameter, the caller must be an identity in the organization's management account or a delegated administrator account. The specified account ID must also be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned.
The management account can't specify its own AccountId
. It must call the operation in standalone context by not including the AccountId
parameter.
To call this operation on an account that is not a member of an organization, don't specify this parameter. Instead, call the operation using an identity belonging to the account whose contacts you wish to retrieve or modify.
"
+ "documentation":"Specifies the 12-digit account ID number of the Amazon Web Services account that you want to access or modify with this operation. If you don't specify this parameter, it defaults to the Amazon Web Services account of the identity used to call the operation. To use this parameter, the caller must be an identity in the organization's management account or a delegated administrator account. The specified account ID must be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned.
The management account can't specify its own AccountId
. It must call the operation in standalone context by not including the AccountId
parameter.
To call this operation on an account that is not a member of an organization, don't specify this parameter. Instead, call the operation using an identity belonging to the account whose contacts you wish to retrieve or modify.
"
},
"RegionName":{
"shape":"RegionName",
@@ -374,7 +461,7 @@
"members":{
"AccountId":{
"shape":"AccountId",
- "documentation":"Specifies the 12-digit account ID number of the Amazon Web Services account that you want to access or modify with this operation. If you don't specify this parameter, it defaults to the Amazon Web Services account of the identity used to call the operation. To use this parameter, the caller must be an identity in the organization's management account or a delegated administrator account. The specified account ID must also be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned.
The management account can't specify its own AccountId
. It must call the operation in standalone context by not including the AccountId
parameter.
To call this operation on an account that is not a member of an organization, don't specify this parameter. Instead, call the operation using an identity belonging to the account whose contacts you wish to retrieve or modify.
"
+ "documentation":"Specifies the 12-digit account ID number of the Amazon Web Services account that you want to access or modify with this operation. If you don't specify this parameter, it defaults to the Amazon Web Services account of the identity used to call the operation. To use this parameter, the caller must be an identity in the organization's management account or a delegated administrator account. The specified account ID must be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned.
The management account can't specify its own AccountId
. It must call the operation in standalone context by not including the AccountId
parameter.
To call this operation on an account that is not a member of an organization, don't specify this parameter. Instead, call the operation using an identity belonging to the account whose contacts you wish to retrieve or modify.
"
},
"RegionName":{
"shape":"RegionName",
@@ -416,7 +503,7 @@
"members":{
"AccountId":{
"shape":"AccountId",
- "documentation":"Specifies the 12-digit account ID number of the Amazon Web Services account that you want to access or modify with this operation. If you don't specify this parameter, it defaults to the Amazon Web Services account of the identity used to call the operation. To use this parameter, the caller must be an identity in the organization's management account or a delegated administrator account. The specified account ID must also be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned.
The management account can't specify its own AccountId
. It must call the operation in standalone context by not including the AccountId
parameter.
To call this operation on an account that is not a member of an organization, don't specify this parameter. Instead, call the operation using an identity belonging to the account whose contacts you wish to retrieve or modify.
"
+ "documentation":"Specifies the 12-digit account ID number of the Amazon Web Services account that you want to access or modify with this operation. If you don't specify this parameter, it defaults to the Amazon Web Services account of the identity used to call the operation. To use this parameter, the caller must be an identity in the organization's management account or a delegated administrator account. The specified account ID must be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned.
The management account can't specify its own AccountId
. It must call the operation in standalone context by not including the AccountId
parameter.
To call this operation on an account that is not a member of an organization, don't specify this parameter. Instead, call the operation using an identity belonging to the account whose contacts you wish to retrieve or modify.
"
}
}
},
@@ -429,13 +516,32 @@
}
}
},
+ "GetPrimaryEmailRequest":{
+ "type":"structure",
+ "required":["AccountId"],
+ "members":{
+ "AccountId":{
+ "shape":"AccountId",
+ "documentation":"Specifies the 12-digit account ID number of the Amazon Web Services account that you want to access or modify with this operation. To use this parameter, the caller must be an identity in the organization's management account or a delegated administrator account. The specified account ID must be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned.
This operation can only be called from the management account or the delegated administrator account of an organization for a member account.
The management account can't specify its own AccountId
.
"
+ }
+ }
+ },
+ "GetPrimaryEmailResponse":{
+ "type":"structure",
+ "members":{
+ "PrimaryEmail":{
+ "shape":"PrimaryEmailAddress",
+ "documentation":"Retrieves the primary email address associated with the specified account.
"
+ }
+ }
+ },
"GetRegionOptStatusRequest":{
"type":"structure",
"required":["RegionName"],
"members":{
"AccountId":{
"shape":"AccountId",
- "documentation":"Specifies the 12-digit account ID number of the Amazon Web Services account that you want to access or modify with this operation. If you don't specify this parameter, it defaults to the Amazon Web Services account of the identity used to call the operation. To use this parameter, the caller must be an identity in the organization's management account or a delegated administrator account. The specified account ID must also be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned.
The management account can't specify its own AccountId
. It must call the operation in standalone context by not including the AccountId
parameter.
To call this operation on an account that is not a member of an organization, don't specify this parameter. Instead, call the operation using an identity belonging to the account whose contacts you wish to retrieve or modify.
"
+ "documentation":"Specifies the 12-digit account ID number of the Amazon Web Services account that you want to access or modify with this operation. If you don't specify this parameter, it defaults to the Amazon Web Services account of the identity used to call the operation. To use this parameter, the caller must be an identity in the organization's management account or a delegated administrator account. The specified account ID must be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned.
The management account can't specify its own AccountId
. It must call the operation in standalone context by not including the AccountId
parameter.
To call this operation on an account that is not a member of an organization, don't specify this parameter. Instead, call the operation using an identity belonging to the account whose contacts you wish to retrieve or modify.
"
},
"RegionName":{
"shape":"RegionName",
@@ -473,7 +579,7 @@
"members":{
"AccountId":{
"shape":"AccountId",
- "documentation":"Specifies the 12-digit account ID number of the Amazon Web Services account that you want to access or modify with this operation. If you don't specify this parameter, it defaults to the Amazon Web Services account of the identity used to call the operation. To use this parameter, the caller must be an identity in the organization's management account or a delegated administrator account. The specified account ID must also be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned.
The management account can't specify its own AccountId
. It must call the operation in standalone context by not including the AccountId
parameter.
To call this operation on an account that is not a member of an organization, don't specify this parameter. Instead, call the operation using an identity belonging to the account whose contacts you wish to retrieve or modify.
"
+ "documentation":"Specifies the 12-digit account ID number of the Amazon Web Services account that you want to access or modify with this operation. If you don't specify this parameter, it defaults to the Amazon Web Services account of the identity used to call the operation. To use this parameter, the caller must be an identity in the organization's management account or a delegated administrator account. The specified account ID must be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned.
The management account can't specify its own AccountId
. It must call the operation in standalone context by not including the AccountId
parameter.
To call this operation on an account that is not a member of an organization, don't specify this parameter. Instead, call the operation using an identity belonging to the account whose contacts you wish to retrieve or modify.
"
},
"MaxResults":{
"shape":"ListRegionsRequestMaxResultsInteger",
@@ -519,6 +625,11 @@
"min":1,
"sensitive":true
},
+ "Otp":{
+ "type":"string",
+ "pattern":"^[a-zA-Z0-9]{6}$",
+ "sensitive":true
+ },
"PhoneNumber":{
"type":"string",
"max":25,
@@ -532,6 +643,19 @@
"min":1,
"sensitive":true
},
+ "PrimaryEmailAddress":{
+ "type":"string",
+ "max":64,
+ "min":5,
+ "sensitive":true
+ },
+ "PrimaryEmailUpdateStatus":{
+ "type":"string",
+ "enum":[
+ "PENDING",
+ "ACCEPTED"
+ ]
+ },
"PutAlternateContactRequest":{
"type":"structure",
"required":[
@@ -574,7 +698,7 @@
"members":{
"AccountId":{
"shape":"AccountId",
- "documentation":"Specifies the 12-digit account ID number of the Amazon Web Services account that you want to access or modify with this operation. If you don't specify this parameter, it defaults to the Amazon Web Services account of the identity used to call the operation. To use this parameter, the caller must be an identity in the organization's management account or a delegated administrator account. The specified account ID must also be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned.
The management account can't specify its own AccountId
. It must call the operation in standalone context by not including the AccountId
parameter.
To call this operation on an account that is not a member of an organization, don't specify this parameter. Instead, call the operation using an identity belonging to the account whose contacts you wish to retrieve or modify.
"
+ "documentation":"Specifies the 12-digit account ID number of the Amazon Web Services account that you want to access or modify with this operation. If you don't specify this parameter, it defaults to the Amazon Web Services account of the identity used to call the operation. To use this parameter, the caller must be an identity in the organization's management account or a delegated administrator account. The specified account ID must be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned.
The management account can't specify its own AccountId
. It must call the operation in standalone context by not including the AccountId
parameter.
To call this operation on an account that is not a member of an organization, don't specify this parameter. Instead, call the operation using an identity belonging to the account whose contacts you wish to retrieve or modify.
"
},
"ContactInformation":{
"shape":"ContactInformation",
@@ -636,6 +760,32 @@
"type":"string",
"sensitive":true
},
+ "StartPrimaryEmailUpdateRequest":{
+ "type":"structure",
+ "required":[
+ "AccountId",
+ "PrimaryEmail"
+ ],
+ "members":{
+ "AccountId":{
+ "shape":"AccountId",
+ "documentation":"Specifies the 12-digit account ID number of the Amazon Web Services account that you want to access or modify with this operation. To use this parameter, the caller must be an identity in the organization's management account or a delegated administrator account. The specified account ID must be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned.
This operation can only be called from the management account or the delegated administrator account of an organization for a member account.
The management account can't specify its own AccountId
.
"
+ },
+ "PrimaryEmail":{
+ "shape":"PrimaryEmailAddress",
+ "documentation":"The new primary email address (also known as the root user email address) to use in the specified account.
"
+ }
+ }
+ },
+ "StartPrimaryEmailUpdateResponse":{
+ "type":"structure",
+ "members":{
+ "Status":{
+ "shape":"PrimaryEmailUpdateStatus",
+ "documentation":"The status of the primary email update request.
"
+ }
+ }
+ },
"StateOrRegion":{
"type":"string",
"max":50,
From 3bbf19d79d61408fa97fd02428ef62aff6ae9f6b Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Thu, 6 Jun 2024 18:07:08 +0000
Subject: [PATCH 15/30] Amazon Location Service Update: Added two new APIs,
VerifyDevicePosition and ForecastGeofenceEvents. Added support for putting
larger geofences up to 100,000 vertices with Geobuf fields.
---
...feature-AmazonLocationService-8f7a8d6.json | 6 +
.../codegen-resources/paginators-1.json | 6 +
.../codegen-resources/service-2.json | 2519 ++++++++++-------
3 files changed, 1544 insertions(+), 987 deletions(-)
create mode 100644 .changes/next-release/feature-AmazonLocationService-8f7a8d6.json
diff --git a/.changes/next-release/feature-AmazonLocationService-8f7a8d6.json b/.changes/next-release/feature-AmazonLocationService-8f7a8d6.json
new file mode 100644
index 000000000000..e7d2574adea1
--- /dev/null
+++ b/.changes/next-release/feature-AmazonLocationService-8f7a8d6.json
@@ -0,0 +1,6 @@
+{
+ "type": "feature",
+ "category": "Amazon Location Service",
+ "contributor": "",
+ "description": "Added two new APIs, VerifyDevicePosition and ForecastGeofenceEvents. Added support for putting larger geofences up to 100,000 vertices with Geobuf fields."
+}
diff --git a/services/location/src/main/resources/codegen-resources/paginators-1.json b/services/location/src/main/resources/codegen-resources/paginators-1.json
index 24ca27f63d8d..8f919c6b6768 100644
--- a/services/location/src/main/resources/codegen-resources/paginators-1.json
+++ b/services/location/src/main/resources/codegen-resources/paginators-1.json
@@ -1,5 +1,11 @@
{
"pagination": {
+ "ForecastGeofenceEvents": {
+ "input_token": "NextToken",
+ "output_token": "NextToken",
+ "limit_key": "MaxResults",
+ "result_key": "ForecastedEvents"
+ },
"GetDevicePositionHistory": {
"input_token": "NextToken",
"output_token": "NextToken",
diff --git a/services/location/src/main/resources/codegen-resources/service-2.json b/services/location/src/main/resources/codegen-resources/service-2.json
index d9ac4344fe22..c9deaf2ba2b2 100644
--- a/services/location/src/main/resources/codegen-resources/service-2.json
+++ b/services/location/src/main/resources/codegen-resources/service-2.json
@@ -3,8 +3,8 @@
"metadata":{
"apiVersion":"2020-11-19",
"endpointPrefix":"geo",
- "jsonVersion":"1.1",
"protocol":"rest-json",
+ "protocols":["rest-json"],
"serviceFullName":"Amazon Location Service",
"serviceId":"Location",
"signatureVersion":"v4",
@@ -564,6 +564,25 @@
"documentation":"Removes the association between a tracker resource and a geofence collection.
Once you unlink a tracker resource from a geofence collection, the tracker positions will no longer be automatically evaluated against geofences.
",
"endpoint":{"hostPrefix":"cp.tracking."}
},
+ "ForecastGeofenceEvents":{
+ "name":"ForecastGeofenceEvents",
+ "http":{
+ "method":"POST",
+ "requestUri":"/geofencing/v0/collections/{CollectionName}/forecast-geofence-events",
+ "responseCode":200
+ },
+ "input":{"shape":"ForecastGeofenceEventsRequest"},
+ "output":{"shape":"ForecastGeofenceEventsResponse"},
+ "errors":[
+ {"shape":"InternalServerException"},
+ {"shape":"ResourceNotFoundException"},
+ {"shape":"AccessDeniedException"},
+ {"shape":"ValidationException"},
+ {"shape":"ThrottlingException"}
+ ],
+ "documentation":"Evaluates device positions against geofence geometries from a given geofence collection. The event forecasts three states for which a device can be in relative to a geofence:
ENTER
: If a device is outside of a geofence, but would breach the fence if the device is moving at its current speed within time horizon window.
EXIT
: If a device is inside of a geofence, but would breach the fence if the device is moving at its current speed within time horizon window.
IDLE
: If a device is inside of a geofence, and the device is not moving.
",
+ "endpoint":{"hostPrefix":"geofencing."}
+ },
"GetDevicePosition":{
"name":"GetDevicePosition",
"http":{
@@ -618,7 +637,7 @@
{"shape":"ValidationException"},
{"shape":"ThrottlingException"}
],
- "documentation":"Retrieves the geofence details from a geofence collection.
",
+ "documentation":"Retrieves the geofence details from a geofence collection.
The returned geometry will always match the geometry format used when the geofence was created.
",
"endpoint":{"hostPrefix":"geofencing."}
},
"GetMapGlyphs":{
@@ -1134,6 +1153,25 @@
"documentation":"Updates the specified properties of a given tracker resource.
",
"endpoint":{"hostPrefix":"cp.tracking."},
"idempotent":true
+ },
+ "VerifyDevicePosition":{
+ "name":"VerifyDevicePosition",
+ "http":{
+ "method":"POST",
+ "requestUri":"/tracking/v0/trackers/{TrackerName}/positions/verify",
+ "responseCode":200
+ },
+ "input":{"shape":"VerifyDevicePositionRequest"},
+ "output":{"shape":"VerifyDevicePositionResponse"},
+ "errors":[
+ {"shape":"InternalServerException"},
+ {"shape":"ResourceNotFoundException"},
+ {"shape":"AccessDeniedException"},
+ {"shape":"ValidationException"},
+ {"shape":"ThrottlingException"}
+ ],
+ "documentation":"Verifies the integrity of the device's position by determining if it was reported behind a proxy, and by comparing it to an inferred position estimated based on the device's state.
",
+ "endpoint":{"hostPrefix":"tracking."}
}
},
"shapes":{
@@ -1163,7 +1201,7 @@
"type":"string",
"max":200,
"min":5,
- "pattern":"^geo:\\w*\\*?$"
+ "pattern":"(geo|geo-routes|geo-places|geo-maps):\\w*\\*?"
},
"ApiKeyFilter":{
"type":"structure",
@@ -1186,13 +1224,13 @@
"shape":"ApiKeyRestrictionsAllowActionsList",
"documentation":"A list of allowed actions that an API key resource grants permissions to perform. You must have at least one action for each type of resource. For example, if you have a place resource, you must include at least one place action.
The following are valid values for the actions.
-
Map actions
-
Place actions
-
geo:SearchPlaceIndexForText
- Allows geocoding.
-
geo:SearchPlaceIndexForPosition
- Allows reverse geocoding.
-
geo:SearchPlaceIndexForSuggestions
- Allows generating suggestions from text.
-
GetPlace
- Allows finding a place by place ID.
-
Route actions
You must use these strings exactly. For example, to provide access to map rendering, the only valid action is geo:GetMap*
as an input to the list. [\"geo:GetMap*\"]
is valid but [\"geo:GetMapTile\"]
is not. Similarly, you cannot use [\"geo:SearchPlaceIndexFor*\"]
- you must list each of the Place actions separately.
"
},
- "AllowReferers":{
- "shape":"ApiKeyRestrictionsAllowReferersList",
- "documentation":"An optional list of allowed HTTP referers for which requests must originate from. Requests using this API key from other domains will not be allowed.
Requirements:
-
Contain only alphanumeric characters (A–Z, a–z, 0–9) or any symbols in this list $\\-._+!*`(),;/?:@=&
-
May contain a percent (%) if followed by 2 hexadecimal digits (A-F, a-f, 0-9); this is used for URL encoding purposes.
-
May contain wildcard characters question mark (?) and asterisk (*).
Question mark (?) will replace any single character (including hexadecimal digits).
Asterisk (*) will replace any multiple characters (including multiple hexadecimal digits).
-
No spaces allowed. For example, https://example.com
.
"
- },
"AllowResources":{
"shape":"ApiKeyRestrictionsAllowResourcesList",
"documentation":"A list of allowed resource ARNs that a API key bearer can perform actions on.
-
The ARN must be the correct ARN for a map, place, or route ARN. You may include wildcards in the resource-id to match multiple resources of the same type.
-
The resources must be in the same partition
, region
, and account-id
as the key that is being created.
-
Other than wildcards, you must include the full ARN, including the arn
, partition
, service
, region
, account-id
and resource-id
delimited by colons (:).
-
No spaces allowed, even with wildcards. For example, arn:aws:geo:region:account-id:map/ExampleMap*
.
For more information about ARN format, see Amazon Resource Names (ARNs).
"
+ },
+ "AllowReferers":{
+ "shape":"ApiKeyRestrictionsAllowReferersList",
+ "documentation":"An optional list of allowed HTTP referers for which requests must originate from. Requests using this API key from other domains will not be allowed.
Requirements:
-
Contain only alphanumeric characters (A–Z, a–z, 0–9) or any symbols in this list $\\-._+!*`(),;/?:@=&
-
May contain a percent (%) if followed by 2 hexadecimal digits (A-F, a-f, 0-9); this is used for URL encoding purposes.
-
May contain wildcard characters question mark (?) and asterisk (*).
Question mark (?) will replace any single character (including hexadecimal digits).
Asterisk (*) will replace any multiple characters (including multiple hexadecimal digits).
-
No spaces allowed. For example, https://example.com
.
"
}
},
"documentation":"API Restrictions on the allowed actions, resources, and referers for an API key resource.
"
@@ -1211,7 +1249,7 @@
},
"ApiKeyRestrictionsAllowResourcesList":{
"type":"list",
- "member":{"shape":"GeoArn"},
+ "member":{"shape":"GeoArnV2"},
"max":5,
"min":1
},
@@ -1219,7 +1257,7 @@
"type":"string",
"max":1600,
"min":0,
- "pattern":"^arn(:[a-z0-9]+([.-][a-z0-9]+)*){2}(:([a-z0-9]+([.-][a-z0-9]+)*)?){2}:([^/].*)?$"
+ "pattern":"arn(:[a-z0-9]+([.-][a-z0-9]+)*){2}(:([a-z0-9]+([.-][a-z0-9]+)*)?){2}:([^/].*)?"
},
"ArnList":{
"type":"list",
@@ -1228,19 +1266,19 @@
"AssociateTrackerConsumerRequest":{
"type":"structure",
"required":[
- "ConsumerArn",
- "TrackerName"
+ "TrackerName",
+ "ConsumerArn"
],
"members":{
- "ConsumerArn":{
- "shape":"Arn",
- "documentation":"The Amazon Resource Name (ARN) for the geofence collection to be associated to tracker resource. Used when you need to specify a resource across all Amazon Web Services.
"
- },
"TrackerName":{
"shape":"ResourceName",
"documentation":"The name of the tracker resource to be associated with a geofence collection.
",
"location":"uri",
"locationName":"TrackerName"
+ },
+ "ConsumerArn":{
+ "shape":"Arn",
+ "documentation":"The Amazon Resource Name (ARN) for the geofence collection to be associated to tracker resource. Used when you need to specify a resource across all Amazon Web Services.
"
}
}
},
@@ -1249,6 +1287,12 @@
"members":{
}
},
+ "Base64EncodedGeobuf":{
+ "type":"blob",
+ "max":600000,
+ "min":0,
+ "sensitive":true
+ },
"BatchDeleteDevicePositionHistoryError":{
"type":"structure",
"required":[
@@ -1271,19 +1315,19 @@
"BatchDeleteDevicePositionHistoryRequest":{
"type":"structure",
"required":[
- "DeviceIds",
- "TrackerName"
+ "TrackerName",
+ "DeviceIds"
],
"members":{
- "DeviceIds":{
- "shape":"BatchDeleteDevicePositionHistoryRequestDeviceIdsList",
- "documentation":"Devices whose position history you want to delete.
"
- },
"TrackerName":{
"shape":"ResourceName",
"documentation":"The name of the tracker resource to delete the device position history from.
",
"location":"uri",
"locationName":"TrackerName"
+ },
+ "DeviceIds":{
+ "shape":"BatchDeleteDevicePositionHistoryRequestDeviceIdsList",
+ "documentation":"Devices whose position history you want to delete.
"
}
}
},
@@ -1306,17 +1350,17 @@
"BatchDeleteGeofenceError":{
"type":"structure",
"required":[
- "Error",
- "GeofenceId"
+ "GeofenceId",
+ "Error"
],
"members":{
- "Error":{
- "shape":"BatchItemError",
- "documentation":"Contains details associated to the batch error.
"
- },
"GeofenceId":{
"shape":"Id",
"documentation":"The geofence associated with the error message.
"
+ },
+ "Error":{
+ "shape":"BatchItemError",
+ "documentation":"Contains details associated to the batch error.
"
}
},
"documentation":"Contains error details for each geofence that failed to delete from the geofence collection.
"
@@ -1364,21 +1408,21 @@
"type":"structure",
"required":[
"DeviceId",
- "Error",
- "SampleTime"
+ "SampleTime",
+ "Error"
],
"members":{
"DeviceId":{
"shape":"Id",
"documentation":"The device associated with the position evaluation error.
"
},
- "Error":{
- "shape":"BatchItemError",
- "documentation":"Contains details associated to the batch error.
"
- },
"SampleTime":{
"shape":"Timestamp",
"documentation":"Specifies a timestamp for when the error occurred in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
"
+ },
+ "Error":{
+ "shape":"BatchItemError",
+ "documentation":"Contains details associated to the batch error.
"
}
},
"documentation":"Contains error details for each device that failed to evaluate its position against the geofences in a given geofence collection.
"
@@ -1447,19 +1491,19 @@
"BatchGetDevicePositionRequest":{
"type":"structure",
"required":[
- "DeviceIds",
- "TrackerName"
+ "TrackerName",
+ "DeviceIds"
],
"members":{
- "DeviceIds":{
- "shape":"BatchGetDevicePositionRequestDeviceIdsList",
- "documentation":"Devices whose position you want to retrieve.
"
- },
"TrackerName":{
"shape":"BatchGetDevicePositionRequestTrackerNameString",
"documentation":"The tracker resource retrieving the device position.
",
"location":"uri",
"locationName":"TrackerName"
+ },
+ "DeviceIds":{
+ "shape":"BatchGetDevicePositionRequestDeviceIdsList",
+ "documentation":"Devices whose position you want to retrieve.
"
}
}
},
@@ -1472,22 +1516,22 @@
"BatchGetDevicePositionRequestTrackerNameString":{
"type":"string",
"min":1,
- "pattern":"^[-._\\w]+$"
+ "pattern":"[-._\\w]+"
},
"BatchGetDevicePositionResponse":{
"type":"structure",
"required":[
- "DevicePositions",
- "Errors"
+ "Errors",
+ "DevicePositions"
],
"members":{
- "DevicePositions":{
- "shape":"DevicePositionList",
- "documentation":"Contains device position details such as the device ID, position, and timestamps for when the position was received and sampled.
"
- },
"Errors":{
"shape":"BatchGetDevicePositionErrorList",
"documentation":"Contains error details for each device that failed to send its position to the tracker resource.
"
+ },
+ "DevicePositions":{
+ "shape":"DevicePositionList",
+ "documentation":"Contains device position details such as the device ID, position, and timestamps for when the position was received and sampled.
"
}
}
},
@@ -1519,17 +1563,17 @@
"BatchPutGeofenceError":{
"type":"structure",
"required":[
- "Error",
- "GeofenceId"
+ "GeofenceId",
+ "Error"
],
"members":{
- "Error":{
- "shape":"BatchItemError",
- "documentation":"Contains details associated to the batch error.
"
- },
"GeofenceId":{
"shape":"Id",
"documentation":"The geofence associated with the error message.
"
+ },
+ "Error":{
+ "shape":"BatchItemError",
+ "documentation":"Contains details associated to the batch error.
"
}
},
"documentation":"Contains error details for each geofence that failed to be stored in a given geofence collection.
"
@@ -1574,13 +1618,13 @@
"shape":"Id",
"documentation":"The identifier for the geofence to be stored in a given geofence collection.
"
},
+ "Geometry":{
+ "shape":"GeofenceGeometry",
+ "documentation":"Contains the details to specify the position of the geofence. Can be a polygon, a circle or a polygon encoded in Geobuf format. Including multiple selections will return a validation error.
The geofence polygon format supports a maximum of 1,000 vertices. The Geofence geobuf format supports a maximum of 100,000 vertices.
"
+ },
"GeofenceProperties":{
"shape":"PropertyMap",
"documentation":"Associates one of more properties with the geofence. A property is a key-value pair stored with the geofence and added to any geofence event triggered with that geofence.
Format: \"key\" : \"value\"
"
- },
- "Geometry":{
- "shape":"GeofenceGeometry",
- "documentation":"Contains the details of the position of the geofence. Can be either a polygon or a circle. Including both will return a validation error.
Each geofence polygon can have a maximum of 1,000 vertices.
"
}
},
"documentation":"Contains geofence geometry details.
"
@@ -1588,36 +1632,36 @@
"BatchPutGeofenceResponse":{
"type":"structure",
"required":[
- "Errors",
- "Successes"
+ "Successes",
+ "Errors"
],
"members":{
- "Errors":{
- "shape":"BatchPutGeofenceErrorList",
- "documentation":"Contains additional error details for each geofence that failed to be stored in a geofence collection.
"
- },
"Successes":{
"shape":"BatchPutGeofenceSuccessList",
"documentation":"Contains each geofence that was successfully stored in a geofence collection.
"
+ },
+ "Errors":{
+ "shape":"BatchPutGeofenceErrorList",
+ "documentation":"Contains additional error details for each geofence that failed to be stored in a geofence collection.
"
}
}
},
"BatchPutGeofenceSuccess":{
"type":"structure",
"required":[
- "CreateTime",
"GeofenceId",
+ "CreateTime",
"UpdateTime"
],
"members":{
- "CreateTime":{
- "shape":"Timestamp",
- "documentation":"The timestamp for when the geofence was stored in a geofence collection in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
"
- },
"GeofenceId":{
"shape":"Id",
"documentation":"The geofence successfully stored in a geofence collection.
"
},
+ "CreateTime":{
+ "shape":"Timestamp",
+ "documentation":"The timestamp for when the geofence was stored in a geofence collection in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
"
+ },
"UpdateTime":{
"shape":"Timestamp",
"documentation":"The timestamp for when the geofence was last updated in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
"
@@ -1633,21 +1677,21 @@
"type":"structure",
"required":[
"DeviceId",
- "Error",
- "SampleTime"
+ "SampleTime",
+ "Error"
],
"members":{
"DeviceId":{
"shape":"Id",
"documentation":"The device associated with the failed location update.
"
},
- "Error":{
- "shape":"BatchItemError",
- "documentation":"Contains details related to the error code such as the error code and error message.
"
- },
"SampleTime":{
"shape":"Timestamp",
"documentation":"The timestamp at which the device position was determined. Uses ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
+ },
+ "Error":{
+ "shape":"BatchItemError",
+ "documentation":"Contains details related to the error code such as the error code and error message.
"
}
},
"documentation":"Contains error details for each device that failed to update its position.
"
@@ -1731,43 +1775,43 @@
"location":"uri",
"locationName":"CalculatorName"
},
- "CarModeOptions":{
- "shape":"CalculateRouteCarModeOptions",
- "documentation":"Specifies route preferences when traveling by Car
, such as avoiding routes that use ferries or tolls.
Requirements: TravelMode
must be specified as Car
.
"
- },
- "DepartNow":{
- "shape":"Boolean",
- "documentation":"Sets the time of departure as the current time. Uses the current time to calculate the route matrix. You can't set both DepartureTime
and DepartNow
. If neither is set, the best time of day to travel with the best traffic conditions is used to calculate the route matrix.
Default Value: false
Valid Values: false
| true
"
- },
"DeparturePositions":{
"shape":"CalculateRouteMatrixRequestDeparturePositionsList",
"documentation":"The list of departure (origin) positions for the route matrix. An array of points, each of which is itself a 2-value array defined in WGS 84 format: [longitude, latitude]
. For example, [-123.115, 49.285]
.
Depending on the data provider selected in the route calculator resource there may be additional restrictions on the inputs you can choose. See Position restrictions in the Amazon Location Service Developer Guide.
For route calculators that use Esri as the data provider, if you specify a departure that's not located on a road, Amazon Location moves the position to the nearest road. The snapped value is available in the result in SnappedDeparturePositions
.
Valid Values: [-180 to 180,-90 to 90]
"
},
+ "DestinationPositions":{
+ "shape":"CalculateRouteMatrixRequestDestinationPositionsList",
+ "documentation":"The list of destination positions for the route matrix. An array of points, each of which is itself a 2-value array defined in WGS 84 format: [longitude, latitude]
. For example, [-122.339, 47.615]
Depending on the data provider selected in the route calculator resource there may be additional restrictions on the inputs you can choose. See Position restrictions in the Amazon Location Service Developer Guide.
For route calculators that use Esri as the data provider, if you specify a destination that's not located on a road, Amazon Location moves the position to the nearest road. The snapped value is available in the result in SnappedDestinationPositions
.
Valid Values: [-180 to 180,-90 to 90]
"
+ },
+ "TravelMode":{
+ "shape":"TravelMode",
+ "documentation":"Specifies the mode of transport when calculating a route. Used in estimating the speed of travel and road compatibility.
The TravelMode
you specify also determines how you specify route preferences:
Bicycle
or Motorcycle
are only valid when using Grab
as a data provider, and only within Southeast Asia.
Truck
is not available for Grab.
For more information about using Grab as a data provider, see GrabMaps in the Amazon Location Service Developer Guide.
Default Value: Car
"
+ },
"DepartureTime":{
"shape":"Timestamp",
"documentation":"Specifies the desired time of departure. Uses the given time to calculate the route matrix. You can't set both DepartureTime
and DepartNow
. If neither is set, the best time of day to travel with the best traffic conditions is used to calculate the route matrix.
Setting a departure time in the past returns a 400 ValidationException
error.
"
},
- "DestinationPositions":{
- "shape":"CalculateRouteMatrixRequestDestinationPositionsList",
- "documentation":"The list of destination positions for the route matrix. An array of points, each of which is itself a 2-value array defined in WGS 84 format: [longitude, latitude]
. For example, [-122.339, 47.615]
Depending on the data provider selected in the route calculator resource there may be additional restrictions on the inputs you can choose. See Position restrictions in the Amazon Location Service Developer Guide.
For route calculators that use Esri as the data provider, if you specify a destination that's not located on a road, Amazon Location moves the position to the nearest road. The snapped value is available in the result in SnappedDestinationPositions
.
Valid Values: [-180 to 180,-90 to 90]
"
+ "DepartNow":{
+ "shape":"Boolean",
+ "documentation":"Sets the time of departure as the current time. Uses the current time to calculate the route matrix. You can't set both DepartureTime
and DepartNow
. If neither is set, the best time of day to travel with the best traffic conditions is used to calculate the route matrix.
Default Value: false
Valid Values: false
| true
"
},
"DistanceUnit":{
"shape":"DistanceUnit",
"documentation":"Set the unit system to specify the distance.
Default Value: Kilometers
"
},
+ "CarModeOptions":{
+ "shape":"CalculateRouteCarModeOptions",
+ "documentation":"Specifies route preferences when traveling by Car
, such as avoiding routes that use ferries or tolls.
Requirements: TravelMode
must be specified as Car
.
"
+ },
+ "TruckModeOptions":{
+ "shape":"CalculateRouteTruckModeOptions",
+ "documentation":"Specifies route preferences when traveling by Truck
, such as avoiding routes that use ferries or tolls, and truck specifications to consider when choosing an optimal road.
Requirements: TravelMode
must be specified as Truck
.
"
+ },
"Key":{
"shape":"ApiKey",
"documentation":"The optional API key to authorize the request.
",
"location":"querystring",
"locationName":"key"
- },
- "TravelMode":{
- "shape":"TravelMode",
- "documentation":"Specifies the mode of transport when calculating a route. Used in estimating the speed of travel and road compatibility.
The TravelMode
you specify also determines how you specify route preferences:
Bicycle
or Motorcycle
are only valid when using Grab
as a data provider, and only within Southeast Asia.
Truck
is not available for Grab.
For more information about using Grab as a data provider, see GrabMaps in the Amazon Location Service Developer Guide.
Default Value: Car
"
- },
- "TruckModeOptions":{
- "shape":"CalculateRouteTruckModeOptions",
- "documentation":"Specifies route preferences when traveling by Truck
, such as avoiding routes that use ferries or tolls, and truck specifications to consider when choosing an optimal road.
Requirements: TravelMode
must be specified as Truck
.
"
}
}
},
@@ -1825,26 +1869,26 @@
"type":"structure",
"required":[
"DataSource",
- "DistanceUnit",
+ "RouteCount",
"ErrorCount",
- "RouteCount"
+ "DistanceUnit"
],
"members":{
"DataSource":{
"shape":"String",
"documentation":"The data provider of traffic and road network data used to calculate the routes. Indicates one of the available providers:
For more information about data providers, see Amazon Location Service data providers.
"
},
- "DistanceUnit":{
- "shape":"DistanceUnit",
- "documentation":"The unit of measurement for route distances.
"
+ "RouteCount":{
+ "shape":"CalculateRouteMatrixSummaryRouteCountInteger",
+ "documentation":"The count of cells in the route matrix. Equal to the number of DeparturePositions
multiplied by the number of DestinationPositions
.
"
},
"ErrorCount":{
"shape":"CalculateRouteMatrixSummaryErrorCountInteger",
"documentation":"The count of error results in the route matrix. If this number is 0, all routes were calculated successfully.
"
},
- "RouteCount":{
- "shape":"CalculateRouteMatrixSummaryRouteCountInteger",
- "documentation":"The count of cells in the route matrix. Equal to the number of DeparturePositions
multiplied by the number of DestinationPositions
.
"
+ "DistanceUnit":{
+ "shape":"DistanceUnit",
+ "documentation":"The unit of measurement for route distances.
"
}
},
"documentation":"A summary of the calculated route matrix.
"
@@ -1869,35 +1913,35 @@
"DestinationPosition"
],
"members":{
- "ArrivalTime":{
- "shape":"Timestamp",
- "documentation":"Specifies the desired time of arrival. Uses the given time to calculate the route. Otherwise, the best time of day to travel with the best traffic conditions is used to calculate the route.
ArrivalTime is not supported Esri.
"
- },
"CalculatorName":{
"shape":"ResourceName",
"documentation":"The name of the route calculator resource that you want to use to calculate the route.
",
"location":"uri",
"locationName":"CalculatorName"
},
- "CarModeOptions":{
- "shape":"CalculateRouteCarModeOptions",
- "documentation":"Specifies route preferences when traveling by Car
, such as avoiding routes that use ferries or tolls.
Requirements: TravelMode
must be specified as Car
.
"
- },
- "DepartNow":{
- "shape":"Boolean",
- "documentation":"Sets the time of departure as the current time. Uses the current time to calculate a route. Otherwise, the best time of day to travel with the best traffic conditions is used to calculate the route.
Default Value: false
Valid Values: false
| true
"
- },
"DeparturePosition":{
"shape":"Position",
"documentation":"The start position for the route. Defined in World Geodetic System (WGS 84) format: [longitude, latitude]
.
If you specify a departure that's not located on a road, Amazon Location moves the position to the nearest road. If Esri is the provider for your route calculator, specifying a route that is longer than 400 km returns a 400 RoutesValidationException
error.
Valid Values: [-180 to 180,-90 to 90]
"
},
+ "DestinationPosition":{
+ "shape":"Position",
+ "documentation":"The finish position for the route. Defined in World Geodetic System (WGS 84) format: [longitude, latitude]
.
If you specify a destination that's not located on a road, Amazon Location moves the position to the nearest road.
Valid Values: [-180 to 180,-90 to 90]
"
+ },
+ "WaypointPositions":{
+ "shape":"CalculateRouteRequestWaypointPositionsList",
+ "documentation":"Specifies an ordered list of up to 23 intermediate positions to include along a route between the departure position and destination position.
-
For example, from the DeparturePosition
[-123.115, 49.285]
, the route follows the order that the waypoint positions are given [[-122.757, 49.0021],[-122.349, 47.620]]
If you specify a waypoint position that's not located on a road, Amazon Location moves the position to the nearest road.
Specifying more than 23 waypoints returns a 400 ValidationException
error.
If Esri is the provider for your route calculator, specifying a route that is longer than 400 km returns a 400 RoutesValidationException
error.
Valid Values: [-180 to 180,-90 to 90]
"
+ },
+ "TravelMode":{
+ "shape":"TravelMode",
+ "documentation":"Specifies the mode of transport when calculating a route. Used in estimating the speed of travel and road compatibility. You can choose Car
, Truck
, Walking
, Bicycle
or Motorcycle
as options for the TravelMode
.
Bicycle
and Motorcycle
are only valid when using Grab as a data provider, and only within Southeast Asia.
Truck
is not available for Grab.
For more details on the using Grab for routing, including areas of coverage, see GrabMaps in the Amazon Location Service Developer Guide.
The TravelMode
you specify also determines how you specify route preferences:
Default Value: Car
"
+ },
"DepartureTime":{
"shape":"Timestamp",
"documentation":"Specifies the desired time of departure. Uses the given time to calculate the route. Otherwise, the best time of day to travel with the best traffic conditions is used to calculate the route.
"
},
- "DestinationPosition":{
- "shape":"Position",
- "documentation":"The finish position for the route. Defined in World Geodetic System (WGS 84) format: [longitude, latitude]
.
If you specify a destination that's not located on a road, Amazon Location moves the position to the nearest road.
Valid Values: [-180 to 180,-90 to 90]
"
+ "DepartNow":{
+ "shape":"Boolean",
+ "documentation":"Sets the time of departure as the current time. Uses the current time to calculate a route. Otherwise, the best time of day to travel with the best traffic conditions is used to calculate the route.
Default Value: false
Valid Values: false
| true
"
},
"DistanceUnit":{
"shape":"DistanceUnit",
@@ -1907,27 +1951,27 @@
"shape":"Boolean",
"documentation":"Set to include the geometry details in the result for each path between a pair of positions.
Default Value: false
Valid Values: false
| true
"
},
- "Key":{
- "shape":"ApiKey",
- "documentation":"The optional API key to authorize the request.
",
- "location":"querystring",
- "locationName":"key"
- },
- "OptimizeFor":{
- "shape":"OptimizationMode",
- "documentation":"Specifies the distance to optimize for when calculating a route.
"
- },
- "TravelMode":{
- "shape":"TravelMode",
- "documentation":"Specifies the mode of transport when calculating a route. Used in estimating the speed of travel and road compatibility. You can choose Car
, Truck
, Walking
, Bicycle
or Motorcycle
as options for the TravelMode
.
Bicycle
and Motorcycle
are only valid when using Grab as a data provider, and only within Southeast Asia.
Truck
is not available for Grab.
For more details on the using Grab for routing, including areas of coverage, see GrabMaps in the Amazon Location Service Developer Guide.
The TravelMode
you specify also determines how you specify route preferences:
Default Value: Car
"
+ "CarModeOptions":{
+ "shape":"CalculateRouteCarModeOptions",
+ "documentation":"Specifies route preferences when traveling by Car
, such as avoiding routes that use ferries or tolls.
Requirements: TravelMode
must be specified as Car
.
"
},
"TruckModeOptions":{
"shape":"CalculateRouteTruckModeOptions",
"documentation":"Specifies route preferences when traveling by Truck
, such as avoiding routes that use ferries or tolls, and truck specifications to consider when choosing an optimal road.
Requirements: TravelMode
must be specified as Truck
.
"
},
- "WaypointPositions":{
- "shape":"CalculateRouteRequestWaypointPositionsList",
- "documentation":"Specifies an ordered list of up to 23 intermediate positions to include along a route between the departure position and destination position.
-
For example, from the DeparturePosition
[-123.115, 49.285]
, the route follows the order that the waypoint positions are given [[-122.757, 49.0021],[-122.349, 47.620]]
If you specify a waypoint position that's not located on a road, Amazon Location moves the position to the nearest road.
Specifying more than 23 waypoints returns a 400 ValidationException
error.
If Esri is the provider for your route calculator, specifying a route that is longer than 400 km returns a 400 RoutesValidationException
error.
Valid Values: [-180 to 180,-90 to 90]
"
+ "ArrivalTime":{
+ "shape":"Timestamp",
+ "documentation":"Specifies the desired time of arrival. Uses the given time to calculate the route. Otherwise, the best time of day to travel with the best traffic conditions is used to calculate the route.
ArrivalTime is not supported Esri.
"
+ },
+ "OptimizeFor":{
+ "shape":"OptimizationMode",
+ "documentation":"Specifies the distance to optimize for when calculating a route.
"
+ },
+ "Key":{
+ "shape":"ApiKey",
+ "documentation":"The optional API key to authorize the request.
",
+ "location":"querystring",
+ "locationName":"key"
}
}
},
@@ -1958,32 +2002,32 @@
"CalculateRouteSummary":{
"type":"structure",
"required":[
+ "RouteBBox",
"DataSource",
"Distance",
- "DistanceUnit",
"DurationSeconds",
- "RouteBBox"
+ "DistanceUnit"
],
"members":{
- "DataSource":{
- "shape":"String",
+ "RouteBBox":{
+ "shape":"BoundingBox",
+ "documentation":"Specifies a geographical box surrounding a route. Used to zoom into a route when displaying it in a map. For example, [min x, min y, max x, max y]
.
The first 2 bbox
parameters describe the lower southwest corner:
The next 2 bbox
parameters describe the upper northeast corner:
-
The third bbox
position is the X coordinate, or longitude of the upper northeast corner.
-
The fourth bbox
position is the Y coordinate, or latitude of the upper northeast corner.
"
+ },
+ "DataSource":{
+ "shape":"String",
"documentation":"The data provider of traffic and road network data used to calculate the route. Indicates one of the available providers:
For more information about data providers, see Amazon Location Service data providers.
"
},
"Distance":{
"shape":"CalculateRouteSummaryDistanceDouble",
"documentation":"The total distance covered by the route. The sum of the distance travelled between every stop on the route.
If Esri is the data source for the route calculator, the route distance can’t be greater than 400 km. If the route exceeds 400 km, the response is a 400 RoutesValidationException
error.
"
},
- "DistanceUnit":{
- "shape":"DistanceUnit",
- "documentation":"The unit of measurement for route distances.
"
- },
"DurationSeconds":{
"shape":"CalculateRouteSummaryDurationSecondsDouble",
"documentation":"The total travel time for the route measured in seconds. The sum of the travel time between every stop on the route.
"
},
- "RouteBBox":{
- "shape":"BoundingBox",
- "documentation":"Specifies a geographical box surrounding a route. Used to zoom into a route when displaying it in a map. For example, [min x, min y, max x, max y]
.
The first 2 bbox
parameters describe the lower southwest corner:
The next 2 bbox
parameters describe the upper northeast corner:
-
The third bbox
position is the X coordinate, or longitude of the upper northeast corner.
-
The fourth bbox
position is the Y coordinate, or latitude of the upper northeast corner.
"
+ "DistanceUnit":{
+ "shape":"DistanceUnit",
+ "documentation":"The unit of measurement for route distances.
"
}
},
"documentation":"A summary of the calculated route.
"
@@ -2020,6 +2064,23 @@
},
"documentation":"Contains details about additional route preferences for requests that specify TravelMode
as Truck
.
"
},
+ "CellSignals":{
+ "type":"structure",
+ "required":["LteCellDetails"],
+ "members":{
+ "LteCellDetails":{
+ "shape":"CellSignalsLteCellDetailsList",
+ "documentation":"Information about the Long-Term Evolution (LTE) network the device is connected to.
"
+ }
+ },
+ "documentation":"The cellular network communication infrastructure that the device uses.
"
+ },
+ "CellSignalsLteCellDetailsList":{
+ "type":"list",
+ "member":{"shape":"LteCellDetails"},
+ "max":16,
+ "min":1
+ },
"Circle":{
"type":"structure",
"required":[
@@ -2055,25 +2116,21 @@
},
"exception":true
},
- "CountryCode":{
- "type":"string",
- "pattern":"^[A-Z]{3}$"
- },
"CountryCode3":{
"type":"string",
"max":3,
"min":3,
- "pattern":"^[A-Z]{3}$"
+ "pattern":"[A-Z]{3}"
},
"CountryCode3OrEmpty":{
"type":"string",
"max":3,
"min":0,
- "pattern":"^[A-Z]{3}$|^$"
+ "pattern":"[A-Z]{3}$|^"
},
"CountryCodeList":{
"type":"list",
- "member":{"shape":"CountryCode"},
+ "member":{"shape":"CountryCode3"},
"max":100,
"min":1
},
@@ -2085,14 +2142,6 @@
"shape":"ResourceName",
"documentation":"A custom name for the geofence collection.
Requirements:
-
Contain only alphanumeric characters (A–Z, a–z, 0–9), hyphens (-), periods (.), and underscores (_).
-
Must be a unique geofence collection name.
-
No spaces allowed. For example, ExampleGeofenceCollection
.
"
},
- "Description":{
- "shape":"ResourceDescription",
- "documentation":"An optional description for the geofence collection.
"
- },
- "KmsKeyId":{
- "shape":"KmsKeyId",
- "documentation":"A key identifier for an Amazon Web Services KMS customer managed key. Enter a key ID, key ARN, alias name, or alias ARN.
"
- },
"PricingPlan":{
"shape":"PricingPlan",
"documentation":"No longer used. If included, the only allowed value is RequestBasedUsage
.
",
@@ -2105,28 +2154,36 @@
"deprecated":true,
"deprecatedMessage":"Deprecated. No longer allowed."
},
+ "Description":{
+ "shape":"ResourceDescription",
+ "documentation":"An optional description for the geofence collection.
"
+ },
"Tags":{
"shape":"TagMap",
"documentation":"Applies one or more tags to the geofence collection. A tag is a key-value pair helps manage, identify, search, and filter your resources by labelling them.
Format: \"key\" : \"value\"
Restrictions:
-
Maximum 50 tags per resource
-
Each resource tag must be unique with a maximum of one value.
-
Maximum key length: 128 Unicode characters in UTF-8
-
Maximum value length: 256 Unicode characters in UTF-8
-
Can use alphanumeric characters (A–Z, a–z, 0–9), and the following characters: + - = . _ : / @.
-
Cannot use \"aws:\" as a prefix for a key.
"
+ },
+ "KmsKeyId":{
+ "shape":"KmsKeyId",
+ "documentation":"A key identifier for an Amazon Web Services KMS customer managed key. Enter a key ID, key ARN, alias name, or alias ARN.
"
}
}
},
"CreateGeofenceCollectionResponse":{
"type":"structure",
"required":[
- "CollectionArn",
"CollectionName",
+ "CollectionArn",
"CreateTime"
],
"members":{
- "CollectionArn":{
- "shape":"Arn",
- "documentation":"The Amazon Resource Name (ARN) for the geofence collection resource. Used when you need to specify a resource across all Amazon Web Services.
"
- },
"CollectionName":{
"shape":"ResourceName",
"documentation":"The name for the geofence collection.
"
},
+ "CollectionArn":{
+ "shape":"Arn",
+ "documentation":"The Amazon Resource Name (ARN) for the geofence collection resource. Used when you need to specify a resource across all Amazon Web Services.
"
+ },
"CreateTime":{
"shape":"Timestamp",
"documentation":"The timestamp for when the geofence collection was created in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
"
@@ -2140,6 +2197,14 @@
"Restrictions"
],
"members":{
+ "KeyName":{
+ "shape":"ResourceName",
+ "documentation":"A custom name for the API key resource.
Requirements:
-
Contain only alphanumeric characters (A–Z, a–z, 0–9), hyphens (-), periods (.), and underscores (_).
-
Must be a unique API key name.
-
No spaces allowed. For example, ExampleAPIKey
.
"
+ },
+ "Restrictions":{
+ "shape":"ApiKeyRestrictions",
+ "documentation":"The API key restrictions for the API key resource.
"
+ },
"Description":{
"shape":"ResourceDescription",
"documentation":"An optional description for the API key resource.
"
@@ -2148,18 +2213,10 @@
"shape":"Timestamp",
"documentation":"The optional timestamp for when the API key resource will expire in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
. One of NoExpiry
or ExpireTime
must be set.
"
},
- "KeyName":{
- "shape":"ResourceName",
- "documentation":"A custom name for the API key resource.
Requirements:
-
Contain only alphanumeric characters (A–Z, a–z, 0–9), hyphens (-), periods (.), and underscores (_).
-
Must be a unique API key name.
-
No spaces allowed. For example, ExampleAPIKey
.
"
- },
"NoExpiry":{
"shape":"Boolean",
"documentation":"Optionally set to true
to set no expiration time for the API key. One of NoExpiry
or ExpireTime
must be set.
"
},
- "Restrictions":{
- "shape":"ApiKeyRestrictions",
- "documentation":"The API key restrictions for the API key resource.
"
- },
"Tags":{
"shape":"TagMap",
"documentation":"Applies one or more tags to the map resource. A tag is a key-value pair that helps manage, identify, search, and filter your resources by labelling them.
Format: \"key\" : \"value\"
Restrictions:
-
Maximum 50 tags per resource
-
Each resource tag must be unique with a maximum of one value.
-
Maximum key length: 128 Unicode characters in UTF-8
-
Maximum value length: 256 Unicode characters in UTF-8
-
Can use alphanumeric characters (A–Z, a–z, 0–9), and the following characters: + - = . _ : / @.
-
Cannot use \"aws:\" as a prefix for a key.
"
@@ -2169,16 +2226,12 @@
"CreateKeyResponse":{
"type":"structure",
"required":[
- "CreateTime",
"Key",
"KeyArn",
- "KeyName"
+ "KeyName",
+ "CreateTime"
],
"members":{
- "CreateTime":{
- "shape":"Timestamp",
- "documentation":"The timestamp for when the API key resource was created in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
- },
"Key":{
"shape":"ApiKey",
"documentation":"The key value/string of an API key. This value is used when making API calls to authorize the call. For example, see GetMapGlyphs.
"
@@ -2190,34 +2243,38 @@
"KeyName":{
"shape":"ResourceName",
"documentation":"The name of the API key resource.
"
+ },
+ "CreateTime":{
+ "shape":"Timestamp",
+ "documentation":"The timestamp for when the API key resource was created in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
}
}
},
"CreateMapRequest":{
"type":"structure",
"required":[
- "Configuration",
- "MapName"
+ "MapName",
+ "Configuration"
],
"members":{
- "Configuration":{
- "shape":"MapConfiguration",
- "documentation":"Specifies the MapConfiguration
, including the map style, for the map resource that you create. The map style defines the look of maps and the data provider for your map resource.
"
- },
- "Description":{
- "shape":"ResourceDescription",
- "documentation":"An optional description for the map resource.
"
- },
"MapName":{
"shape":"ResourceName",
"documentation":"The name for the map resource.
Requirements:
-
Must contain only alphanumeric characters (A–Z, a–z, 0–9), hyphens (-), periods (.), and underscores (_).
-
Must be a unique map resource name.
-
No spaces allowed. For example, ExampleMap
.
"
},
+ "Configuration":{
+ "shape":"MapConfiguration",
+ "documentation":"Specifies the MapConfiguration
, including the map style, for the map resource that you create. The map style defines the look of maps and the data provider for your map resource.
"
+ },
"PricingPlan":{
"shape":"PricingPlan",
"documentation":"No longer used. If included, the only allowed value is RequestBasedUsage
.
",
"deprecated":true,
"deprecatedMessage":"Deprecated. If included, the only allowed value is RequestBasedUsage."
},
+ "Description":{
+ "shape":"ResourceDescription",
+ "documentation":"An optional description for the map resource.
"
+ },
"Tags":{
"shape":"TagMap",
"documentation":"Applies one or more tags to the map resource. A tag is a key-value pair helps manage, identify, search, and filter your resources by labelling them.
Format: \"key\" : \"value\"
Restrictions:
-
Maximum 50 tags per resource
-
Each resource tag must be unique with a maximum of one value.
-
Maximum key length: 128 Unicode characters in UTF-8
-
Maximum value length: 256 Unicode characters in UTF-8
-
Can use alphanumeric characters (A–Z, a–z, 0–9), and the following characters: + - = . _ : / @.
-
Cannot use \"aws:\" as a prefix for a key.
"
@@ -2227,54 +2284,54 @@
"CreateMapResponse":{
"type":"structure",
"required":[
- "CreateTime",
+ "MapName",
"MapArn",
- "MapName"
+ "CreateTime"
],
"members":{
- "CreateTime":{
- "shape":"Timestamp",
- "documentation":"The timestamp for when the map resource was created in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
+ "MapName":{
+ "shape":"ResourceName",
+ "documentation":"The name of the map resource.
"
},
"MapArn":{
"shape":"GeoArn",
"documentation":"The Amazon Resource Name (ARN) for the map resource. Used to specify a resource across all Amazon Web Services.
"
},
- "MapName":{
- "shape":"ResourceName",
- "documentation":"The name of the map resource.
"
+ "CreateTime":{
+ "shape":"Timestamp",
+ "documentation":"The timestamp for when the map resource was created in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
}
}
},
"CreatePlaceIndexRequest":{
"type":"structure",
"required":[
- "DataSource",
- "IndexName"
+ "IndexName",
+ "DataSource"
],
"members":{
- "DataSource":{
- "shape":"String",
- "documentation":"Specifies the geospatial data provider for the new place index.
This field is case-sensitive. Enter the valid values as shown. For example, entering HERE
returns an error.
Valid values include:
For additional information , see Data providers on the Amazon Location Service Developer Guide.
"
- },
- "DataSourceConfiguration":{
- "shape":"DataSourceConfiguration",
- "documentation":"Specifies the data storage option requesting Places.
"
- },
- "Description":{
- "shape":"ResourceDescription",
- "documentation":"The optional description for the place index resource.
"
- },
"IndexName":{
"shape":"ResourceName",
"documentation":"The name of the place index resource.
Requirements:
-
Contain only alphanumeric characters (A–Z, a–z, 0–9), hyphens (-), periods (.), and underscores (_).
-
Must be a unique place index resource name.
-
No spaces allowed. For example, ExamplePlaceIndex
.
"
},
+ "DataSource":{
+ "shape":"String",
+ "documentation":"Specifies the geospatial data provider for the new place index.
This field is case-sensitive. Enter the valid values as shown. For example, entering HERE
returns an error.
Valid values include:
For additional information , see Data providers on the Amazon Location Service Developer Guide.
"
+ },
"PricingPlan":{
"shape":"PricingPlan",
"documentation":"No longer used. If included, the only allowed value is RequestBasedUsage
.
",
"deprecated":true,
"deprecatedMessage":"Deprecated. If included, the only allowed value is RequestBasedUsage."
},
+ "Description":{
+ "shape":"ResourceDescription",
+ "documentation":"The optional description for the place index resource.
"
+ },
+ "DataSourceConfiguration":{
+ "shape":"DataSourceConfiguration",
+ "documentation":"Specifies the data storage option requesting Places.
"
+ },
"Tags":{
"shape":"TagMap",
"documentation":"Applies one or more tags to the place index resource. A tag is a key-value pair that helps you manage, identify, search, and filter your resources.
Format: \"key\" : \"value\"
Restrictions:
-
Maximum 50 tags per resource.
-
Each tag key must be unique and must have exactly one associated value.
-
Maximum key length: 128 Unicode characters in UTF-8.
-
Maximum value length: 256 Unicode characters in UTF-8.
-
Can use alphanumeric characters (A–Z, a–z, 0–9), and the following characters: + - = . _ : / @
-
Cannot use \"aws:\" as a prefix for a key.
"
@@ -2284,22 +2341,22 @@
"CreatePlaceIndexResponse":{
"type":"structure",
"required":[
- "CreateTime",
+ "IndexName",
"IndexArn",
- "IndexName"
+ "CreateTime"
],
"members":{
- "CreateTime":{
- "shape":"Timestamp",
- "documentation":"The timestamp for when the place index resource was created in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
+ "IndexName":{
+ "shape":"ResourceName",
+ "documentation":"The name for the place index resource.
"
},
"IndexArn":{
"shape":"GeoArn",
"documentation":"The Amazon Resource Name (ARN) for the place index resource. Used to specify a resource across Amazon Web Services.
"
},
- "IndexName":{
- "shape":"ResourceName",
- "documentation":"The name for the place index resource.
"
+ "CreateTime":{
+ "shape":"Timestamp",
+ "documentation":"The timestamp for when the place index resource was created in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
}
}
},
@@ -2318,16 +2375,16 @@
"shape":"String",
"documentation":"Specifies the data provider of traffic and road network data.
This field is case-sensitive. Enter the valid values as shown. For example, entering HERE
returns an error.
Valid values include:
For additional information , see Data providers on the Amazon Location Service Developer Guide.
"
},
- "Description":{
- "shape":"ResourceDescription",
- "documentation":"The optional description for the route calculator resource.
"
- },
"PricingPlan":{
"shape":"PricingPlan",
"documentation":"No longer used. If included, the only allowed value is RequestBasedUsage
.
",
"deprecated":true,
"deprecatedMessage":"Deprecated. If included, the only allowed value is RequestBasedUsage."
},
+ "Description":{
+ "shape":"ResourceDescription",
+ "documentation":"The optional description for the route calculator resource.
"
+ },
"Tags":{
"shape":"TagMap",
"documentation":"Applies one or more tags to the route calculator resource. A tag is a key-value pair helps manage, identify, search, and filter your resources by labelling them.
Format: \"key\" : \"value\"
Restrictions:
-
Maximum 50 tags per resource
-
Each resource tag must be unique with a maximum of one value.
-
Maximum key length: 128 Unicode characters in UTF-8
-
Maximum value length: 256 Unicode characters in UTF-8
-
Can use alphanumeric characters (A–Z, a–z, 0–9), and the following characters: + - = . _ : / @.
-
Cannot use \"aws:\" as a prefix for a key.
"
@@ -2337,19 +2394,19 @@
"CreateRouteCalculatorResponse":{
"type":"structure",
"required":[
- "CalculatorArn",
"CalculatorName",
+ "CalculatorArn",
"CreateTime"
],
"members":{
- "CalculatorArn":{
- "shape":"GeoArn",
- "documentation":"The Amazon Resource Name (ARN) for the route calculator resource. Use the ARN when you specify a resource across all Amazon Web Services.
"
- },
"CalculatorName":{
"shape":"ResourceName",
"documentation":"The name of the route calculator resource.
"
},
+ "CalculatorArn":{
+ "shape":"GeoArn",
+ "documentation":"The Amazon Resource Name (ARN) for the route calculator resource. Use the ARN when you specify a resource across all Amazon Web Services.
"
+ },
"CreateTime":{
"shape":"Timestamp",
"documentation":"The timestamp when the route calculator resource was created in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
@@ -2360,25 +2417,9 @@
"type":"structure",
"required":["TrackerName"],
"members":{
- "Description":{
- "shape":"ResourceDescription",
- "documentation":"An optional description for the tracker resource.
"
- },
- "EventBridgeEnabled":{
- "shape":"Boolean",
- "documentation":"Whether to enable position UPDATE
events from this tracker to be sent to EventBridge.
You do not need enable this feature to get ENTER
and EXIT
events for geofences with this tracker. Those events are always sent to EventBridge.
"
- },
- "KmsKeyEnableGeospatialQueries":{
- "shape":"Boolean",
- "documentation":"Enables GeospatialQueries
for a tracker that uses a Amazon Web Services KMS customer managed key.
This parameter is only used if you are using a KMS customer managed key.
If you wish to encrypt your data using your own KMS customer managed key, then the Bounding Polygon Queries feature will be disabled by default. This is because by using this feature, a representation of your device positions will not be encrypted using the your KMS managed key. The exact device position, however; is still encrypted using your managed key.
You can choose to opt-in to the Bounding Polygon Quseries feature. This is done by setting the KmsKeyEnableGeospatialQueries
parameter to true when creating or updating a Tracker.
"
- },
- "KmsKeyId":{
- "shape":"KmsKeyId",
- "documentation":"A key identifier for an Amazon Web Services KMS customer managed key. Enter a key ID, key ARN, alias name, or alias ARN.
"
- },
- "PositionFiltering":{
- "shape":"PositionFiltering",
- "documentation":"Specifies the position filtering for the tracker resource.
Valid values:
-
TimeBased
- Location updates are evaluated against linked geofence collections, but not every location update is stored. If your update frequency is more often than 30 seconds, only one update per 30 seconds is stored for each unique device ID.
-
DistanceBased
- If the device has moved less than 30 m (98.4 ft), location updates are ignored. Location updates within this area are neither evaluated against linked geofence collections, nor stored. This helps control costs by reducing the number of geofence evaluations and historical device positions to paginate through. Distance-based filtering can also reduce the effects of GPS noise when displaying device trajectories on a map.
-
AccuracyBased
- If the device has moved less than the measured accuracy, location updates are ignored. For example, if two consecutive updates from a device have a horizontal accuracy of 5 m and 10 m, the second update is ignored if the device has moved less than 15 m. Ignored location updates are neither evaluated against linked geofence collections, nor stored. This can reduce the effects of GPS noise when displaying device trajectories on a map, and can help control your costs by reducing the number of geofence evaluations.
This field is optional. If not specified, the default value is TimeBased
.
"
+ "TrackerName":{
+ "shape":"ResourceName",
+ "documentation":"The name for the tracker resource.
Requirements:
-
Contain only alphanumeric characters (A-Z, a-z, 0-9) , hyphens (-), periods (.), and underscores (_).
-
Must be a unique tracker resource name.
-
No spaces allowed. For example, ExampleTracker
.
"
},
"PricingPlan":{
"shape":"PricingPlan",
@@ -2386,41 +2427,57 @@
"deprecated":true,
"deprecatedMessage":"Deprecated. If included, the only allowed value is RequestBasedUsage."
},
+ "KmsKeyId":{
+ "shape":"KmsKeyId",
+ "documentation":"A key identifier for an Amazon Web Services KMS customer managed key. Enter a key ID, key ARN, alias name, or alias ARN.
"
+ },
"PricingPlanDataSource":{
"shape":"String",
"documentation":"This parameter is no longer used.
",
"deprecated":true,
"deprecatedMessage":"Deprecated. No longer allowed."
},
+ "Description":{
+ "shape":"ResourceDescription",
+ "documentation":"An optional description for the tracker resource.
"
+ },
"Tags":{
"shape":"TagMap",
"documentation":"Applies one or more tags to the tracker resource. A tag is a key-value pair helps manage, identify, search, and filter your resources by labelling them.
Format: \"key\" : \"value\"
Restrictions:
-
Maximum 50 tags per resource
-
Each resource tag must be unique with a maximum of one value.
-
Maximum key length: 128 Unicode characters in UTF-8
-
Maximum value length: 256 Unicode characters in UTF-8
-
Can use alphanumeric characters (A–Z, a–z, 0–9), and the following characters: + - = . _ : / @.
-
Cannot use \"aws:\" as a prefix for a key.
"
},
- "TrackerName":{
- "shape":"ResourceName",
- "documentation":"The name for the tracker resource.
Requirements:
-
Contain only alphanumeric characters (A-Z, a-z, 0-9) , hyphens (-), periods (.), and underscores (_).
-
Must be a unique tracker resource name.
-
No spaces allowed. For example, ExampleTracker
.
"
+ "PositionFiltering":{
+ "shape":"PositionFiltering",
+ "documentation":"Specifies the position filtering for the tracker resource.
Valid values:
-
TimeBased
- Location updates are evaluated against linked geofence collections, but not every location update is stored. If your update frequency is more often than 30 seconds, only one update per 30 seconds is stored for each unique device ID.
-
DistanceBased
- If the device has moved less than 30 m (98.4 ft), location updates are ignored. Location updates within this area are neither evaluated against linked geofence collections, nor stored. This helps control costs by reducing the number of geofence evaluations and historical device positions to paginate through. Distance-based filtering can also reduce the effects of GPS noise when displaying device trajectories on a map.
-
AccuracyBased
- If the device has moved less than the measured accuracy, location updates are ignored. For example, if two consecutive updates from a device have a horizontal accuracy of 5 m and 10 m, the second update is ignored if the device has moved less than 15 m. Ignored location updates are neither evaluated against linked geofence collections, nor stored. This can reduce the effects of GPS noise when displaying device trajectories on a map, and can help control your costs by reducing the number of geofence evaluations.
This field is optional. If not specified, the default value is TimeBased
.
"
+ },
+ "EventBridgeEnabled":{
+ "shape":"Boolean",
+ "documentation":"Whether to enable position UPDATE
events from this tracker to be sent to EventBridge.
You do not need enable this feature to get ENTER
and EXIT
events for geofences with this tracker. Those events are always sent to EventBridge.
"
+ },
+ "KmsKeyEnableGeospatialQueries":{
+ "shape":"Boolean",
+ "documentation":"Enables GeospatialQueries
for a tracker that uses a Amazon Web Services KMS customer managed key.
This parameter is only used if you are using a KMS customer managed key.
If you wish to encrypt your data using your own KMS customer managed key, then the Bounding Polygon Queries feature will be disabled by default. This is because by using this feature, a representation of your device positions will not be encrypted using the your KMS managed key. The exact device position, however; is still encrypted using your managed key.
You can choose to opt-in to the Bounding Polygon Quseries feature. This is done by setting the KmsKeyEnableGeospatialQueries
parameter to true when creating or updating a Tracker.
"
}
}
},
"CreateTrackerResponse":{
"type":"structure",
"required":[
- "CreateTime",
+ "TrackerName",
"TrackerArn",
- "TrackerName"
+ "CreateTime"
],
"members":{
- "CreateTime":{
- "shape":"Timestamp",
- "documentation":"The timestamp for when the tracker resource was created in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
+ "TrackerName":{
+ "shape":"ResourceName",
+ "documentation":"The name of the tracker resource.
"
},
"TrackerArn":{
"shape":"Arn",
"documentation":"The Amazon Resource Name (ARN) for the tracker resource. Used when you need to specify a resource across all Amazon Web Services.
"
},
- "TrackerName":{
- "shape":"ResourceName",
- "documentation":"The name of the tracker resource.
"
+ "CreateTime":{
+ "shape":"Timestamp",
+ "documentation":"The timestamp for when the tracker resource was created in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
}
}
},
@@ -2428,7 +2485,7 @@
"type":"string",
"max":100,
"min":1,
- "pattern":"^[-._\\w]+$"
+ "pattern":"[-._\\w]+"
},
"CustomLayerList":{
"type":"list",
@@ -2467,17 +2524,17 @@
"type":"structure",
"required":["KeyName"],
"members":{
- "ForceDelete":{
- "shape":"Boolean",
- "documentation":"ForceDelete bypasses an API key's expiry conditions and deletes the key. Set the parameter true
to delete the key or to false
to not preemptively delete the API key.
Valid values: true
, or false
.
Required: No
This action is irreversible. Only use ForceDelete if you are certain the key is no longer in use.
",
- "location":"querystring",
- "locationName":"forceDelete"
- },
"KeyName":{
"shape":"ResourceName",
"documentation":"The name of the API key to delete.
",
"location":"uri",
"locationName":"KeyName"
+ },
+ "ForceDelete":{
+ "shape":"Boolean",
+ "documentation":"ForceDelete bypasses an API key's expiry conditions and deletes the key. Set the parameter true
to delete the key or to false
to not preemptively delete the API key.
Valid values: true
, or false
.
Required: No
This action is irreversible. Only use ForceDelete if you are certain the key is no longer in use.
",
+ "location":"querystring",
+ "locationName":"forceDelete"
}
}
},
@@ -2569,37 +2626,25 @@
"DescribeGeofenceCollectionResponse":{
"type":"structure",
"required":[
- "CollectionArn",
"CollectionName",
- "CreateTime",
+ "CollectionArn",
"Description",
+ "CreateTime",
"UpdateTime"
],
"members":{
- "CollectionArn":{
- "shape":"Arn",
- "documentation":"The Amazon Resource Name (ARN) for the geofence collection resource. Used when you need to specify a resource across all Amazon Web Services.
"
- },
"CollectionName":{
"shape":"ResourceName",
"documentation":"The name of the geofence collection.
"
},
- "CreateTime":{
- "shape":"Timestamp",
- "documentation":"The timestamp for when the geofence resource was created in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
"
- },
- "Description":{
+ "CollectionArn":{
+ "shape":"Arn",
+ "documentation":"The Amazon Resource Name (ARN) for the geofence collection resource. Used when you need to specify a resource across all Amazon Web Services.
"
+ },
+ "Description":{
"shape":"ResourceDescription",
"documentation":"The optional description for the geofence collection.
"
},
- "GeofenceCount":{
- "shape":"DescribeGeofenceCollectionResponseGeofenceCountInteger",
- "documentation":"The number of geofences in the geofence collection.
"
- },
- "KmsKeyId":{
- "shape":"KmsKeyId",
- "documentation":"A key identifier for an Amazon Web Services KMS customer managed key assigned to the Amazon Location resource
"
- },
"PricingPlan":{
"shape":"PricingPlan",
"documentation":"No longer used. Always returns RequestBasedUsage
.
",
@@ -2612,13 +2657,25 @@
"deprecated":true,
"deprecatedMessage":"Deprecated. Unused."
},
+ "KmsKeyId":{
+ "shape":"KmsKeyId",
+ "documentation":"A key identifier for an Amazon Web Services KMS customer managed key assigned to the Amazon Location resource
"
+ },
"Tags":{
"shape":"TagMap",
"documentation":"Displays the key, value pairs of tags associated with this resource.
"
},
+ "CreateTime":{
+ "shape":"Timestamp",
+ "documentation":"The timestamp for when the geofence resource was created in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
"
+ },
"UpdateTime":{
"shape":"Timestamp",
"documentation":"The timestamp for when the geofence collection was last updated in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
"
+ },
+ "GeofenceCount":{
+ "shape":"DescribeGeofenceCollectionResponseGeofenceCountInteger",
+ "documentation":"The number of geofences in the geofence collection.
"
}
}
},
@@ -2642,27 +2699,15 @@
"DescribeKeyResponse":{
"type":"structure",
"required":[
- "CreateTime",
- "ExpireTime",
"Key",
"KeyArn",
"KeyName",
"Restrictions",
+ "CreateTime",
+ "ExpireTime",
"UpdateTime"
],
"members":{
- "CreateTime":{
- "shape":"Timestamp",
- "documentation":"The timestamp for when the API key resource was created in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
- },
- "Description":{
- "shape":"ResourceDescription",
- "documentation":"The optional description for the API key resource.
"
- },
- "ExpireTime":{
- "shape":"Timestamp",
- "documentation":"The timestamp for when the API key resource will expire in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
- },
"Key":{
"shape":"ApiKey",
"documentation":"The key value/string of an API key.
"
@@ -2676,13 +2721,25 @@
"documentation":"The name of the API key resource.
"
},
"Restrictions":{"shape":"ApiKeyRestrictions"},
- "Tags":{
- "shape":"TagMap",
- "documentation":"Tags associated with the API key resource.
"
+ "CreateTime":{
+ "shape":"Timestamp",
+ "documentation":"The timestamp for when the API key resource was created in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
+ },
+ "ExpireTime":{
+ "shape":"Timestamp",
+ "documentation":"The timestamp for when the API key resource will expire in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
},
"UpdateTime":{
"shape":"Timestamp",
"documentation":"The timestamp for when the API key resource was last updated in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
+ },
+ "Description":{
+ "shape":"ResourceDescription",
+ "documentation":"The optional description for the API key resource.
"
+ },
+ "Tags":{
+ "shape":"TagMap",
+ "documentation":"Tags associated with the API key resource.
"
}
}
},
@@ -2701,49 +2758,49 @@
"DescribeMapResponse":{
"type":"structure",
"required":[
- "Configuration",
- "CreateTime",
+ "MapName",
+ "MapArn",
"DataSource",
+ "Configuration",
"Description",
- "MapArn",
- "MapName",
+ "CreateTime",
"UpdateTime"
],
"members":{
- "Configuration":{
- "shape":"MapConfiguration",
- "documentation":"Specifies the map tile style selected from a partner data provider.
"
- },
- "CreateTime":{
- "shape":"Timestamp",
- "documentation":"The timestamp for when the map resource was created in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
- },
- "DataSource":{
- "shape":"String",
- "documentation":"Specifies the data provider for the associated map tiles.
"
- },
- "Description":{
- "shape":"ResourceDescription",
- "documentation":"The optional description for the map resource.
"
+ "MapName":{
+ "shape":"ResourceName",
+ "documentation":"The map style selected from an available provider.
"
},
"MapArn":{
"shape":"GeoArn",
"documentation":"The Amazon Resource Name (ARN) for the map resource. Used to specify a resource across all Amazon Web Services.
"
},
- "MapName":{
- "shape":"ResourceName",
- "documentation":"The map style selected from an available provider.
"
- },
"PricingPlan":{
"shape":"PricingPlan",
"documentation":"No longer used. Always returns RequestBasedUsage
.
",
"deprecated":true,
"deprecatedMessage":"Deprecated. Always returns RequestBasedUsage."
},
+ "DataSource":{
+ "shape":"String",
+ "documentation":"Specifies the data provider for the associated map tiles.
"
+ },
+ "Configuration":{
+ "shape":"MapConfiguration",
+ "documentation":"Specifies the map tile style selected from a partner data provider.
"
+ },
+ "Description":{
+ "shape":"ResourceDescription",
+ "documentation":"The optional description for the map resource.
"
+ },
"Tags":{
"shape":"TagMap",
"documentation":"Tags associated with the map resource.
"
},
+ "CreateTime":{
+ "shape":"Timestamp",
+ "documentation":"The timestamp for when the map resource was created in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
+ },
"UpdateTime":{
"shape":"Timestamp",
"documentation":"The timestamp for when the map resource was last update in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
@@ -2765,52 +2822,52 @@
"DescribePlaceIndexResponse":{
"type":"structure",
"required":[
+ "IndexName",
+ "IndexArn",
+ "Description",
"CreateTime",
+ "UpdateTime",
"DataSource",
- "DataSourceConfiguration",
- "Description",
- "IndexArn",
- "IndexName",
- "UpdateTime"
+ "DataSourceConfiguration"
],
"members":{
- "CreateTime":{
- "shape":"Timestamp",
- "documentation":"The timestamp for when the place index resource was created in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
- },
- "DataSource":{
- "shape":"String",
- "documentation":"The data provider of geospatial data. Values can be one of the following:
For more information about data providers, see Amazon Location Service data providers.
"
- },
- "DataSourceConfiguration":{
- "shape":"DataSourceConfiguration",
- "documentation":"The specified data storage option for requesting Places.
"
- },
- "Description":{
- "shape":"ResourceDescription",
- "documentation":"The optional description for the place index resource.
"
+ "IndexName":{
+ "shape":"ResourceName",
+ "documentation":"The name of the place index resource being described.
"
},
"IndexArn":{
"shape":"GeoArn",
"documentation":"The Amazon Resource Name (ARN) for the place index resource. Used to specify a resource across Amazon Web Services.
"
},
- "IndexName":{
- "shape":"ResourceName",
- "documentation":"The name of the place index resource being described.
"
- },
"PricingPlan":{
"shape":"PricingPlan",
"documentation":"No longer used. Always returns RequestBasedUsage
.
",
"deprecated":true,
"deprecatedMessage":"Deprecated. Always returns RequestBasedUsage."
},
- "Tags":{
- "shape":"TagMap",
- "documentation":"Tags associated with place index resource.
"
+ "Description":{
+ "shape":"ResourceDescription",
+ "documentation":"The optional description for the place index resource.
"
+ },
+ "CreateTime":{
+ "shape":"Timestamp",
+ "documentation":"The timestamp for when the place index resource was created in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
},
"UpdateTime":{
"shape":"Timestamp",
"documentation":"The timestamp for when the place index resource was last updated in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
+ },
+ "DataSource":{
+ "shape":"String",
+ "documentation":"The data provider of geospatial data. Values can be one of the following:
For more information about data providers, see Amazon Location Service data providers.
"
+ },
+ "DataSourceConfiguration":{
+ "shape":"DataSourceConfiguration",
+ "documentation":"The specified data storage option for requesting Places.
"
+ },
+ "Tags":{
+ "shape":"TagMap",
+ "documentation":"Tags associated with place index resource.
"
}
}
},
@@ -2829,47 +2886,47 @@
"DescribeRouteCalculatorResponse":{
"type":"structure",
"required":[
- "CalculatorArn",
"CalculatorName",
- "CreateTime",
- "DataSource",
+ "CalculatorArn",
"Description",
- "UpdateTime"
+ "CreateTime",
+ "UpdateTime",
+ "DataSource"
],
"members":{
+ "CalculatorName":{
+ "shape":"ResourceName",
+ "documentation":"The name of the route calculator resource being described.
"
+ },
"CalculatorArn":{
"shape":"GeoArn",
"documentation":"The Amazon Resource Name (ARN) for the Route calculator resource. Use the ARN when you specify a resource across Amazon Web Services.
"
},
- "CalculatorName":{
- "shape":"ResourceName",
- "documentation":"The name of the route calculator resource being described.
"
+ "PricingPlan":{
+ "shape":"PricingPlan",
+ "documentation":"Always returns RequestBasedUsage
.
",
+ "deprecated":true,
+ "deprecatedMessage":"Deprecated. Always returns RequestBasedUsage."
+ },
+ "Description":{
+ "shape":"ResourceDescription",
+ "documentation":"The optional description of the route calculator resource.
"
},
"CreateTime":{
"shape":"Timestamp",
"documentation":"The timestamp when the route calculator resource was created in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
},
+ "UpdateTime":{
+ "shape":"Timestamp",
+ "documentation":"The timestamp when the route calculator resource was last updated in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
+ },
"DataSource":{
"shape":"String",
"documentation":"The data provider of traffic and road network data. Indicates one of the available providers:
For more information about data providers, see Amazon Location Service data providers.
"
},
- "Description":{
- "shape":"ResourceDescription",
- "documentation":"The optional description of the route calculator resource.
"
- },
- "PricingPlan":{
- "shape":"PricingPlan",
- "documentation":"Always returns RequestBasedUsage
.
",
- "deprecated":true,
- "deprecatedMessage":"Deprecated. Always returns RequestBasedUsage."
- },
"Tags":{
"shape":"TagMap",
"documentation":"Tags associated with route calculator resource.
"
- },
- "UpdateTime":{
- "shape":"Timestamp",
- "documentation":"The timestamp when the route calculator resource was last updated in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
}
}
},
@@ -2888,37 +2945,25 @@
"DescribeTrackerResponse":{
"type":"structure",
"required":[
- "CreateTime",
- "Description",
- "TrackerArn",
"TrackerName",
+ "TrackerArn",
+ "Description",
+ "CreateTime",
"UpdateTime"
],
"members":{
- "CreateTime":{
- "shape":"Timestamp",
- "documentation":"The timestamp for when the tracker resource was created in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
+ "TrackerName":{
+ "shape":"ResourceName",
+ "documentation":"The name of the tracker resource.
"
+ },
+ "TrackerArn":{
+ "shape":"Arn",
+ "documentation":"The Amazon Resource Name (ARN) for the tracker resource. Used when you need to specify a resource across all Amazon Web Services.
"
},
"Description":{
"shape":"ResourceDescription",
"documentation":"The optional description for the tracker resource.
"
},
- "EventBridgeEnabled":{
- "shape":"Boolean",
- "documentation":"Whether UPDATE
events from this tracker in EventBridge are enabled. If set to true
these events will be sent to EventBridge.
"
- },
- "KmsKeyEnableGeospatialQueries":{
- "shape":"Boolean",
- "documentation":"Enables GeospatialQueries
for a tracker that uses a Amazon Web Services KMS customer managed key.
This parameter is only used if you are using a KMS customer managed key.
If you wish to encrypt your data using your own KMS customer managed key, then the Bounding Polygon Queries feature will be disabled by default. This is because by using this feature, a representation of your device positions will not be encrypted using the your KMS managed key. The exact device position, however; is still encrypted using your managed key.
You can choose to opt-in to the Bounding Polygon Quseries feature. This is done by setting the KmsKeyEnableGeospatialQueries
parameter to true when creating or updating a Tracker.
"
- },
- "KmsKeyId":{
- "shape":"KmsKeyId",
- "documentation":"A key identifier for an Amazon Web Services KMS customer managed key assigned to the Amazon Location resource.
"
- },
- "PositionFiltering":{
- "shape":"PositionFiltering",
- "documentation":"The position filtering method of the tracker resource.
"
- },
"PricingPlan":{
"shape":"PricingPlan",
"documentation":"Always returns RequestBasedUsage
.
",
@@ -2935,51 +2980,63 @@
"shape":"TagMap",
"documentation":"The tags associated with the tracker resource.
"
},
- "TrackerArn":{
- "shape":"Arn",
- "documentation":"The Amazon Resource Name (ARN) for the tracker resource. Used when you need to specify a resource across all Amazon Web Services.
"
- },
- "TrackerName":{
- "shape":"ResourceName",
- "documentation":"The name of the tracker resource.
"
+ "CreateTime":{
+ "shape":"Timestamp",
+ "documentation":"The timestamp for when the tracker resource was created in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
},
"UpdateTime":{
"shape":"Timestamp",
"documentation":"The timestamp for when the tracker resource was last updated in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
+ },
+ "KmsKeyId":{
+ "shape":"KmsKeyId",
+ "documentation":"A key identifier for an Amazon Web Services KMS customer managed key assigned to the Amazon Location resource.
"
+ },
+ "PositionFiltering":{
+ "shape":"PositionFiltering",
+ "documentation":"The position filtering method of the tracker resource.
"
+ },
+ "EventBridgeEnabled":{
+ "shape":"Boolean",
+ "documentation":"Whether UPDATE
events from this tracker in EventBridge are enabled. If set to true
these events will be sent to EventBridge.
"
+ },
+ "KmsKeyEnableGeospatialQueries":{
+ "shape":"Boolean",
+ "documentation":"Enables GeospatialQueries
for a tracker that uses a Amazon Web Services KMS customer managed key.
This parameter is only used if you are using a KMS customer managed key.
If you wish to encrypt your data using your own KMS customer managed key, then the Bounding Polygon Queries feature will be disabled by default. This is because by using this feature, a representation of your device positions will not be encrypted using the your KMS managed key. The exact device position, however; is still encrypted using your managed key.
You can choose to opt-in to the Bounding Polygon Quseries feature. This is done by setting the KmsKeyEnableGeospatialQueries
parameter to true when creating or updating a Tracker.
"
}
}
},
"DevicePosition":{
"type":"structure",
"required":[
- "Position",
+ "SampleTime",
"ReceivedTime",
- "SampleTime"
+ "Position"
],
"members":{
- "Accuracy":{
- "shape":"PositionalAccuracy",
- "documentation":"The accuracy of the device position.
"
- },
"DeviceId":{
"shape":"Id",
"documentation":"The device whose position you retrieved.
"
},
+ "SampleTime":{
+ "shape":"Timestamp",
+ "documentation":"The timestamp at which the device's position was determined. Uses ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
+ },
+ "ReceivedTime":{
+ "shape":"Timestamp",
+ "documentation":"The timestamp for when the tracker resource received the device position in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
+ },
"Position":{
"shape":"Position",
"documentation":"The last known device position.
"
},
+ "Accuracy":{
+ "shape":"PositionalAccuracy",
+ "documentation":"The accuracy of the device position.
"
+ },
"PositionProperties":{
"shape":"PropertyMap",
"documentation":"The properties associated with the position.
"
- },
- "ReceivedTime":{
- "shape":"Timestamp",
- "documentation":"The timestamp for when the tracker resource received the device position in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
- },
- "SampleTime":{
- "shape":"Timestamp",
- "documentation":"The timestamp at which the device's position was determined. Uses ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
}
},
"documentation":"Contains the device position details.
"
@@ -2992,32 +3049,72 @@
"type":"structure",
"required":[
"DeviceId",
- "Position",
- "SampleTime"
+ "SampleTime",
+ "Position"
],
"members":{
+ "DeviceId":{
+ "shape":"Id",
+ "documentation":"The device associated to the position update.
"
+ },
+ "SampleTime":{
+ "shape":"Timestamp",
+ "documentation":"The timestamp at which the device's position was determined. Uses ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
"
+ },
+ "Position":{
+ "shape":"Position",
+ "documentation":"The latest device position defined in WGS 84 format: [X or longitude, Y or latitude]
.
"
+ },
"Accuracy":{
"shape":"PositionalAccuracy",
"documentation":"The accuracy of the device position.
"
},
+ "PositionProperties":{
+ "shape":"PropertyMap",
+ "documentation":"Associates one of more properties with the position update. A property is a key-value pair stored with the position update and added to any geofence event the update may trigger.
Format: \"key\" : \"value\"
"
+ }
+ },
+ "documentation":"Contains the position update details for a device.
"
+ },
+ "DeviceState":{
+ "type":"structure",
+ "required":[
+ "DeviceId",
+ "SampleTime",
+ "Position"
+ ],
+ "members":{
"DeviceId":{
"shape":"Id",
- "documentation":"The device associated to the position update.
"
+ "documentation":"The device identifier.
"
+ },
+ "SampleTime":{
+ "shape":"Timestamp",
+ "documentation":"The timestamp at which the device's position was determined. Uses ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
},
"Position":{
"shape":"Position",
- "documentation":"The latest device position defined in WGS 84 format: [X or longitude, Y or latitude]
.
"
+ "documentation":"The last known device position.
"
},
- "PositionProperties":{
- "shape":"PropertyMap",
- "documentation":"Associates one of more properties with the position update. A property is a key-value pair stored with the position update and added to any geofence event the update may trigger.
Format: \"key\" : \"value\"
"
+ "Accuracy":{"shape":"PositionalAccuracy"},
+ "Ipv4Address":{
+ "shape":"DeviceStateIpv4AddressString",
+ "documentation":"The device's Ipv4 address.
"
},
- "SampleTime":{
- "shape":"Timestamp",
- "documentation":"The timestamp at which the device's position was determined. Uses ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
"
+ "WiFiAccessPoints":{
+ "shape":"WiFiAccessPointList",
+ "documentation":"The Wi-Fi access points the device is using.
"
+ },
+ "CellSignals":{
+ "shape":"CellSignals",
+ "documentation":"The cellular network infrastructure that the device is connected to.
"
}
},
- "documentation":"Contains the position update details for a device.
"
+ "documentation":"The device's position, IP address, and Wi-Fi access points.
"
+ },
+ "DeviceStateIpv4AddressString":{
+ "type":"string",
+ "pattern":"(?:(?:25[0-5]|(?:2[0-4]|1\\d|[0-9]|)\\d)\\.?\\b){4}"
},
"DimensionUnit":{
"type":"string",
@@ -3029,21 +3126,21 @@
"DisassociateTrackerConsumerRequest":{
"type":"structure",
"required":[
- "ConsumerArn",
- "TrackerName"
+ "TrackerName",
+ "ConsumerArn"
],
"members":{
- "ConsumerArn":{
- "shape":"Arn",
- "documentation":"The Amazon Resource Name (ARN) for the geofence collection to be disassociated from the tracker resource. Used when you need to specify a resource across all Amazon Web Services.
",
- "location":"uri",
- "locationName":"ConsumerArn"
- },
"TrackerName":{
"shape":"ResourceName",
"documentation":"The name of the tracker resource to be dissociated from the consumer.
",
"location":"uri",
"locationName":"TrackerName"
+ },
+ "ConsumerArn":{
+ "shape":"Arn",
+ "documentation":"The Amazon Resource Name (ARN) for the geofence collection to be disassociated from the tracker resource. Used when you need to specify a resource across all Amazon Web Services.
",
+ "location":"uri",
+ "locationName":"ConsumerArn"
}
}
},
@@ -3063,53 +3160,220 @@
"type":"double",
"box":true
},
+ "Earfcn":{
+ "type":"integer",
+ "max":262143,
+ "min":0
+ },
+ "EutranCellId":{
+ "type":"integer",
+ "max":268435455,
+ "min":0
+ },
"FilterPlaceCategoryList":{
"type":"list",
"member":{"shape":"PlaceCategory"},
"max":5,
"min":1
},
+ "ForecastGeofenceEventsDeviceState":{
+ "type":"structure",
+ "required":["Position"],
+ "members":{
+ "Position":{
+ "shape":"Position",
+ "documentation":"The device's position.
"
+ },
+ "Speed":{
+ "shape":"ForecastGeofenceEventsDeviceStateSpeedDouble",
+ "documentation":"The device's speed.
"
+ }
+ },
+ "documentation":"The device's position, IP address, and WiFi access points.
"
+ },
+ "ForecastGeofenceEventsDeviceStateSpeedDouble":{
+ "type":"double",
+ "box":true,
+ "min":0
+ },
+ "ForecastGeofenceEventsRequest":{
+ "type":"structure",
+ "required":[
+ "CollectionName",
+ "DeviceState"
+ ],
+ "members":{
+ "CollectionName":{
+ "shape":"ResourceName",
+ "documentation":"The name of the geofence collection.
",
+ "location":"uri",
+ "locationName":"CollectionName"
+ },
+ "DeviceState":{
+ "shape":"ForecastGeofenceEventsDeviceState",
+ "documentation":"The device's state, including current position and speed.
"
+ },
+ "TimeHorizonMinutes":{
+ "shape":"ForecastGeofenceEventsRequestTimeHorizonMinutesDouble",
+ "documentation":"Specifies the time horizon in minutes for the forecasted events.
"
+ },
+ "DistanceUnit":{
+ "shape":"DistanceUnit",
+ "documentation":"The distance unit used for the NearestDistance
property returned in a forecasted event. The measurement system must match for DistanceUnit
and SpeedUnit
; if Kilometers
is specified for DistanceUnit
, then SpeedUnit
must be KilometersPerHour
.
Default Value: Kilometers
"
+ },
+ "SpeedUnit":{
+ "shape":"SpeedUnit",
+ "documentation":"The speed unit for the device captured by the device state. The measurement system must match for DistanceUnit
and SpeedUnit
; if Kilometers
is specified for DistanceUnit
, then SpeedUnit
must be KilometersPerHour
.
Default Value: KilometersPerHour
.
"
+ },
+ "NextToken":{
+ "shape":"LargeToken",
+ "documentation":"The pagination token specifying which page of results to return in the response. If no token is provided, the default page is the first page.
Default value: null
"
+ },
+ "MaxResults":{
+ "shape":"ForecastGeofenceEventsRequestMaxResultsInteger",
+ "documentation":"An optional limit for the number of resources returned in a single call.
Default value: 20
"
+ }
+ }
+ },
+ "ForecastGeofenceEventsRequestMaxResultsInteger":{
+ "type":"integer",
+ "box":true,
+ "max":20,
+ "min":1
+ },
+ "ForecastGeofenceEventsRequestTimeHorizonMinutesDouble":{
+ "type":"double",
+ "box":true,
+ "min":0
+ },
+ "ForecastGeofenceEventsResponse":{
+ "type":"structure",
+ "required":[
+ "ForecastedEvents",
+ "DistanceUnit",
+ "SpeedUnit"
+ ],
+ "members":{
+ "ForecastedEvents":{
+ "shape":"ForecastedEventsList",
+ "documentation":"The list of forecasted events.
"
+ },
+ "NextToken":{
+ "shape":"LargeToken",
+ "documentation":"The pagination token specifying which page of results to return in the response. If no token is provided, the default page is the first page.
"
+ },
+ "DistanceUnit":{
+ "shape":"DistanceUnit",
+ "documentation":"The distance unit for the forecasted events.
"
+ },
+ "SpeedUnit":{
+ "shape":"SpeedUnit",
+ "documentation":"The speed unit for the forecasted events.
"
+ }
+ }
+ },
+ "ForecastedEvent":{
+ "type":"structure",
+ "required":[
+ "EventId",
+ "GeofenceId",
+ "IsDeviceInGeofence",
+ "NearestDistance",
+ "EventType"
+ ],
+ "members":{
+ "EventId":{
+ "shape":"Uuid",
+ "documentation":"The forecasted event identifier.
"
+ },
+ "GeofenceId":{
+ "shape":"Id",
+ "documentation":"The geofence identifier pertaining to the forecasted event.
"
+ },
+ "IsDeviceInGeofence":{
+ "shape":"Boolean",
+ "documentation":"Indicates if the device is located within the geofence.
"
+ },
+ "NearestDistance":{
+ "shape":"NearestDistance",
+ "documentation":"The closest distance from the device's position to the geofence.
"
+ },
+ "EventType":{
+ "shape":"ForecastedGeofenceEventType",
+ "documentation":"The event type, forecasting three states for which a device can be in relative to a geofence:
ENTER
: If a device is outside of a geofence, but would breach the fence if the device is moving at its current speed within time horizon window.
EXIT
: If a device is inside of a geofence, but would breach the fence if the device is moving at its current speed within time horizon window.
IDLE
: If a device is inside of a geofence, and the device is not moving.
"
+ },
+ "ForecastedBreachTime":{
+ "shape":"Timestamp",
+ "documentation":"The forecasted time the device will breach the geofence in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
"
+ },
+ "GeofenceProperties":{
+ "shape":"PropertyMap",
+ "documentation":"The geofence properties.
"
+ }
+ },
+ "documentation":"A forecasted event represents a geofence event in relation to the requested device state, that may occur given the provided device state and time horizon.
"
+ },
+ "ForecastedEventsList":{
+ "type":"list",
+ "member":{"shape":"ForecastedEvent"}
+ },
+ "ForecastedGeofenceEventType":{
+ "type":"string",
+ "enum":[
+ "ENTER",
+ "EXIT",
+ "IDLE"
+ ]
+ },
"GeoArn":{
"type":"string",
"max":1600,
"min":0,
- "pattern":"^arn(:[a-z0-9]+([.-][a-z0-9]+)*):geo(:([a-z0-9]+([.-][a-z0-9]+)*))(:[0-9]+):((\\*)|([-a-z]+[/][*-._\\w]+))$"
+ "pattern":"arn(:[a-z0-9]+([.-][a-z0-9]+)*):geo(:([a-z0-9]+([.-][a-z0-9]+)*))(:[0-9]+):((\\*)|([-a-z]+[/][*-._\\w]+))"
+ },
+ "GeoArnV2":{
+ "type":"string",
+ "max":1600,
+ "min":0,
+ "pattern":".*(^arn(:[a-z0-9]+([.-][a-z0-9]+)*):geo(:([a-z0-9]+([.-][a-z0-9]+)*))(:[0-9]+):((\\*)|([-a-z]+[/][*-._\\w]+))$)|(^arn(:[a-z0-9]+([.-][a-z0-9]+)*):(geo-routes|geo-places|geo-maps)(:((\\*)|([a-z0-9]+([.-][a-z0-9]+)*)))::((provider[\\/][*-._\\w]+))$).*"
},
"GeofenceGeometry":{
"type":"structure",
"members":{
+ "Polygon":{
+ "shape":"LinearRings",
+ "documentation":"A polygon is a list of linear rings which are each made up of a list of vertices.
Each vertex is a 2-dimensional point of the form: [longitude, latitude]
. This is represented as an array of doubles of length 2 (so [double, double]
).
An array of 4 or more vertices, where the first and last vertex are the same (to form a closed boundary), is called a linear ring. The linear ring vertices must be listed in counter-clockwise order around the ring’s interior. The linear ring is represented as an array of vertices, or an array of arrays of doubles ([[double, double], ...]
).
A geofence consists of a single linear ring. To allow for future expansion, the Polygon parameter takes an array of linear rings, which is represented as an array of arrays of arrays of doubles ([[[double, double], ...], ...]
).
A linear ring for use in geofences can consist of between 4 and 1,000 vertices.
"
+ },
"Circle":{
"shape":"Circle",
"documentation":"A circle on the earth, as defined by a center point and a radius.
"
},
- "Polygon":{
- "shape":"LinearRings",
- "documentation":"A polygon is a list of linear rings which are each made up of a list of vertices.
Each vertex is a 2-dimensional point of the form: [longitude, latitude]
. This is represented as an array of doubles of length 2 (so [double, double]
).
An array of 4 or more vertices, where the first and last vertex are the same (to form a closed boundary), is called a linear ring. The linear ring vertices must be listed in counter-clockwise order around the ring’s interior. The linear ring is represented as an array of vertices, or an array of arrays of doubles ([[double, double], ...]
).
A geofence consists of a single linear ring. To allow for future expansion, the Polygon parameter takes an array of linear rings, which is represented as an array of arrays of arrays of doubles ([[[double, double], ...], ...]
).
A linear ring for use in geofences can consist of between 4 and 1,000 vertices.
"
+ "Geobuf":{
+ "shape":"Base64EncodedGeobuf",
+ "documentation":"Geobuf is a compact binary encoding for geographic data that provides lossless compression of GeoJSON polygons. The Geobuf must be Base64-encoded.
A polygon in Geobuf format can have up to 100,000 vertices.
"
}
},
- "documentation":"Contains the geofence geometry details.
A geofence geometry is made up of either a polygon or a circle. Can be either a polygon or a circle. Including both will return a validation error.
Amazon Location doesn't currently support polygons with holes, multipolygons, polygons that are wound clockwise, or that cross the antimeridian.
"
+ "documentation":"Contains the geofence geometry details.
A geofence geometry is made up of either a polygon or a circle. Can be a polygon, a circle or a polygon encoded in Geobuf format. Including multiple selections will return a validation error.
Amazon Location doesn't currently support polygons with holes, multipolygons, polygons that are wound clockwise, or that cross the antimeridian.
"
},
"GetDevicePositionHistoryRequest":{
"type":"structure",
"required":[
- "DeviceId",
- "TrackerName"
+ "TrackerName",
+ "DeviceId"
],
"members":{
+ "TrackerName":{
+ "shape":"ResourceName",
+ "documentation":"The tracker resource receiving the request for the device position history.
",
+ "location":"uri",
+ "locationName":"TrackerName"
+ },
"DeviceId":{
"shape":"Id",
"documentation":"The device whose position history you want to retrieve.
",
"location":"uri",
"locationName":"DeviceId"
},
- "EndTimeExclusive":{
- "shape":"Timestamp",
- "documentation":"Specify the end time for the position history in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
. By default, the value will be the time that the request is made.
Requirement:
"
- },
- "MaxResults":{
- "shape":"GetDevicePositionHistoryRequestMaxResultsInteger",
- "documentation":"An optional limit for the number of device positions returned in a single call.
Default value: 100
"
- },
"NextToken":{
"shape":"Token",
"documentation":"The pagination token specifying which page of results to return in the response. If no token is provided, the default page is the first page.
Default value: null
"
@@ -3118,11 +3382,13 @@
"shape":"Timestamp",
"documentation":"Specify the start time for the position history in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
. By default, the value will be 24 hours prior to the time that the request is made.
Requirement:
"
},
- "TrackerName":{
- "shape":"ResourceName",
- "documentation":"The tracker resource receiving the request for the device position history.
",
- "location":"uri",
- "locationName":"TrackerName"
+ "EndTimeExclusive":{
+ "shape":"Timestamp",
+ "documentation":"Specify the end time for the position history in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
. By default, the value will be the time that the request is made.
Requirement:
"
+ },
+ "MaxResults":{
+ "shape":"GetDevicePositionHistoryRequestMaxResultsInteger",
+ "documentation":"An optional limit for the number of device positions returned in a single call.
Default value: 100
"
}
}
},
@@ -3149,55 +3415,55 @@
"GetDevicePositionRequest":{
"type":"structure",
"required":[
- "DeviceId",
- "TrackerName"
+ "TrackerName",
+ "DeviceId"
],
"members":{
- "DeviceId":{
- "shape":"Id",
- "documentation":"The device whose position you want to retrieve.
",
- "location":"uri",
- "locationName":"DeviceId"
- },
"TrackerName":{
"shape":"ResourceName",
"documentation":"The tracker resource receiving the position update.
",
"location":"uri",
"locationName":"TrackerName"
+ },
+ "DeviceId":{
+ "shape":"Id",
+ "documentation":"The device whose position you want to retrieve.
",
+ "location":"uri",
+ "locationName":"DeviceId"
}
}
},
"GetDevicePositionResponse":{
"type":"structure",
"required":[
- "Position",
+ "SampleTime",
"ReceivedTime",
- "SampleTime"
+ "Position"
],
"members":{
- "Accuracy":{
- "shape":"PositionalAccuracy",
- "documentation":"The accuracy of the device position.
"
- },
"DeviceId":{
"shape":"Id",
"documentation":"The device whose position you retrieved.
"
},
+ "SampleTime":{
+ "shape":"Timestamp",
+ "documentation":"The timestamp at which the device's position was determined. Uses ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
+ },
+ "ReceivedTime":{
+ "shape":"Timestamp",
+ "documentation":"The timestamp for when the tracker resource received the device position. Uses ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
+ },
"Position":{
"shape":"Position",
"documentation":"The last known device position.
"
},
+ "Accuracy":{
+ "shape":"PositionalAccuracy",
+ "documentation":"The accuracy of the device position.
"
+ },
"PositionProperties":{
"shape":"PropertyMap",
"documentation":"The properties associated with the position.
"
- },
- "ReceivedTime":{
- "shape":"Timestamp",
- "documentation":"The timestamp for when the tracker resource received the device position in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
- },
- "SampleTime":{
- "shape":"Timestamp",
- "documentation":"The timestamp at which the device's position was determined. Uses ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
}
}
},
@@ -3225,25 +3491,17 @@
"GetGeofenceResponse":{
"type":"structure",
"required":[
- "CreateTime",
"GeofenceId",
"Geometry",
"Status",
+ "CreateTime",
"UpdateTime"
],
"members":{
- "CreateTime":{
- "shape":"Timestamp",
- "documentation":"The timestamp for when the geofence collection was created in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
"
- },
"GeofenceId":{
"shape":"Id",
"documentation":"The geofence identifier.
"
},
- "GeofenceProperties":{
- "shape":"PropertyMap",
- "documentation":"User defined properties of the geofence. A property is a key-value pair stored with the geofence and added to any geofence event triggered with that geofence.
Format: \"key\" : \"value\"
"
- },
"Geometry":{
"shape":"GeofenceGeometry",
"documentation":"Contains the geofence geometry details describing a polygon or a circle.
"
@@ -3252,23 +3510,37 @@
"shape":"String",
"documentation":"Identifies the state of the geofence. A geofence will hold one of the following states:
-
ACTIVE
— The geofence has been indexed by the system.
-
PENDING
— The geofence is being processed by the system.
-
FAILED
— The geofence failed to be indexed by the system.
-
DELETED
— The geofence has been deleted from the system index.
-
DELETING
— The geofence is being deleted from the system index.
"
},
+ "CreateTime":{
+ "shape":"Timestamp",
+ "documentation":"The timestamp for when the geofence collection was created in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
"
+ },
"UpdateTime":{
"shape":"Timestamp",
"documentation":"The timestamp for when the geofence collection was last updated in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
"
+ },
+ "GeofenceProperties":{
+ "shape":"PropertyMap",
+ "documentation":"User defined properties of the geofence. A property is a key-value pair stored with the geofence and added to any geofence event triggered with that geofence.
Format: \"key\" : \"value\"
"
}
}
},
"GetMapGlyphsRequest":{
"type":"structure",
"required":[
+ "MapName",
"FontStack",
- "FontUnicodeRange",
- "MapName"
+ "FontUnicodeRange"
],
"members":{
+ "MapName":{
+ "shape":"ResourceName",
+ "documentation":"The map resource associated with the glyph file.
",
+ "location":"uri",
+ "locationName":"MapName"
+ },
"FontStack":{
"shape":"String",
- "documentation":"A comma-separated list of fonts to load glyphs from in order of preference. For example, Noto Sans Regular, Arial Unicode
.
Valid font stacks for Esri styles:
-
VectorEsriDarkGrayCanvas – Ubuntu Medium Italic
| Ubuntu Medium
| Ubuntu Italic
| Ubuntu Regular
| Ubuntu Bold
-
VectorEsriLightGrayCanvas – Ubuntu Italic
| Ubuntu Regular
| Ubuntu Light
| Ubuntu Bold
-
VectorEsriTopographic – Noto Sans Italic
| Noto Sans Regular
| Noto Sans Bold
| Noto Serif Regular
| Roboto Condensed Light Italic
-
VectorEsriStreets – Arial Regular
| Arial Italic
| Arial Bold
-
VectorEsriNavigation – Arial Regular
| Arial Italic
| Arial Bold
| Arial Unicode MS Bold
| Arial Unicode MS Regular
Valid font stacks for HERE Technologies styles:
-
VectorHereContrast – Fira GO Regular
| Fira GO Bold
-
VectorHereExplore, VectorHereExploreTruck, HybridHereExploreSatellite – Fira GO Italic
| Fira GO Map
| Fira GO Map Bold
| Noto Sans CJK JP Bold
| Noto Sans CJK JP Light
| Noto Sans CJK JP Regular
Valid font stacks for GrabMaps styles:
Valid font stacks for Open Data styles:
-
VectorOpenDataStandardLight, VectorOpenDataStandardDark, VectorOpenDataVisualizationLight, VectorOpenDataVisualizationDark – Amazon Ember Regular,Noto Sans Regular
| Amazon Ember Bold,Noto Sans Bold
| Amazon Ember Medium,Noto Sans Medium
| Amazon Ember Regular Italic,Noto Sans Italic
| Amazon Ember Condensed RC Regular,Noto Sans Regular
| Amazon Ember Condensed RC Bold,Noto Sans Bold
| Amazon Ember Regular,Noto Sans Regular,Noto Sans Arabic Regular
| Amazon Ember Condensed RC Bold,Noto Sans Bold,Noto Sans Arabic Condensed Bold
| Amazon Ember Bold,Noto Sans Bold,Noto Sans Arabic Bold
| Amazon Ember Regular Italic,Noto Sans Italic,Noto Sans Arabic Regular
| Amazon Ember Condensed RC Regular,Noto Sans Regular,Noto Sans Arabic Condensed Regular
| Amazon Ember Medium,Noto Sans Medium,Noto Sans Arabic Medium
The fonts used by the Open Data map styles are combined fonts that use Amazon Ember
for most glyphs but Noto Sans
for glyphs unsupported by Amazon Ember
.
",
+ "documentation":"A comma-separated list of fonts to load glyphs from in order of preference. For example, Noto Sans Regular, Arial Unicode
.
Valid font stacks for Esri styles:
-
VectorEsriDarkGrayCanvas – Ubuntu Medium Italic
| Ubuntu Medium
| Ubuntu Italic
| Ubuntu Regular
| Ubuntu Bold
-
VectorEsriLightGrayCanvas – Ubuntu Italic
| Ubuntu Regular
| Ubuntu Light
| Ubuntu Bold
-
VectorEsriTopographic – Noto Sans Italic
| Noto Sans Regular
| Noto Sans Bold
| Noto Serif Regular
| Roboto Condensed Light Italic
-
VectorEsriStreets – Arial Regular
| Arial Italic
| Arial Bold
-
VectorEsriNavigation – Arial Regular
| Arial Italic
| Arial Bold
Valid font stacks for HERE Technologies styles:
-
VectorHereContrast – Fira GO Regular
| Fira GO Bold
-
VectorHereExplore, VectorHereExploreTruck, HybridHereExploreSatellite – Fira GO Italic
| Fira GO Map
| Fira GO Map Bold
| Noto Sans CJK JP Bold
| Noto Sans CJK JP Light
| Noto Sans CJK JP Regular
Valid font stacks for GrabMaps styles:
Valid font stacks for Open Data styles:
-
VectorOpenDataStandardLight, VectorOpenDataStandardDark, VectorOpenDataVisualizationLight, VectorOpenDataVisualizationDark – Amazon Ember Regular,Noto Sans Regular
| Amazon Ember Bold,Noto Sans Bold
| Amazon Ember Medium,Noto Sans Medium
| Amazon Ember Regular Italic,Noto Sans Italic
| Amazon Ember Condensed RC Regular,Noto Sans Regular
| Amazon Ember Condensed RC Bold,Noto Sans Bold
| Amazon Ember Regular,Noto Sans Regular,Noto Sans Arabic Regular
| Amazon Ember Condensed RC Bold,Noto Sans Bold,Noto Sans Arabic Condensed Bold
| Amazon Ember Bold,Noto Sans Bold,Noto Sans Arabic Bold
| Amazon Ember Regular Italic,Noto Sans Italic,Noto Sans Arabic Regular
| Amazon Ember Condensed RC Regular,Noto Sans Regular,Noto Sans Arabic Condensed Regular
| Amazon Ember Medium,Noto Sans Medium,Noto Sans Arabic Medium
The fonts used by the Open Data map styles are combined fonts that use Amazon Ember
for most glyphs but Noto Sans
for glyphs unsupported by Amazon Ember
.
",
"location":"uri",
"locationName":"FontStack"
},
@@ -3283,18 +3555,12 @@
"documentation":"The optional API key to authorize the request.
",
"location":"querystring",
"locationName":"key"
- },
- "MapName":{
- "shape":"ResourceName",
- "documentation":"The map resource associated with the glyph file.
",
- "location":"uri",
- "locationName":"MapName"
}
}
},
"GetMapGlyphsRequestFontUnicodeRangeString":{
"type":"string",
- "pattern":"^[0-9]+-[0-9]+\\.pbf$"
+ "pattern":"[0-9]+-[0-9]+\\.pbf"
},
"GetMapGlyphsResponse":{
"type":"structure",
@@ -3303,17 +3569,17 @@
"shape":"Blob",
"documentation":"The glyph, as binary blob.
"
},
- "CacheControl":{
- "shape":"String",
- "documentation":"The HTTP Cache-Control directive for the value.
",
- "location":"header",
- "locationName":"Cache-Control"
- },
"ContentType":{
"shape":"String",
"documentation":"The map glyph content type. For example, application/octet-stream
.
",
"location":"header",
"locationName":"Content-Type"
+ },
+ "CacheControl":{
+ "shape":"String",
+ "documentation":"The HTTP Cache-Control directive for the value.
",
+ "location":"header",
+ "locationName":"Cache-Control"
}
},
"payload":"Blob"
@@ -3321,33 +3587,33 @@
"GetMapSpritesRequest":{
"type":"structure",
"required":[
- "FileName",
- "MapName"
+ "MapName",
+ "FileName"
],
"members":{
+ "MapName":{
+ "shape":"ResourceName",
+ "documentation":"The map resource associated with the sprite file.
",
+ "location":"uri",
+ "locationName":"MapName"
+ },
"FileName":{
"shape":"GetMapSpritesRequestFileNameString",
"documentation":"The name of the sprite file. Use the following file names for the sprite sheet:
For the JSON document containing image offsets. Use the following file names:
",
"location":"uri",
"locationName":"FileName"
},
- "Key":{
- "shape":"ApiKey",
- "documentation":"The optional API key to authorize the request.
",
- "location":"querystring",
- "locationName":"key"
- },
- "MapName":{
- "shape":"ResourceName",
- "documentation":"The map resource associated with the sprite file.
",
- "location":"uri",
- "locationName":"MapName"
+ "Key":{
+ "shape":"ApiKey",
+ "documentation":"The optional API key to authorize the request.
",
+ "location":"querystring",
+ "locationName":"key"
}
}
},
"GetMapSpritesRequestFileNameString":{
"type":"string",
- "pattern":"^sprites(@2x)?\\.(png|json)$"
+ "pattern":"sprites(@2x)?\\.(png|json)"
},
"GetMapSpritesResponse":{
"type":"structure",
@@ -3356,17 +3622,17 @@
"shape":"Blob",
"documentation":"Contains the body of the sprite sheet or JSON offset file.
"
},
- "CacheControl":{
- "shape":"String",
- "documentation":"The HTTP Cache-Control directive for the value.
",
- "location":"header",
- "locationName":"Cache-Control"
- },
"ContentType":{
"shape":"String",
"documentation":"The content type of the sprite sheet and offsets. For example, the sprite sheet content type is image/png
, and the sprite offset JSON document is application/json
.
",
"location":"header",
"locationName":"Content-Type"
+ },
+ "CacheControl":{
+ "shape":"String",
+ "documentation":"The HTTP Cache-Control directive for the value.
",
+ "location":"header",
+ "locationName":"Cache-Control"
}
},
"payload":"Blob"
@@ -3375,17 +3641,17 @@
"type":"structure",
"required":["MapName"],
"members":{
- "Key":{
- "shape":"ApiKey",
- "documentation":"The optional API key to authorize the request.
",
- "location":"querystring",
- "locationName":"key"
- },
"MapName":{
"shape":"ResourceName",
"documentation":"The map resource to retrieve the style descriptor from.
",
"location":"uri",
"locationName":"MapName"
+ },
+ "Key":{
+ "shape":"ApiKey",
+ "documentation":"The optional API key to authorize the request.
",
+ "location":"querystring",
+ "locationName":"key"
}
}
},
@@ -3396,17 +3662,17 @@
"shape":"Blob",
"documentation":"Contains the body of the style descriptor.
"
},
- "CacheControl":{
- "shape":"String",
- "documentation":"The HTTP Cache-Control directive for the value.
",
- "location":"header",
- "locationName":"Cache-Control"
- },
"ContentType":{
"shape":"String",
"documentation":"The style descriptor's content type. For example, application/json
.
",
"location":"header",
"locationName":"Content-Type"
+ },
+ "CacheControl":{
+ "shape":"String",
+ "documentation":"The HTTP Cache-Control directive for the value.
",
+ "location":"header",
+ "locationName":"Cache-Control"
}
},
"payload":"Blob"
@@ -3415,23 +3681,23 @@
"type":"structure",
"required":[
"MapName",
+ "Z",
"X",
- "Y",
- "Z"
+ "Y"
],
"members":{
- "Key":{
- "shape":"ApiKey",
- "documentation":"The optional API key to authorize the request.
",
- "location":"querystring",
- "locationName":"key"
- },
"MapName":{
"shape":"ResourceName",
"documentation":"The map resource to retrieve the map tiles from.
",
"location":"uri",
"locationName":"MapName"
},
+ "Z":{
+ "shape":"GetMapTileRequestZString",
+ "documentation":"The zoom value for the map tile.
",
+ "location":"uri",
+ "locationName":"Z"
+ },
"X":{
"shape":"GetMapTileRequestXString",
"documentation":"The X axis value for the map tile.
",
@@ -3444,25 +3710,25 @@
"location":"uri",
"locationName":"Y"
},
- "Z":{
- "shape":"GetMapTileRequestZString",
- "documentation":"The zoom value for the map tile.
",
- "location":"uri",
- "locationName":"Z"
+ "Key":{
+ "shape":"ApiKey",
+ "documentation":"The optional API key to authorize the request.
",
+ "location":"querystring",
+ "locationName":"key"
}
}
},
"GetMapTileRequestXString":{
"type":"string",
- "pattern":"\\d+"
+ "pattern":".*\\d+.*"
},
"GetMapTileRequestYString":{
"type":"string",
- "pattern":"\\d+"
+ "pattern":".*\\d+.*"
},
"GetMapTileRequestZString":{
"type":"string",
- "pattern":"\\d+"
+ "pattern":".*\\d+.*"
},
"GetMapTileResponse":{
"type":"structure",
@@ -3471,17 +3737,17 @@
"shape":"Blob",
"documentation":"Contains Mapbox Vector Tile (MVT) data.
"
},
- "CacheControl":{
- "shape":"String",
- "documentation":"The HTTP Cache-Control directive for the value.
",
- "location":"header",
- "locationName":"Cache-Control"
- },
"ContentType":{
"shape":"String",
"documentation":"The map tile's content type. For example, application/vnd.mapbox-vector-tile
.
",
"location":"header",
"locationName":"Content-Type"
+ },
+ "CacheControl":{
+ "shape":"String",
+ "documentation":"The HTTP Cache-Control directive for the value.
",
+ "location":"header",
+ "locationName":"Cache-Control"
}
},
"payload":"Blob"
@@ -3499,11 +3765,11 @@
"location":"uri",
"locationName":"IndexName"
},
- "Key":{
- "shape":"ApiKey",
- "documentation":"The optional API key to authorize the request.
",
- "location":"querystring",
- "locationName":"key"
+ "PlaceId":{
+ "shape":"PlaceId",
+ "documentation":"The identifier of the place to find.
",
+ "location":"uri",
+ "locationName":"PlaceId"
},
"Language":{
"shape":"LanguageTag",
@@ -3511,11 +3777,11 @@
"location":"querystring",
"locationName":"language"
},
- "PlaceId":{
- "shape":"PlaceId",
- "documentation":"The identifier of the place to find.
While you can use PlaceID in subsequent requests, PlaceID is not intended to be a permanent identifier and the ID can change between consecutive API calls. Please see the following PlaceID behaviour for each data provider:
-
Esri: Place IDs will change every quarter at a minimum. The typical time period for these changes would be March, June, September, and December. Place IDs might also change between the typical quarterly change but that will be much less frequent.
-
HERE: We recommend that you cache data for no longer than a week to keep your data data fresh. You can assume that less than 1% ID shifts will release over release which is approximately 1 - 2 times per week.
-
Grab: Place IDs can expire or become invalid in the following situations.
-
Data operations: The POI may be removed from Grab POI database by Grab Map Ops based on the ground-truth, such as being closed in the real world, being detected as a duplicate POI, or having incorrect information. Grab will synchronize data to the Waypoint environment on weekly basis.
-
Interpolated POI: Interpolated POI is a temporary POI generated in real time when serving a request, and it will be marked as derived in the place.result_type
field in the response. The information of interpolated POIs will be retained for at least 30 days, which means that within 30 days, you are able to obtain POI details by Place ID from Place Details API. After 30 days, the interpolated POIs(both Place ID and details) may expire and inaccessible from the Places Details API.
",
- "location":"uri",
- "locationName":"PlaceId"
+ "Key":{
+ "shape":"ApiKey",
+ "documentation":"The optional API key to authorize the request.
",
+ "location":"querystring",
+ "locationName":"key"
}
}
},
@@ -3533,7 +3799,30 @@
"type":"string",
"max":100,
"min":1,
- "pattern":"^[-._\\p{L}\\p{N}]+$"
+ "pattern":"[-._\\p{L}\\p{N}]+"
+ },
+ "InferredState":{
+ "type":"structure",
+ "required":["ProxyDetected"],
+ "members":{
+ "Position":{
+ "shape":"Position",
+ "documentation":"The device position inferred by the provided position, IP address, cellular signals, and Wi-Fi- access points.
"
+ },
+ "Accuracy":{
+ "shape":"PositionalAccuracy",
+ "documentation":"The level of certainty of the inferred position.
"
+ },
+ "DeviationDistance":{
+ "shape":"Double",
+ "documentation":"The distance between the inferred position and the device's self-reported position.
"
+ },
+ "ProxyDetected":{
+ "shape":"Boolean",
+ "documentation":"Indicates if a proxy was used.
"
+ }
+ },
+ "documentation":"The inferred state of the device, given the provided position, IP address, cellular signals, and Wi-Fi- access points.
"
},
"Integer":{
"type":"integer",
@@ -3571,16 +3860,29 @@
"max":35,
"min":2
},
+ "LargeToken":{
+ "type":"string",
+ "max":60000,
+ "min":1
+ },
"Leg":{
"type":"structure",
"required":[
+ "StartPosition",
+ "EndPosition",
"Distance",
"DurationSeconds",
- "EndPosition",
- "StartPosition",
"Steps"
],
"members":{
+ "StartPosition":{
+ "shape":"Position",
+ "documentation":"The starting position of the leg. Follows the format [longitude,latitude]
.
If the StartPosition
isn't located on a road, it's snapped to a nearby road.
"
+ },
+ "EndPosition":{
+ "shape":"Position",
+ "documentation":"The terminating position of the leg. Follows the format [longitude,latitude]
.
If the EndPosition
isn't located on a road, it's snapped to a nearby road.
"
+ },
"Distance":{
"shape":"LegDistanceDouble",
"documentation":"The distance between the leg's StartPosition
and EndPosition
along a calculated route.
"
@@ -3589,18 +3891,10 @@
"shape":"LegDurationSecondsDouble",
"documentation":"The estimated travel time between the leg's StartPosition
and EndPosition
. The travel mode and departure time that you specify in the request determines the calculated time.
"
},
- "EndPosition":{
- "shape":"Position",
- "documentation":"The terminating position of the leg. Follows the format [longitude,latitude]
.
If the EndPosition
isn't located on a road, it's snapped to a nearby road.
"
- },
"Geometry":{
"shape":"LegGeometry",
"documentation":"Contains the calculated route's path as a linestring geometry.
"
},
- "StartPosition":{
- "shape":"Position",
- "documentation":"The starting position of the leg. Follows the format [longitude,latitude]
.
If the StartPosition
isn't located on a road, it's snapped to a nearby road.
"
- },
"Steps":{
"shape":"StepList",
"documentation":"Contains a list of steps, which represent subsections of a leg. Each step provides instructions for how to move to the next step in the leg such as the step's start position, end position, travel distance, travel duration, and geometry offset.
"
@@ -3651,9 +3945,11 @@
"type":"structure",
"required":["TrackerName"],
"members":{
- "FilterGeometry":{
- "shape":"TrackingFilterGeometry",
- "documentation":"The geometry used to filter device positions.
"
+ "TrackerName":{
+ "shape":"ResourceName",
+ "documentation":"The tracker resource containing the requested devices.
",
+ "location":"uri",
+ "locationName":"TrackerName"
},
"MaxResults":{
"shape":"ListDevicePositionsRequestMaxResultsInteger",
@@ -3663,11 +3959,9 @@
"shape":"Token",
"documentation":"The pagination token specifying which page of results to return in the response. If no token is provided, the default page is the first page.
Default value: null
"
},
- "TrackerName":{
- "shape":"ResourceName",
- "documentation":"The tracker resource containing the requested devices.
",
- "location":"uri",
- "locationName":"TrackerName"
+ "FilterGeometry":{
+ "shape":"TrackingFilterGeometry",
+ "documentation":"The geometry used to filter device positions.
"
}
}
},
@@ -3695,29 +3989,29 @@
"type":"structure",
"required":[
"DeviceId",
- "Position",
- "SampleTime"
+ "SampleTime",
+ "Position"
],
"members":{
- "Accuracy":{
- "shape":"PositionalAccuracy",
- "documentation":"The accuracy of the device position.
"
- },
"DeviceId":{
"shape":"Id",
"documentation":"The ID of the device for this position.
"
},
+ "SampleTime":{
+ "shape":"Timestamp",
+ "documentation":"The timestamp at which the device position was determined. Uses ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
+ },
"Position":{
"shape":"Position",
"documentation":"The last known device position. Empty if no positions currently stored.
"
},
+ "Accuracy":{
+ "shape":"PositionalAccuracy",
+ "documentation":"The accuracy of the device position.
"
+ },
"PositionProperties":{
"shape":"PropertyMap",
"documentation":"The properties associated with the position.
"
- },
- "SampleTime":{
- "shape":"Timestamp",
- "documentation":"The timestamp at which the device position was determined. Uses ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
}
},
"documentation":"Contains the tracker resource details.
"
@@ -3763,8 +4057,8 @@
"type":"structure",
"required":[
"CollectionName",
- "CreateTime",
"Description",
+ "CreateTime",
"UpdateTime"
],
"members":{
@@ -3772,10 +4066,6 @@
"shape":"ResourceName",
"documentation":"The name of the geofence collection.
"
},
- "CreateTime":{
- "shape":"Timestamp",
- "documentation":"The timestamp for when the geofence collection was created in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
"
- },
"Description":{
"shape":"ResourceDescription",
"documentation":"The description for the geofence collection
"
@@ -3792,12 +4082,16 @@
"deprecated":true,
"deprecatedMessage":"Deprecated. Unused."
},
+ "CreateTime":{
+ "shape":"Timestamp",
+ "documentation":"The timestamp for when the geofence collection was created in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
"
+ },
"UpdateTime":{
"shape":"Timestamp",
"documentation":"Specifies a timestamp for when the resource was last updated in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
"
}
},
- "documentation":"Contains the geofence collection details.
"
+ "documentation":"Contains the geofence collection details.
The returned geometry will always match the geometry format used when the geofence was created.
"
},
"ListGeofenceCollectionsResponseEntryList":{
"type":"list",
@@ -3806,25 +4100,17 @@
"ListGeofenceResponseEntry":{
"type":"structure",
"required":[
- "CreateTime",
"GeofenceId",
"Geometry",
"Status",
+ "CreateTime",
"UpdateTime"
],
"members":{
- "CreateTime":{
- "shape":"Timestamp",
- "documentation":"The timestamp for when the geofence was stored in a geofence collection in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
"
- },
"GeofenceId":{
"shape":"Id",
"documentation":"The geofence identifier.
"
},
- "GeofenceProperties":{
- "shape":"PropertyMap",
- "documentation":"User defined properties of the geofence. A property is a key-value pair stored with the geofence and added to any geofence event triggered with that geofence.
Format: \"key\" : \"value\"
"
- },
"Geometry":{
"shape":"GeofenceGeometry",
"documentation":"Contains the geofence geometry details describing a polygon or a circle.
"
@@ -3833,12 +4119,20 @@
"shape":"String",
"documentation":"Identifies the state of the geofence. A geofence will hold one of the following states:
-
ACTIVE
— The geofence has been indexed by the system.
-
PENDING
— The geofence is being processed by the system.
-
FAILED
— The geofence failed to be indexed by the system.
-
DELETED
— The geofence has been deleted from the system index.
-
DELETING
— The geofence is being deleted from the system index.
"
},
+ "CreateTime":{
+ "shape":"Timestamp",
+ "documentation":"The timestamp for when the geofence was stored in a geofence collection in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
"
+ },
"UpdateTime":{
"shape":"Timestamp",
"documentation":"The timestamp for when the geofence was last updated in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
"
+ },
+ "GeofenceProperties":{
+ "shape":"PropertyMap",
+ "documentation":"User defined properties of the geofence. A property is a key-value pair stored with the geofence and added to any geofence event triggered with that geofence.
Format: \"key\" : \"value\"
"
}
},
- "documentation":"Contains a list of geofences stored in a given geofence collection.
"
+ "documentation":"Contains a list of geofences stored in a given geofence collection.
The returned geometry will always match the geometry format used when the geofence was created.
"
},
"ListGeofenceResponseEntryList":{
"type":"list",
@@ -3854,13 +4148,13 @@
"location":"uri",
"locationName":"CollectionName"
},
+ "NextToken":{
+ "shape":"LargeToken",
+ "documentation":"The pagination token specifying which page of results to return in the response. If no token is provided, the default page is the first page.
Default value: null
"
+ },
"MaxResults":{
"shape":"ListGeofencesRequestMaxResultsInteger",
"documentation":"An optional limit for the number of geofences returned in a single call.
Default value: 100
"
- },
- "NextToken":{
- "shape":"Token",
- "documentation":"The pagination token specifying which page of results to return in the response. If no token is provided, the default page is the first page.
Default value: null
"
}
}
},
@@ -3879,7 +4173,7 @@
"documentation":"Contains a list of geofences stored in the geofence collection.
"
},
"NextToken":{
- "shape":"Token",
+ "shape":"LargeToken",
"documentation":"A pagination token indicating there are additional pages available. You can use the token in a following request to fetch the next set of results.
"
}
}
@@ -3887,10 +4181,6 @@
"ListKeysRequest":{
"type":"structure",
"members":{
- "Filter":{
- "shape":"ApiKeyFilter",
- "documentation":"Optionally filter the list to only Active
or Expired
API keys.
"
- },
"MaxResults":{
"shape":"ListKeysRequestMaxResultsInteger",
"documentation":"An optional limit for the number of resources returned in a single call.
Default value: 100
"
@@ -3898,6 +4188,10 @@
"NextToken":{
"shape":"Token",
"documentation":"The pagination token specifying which page of results to return in the response. If no token is provided, the default page is the first page.
Default value: null
"
+ },
+ "Filter":{
+ "shape":"ApiKeyFilter",
+ "documentation":"Optionally filter the list to only Active
or Expired
API keys.
"
}
}
},
@@ -3924,30 +4218,30 @@
"ListKeysResponseEntry":{
"type":"structure",
"required":[
- "CreateTime",
- "ExpireTime",
"KeyName",
+ "ExpireTime",
"Restrictions",
+ "CreateTime",
"UpdateTime"
],
"members":{
- "CreateTime":{
+ "KeyName":{
+ "shape":"ResourceName",
+ "documentation":"The name of the API key resource.
"
+ },
+ "ExpireTime":{
"shape":"Timestamp",
- "documentation":"The timestamp of when the API key was created, in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
+ "documentation":"The timestamp for when the API key resource will expire, in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
},
"Description":{
"shape":"ResourceDescription",
"documentation":"The optional description for the API key resource.
"
},
- "ExpireTime":{
+ "Restrictions":{"shape":"ApiKeyRestrictions"},
+ "CreateTime":{
"shape":"Timestamp",
- "documentation":"The timestamp for when the API key resource will expire, in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
- },
- "KeyName":{
- "shape":"ResourceName",
- "documentation":"The name of the API key resource.
"
+ "documentation":"The timestamp of when the API key was created, in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
},
- "Restrictions":{"shape":"ApiKeyRestrictions"},
"UpdateTime":{
"shape":"Timestamp",
"documentation":"The timestamp of when the API key was last updated, in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
@@ -3995,28 +4289,24 @@
"ListMapsResponseEntry":{
"type":"structure",
"required":[
- "CreateTime",
- "DataSource",
- "Description",
"MapName",
+ "Description",
+ "DataSource",
+ "CreateTime",
"UpdateTime"
],
"members":{
- "CreateTime":{
- "shape":"Timestamp",
- "documentation":"The timestamp for when the map resource was created in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
- },
- "DataSource":{
- "shape":"String",
- "documentation":"Specifies the data provider for the associated map tiles.
"
+ "MapName":{
+ "shape":"ResourceName",
+ "documentation":"The name of the associated map resource.
"
},
"Description":{
"shape":"ResourceDescription",
"documentation":"The description for the map resource.
"
},
- "MapName":{
- "shape":"ResourceName",
- "documentation":"The name of the associated map resource.
"
+ "DataSource":{
+ "shape":"String",
+ "documentation":"Specifies the data provider for the associated map tiles.
"
},
"PricingPlan":{
"shape":"PricingPlan",
@@ -4024,6 +4314,10 @@
"deprecated":true,
"deprecatedMessage":"Deprecated. Always returns RequestBasedUsage."
},
+ "CreateTime":{
+ "shape":"Timestamp",
+ "documentation":"The timestamp for when the map resource was created in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
+ },
"UpdateTime":{
"shape":"Timestamp",
"documentation":"The timestamp for when the map resource was last updated in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
@@ -4071,28 +4365,24 @@
"ListPlaceIndexesResponseEntry":{
"type":"structure",
"required":[
- "CreateTime",
- "DataSource",
- "Description",
"IndexName",
+ "Description",
+ "DataSource",
+ "CreateTime",
"UpdateTime"
],
"members":{
- "CreateTime":{
- "shape":"Timestamp",
- "documentation":"The timestamp for when the place index resource was created in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
- },
- "DataSource":{
- "shape":"String",
- "documentation":"The data provider of geospatial data. Values can be one of the following:
For more information about data providers, see Amazon Location Service data providers.
"
+ "IndexName":{
+ "shape":"ResourceName",
+ "documentation":"The name of the place index resource.
"
},
"Description":{
"shape":"ResourceDescription",
"documentation":"The optional description for the place index resource.
"
},
- "IndexName":{
- "shape":"ResourceName",
- "documentation":"The name of the place index resource.
"
+ "DataSource":{
+ "shape":"String",
+ "documentation":"The data provider of geospatial data. Values can be one of the following:
For more information about data providers, see Amazon Location Service data providers.
"
},
"PricingPlan":{
"shape":"PricingPlan",
@@ -4100,6 +4390,10 @@
"deprecated":true,
"deprecatedMessage":"Deprecated. Always returns RequestBasedUsage."
},
+ "CreateTime":{
+ "shape":"Timestamp",
+ "documentation":"The timestamp for when the place index resource was created in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
+ },
"UpdateTime":{
"shape":"Timestamp",
"documentation":"The timestamp for when the place index resource was last updated in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
@@ -4148,9 +4442,9 @@
"type":"structure",
"required":[
"CalculatorName",
- "CreateTime",
- "DataSource",
"Description",
+ "DataSource",
+ "CreateTime",
"UpdateTime"
],
"members":{
@@ -4158,24 +4452,24 @@
"shape":"ResourceName",
"documentation":"The name of the route calculator resource.
"
},
- "CreateTime":{
- "shape":"Timestamp",
- "documentation":"The timestamp when the route calculator resource was created in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
+ "Description":{
+ "shape":"ResourceDescription",
+ "documentation":"The optional description of the route calculator resource.
"
},
"DataSource":{
"shape":"String",
"documentation":"The data provider of traffic and road network data. Indicates one of the available providers:
For more information about data providers, see Amazon Location Service data providers.
"
},
- "Description":{
- "shape":"ResourceDescription",
- "documentation":"The optional description of the route calculator resource.
"
- },
"PricingPlan":{
"shape":"PricingPlan",
"documentation":"Always returns RequestBasedUsage
.
",
"deprecated":true,
"deprecatedMessage":"Deprecated. Always returns RequestBasedUsage."
},
+ "CreateTime":{
+ "shape":"Timestamp",
+ "documentation":"The timestamp when the route calculator resource was created in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
+ },
"UpdateTime":{
"shape":"Timestamp",
"documentation":"The timestamp when the route calculator resource was last updated in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
@@ -4212,6 +4506,12 @@
"type":"structure",
"required":["TrackerName"],
"members":{
+ "TrackerName":{
+ "shape":"ResourceName",
+ "documentation":"The tracker resource whose associated geofence collections you want to list.
",
+ "location":"uri",
+ "locationName":"TrackerName"
+ },
"MaxResults":{
"shape":"ListTrackerConsumersRequestMaxResultsInteger",
"documentation":"An optional limit for the number of resources returned in a single call.
Default value: 100
"
@@ -4219,12 +4519,6 @@
"NextToken":{
"shape":"Token",
"documentation":"The pagination token specifying which page of results to return in the response. If no token is provided, the default page is the first page.
Default value: null
"
- },
- "TrackerName":{
- "shape":"ResourceName",
- "documentation":"The tracker resource whose associated geofence collections you want to list.
",
- "location":"uri",
- "locationName":"TrackerName"
}
}
},
@@ -4284,15 +4578,15 @@
"ListTrackersResponseEntry":{
"type":"structure",
"required":[
- "CreateTime",
- "Description",
"TrackerName",
+ "Description",
+ "CreateTime",
"UpdateTime"
],
"members":{
- "CreateTime":{
- "shape":"Timestamp",
- "documentation":"The timestamp for when the tracker resource was created in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
+ "TrackerName":{
+ "shape":"ResourceName",
+ "documentation":"The name of the tracker resource.
"
},
"Description":{
"shape":"ResourceDescription",
@@ -4310,9 +4604,9 @@
"deprecated":true,
"deprecatedMessage":"Deprecated. Unused."
},
- "TrackerName":{
- "shape":"ResourceName",
- "documentation":"The name of the tracker resource.
"
+ "CreateTime":{
+ "shape":"Timestamp",
+ "documentation":"The timestamp for when the tracker resource was created in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
},
"UpdateTime":{
"shape":"Timestamp",
@@ -4325,21 +4619,151 @@
"type":"list",
"member":{"shape":"ListTrackersResponseEntry"}
},
+ "LteCellDetails":{
+ "type":"structure",
+ "required":[
+ "CellId",
+ "Mcc",
+ "Mnc"
+ ],
+ "members":{
+ "CellId":{
+ "shape":"EutranCellId",
+ "documentation":"The E-UTRAN Cell Identifier (ECI).
"
+ },
+ "Mcc":{
+ "shape":"LteCellDetailsMccInteger",
+ "documentation":"The Mobile Country Code (MCC).
"
+ },
+ "Mnc":{
+ "shape":"LteCellDetailsMncInteger",
+ "documentation":"The Mobile Network Code (MNC)
"
+ },
+ "LocalId":{
+ "shape":"LteLocalId",
+ "documentation":"The LTE local identification information (local ID).
"
+ },
+ "NetworkMeasurements":{
+ "shape":"LteCellDetailsNetworkMeasurementsList",
+ "documentation":"The network measurements.
"
+ },
+ "TimingAdvance":{
+ "shape":"LteCellDetailsTimingAdvanceInteger",
+ "documentation":"Timing Advance (TA).
"
+ },
+ "NrCapable":{
+ "shape":"Boolean",
+ "documentation":"Indicates whether the LTE object is capable of supporting NR (new radio).
"
+ },
+ "Rsrp":{
+ "shape":"Rsrp",
+ "documentation":"Signal power of the reference signal received, measured in decibel-milliwatts (dBm).
"
+ },
+ "Rsrq":{
+ "shape":"Rsrq",
+ "documentation":"Signal quality of the reference Signal received, measured in decibels (dB).
"
+ },
+ "Tac":{
+ "shape":"LteCellDetailsTacInteger",
+ "documentation":"LTE Tracking Area Code (TAC).
"
+ }
+ },
+ "documentation":"Details about the Long-Term Evolution (LTE) network.
"
+ },
+ "LteCellDetailsMccInteger":{
+ "type":"integer",
+ "box":true,
+ "max":999,
+ "min":200
+ },
+ "LteCellDetailsMncInteger":{
+ "type":"integer",
+ "box":true,
+ "max":999,
+ "min":0
+ },
+ "LteCellDetailsNetworkMeasurementsList":{
+ "type":"list",
+ "member":{"shape":"LteNetworkMeasurements"},
+ "max":32,
+ "min":1
+ },
+ "LteCellDetailsTacInteger":{
+ "type":"integer",
+ "box":true,
+ "max":65535,
+ "min":0
+ },
+ "LteCellDetailsTimingAdvanceInteger":{
+ "type":"integer",
+ "box":true,
+ "max":1282,
+ "min":0
+ },
+ "LteLocalId":{
+ "type":"structure",
+ "required":[
+ "Earfcn",
+ "Pci"
+ ],
+ "members":{
+ "Earfcn":{
+ "shape":"Earfcn",
+ "documentation":"E-UTRA (Evolved Universal Terrestrial Radio Access) absolute radio frequency channel number (EARFCN).
"
+ },
+ "Pci":{
+ "shape":"Pci",
+ "documentation":"Physical Cell ID (PCI).
"
+ }
+ },
+ "documentation":"LTE local identification information (local ID).
"
+ },
+ "LteNetworkMeasurements":{
+ "type":"structure",
+ "required":[
+ "Earfcn",
+ "CellId",
+ "Pci"
+ ],
+ "members":{
+ "Earfcn":{
+ "shape":"Earfcn",
+ "documentation":"E-UTRA (Evolved Universal Terrestrial Radio Access) absolute radio frequency channel number (EARFCN).
"
+ },
+ "CellId":{
+ "shape":"EutranCellId",
+ "documentation":"E-UTRAN Cell Identifier (ECI).
"
+ },
+ "Pci":{
+ "shape":"Pci",
+ "documentation":"Physical Cell ID (PCI).
"
+ },
+ "Rsrp":{
+ "shape":"Rsrp",
+ "documentation":"Signal power of the reference signal received, measured in dBm (decibel-milliwatts).
"
+ },
+ "Rsrq":{
+ "shape":"Rsrq",
+ "documentation":"Signal quality of the reference Signal received, measured in decibels (dB).
"
+ }
+ },
+ "documentation":"LTE network measurements.
"
+ },
"MapConfiguration":{
"type":"structure",
"required":["Style"],
"members":{
- "CustomLayers":{
- "shape":"CustomLayerList",
- "documentation":"Specifies the custom layers for the style. Leave unset to not enable any custom layer, or, for styles that support custom layers, you can enable layer(s), such as POI
layer for the VectorEsriNavigation style. Default is unset
.
Currenlty only VectorEsriNavigation
supports CustomLayers. For more information, see Custom Layers.
"
+ "Style":{
+ "shape":"MapStyle",
+ "documentation":"Specifies the map style selected from an available data provider.
Valid Esri map styles:
-
VectorEsriDarkGrayCanvas
– The Esri Dark Gray Canvas map style. A vector basemap with a dark gray, neutral background with minimal colors, labels, and features that's designed to draw attention to your thematic content.
-
RasterEsriImagery
– The Esri Imagery map style. A raster basemap that provides one meter or better satellite and aerial imagery in many parts of the world and lower resolution satellite imagery worldwide.
-
VectorEsriLightGrayCanvas
– The Esri Light Gray Canvas map style, which provides a detailed vector basemap with a light gray, neutral background style with minimal colors, labels, and features that's designed to draw attention to your thematic content.
-
VectorEsriTopographic
– The Esri Light map style, which provides a detailed vector basemap with a classic Esri map style.
-
VectorEsriStreets
– The Esri Street Map style, which provides a detailed vector basemap for the world symbolized with a classic Esri street map style. The vector tile layer is similar in content and style to the World Street Map raster map.
-
VectorEsriNavigation
– The Esri Navigation map style, which provides a detailed basemap for the world symbolized with a custom navigation map style that's designed for use during the day in mobile devices.
Valid HERE Technologies map styles:
-
VectorHereContrast
– The HERE Contrast (Berlin) map style is a high contrast detailed base map of the world that blends 3D and 2D rendering.
The VectorHereContrast
style has been renamed from VectorHereBerlin
. VectorHereBerlin
has been deprecated, but will continue to work in applications that use it.
-
VectorHereExplore
– A default HERE map style containing a neutral, global map and its features including roads, buildings, landmarks, and water features. It also now includes a fully designed map of Japan.
-
VectorHereExploreTruck
– A global map containing truck restrictions and attributes (e.g. width / height / HAZMAT) symbolized with highlighted segments and icons on top of HERE Explore to support use cases within transport and logistics.
-
RasterHereExploreSatellite
– A global map containing high resolution satellite imagery.
-
HybridHereExploreSatellite
– A global map displaying the road network, street names, and city labels over satellite imagery. This style will automatically retrieve both raster and vector tiles, and your charges will be based on total tiles retrieved.
Hybrid styles use both vector and raster tiles when rendering the map that you see. This means that more tiles are retrieved than when using either vector or raster tiles alone. Your charges will include all tiles retrieved.
Valid GrabMaps map styles:
-
VectorGrabStandardLight
– The Grab Standard Light map style provides a basemap with detailed land use coloring, area names, roads, landmarks, and points of interest covering Southeast Asia.
-
VectorGrabStandardDark
– The Grab Standard Dark map style provides a dark variation of the standard basemap covering Southeast Asia.
Grab provides maps only for countries in Southeast Asia, and is only available in the Asia Pacific (Singapore) Region (ap-southeast-1
). For more information, see GrabMaps countries and area covered.
Valid Open Data map styles:
-
VectorOpenDataStandardLight
– The Open Data Standard Light map style provides a detailed basemap for the world suitable for website and mobile application use. The map includes highways major roads, minor roads, railways, water features, cities, parks, landmarks, building footprints, and administrative boundaries.
-
VectorOpenDataStandardDark
– Open Data Standard Dark is a dark-themed map style that provides a detailed basemap for the world suitable for website and mobile application use. The map includes highways major roads, minor roads, railways, water features, cities, parks, landmarks, building footprints, and administrative boundaries.
-
VectorOpenDataVisualizationLight
– The Open Data Visualization Light map style is a light-themed style with muted colors and fewer features that aids in understanding overlaid data.
-
VectorOpenDataVisualizationDark
– The Open Data Visualization Dark map style is a dark-themed style with muted colors and fewer features that aids in understanding overlaid data.
"
},
"PoliticalView":{
"shape":"CountryCode3",
"documentation":"Specifies the political view for the style. Leave unset to not use a political view, or, for styles that support specific political views, you can choose a view, such as IND
for the Indian view.
Default is unset.
Not all map resources or styles support political view styles. See Political views for more information.
"
},
- "Style":{
- "shape":"MapStyle",
- "documentation":"Specifies the map style selected from an available data provider.
Valid Esri map styles:
-
VectorEsriNavigation
– The Esri Navigation map style, which provides a detailed basemap for the world symbolized with a custom navigation map style that's designed for use during the day in mobile devices. It also includes a richer set of places, such as shops, services, restaurants, attractions, and other points of interest. Enable the POI
layer by setting it in CustomLayers to leverage the additional places data.
-
RasterEsriImagery
– The Esri Imagery map style. A raster basemap that provides one meter or better satellite and aerial imagery in many parts of the world and lower resolution satellite imagery worldwide.
-
VectorEsriLightGrayCanvas
– The Esri Light Gray Canvas map style, which provides a detailed vector basemap with a light gray, neutral background style with minimal colors, labels, and features that's designed to draw attention to your thematic content.
-
VectorEsriTopographic
– The Esri Light map style, which provides a detailed vector basemap with a classic Esri map style.
-
VectorEsriStreets
– The Esri Street Map style, which provides a detailed vector basemap for the world symbolized with a classic Esri street map style. The vector tile layer is similar in content and style to the World Street Map raster map.
-
VectorEsriDarkGrayCanvas
– The Esri Dark Gray Canvas map style. A vector basemap with a dark gray, neutral background with minimal colors, labels, and features that's designed to draw attention to your thematic content.
Valid HERE Technologies map styles:
-
VectorHereExplore
– A default HERE map style containing a neutral, global map and its features including roads, buildings, landmarks, and water features. It also now includes a fully designed map of Japan.
-
RasterHereExploreSatellite
– A global map containing high resolution satellite imagery.
-
HybridHereExploreSatellite
– A global map displaying the road network, street names, and city labels over satellite imagery. This style will automatically retrieve both raster and vector tiles, and your charges will be based on total tiles retrieved.
Hybrid styles use both vector and raster tiles when rendering the map that you see. This means that more tiles are retrieved than when using either vector or raster tiles alone. Your charges will include all tiles retrieved.
-
VectorHereContrast
– The HERE Contrast (Berlin) map style is a high contrast detailed base map of the world that blends 3D and 2D rendering.
The VectorHereContrast
style has been renamed from VectorHereBerlin
. VectorHereBerlin
has been deprecated, but will continue to work in applications that use it.
-
VectorHereExploreTruck
– A global map containing truck restrictions and attributes (e.g. width / height / HAZMAT) symbolized with highlighted segments and icons on top of HERE Explore to support use cases within transport and logistics.
Valid GrabMaps map styles:
-
VectorGrabStandardLight
– The Grab Standard Light map style provides a basemap with detailed land use coloring, area names, roads, landmarks, and points of interest covering Southeast Asia.
-
VectorGrabStandardDark
– The Grab Standard Dark map style provides a dark variation of the standard basemap covering Southeast Asia.
Grab provides maps only for countries in Southeast Asia, and is only available in the Asia Pacific (Singapore) Region (ap-southeast-1
). For more information, see GrabMaps countries and area covered.
Valid Open Data map styles:
-
VectorOpenDataStandardLight
– The Open Data Standard Light map style provides a detailed basemap for the world suitable for website and mobile application use. The map includes highways major roads, minor roads, railways, water features, cities, parks, landmarks, building footprints, and administrative boundaries.
-
VectorOpenDataStandardDark
– Open Data Standard Dark is a dark-themed map style that provides a detailed basemap for the world suitable for website and mobile application use. The map includes highways major roads, minor roads, railways, water features, cities, parks, landmarks, building footprints, and administrative boundaries.
-
VectorOpenDataVisualizationLight
– The Open Data Visualization Light map style is a light-themed style with muted colors and fewer features that aids in understanding overlaid data.
-
VectorOpenDataVisualizationDark
– The Open Data Visualization Dark map style is a dark-themed style with muted colors and fewer features that aids in understanding overlaid data.
"
+ "CustomLayers":{
+ "shape":"CustomLayerList",
+ "documentation":"Specifies the custom layers for the style. Leave unset to not enable any custom layer, or, for styles that support custom layers, you can enable layer(s), such as POI layer for the VectorEsriNavigation style. Default is unset
.
Not all map resources or styles support custom layers. See Custom Layers for more information.
"
}
},
"documentation":"Specifies the map tile style selected from an available provider.
"
@@ -4347,13 +4771,13 @@
"MapConfigurationUpdate":{
"type":"structure",
"members":{
- "CustomLayers":{
- "shape":"CustomLayerList",
- "documentation":"Specifies the custom layers for the style. Leave unset to not enable any custom layer, or, for styles that support custom layers, you can enable layer(s), such as POI
layer for the VectorEsriNavigation style. Default is unset
.
Currenlty only VectorEsriNavigation
supports CustomLayers. For more information, see Custom Layers.
"
- },
"PoliticalView":{
"shape":"CountryCode3OrEmpty",
"documentation":"Specifies the political view for the style. Set to an empty string to not use a political view, or, for styles that support specific political views, you can choose a view, such as IND
for the Indian view.
Not all map resources or styles support political view styles. See Political views for more information.
"
+ },
+ "CustomLayers":{
+ "shape":"CustomLayerList",
+ "documentation":"Specifies the custom layers for the style. Leave unset to not enable any custom layer, or, for styles that support custom layers, you can enable layer(s), such as POI layer for the VectorEsriNavigation style. Default is unset
.
Not all map resources or styles support custom layers. See Custom Layers for more information.
"
}
},
"documentation":"Specifies the political view for the style.
"
@@ -4362,7 +4786,11 @@
"type":"string",
"max":100,
"min":1,
- "pattern":"^[-._\\w]+$"
+ "pattern":"[-._\\w]+"
+ },
+ "NearestDistance":{
+ "type":"double",
+ "min":0
},
"OptimizationMode":{
"type":"string",
@@ -4371,74 +4799,79 @@
"ShortestRoute"
]
},
+ "Pci":{
+ "type":"integer",
+ "max":503,
+ "min":0
+ },
"Place":{
"type":"structure",
"required":["Geometry"],
"members":{
+ "Label":{
+ "shape":"String",
+ "documentation":"The full name and address of the point of interest such as a city, region, or country. For example, 123 Any Street, Any Town, USA
.
"
+ },
+ "Geometry":{"shape":"PlaceGeometry"},
"AddressNumber":{
"shape":"String",
"documentation":"The numerical portion of an address, such as a building number.
"
},
- "Categories":{
- "shape":"PlaceCategoryList",
- "documentation":"The Amazon Location categories that describe this Place.
For more information about using categories, including a list of Amazon Location categories, see Categories and filtering, in the Amazon Location Service Developer Guide.
"
- },
- "Country":{
+ "Street":{
"shape":"String",
- "documentation":"A country/region specified using ISO 3166 3-digit country/region code. For example, CAN
.
"
- },
- "Geometry":{"shape":"PlaceGeometry"},
- "Interpolated":{
- "shape":"Boolean",
- "documentation":" True
if the result is interpolated from other known places.
False
if the Place is a known place.
Not returned when the partner does not provide the information.
For example, returns False
for an address location that is found in the partner data, but returns True
if an address does not exist in the partner data and its location is calculated by interpolating between other known addresses.
"
+ "documentation":"The name for a street or a road to identify a location. For example, Main Street
.
"
},
- "Label":{
+ "Neighborhood":{
"shape":"String",
- "documentation":"The full name and address of the point of interest such as a city, region, or country. For example, 123 Any Street, Any Town, USA
.
"
+ "documentation":"The name of a community district. For example, Downtown
.
"
},
"Municipality":{
"shape":"String",
"documentation":"A name for a local area, such as a city or town name. For example, Toronto
.
"
},
- "Neighborhood":{
- "shape":"String",
- "documentation":"The name of a community district. For example, Downtown
.
"
- },
- "PostalCode":{
+ "SubRegion":{
"shape":"String",
- "documentation":"A group of numbers and letters in a country-specific format, which accompanies the address for the purpose of identifying a location.
"
+ "documentation":"A county, or an area that's part of a larger region. For example, Metro Vancouver
.
"
},
"Region":{
"shape":"String",
"documentation":"A name for an area or geographical division, such as a province or state name. For example, British Columbia
.
"
},
- "Street":{
- "shape":"String",
- "documentation":"The name for a street or a road to identify a location. For example, Main Street
.
"
- },
- "SubMunicipality":{
+ "Country":{
"shape":"String",
- "documentation":"An area that's part of a larger municipality. For example, Blissville
is a submunicipality in the Queen County in New York.
This property is only returned for a place index that uses Esri as a data provider. The property is represented as a district
.
For more information about data providers, see Amazon Location Service data providers.
"
+ "documentation":"A country/region specified using ISO 3166 3-digit country/region code. For example, CAN
.
"
},
- "SubRegion":{
+ "PostalCode":{
"shape":"String",
- "documentation":"A county, or an area that's part of a larger region. For example, Metro Vancouver
.
"
+ "documentation":"A group of numbers and letters in a country-specific format, which accompanies the address for the purpose of identifying a location.
"
},
- "SupplementalCategories":{
- "shape":"PlaceSupplementalCategoryList",
- "documentation":"Categories from the data provider that describe the Place that are not mapped to any Amazon Location categories.
"
+ "Interpolated":{
+ "shape":"Boolean",
+ "documentation":" True
if the result is interpolated from other known places.
False
if the Place is a known place.
Not returned when the partner does not provide the information.
For example, returns False
for an address location that is found in the partner data, but returns True
if an address does not exist in the partner data and its location is calculated by interpolating between other known addresses.
"
},
"TimeZone":{
"shape":"TimeZone",
"documentation":"The time zone in which the Place
is located. Returned only when using HERE or Grab as the selected partner.
"
},
+ "UnitType":{
+ "shape":"String",
+ "documentation":"For addresses with a UnitNumber
, the type of unit. For example, Apartment
.
Returned only for a place index that uses Esri as a data provider.
"
+ },
"UnitNumber":{
"shape":"String",
- "documentation":"For addresses with multiple units, the unit identifier. Can include numbers and letters, for example 3B
or Unit 123
.
This property is returned only for a place index that uses Esri or Grab as a data provider. It is not returned for SearchPlaceIndexForPosition
.
"
+ "documentation":"For addresses with multiple units, the unit identifier. Can include numbers and letters, for example 3B
or Unit 123
.
Returned only for a place index that uses Esri or Grab as a data provider. Is not returned for SearchPlaceIndexForPosition
.
"
},
- "UnitType":{
+ "Categories":{
+ "shape":"PlaceCategoryList",
+ "documentation":"The Amazon Location categories that describe this Place.
For more information about using categories, including a list of Amazon Location categories, see Categories and filtering, in the Amazon Location Service Developer Guide.
"
+ },
+ "SupplementalCategories":{
+ "shape":"PlaceSupplementalCategoryList",
+ "documentation":"Categories from the data provider that describe the Place that are not mapped to any Amazon Location categories.
"
+ },
+ "SubMunicipality":{
"shape":"String",
- "documentation":"For addresses with a UnitNumber
, the type of unit. For example, Apartment
.
This property is returned only for a place index that uses Esri as a data provider.
"
+ "documentation":"An area that's part of a larger municipality. For example, Blissville
is a submunicipality in the Queen County in New York.
This property supported by Esri and OpenData. The Esri property is district
, and the OpenData property is borough
.
"
}
},
"documentation":"Contains details about addresses or points of interest that match the search criteria.
Not all details are included with all responses. Some details may only be returned by specific data partners.
"
@@ -4511,7 +4944,7 @@
"PositionalAccuracyHorizontalDouble":{
"type":"double",
"box":true,
- "max":10000,
+ "max":10000000,
"min":0
},
"PricingPlan":{
@@ -4560,32 +4993,32 @@
"location":"uri",
"locationName":"GeofenceId"
},
+ "Geometry":{
+ "shape":"GeofenceGeometry",
+ "documentation":"Contains the details to specify the position of the geofence. Can be a polygon, a circle or a polygon encoded in Geobuf format. Including multiple selections will return a validation error.
The geofence polygon format supports a maximum of 1,000 vertices. The Geofence Geobuf format supports a maximum of 100,000 vertices.
"
+ },
"GeofenceProperties":{
"shape":"PropertyMap",
"documentation":"Associates one of more properties with the geofence. A property is a key-value pair stored with the geofence and added to any geofence event triggered with that geofence.
Format: \"key\" : \"value\"
"
- },
- "Geometry":{
- "shape":"GeofenceGeometry",
- "documentation":"Contains the details to specify the position of the geofence. Can be either a polygon or a circle. Including both will return a validation error.
Each geofence polygon can have a maximum of 1,000 vertices.
"
}
}
},
"PutGeofenceResponse":{
"type":"structure",
"required":[
- "CreateTime",
"GeofenceId",
+ "CreateTime",
"UpdateTime"
],
"members":{
- "CreateTime":{
- "shape":"Timestamp",
- "documentation":"The timestamp for when the geofence was created in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
"
- },
"GeofenceId":{
"shape":"Id",
"documentation":"The geofence identifier entered in the request.
"
},
+ "CreateTime":{
+ "shape":"Timestamp",
+ "documentation":"The timestamp for when the geofence was created in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
"
+ },
"UpdateTime":{
"shape":"Timestamp",
"documentation":"The timestamp for when the geofence was last updated in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
"
@@ -4596,7 +5029,7 @@
"type":"string",
"max":253,
"min":0,
- "pattern":"^([$\\-._+!*\\x{60}(),;/?:@=&\\w]|%([0-9a-fA-F?]{2}|[0-9a-fA-F?]?[*]))+$"
+ "pattern":"([$\\-._+!*\\x{60}(),;/?:@=&\\w]|%([0-9a-fA-F?]{2}|[0-9a-fA-F?]?[*]))+"
},
"ResourceDescription":{
"type":"string",
@@ -4607,7 +5040,7 @@
"type":"string",
"max":100,
"min":1,
- "pattern":"^[-._\\w]+$"
+ "pattern":"[-._\\w]+"
},
"ResourceNotFoundException":{
"type":"structure",
@@ -4687,21 +5120,33 @@
"type":"list",
"member":{"shape":"RouteMatrixEntry"}
},
+ "Rsrp":{
+ "type":"integer",
+ "box":true,
+ "max":-44,
+ "min":-140
+ },
+ "Rsrq":{
+ "type":"float",
+ "box":true,
+ "max":-3,
+ "min":-19.5
+ },
"SearchForPositionResult":{
"type":"structure",
"required":[
- "Distance",
- "Place"
+ "Place",
+ "Distance"
],
"members":{
- "Distance":{
- "shape":"SearchForPositionResultDistanceDouble",
- "documentation":"The distance in meters of a great-circle arc between the query position and the result.
A great-circle arc is the shortest path on a sphere, in this case the Earth. This returns the shortest distance between two locations.
"
- },
"Place":{
"shape":"Place",
"documentation":"Details about the search result, such as its address and position.
"
},
+ "Distance":{
+ "shape":"SearchForPositionResultDistanceDouble",
+ "documentation":"The distance in meters of a great-circle arc between the query position and the result.
A great-circle arc is the shortest path on a sphere, in this case the Earth. This returns the shortest distance between two locations.
"
+ },
"PlaceId":{
"shape":"PlaceId",
"documentation":"The unique identifier of the place. You can use this with the GetPlace
operation to find the place again later.
For SearchPlaceIndexForPosition
operations, the PlaceId
is returned only by place indexes that use HERE or Grab as a data provider.
"
@@ -4722,21 +5167,21 @@
"type":"structure",
"required":["Text"],
"members":{
- "Categories":{
- "shape":"PlaceCategoryList",
- "documentation":"The Amazon Location categories that describe the Place.
For more information about using categories, including a list of Amazon Location categories, see Categories and filtering, in the Amazon Location Service Developer Guide.
"
+ "Text":{
+ "shape":"String",
+ "documentation":"The text of the place suggestion, typically formatted as an address string.
"
},
"PlaceId":{
"shape":"PlaceId",
- "documentation":"The unique identifier of the Place. You can use this with the GetPlace
operation to find the place again later, or to get full information for the Place.
The GetPlace
request must use the same PlaceIndex
resource as the SearchPlaceIndexForSuggestions
that generated the Place ID.
For SearchPlaceIndexForSuggestions
operations, the PlaceId
is returned by place indexes that use Esri, Grab, or HERE as data providers.
While you can use PlaceID in subsequent requests, PlaceID is not intended to be a permanent identifier and the ID can change between consecutive API calls. Please see the following PlaceID behaviour for each data provider:
-
Esri: Place IDs will change every quarter at a minimum. The typical time period for these changes would be March, June, September, and December. Place IDs might also change between the typical quarterly change but that will be much less frequent.
-
HERE: We recommend that you cache data for no longer than a week to keep your data data fresh. You can assume that less than 1% ID shifts will release over release which is approximately 1 - 2 times per week.
-
Grab: Place IDs can expire or become invalid in the following situations.
-
Data operations: The POI may be removed from Grab POI database by Grab Map Ops based on the ground-truth, such as being closed in the real world, being detected as a duplicate POI, or having incorrect information. Grab will synchronize data to the Waypoint environment on weekly basis.
-
Interpolated POI: Interpolated POI is a temporary POI generated in real time when serving a request, and it will be marked as derived in the place.result_type
field in the response. The information of interpolated POIs will be retained for at least 30 days, which means that within 30 days, you are able to obtain POI details by Place ID from Place Details API. After 30 days, the interpolated POIs(both Place ID and details) may expire and inaccessible from the Places Details API.
"
+ "documentation":"The unique identifier of the Place. You can use this with the GetPlace
operation to find the place again later, or to get full information for the Place.
The GetPlace
request must use the same PlaceIndex
resource as the SearchPlaceIndexForSuggestions
that generated the Place ID.
For SearchPlaceIndexForSuggestions
operations, the PlaceId
is returned by place indexes that use Esri, Grab, or HERE as data providers.
"
+ },
+ "Categories":{
+ "shape":"PlaceCategoryList",
+ "documentation":"The Amazon Location categories that describe the Place.
For more information about using categories, including a list of Amazon Location categories, see Categories and filtering, in the Amazon Location Service Developer Guide.
"
},
"SupplementalCategories":{
"shape":"PlaceSupplementalCategoryList",
"documentation":"Categories from the data provider that describe the Place that are not mapped to any Amazon Location categories.
"
- },
- "Text":{
- "shape":"String",
- "documentation":"The text of the place suggestion, typically formatted as an address string.
"
}
},
"documentation":"Contains a place suggestion resulting from a place suggestion query that is run on a place index resource.
"
@@ -4747,23 +5192,23 @@
},
"SearchForTextResult":{
"type":"structure",
- "required":["Place"],
- "members":{
- "Distance":{
- "shape":"SearchForTextResultDistanceDouble",
- "documentation":"The distance in meters of a great-circle arc between the bias position specified and the result. Distance
will be returned only if a bias position was specified in the query.
A great-circle arc is the shortest path on a sphere, in this case the Earth. This returns the shortest distance between two locations.
"
- },
+ "required":["Place"],
+ "members":{
"Place":{
"shape":"Place",
"documentation":"Details about the search result, such as its address and position.
"
},
- "PlaceId":{
- "shape":"PlaceId",
- "documentation":"The unique identifier of the place. You can use this with the GetPlace
operation to find the place again later.
For SearchPlaceIndexForText
operations, the PlaceId
is returned only by place indexes that use HERE or Grab as a data provider.
"
+ "Distance":{
+ "shape":"SearchForTextResultDistanceDouble",
+ "documentation":"The distance in meters of a great-circle arc between the bias position specified and the result. Distance
will be returned only if a bias position was specified in the query.
A great-circle arc is the shortest path on a sphere, in this case the Earth. This returns the shortest distance between two locations.
"
},
"Relevance":{
"shape":"SearchForTextResultRelevanceDouble",
"documentation":"The relative confidence in the match for a result among the results returned. For example, if more fields for an address match (including house number, street, city, country/region, and postal code), the relevance score is closer to 1.
Returned only when the partner selected is Esri or Grab.
"
+ },
+ "PlaceId":{
+ "shape":"PlaceId",
+ "documentation":"The unique identifier of the place. You can use this with the GetPlace
operation to find the place again later.
For SearchPlaceIndexForText
operations, the PlaceId
is returned only by place indexes that use HERE or Grab as a data provider.
"
}
},
"documentation":"Contains a search result from a text search query that is run on a place index resource.
"
@@ -4796,50 +5241,58 @@
"location":"uri",
"locationName":"IndexName"
},
- "Key":{
- "shape":"ApiKey",
- "documentation":"The optional API key to authorize the request.
",
- "location":"querystring",
- "locationName":"key"
- },
- "Language":{
- "shape":"LanguageTag",
- "documentation":"The preferred language used to return results. The value must be a valid BCP 47 language tag, for example, en
for English.
This setting affects the languages used in the results, but not the results themselves. If no language is specified, or not supported for a particular result, the partner automatically chooses a language for the result.
For an example, we'll use the Greek language. You search for a location around Athens, Greece, with the language
parameter set to en
. The city
in the results will most likely be returned as Athens
.
If you set the language
parameter to el
, for Greek, then the city
in the results will more likely be returned as Αθήνα
.
If the data provider does not have a value for Greek, the result will be in a language that the provider does support.
"
+ "Position":{
+ "shape":"Position",
+ "documentation":"Specifies the longitude and latitude of the position to query.
This parameter must contain a pair of numbers. The first number represents the X coordinate, or longitude; the second number represents the Y coordinate, or latitude.
For example, [-123.1174, 49.2847]
represents a position with longitude -123.1174
and latitude 49.2847
.
"
},
"MaxResults":{
"shape":"PlaceIndexSearchResultLimit",
"documentation":"An optional parameter. The maximum number of results returned per request.
Default value: 50
"
},
- "Position":{
- "shape":"Position",
- "documentation":"Specifies the longitude and latitude of the position to query.
This parameter must contain a pair of numbers. The first number represents the X coordinate, or longitude; the second number represents the Y coordinate, or latitude.
For example, [-123.1174, 49.2847]
represents a position with longitude -123.1174
and latitude 49.2847
.
"
+ "Language":{
+ "shape":"LanguageTag",
+ "documentation":"The preferred language used to return results. The value must be a valid BCP 47 language tag, for example, en
for English.
This setting affects the languages used in the results, but not the results themselves. If no language is specified, or not supported for a particular result, the partner automatically chooses a language for the result.
For an example, we'll use the Greek language. You search for a location around Athens, Greece, with the language
parameter set to en
. The city
in the results will most likely be returned as Athens
.
If you set the language
parameter to el
, for Greek, then the city
in the results will more likely be returned as Αθήνα
.
If the data provider does not have a value for Greek, the result will be in a language that the provider does support.
"
+ },
+ "Key":{
+ "shape":"ApiKey",
+ "documentation":"The optional API key to authorize the request.
",
+ "location":"querystring",
+ "locationName":"key"
}
}
},
"SearchPlaceIndexForPositionResponse":{
"type":"structure",
"required":[
- "Results",
- "Summary"
+ "Summary",
+ "Results"
],
"members":{
- "Results":{
- "shape":"SearchForPositionResultList",
- "documentation":"Returns a list of Places closest to the specified position. Each result contains additional information about the Places returned.
"
- },
"Summary":{
"shape":"SearchPlaceIndexForPositionSummary",
"documentation":"Contains a summary of the request. Echoes the input values for Position
, Language
, MaxResults
, and the DataSource
of the place index.
"
+ },
+ "Results":{
+ "shape":"SearchForPositionResultList",
+ "documentation":"Returns a list of Places closest to the specified position. Each result contains additional information about the Places returned.
"
}
}
},
"SearchPlaceIndexForPositionSummary":{
"type":"structure",
"required":[
- "DataSource",
- "Position"
+ "Position",
+ "DataSource"
],
"members":{
+ "Position":{
+ "shape":"Position",
+ "documentation":"The position specified in the request.
"
+ },
+ "MaxResults":{
+ "shape":"PlaceIndexSearchResultLimit",
+ "documentation":"Contains the optional result count limit that is specified in the request.
Default value: 50
"
+ },
"DataSource":{
"shape":"String",
"documentation":"The geospatial data provider attached to the place index resource specified in the request. Values can be one of the following:
For more information about data providers, see Amazon Location Service data providers.
"
@@ -4847,14 +5300,6 @@
"Language":{
"shape":"LanguageTag",
"documentation":"The preferred language used to return results. Matches the language in the request. The value is a valid BCP 47 language tag, for example, en
for English.
"
- },
- "MaxResults":{
- "shape":"PlaceIndexSearchResultLimit",
- "documentation":"Contains the optional result count limit that is specified in the request.
Default value: 50
"
- },
- "Position":{
- "shape":"Position",
- "documentation":"The position specified in the request.
"
}
},
"documentation":"A summary of the request sent by using SearchPlaceIndexForPosition
.
"
@@ -4866,6 +5311,16 @@
"Text"
],
"members":{
+ "IndexName":{
+ "shape":"ResourceName",
+ "documentation":"The name of the place index resource you want to use for the search.
",
+ "location":"uri",
+ "locationName":"IndexName"
+ },
+ "Text":{
+ "shape":"SearchPlaceIndexForSuggestionsRequestTextString",
+ "documentation":"The free-form partial text to use to generate place suggestions. For example, eiffel tow
.
"
+ },
"BiasPosition":{
"shape":"Position",
"documentation":"An optional parameter that indicates a preference for place suggestions that are closer to a specified position.
If provided, this parameter must contain a pair of numbers. The first number represents the X coordinate, or longitude; the second number represents the Y coordinate, or latitude.
For example, [-123.1174, 49.2847]
represents the position with longitude -123.1174
and latitude 49.2847
.
BiasPosition
and FilterBBox
are mutually exclusive. Specifying both options results in an error.
"
@@ -4874,37 +5329,27 @@
"shape":"BoundingBox",
"documentation":"An optional parameter that limits the search results by returning only suggestions within a specified bounding box.
If provided, this parameter must contain a total of four consecutive numbers in two pairs. The first pair of numbers represents the X and Y coordinates (longitude and latitude, respectively) of the southwest corner of the bounding box; the second pair of numbers represents the X and Y coordinates (longitude and latitude, respectively) of the northeast corner of the bounding box.
For example, [-12.7935, -37.4835, -12.0684, -36.9542]
represents a bounding box where the southwest corner has longitude -12.7935
and latitude -37.4835
, and the northeast corner has longitude -12.0684
and latitude -36.9542
.
FilterBBox
and BiasPosition
are mutually exclusive. Specifying both options results in an error.
"
},
- "FilterCategories":{
- "shape":"FilterPlaceCategoryList",
- "documentation":"A list of one or more Amazon Location categories to filter the returned places. If you include more than one category, the results will include results that match any of the categories listed.
For more information about using categories, including a list of Amazon Location categories, see Categories and filtering, in the Amazon Location Service Developer Guide.
"
- },
"FilterCountries":{
"shape":"CountryCodeList",
"documentation":"An optional parameter that limits the search results by returning only suggestions within the provided list of countries.
"
},
- "IndexName":{
- "shape":"ResourceName",
- "documentation":"The name of the place index resource you want to use for the search.
",
- "location":"uri",
- "locationName":"IndexName"
- },
- "Key":{
- "shape":"ApiKey",
- "documentation":"The optional API key to authorize the request.
",
- "location":"querystring",
- "locationName":"key"
+ "MaxResults":{
+ "shape":"SearchPlaceIndexForSuggestionsRequestMaxResultsInteger",
+ "documentation":"An optional parameter. The maximum number of results returned per request.
The default: 5
"
},
"Language":{
"shape":"LanguageTag",
"documentation":"The preferred language used to return results. The value must be a valid BCP 47 language tag, for example, en
for English.
This setting affects the languages used in the results. If no language is specified, or not supported for a particular result, the partner automatically chooses a language for the result.
For an example, we'll use the Greek language. You search for Athens, Gr
to get suggestions with the language
parameter set to en
. The results found will most likely be returned as Athens, Greece
.
If you set the language
parameter to el
, for Greek, then the result found will more likely be returned as Αθήνα, Ελλάδα
.
If the data provider does not have a value for Greek, the result will be in a language that the provider does support.
"
},
- "MaxResults":{
- "shape":"SearchPlaceIndexForSuggestionsRequestMaxResultsInteger",
- "documentation":"An optional parameter. The maximum number of results returned per request.
The default: 5
"
+ "FilterCategories":{
+ "shape":"FilterPlaceCategoryList",
+ "documentation":"A list of one or more Amazon Location categories to filter the returned places. If you include more than one category, the results will include results that match any of the categories listed.
For more information about using categories, including a list of Amazon Location categories, see Categories and filtering, in the Amazon Location Service Developer Guide.
"
},
- "Text":{
- "shape":"SearchPlaceIndexForSuggestionsRequestTextString",
- "documentation":"The free-form partial text to use to generate place suggestions. For example, eiffel tow
.
"
+ "Key":{
+ "shape":"ApiKey",
+ "documentation":"The optional API key to authorize the request.
",
+ "location":"querystring",
+ "locationName":"key"
}
}
},
@@ -4923,58 +5368,58 @@
"SearchPlaceIndexForSuggestionsResponse":{
"type":"structure",
"required":[
- "Results",
- "Summary"
+ "Summary",
+ "Results"
],
"members":{
- "Results":{
- "shape":"SearchForSuggestionsResultList",
- "documentation":"A list of place suggestions that best match the search text.
"
- },
"Summary":{
"shape":"SearchPlaceIndexForSuggestionsSummary",
"documentation":"Contains a summary of the request. Echoes the input values for BiasPosition
, FilterBBox
, FilterCountries
, Language
, MaxResults
, and Text
. Also includes the DataSource
of the place index.
"
+ },
+ "Results":{
+ "shape":"SearchForSuggestionsResultList",
+ "documentation":"A list of place suggestions that best match the search text.
"
}
}
},
"SearchPlaceIndexForSuggestionsSummary":{
"type":"structure",
"required":[
- "DataSource",
- "Text"
+ "Text",
+ "DataSource"
],
"members":{
+ "Text":{
+ "shape":"SensitiveString",
+ "documentation":"The free-form partial text input specified in the request.
"
+ },
"BiasPosition":{
"shape":"Position",
"documentation":"Contains the coordinates for the optional bias position specified in the request.
This parameter contains a pair of numbers. The first number represents the X coordinate, or longitude; the second number represents the Y coordinate, or latitude.
For example, [-123.1174, 49.2847]
represents the position with longitude -123.1174
and latitude 49.2847
.
"
},
- "DataSource":{
- "shape":"String",
- "documentation":"The geospatial data provider attached to the place index resource specified in the request. Values can be one of the following:
For more information about data providers, see Amazon Location Service data providers.
"
- },
"FilterBBox":{
"shape":"BoundingBox",
"documentation":"Contains the coordinates for the optional bounding box specified in the request.
"
},
- "FilterCategories":{
- "shape":"FilterPlaceCategoryList",
- "documentation":"The optional category filter specified in the request.
"
- },
"FilterCountries":{
"shape":"CountryCodeList",
"documentation":"Contains the optional country filter specified in the request.
"
},
- "Language":{
- "shape":"LanguageTag",
- "documentation":"The preferred language used to return results. Matches the language in the request. The value is a valid BCP 47 language tag, for example, en
for English.
"
- },
"MaxResults":{
"shape":"Integer",
"documentation":"Contains the optional result count limit specified in the request.
"
},
- "Text":{
- "shape":"SensitiveString",
- "documentation":"The free-form partial text input specified in the request.
"
+ "DataSource":{
+ "shape":"String",
+ "documentation":"The geospatial data provider attached to the place index resource specified in the request. Values can be one of the following:
For more information about data providers, see Amazon Location Service data providers.
"
+ },
+ "Language":{
+ "shape":"LanguageTag",
+ "documentation":"The preferred language used to return results. Matches the language in the request. The value is a valid BCP 47 language tag, for example, en
for English.
"
+ },
+ "FilterCategories":{
+ "shape":"FilterPlaceCategoryList",
+ "documentation":"The optional category filter specified in the request.
"
}
},
"documentation":"A summary of the request sent by using SearchPlaceIndexForSuggestions
.
"
@@ -4986,6 +5431,16 @@
"Text"
],
"members":{
+ "IndexName":{
+ "shape":"ResourceName",
+ "documentation":"The name of the place index resource you want to use for the search.
",
+ "location":"uri",
+ "locationName":"IndexName"
+ },
+ "Text":{
+ "shape":"SearchPlaceIndexForTextRequestTextString",
+ "documentation":"The address, name, city, or region to be used in the search in free-form text format. For example, 123 Any Street
.
"
+ },
"BiasPosition":{
"shape":"Position",
"documentation":"An optional parameter that indicates a preference for places that are closer to a specified position.
If provided, this parameter must contain a pair of numbers. The first number represents the X coordinate, or longitude; the second number represents the Y coordinate, or latitude.
For example, [-123.1174, 49.2847]
represents the position with longitude -123.1174
and latitude 49.2847
.
BiasPosition
and FilterBBox
are mutually exclusive. Specifying both options results in an error.
"
@@ -4994,37 +5449,27 @@
"shape":"BoundingBox",
"documentation":"An optional parameter that limits the search results by returning only places that are within the provided bounding box.
If provided, this parameter must contain a total of four consecutive numbers in two pairs. The first pair of numbers represents the X and Y coordinates (longitude and latitude, respectively) of the southwest corner of the bounding box; the second pair of numbers represents the X and Y coordinates (longitude and latitude, respectively) of the northeast corner of the bounding box.
For example, [-12.7935, -37.4835, -12.0684, -36.9542]
represents a bounding box where the southwest corner has longitude -12.7935
and latitude -37.4835
, and the northeast corner has longitude -12.0684
and latitude -36.9542
.
FilterBBox
and BiasPosition
are mutually exclusive. Specifying both options results in an error.
"
},
- "FilterCategories":{
- "shape":"FilterPlaceCategoryList",
- "documentation":"A list of one or more Amazon Location categories to filter the returned places. If you include more than one category, the results will include results that match any of the categories listed.
For more information about using categories, including a list of Amazon Location categories, see Categories and filtering, in the Amazon Location Service Developer Guide.
"
- },
"FilterCountries":{
"shape":"CountryCodeList",
"documentation":"An optional parameter that limits the search results by returning only places that are in a specified list of countries.
"
},
- "IndexName":{
- "shape":"ResourceName",
- "documentation":"The name of the place index resource you want to use for the search.
",
- "location":"uri",
- "locationName":"IndexName"
- },
- "Key":{
- "shape":"ApiKey",
- "documentation":"The optional API key to authorize the request.
",
- "location":"querystring",
- "locationName":"key"
+ "MaxResults":{
+ "shape":"PlaceIndexSearchResultLimit",
+ "documentation":"An optional parameter. The maximum number of results returned per request.
The default: 50
"
},
"Language":{
"shape":"LanguageTag",
"documentation":"The preferred language used to return results. The value must be a valid BCP 47 language tag, for example, en
for English.
This setting affects the languages used in the results, but not the results themselves. If no language is specified, or not supported for a particular result, the partner automatically chooses a language for the result.
For an example, we'll use the Greek language. You search for Athens, Greece
, with the language
parameter set to en
. The result found will most likely be returned as Athens
.
If you set the language
parameter to el
, for Greek, then the result found will more likely be returned as Αθήνα
.
If the data provider does not have a value for Greek, the result will be in a language that the provider does support.
"
},
- "MaxResults":{
- "shape":"PlaceIndexSearchResultLimit",
- "documentation":"An optional parameter. The maximum number of results returned per request.
The default: 50
"
+ "FilterCategories":{
+ "shape":"FilterPlaceCategoryList",
+ "documentation":"A list of one or more Amazon Location categories to filter the returned places. If you include more than one category, the results will include results that match any of the categories listed.
For more information about using categories, including a list of Amazon Location categories, see Categories and filtering, in the Amazon Location Service Developer Guide.
"
},
- "Text":{
- "shape":"SearchPlaceIndexForTextRequestTextString",
- "documentation":"The address, name, city, or region to be used in the search in free-form text format. For example, 123 Any Street
.
"
+ "Key":{
+ "shape":"ApiKey",
+ "documentation":"The optional API key to authorize the request.
",
+ "location":"querystring",
+ "locationName":"key"
}
}
},
@@ -5037,51 +5482,43 @@
"SearchPlaceIndexForTextResponse":{
"type":"structure",
"required":[
- "Results",
- "Summary"
+ "Summary",
+ "Results"
],
"members":{
- "Results":{
- "shape":"SearchForTextResultList",
- "documentation":"A list of Places matching the input text. Each result contains additional information about the specific point of interest.
Not all response properties are included with all responses. Some properties may only be returned by specific data partners.
"
- },
"Summary":{
"shape":"SearchPlaceIndexForTextSummary",
"documentation":"Contains a summary of the request. Echoes the input values for BiasPosition
, FilterBBox
, FilterCountries
, Language
, MaxResults
, and Text
. Also includes the DataSource
of the place index and the bounding box, ResultBBox
, which surrounds the search results.
"
+ },
+ "Results":{
+ "shape":"SearchForTextResultList",
+ "documentation":"A list of Places matching the input text. Each result contains additional information about the specific point of interest.
Not all response properties are included with all responses. Some properties may only be returned by specific data partners.
"
}
}
},
"SearchPlaceIndexForTextSummary":{
"type":"structure",
"required":[
- "DataSource",
- "Text"
+ "Text",
+ "DataSource"
],
"members":{
+ "Text":{
+ "shape":"SensitiveString",
+ "documentation":"The search text specified in the request.
"
+ },
"BiasPosition":{
"shape":"Position",
"documentation":"Contains the coordinates for the optional bias position specified in the request.
This parameter contains a pair of numbers. The first number represents the X coordinate, or longitude; the second number represents the Y coordinate, or latitude.
For example, [-123.1174, 49.2847]
represents the position with longitude -123.1174
and latitude 49.2847
.
"
},
- "DataSource":{
- "shape":"String",
- "documentation":"The geospatial data provider attached to the place index resource specified in the request. Values can be one of the following:
For more information about data providers, see Amazon Location Service data providers.
"
- },
"FilterBBox":{
"shape":"BoundingBox",
"documentation":"Contains the coordinates for the optional bounding box specified in the request.
"
},
- "FilterCategories":{
- "shape":"FilterPlaceCategoryList",
- "documentation":"The optional category filter specified in the request.
"
- },
"FilterCountries":{
"shape":"CountryCodeList",
"documentation":"Contains the optional country filter specified in the request.
"
},
- "Language":{
- "shape":"LanguageTag",
- "documentation":"The preferred language used to return results. Matches the language in the request. The value is a valid BCP 47 language tag, for example, en
for English.
"
- },
"MaxResults":{
"shape":"PlaceIndexSearchResultLimit",
"documentation":"Contains the optional result count limit specified in the request.
"
@@ -5090,9 +5527,17 @@
"shape":"BoundingBox",
"documentation":"The bounding box that fully contains all search results.
If you specified the optional FilterBBox
parameter in the request, ResultBBox
is contained within FilterBBox
.
"
},
- "Text":{
- "shape":"SensitiveString",
- "documentation":"The search text specified in the request.
"
+ "DataSource":{
+ "shape":"String",
+ "documentation":"The geospatial data provider attached to the place index resource specified in the request. Values can be one of the following:
For more information about data providers, see Amazon Location Service data providers.
"
+ },
+ "Language":{
+ "shape":"LanguageTag",
+ "documentation":"The preferred language used to return results. Matches the language in the request. The value is a valid BCP 47 language tag, for example, en
for English.
"
+ },
+ "FilterCategories":{
+ "shape":"FilterPlaceCategoryList",
+ "documentation":"The optional category filter specified in the request.
"
}
},
"documentation":"A summary of the request sent by using SearchPlaceIndexForText
.
"
@@ -5118,6 +5563,13 @@
},
"exception":true
},
+ "SpeedUnit":{
+ "type":"string",
+ "enum":[
+ "KilometersPerHour",
+ "MilesPerHour"
+ ]
+ },
"Status":{
"type":"string",
"enum":[
@@ -5128,31 +5580,31 @@
"Step":{
"type":"structure",
"required":[
- "Distance",
- "DurationSeconds",
+ "StartPosition",
"EndPosition",
- "StartPosition"
+ "Distance",
+ "DurationSeconds"
],
"members":{
- "Distance":{
- "shape":"StepDistanceDouble",
- "documentation":"The travel distance between the step's StartPosition
and EndPosition
.
"
- },
- "DurationSeconds":{
- "shape":"StepDurationSecondsDouble",
- "documentation":"The estimated travel time, in seconds, from the step's StartPosition
to the EndPosition
. . The travel mode and departure time that you specify in the request determines the calculated time.
"
+ "StartPosition":{
+ "shape":"Position",
+ "documentation":"The starting position of a step. If the position is the first step in the leg, this position is the same as the start position of the leg.
"
},
"EndPosition":{
"shape":"Position",
"documentation":"The end position of a step. If the position the last step in the leg, this position is the same as the end position of the leg.
"
},
+ "Distance":{
+ "shape":"StepDistanceDouble",
+ "documentation":"The travel distance between the step's StartPosition
and EndPosition
.
"
+ },
+ "DurationSeconds":{
+ "shape":"StepDurationSecondsDouble",
+ "documentation":"The estimated travel time, in seconds, from the step's StartPosition
to the EndPosition
. . The travel mode and departure time that you specify in the request determines the calculated time.
"
+ },
"GeometryOffset":{
"shape":"StepGeometryOffsetInteger",
"documentation":"Represents the start position, or index, in a sequence of steps within the leg's line string geometry. For example, the index of the first step in a leg geometry is 0
.
Included in the response for queries that set IncludeLegGeometry
to True
.
"
- },
- "StartPosition":{
- "shape":"Position",
- "documentation":"The starting position of a step. If the position is the first step in the leg, this position is the same as the start position of the leg.
"
}
},
"documentation":" Represents an element of a leg within a route. A step contains instructions for how to move to the next step in the leg.
"
@@ -5181,7 +5633,7 @@
"type":"string",
"max":128,
"min":1,
- "pattern":"^[a-zA-Z+-=._:/]+$"
+ "pattern":"[a-zA-Z+-=._:/]+"
},
"TagKeys":{
"type":"list",
@@ -5224,7 +5676,7 @@
"type":"string",
"max":256,
"min":0,
- "pattern":"^[A-Za-z0-9 _=@:.+-/]*$"
+ "pattern":"[A-Za-z0-9 _=@:.+-/]*"
},
"ThrottlingException":{
"type":"structure",
@@ -5290,21 +5742,21 @@
"TruckDimensions":{
"type":"structure",
"members":{
- "Height":{
- "shape":"TruckDimensionsHeightDouble",
- "documentation":"The height of the truck.
For routes calculated with a HERE resource, this value must be between 0 and 50 meters.
"
- },
"Length":{
"shape":"TruckDimensionsLengthDouble",
"documentation":"The length of the truck.
For routes calculated with a HERE resource, this value must be between 0 and 300 meters.
"
},
- "Unit":{
- "shape":"DimensionUnit",
- "documentation":" Specifies the unit of measurement for the truck dimensions.
Default Value: Meters
"
+ "Height":{
+ "shape":"TruckDimensionsHeightDouble",
+ "documentation":"The height of the truck.
For routes calculated with a HERE resource, this value must be between 0 and 50 meters.
"
},
"Width":{
"shape":"TruckDimensionsWidthDouble",
"documentation":"The width of the truck.
For routes calculated with a HERE resource, this value must be between 0 and 50 meters.
"
+ },
+ "Unit":{
+ "shape":"DimensionUnit",
+ "documentation":" Specifies the unit of measurement for the truck dimensions.
Default Value: Meters
"
}
},
"documentation":"Contains details about the truck dimensions in the unit of measurement that you specify. Used to filter out roads that can't support or allow the specified dimensions for requests that specify TravelMode
as Truck
.
"
@@ -5379,10 +5831,6 @@
"location":"uri",
"locationName":"CollectionName"
},
- "Description":{
- "shape":"ResourceDescription",
- "documentation":"Updates the description for the geofence collection.
"
- },
"PricingPlan":{
"shape":"PricingPlan",
"documentation":"No longer used. If included, the only allowed value is RequestBasedUsage
.
",
@@ -5394,25 +5842,29 @@
"documentation":"This parameter is no longer used.
",
"deprecated":true,
"deprecatedMessage":"Deprecated. No longer allowed."
+ },
+ "Description":{
+ "shape":"ResourceDescription",
+ "documentation":"Updates the description for the geofence collection.
"
}
}
},
"UpdateGeofenceCollectionResponse":{
"type":"structure",
"required":[
- "CollectionArn",
"CollectionName",
+ "CollectionArn",
"UpdateTime"
],
"members":{
- "CollectionArn":{
- "shape":"Arn",
- "documentation":"The Amazon Resource Name (ARN) of the updated geofence collection. Used to specify a resource across Amazon Web Services.
"
- },
"CollectionName":{
"shape":"ResourceName",
"documentation":"The name of the updated geofence collection.
"
},
+ "CollectionArn":{
+ "shape":"Arn",
+ "documentation":"The Amazon Resource Name (ARN) of the updated geofence collection. Used to specify a resource across Amazon Web Services.
"
+ },
"UpdateTime":{
"shape":"Timestamp",
"documentation":"The time when the geofence collection was last updated in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
"
@@ -5423,6 +5875,12 @@
"type":"structure",
"required":["KeyName"],
"members":{
+ "KeyName":{
+ "shape":"ResourceName",
+ "documentation":"The name of the API key resource to update.
",
+ "location":"uri",
+ "locationName":"KeyName"
+ },
"Description":{
"shape":"ResourceDescription",
"documentation":"Updates the description for the API key resource.
"
@@ -5431,20 +5889,14 @@
"shape":"Timestamp",
"documentation":"Updates the timestamp for when the API key resource will expire in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
},
- "ForceUpdate":{
- "shape":"Boolean",
- "documentation":"The boolean flag to be included for updating ExpireTime
or Restrictions
details.
Must be set to true
to update an API key resource that has been used in the past 7 days.
False
if force update is not preferred
Default value: False
"
- },
- "KeyName":{
- "shape":"ResourceName",
- "documentation":"The name of the API key resource to update.
",
- "location":"uri",
- "locationName":"KeyName"
- },
"NoExpiry":{
"shape":"Boolean",
"documentation":"Whether the API key should expire. Set to true
to set the API key to have no expiration time.
"
},
+ "ForceUpdate":{
+ "shape":"Boolean",
+ "documentation":"The boolean flag to be included for updating ExpireTime
or Restrictions
details.
Must be set to true
to update an API key resource that has been used in the past 7 days.
False
if force update is not preferred
Default value: False
"
+ },
"Restrictions":{
"shape":"ApiKeyRestrictions",
"documentation":"Updates the API key restrictions for the API key resource.
"
@@ -5477,14 +5929,6 @@
"type":"structure",
"required":["MapName"],
"members":{
- "ConfigurationUpdate":{
- "shape":"MapConfigurationUpdate",
- "documentation":"Updates the parts of the map configuration that can be updated, including the political view.
"
- },
- "Description":{
- "shape":"ResourceDescription",
- "documentation":"Updates the description for the map resource.
"
- },
"MapName":{
"shape":"ResourceName",
"documentation":"The name of the map resource to update.
",
@@ -5496,25 +5940,33 @@
"documentation":"No longer used. If included, the only allowed value is RequestBasedUsage
.
",
"deprecated":true,
"deprecatedMessage":"Deprecated. If included, the only allowed value is RequestBasedUsage."
+ },
+ "Description":{
+ "shape":"ResourceDescription",
+ "documentation":"Updates the description for the map resource.
"
+ },
+ "ConfigurationUpdate":{
+ "shape":"MapConfigurationUpdate",
+ "documentation":"Updates the parts of the map configuration that can be updated, including the political view.
"
}
}
},
"UpdateMapResponse":{
"type":"structure",
"required":[
- "MapArn",
"MapName",
+ "MapArn",
"UpdateTime"
],
"members":{
- "MapArn":{
- "shape":"GeoArn",
- "documentation":"The Amazon Resource Name (ARN) of the updated map resource. Used to specify a resource across AWS.
"
- },
"MapName":{
"shape":"ResourceName",
"documentation":"The name of the updated map resource.
"
},
+ "MapArn":{
+ "shape":"GeoArn",
+ "documentation":"The Amazon Resource Name (ARN) of the updated map resource. Used to specify a resource across AWS.
"
+ },
"UpdateTime":{
"shape":"Timestamp",
"documentation":"The timestamp for when the map resource was last updated in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
@@ -5525,14 +5977,6 @@
"type":"structure",
"required":["IndexName"],
"members":{
- "DataSourceConfiguration":{
- "shape":"DataSourceConfiguration",
- "documentation":"Updates the data storage option for the place index resource.
"
- },
- "Description":{
- "shape":"ResourceDescription",
- "documentation":"Updates the description for the place index resource.
"
- },
"IndexName":{
"shape":"ResourceName",
"documentation":"The name of the place index resource to update.
",
@@ -5544,25 +5988,33 @@
"documentation":"No longer used. If included, the only allowed value is RequestBasedUsage
.
",
"deprecated":true,
"deprecatedMessage":"Deprecated. If included, the only allowed value is RequestBasedUsage."
+ },
+ "Description":{
+ "shape":"ResourceDescription",
+ "documentation":"Updates the description for the place index resource.
"
+ },
+ "DataSourceConfiguration":{
+ "shape":"DataSourceConfiguration",
+ "documentation":"Updates the data storage option for the place index resource.
"
}
}
},
"UpdatePlaceIndexResponse":{
"type":"structure",
"required":[
- "IndexArn",
"IndexName",
+ "IndexArn",
"UpdateTime"
],
"members":{
- "IndexArn":{
- "shape":"GeoArn",
- "documentation":"The Amazon Resource Name (ARN) of the upated place index resource. Used to specify a resource across Amazon Web Services.
"
- },
"IndexName":{
"shape":"ResourceName",
"documentation":"The name of the updated place index resource.
"
},
+ "IndexArn":{
+ "shape":"GeoArn",
+ "documentation":"The Amazon Resource Name (ARN) of the upated place index resource. Used to specify a resource across Amazon Web Services.
"
+ },
"UpdateTime":{
"shape":"Timestamp",
"documentation":"The timestamp for when the place index resource was last updated in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
@@ -5579,34 +6031,34 @@
"location":"uri",
"locationName":"CalculatorName"
},
- "Description":{
- "shape":"ResourceDescription",
- "documentation":"Updates the description for the route calculator resource.
"
- },
"PricingPlan":{
"shape":"PricingPlan",
"documentation":"No longer used. If included, the only allowed value is RequestBasedUsage
.
",
"deprecated":true,
"deprecatedMessage":"Deprecated. If included, the only allowed value is RequestBasedUsage."
+ },
+ "Description":{
+ "shape":"ResourceDescription",
+ "documentation":"Updates the description for the route calculator resource.
"
}
}
},
"UpdateRouteCalculatorResponse":{
"type":"structure",
"required":[
- "CalculatorArn",
"CalculatorName",
+ "CalculatorArn",
"UpdateTime"
],
"members":{
- "CalculatorArn":{
- "shape":"GeoArn",
- "documentation":"The Amazon Resource Name (ARN) of the updated route calculator resource. Used to specify a resource across AWS.
"
- },
"CalculatorName":{
"shape":"ResourceName",
"documentation":"The name of the updated route calculator resource.
"
},
+ "CalculatorArn":{
+ "shape":"GeoArn",
+ "documentation":"The Amazon Resource Name (ARN) of the updated route calculator resource. Used to specify a resource across AWS.
"
+ },
"UpdateTime":{
"shape":"Timestamp",
"documentation":"The timestamp for when the route calculator was last updated in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
@@ -5617,21 +6069,11 @@
"type":"structure",
"required":["TrackerName"],
"members":{
- "Description":{
- "shape":"ResourceDescription",
- "documentation":"Updates the description for the tracker resource.
"
- },
- "EventBridgeEnabled":{
- "shape":"Boolean",
- "documentation":"Whether to enable position UPDATE
events from this tracker to be sent to EventBridge.
You do not need enable this feature to get ENTER
and EXIT
events for geofences with this tracker. Those events are always sent to EventBridge.
"
- },
- "KmsKeyEnableGeospatialQueries":{
- "shape":"Boolean",
- "documentation":"Enables GeospatialQueries
for a tracker that uses a Amazon Web Services KMS customer managed key.
This parameter is only used if you are using a KMS customer managed key.
"
- },
- "PositionFiltering":{
- "shape":"PositionFiltering",
- "documentation":"Updates the position filtering for the tracker resource.
Valid values:
-
TimeBased
- Location updates are evaluated against linked geofence collections, but not every location update is stored. If your update frequency is more often than 30 seconds, only one update per 30 seconds is stored for each unique device ID.
-
DistanceBased
- If the device has moved less than 30 m (98.4 ft), location updates are ignored. Location updates within this distance are neither evaluated against linked geofence collections, nor stored. This helps control costs by reducing the number of geofence evaluations and historical device positions to paginate through. Distance-based filtering can also reduce the effects of GPS noise when displaying device trajectories on a map.
-
AccuracyBased
- If the device has moved less than the measured accuracy, location updates are ignored. For example, if two consecutive updates from a device have a horizontal accuracy of 5 m and 10 m, the second update is ignored if the device has moved less than 15 m. Ignored location updates are neither evaluated against linked geofence collections, nor stored. This helps educe the effects of GPS noise when displaying device trajectories on a map, and can help control costs by reducing the number of geofence evaluations.
"
+ "TrackerName":{
+ "shape":"ResourceName",
+ "documentation":"The name of the tracker resource to update.
",
+ "location":"uri",
+ "locationName":"TrackerName"
},
"PricingPlan":{
"shape":"PricingPlan",
@@ -5645,49 +6087,58 @@
"deprecated":true,
"deprecatedMessage":"Deprecated. No longer allowed."
},
- "TrackerName":{
- "shape":"ResourceName",
- "documentation":"The name of the tracker resource to update.
",
- "location":"uri",
- "locationName":"TrackerName"
+ "Description":{
+ "shape":"ResourceDescription",
+ "documentation":"Updates the description for the tracker resource.
"
+ },
+ "PositionFiltering":{
+ "shape":"PositionFiltering",
+ "documentation":"Updates the position filtering for the tracker resource.
Valid values:
-
TimeBased
- Location updates are evaluated against linked geofence collections, but not every location update is stored. If your update frequency is more often than 30 seconds, only one update per 30 seconds is stored for each unique device ID.
-
DistanceBased
- If the device has moved less than 30 m (98.4 ft), location updates are ignored. Location updates within this distance are neither evaluated against linked geofence collections, nor stored. This helps control costs by reducing the number of geofence evaluations and historical device positions to paginate through. Distance-based filtering can also reduce the effects of GPS noise when displaying device trajectories on a map.
-
AccuracyBased
- If the device has moved less than the measured accuracy, location updates are ignored. For example, if two consecutive updates from a device have a horizontal accuracy of 5 m and 10 m, the second update is ignored if the device has moved less than 15 m. Ignored location updates are neither evaluated against linked geofence collections, nor stored. This helps educe the effects of GPS noise when displaying device trajectories on a map, and can help control costs by reducing the number of geofence evaluations.
"
+ },
+ "EventBridgeEnabled":{
+ "shape":"Boolean",
+ "documentation":"Whether to enable position UPDATE
events from this tracker to be sent to EventBridge.
You do not need enable this feature to get ENTER
and EXIT
events for geofences with this tracker. Those events are always sent to EventBridge.
"
+ },
+ "KmsKeyEnableGeospatialQueries":{
+ "shape":"Boolean",
+ "documentation":"Enables GeospatialQueries
for a tracker that uses a Amazon Web Services KMS customer managed key.
This parameter is only used if you are using a KMS customer managed key.
"
}
}
},
"UpdateTrackerResponse":{
"type":"structure",
"required":[
- "TrackerArn",
"TrackerName",
+ "TrackerArn",
"UpdateTime"
],
"members":{
- "TrackerArn":{
- "shape":"Arn",
- "documentation":"The Amazon Resource Name (ARN) of the updated tracker resource. Used to specify a resource across AWS.
"
- },
"TrackerName":{
"shape":"ResourceName",
"documentation":"The name of the updated tracker resource.
"
},
+ "TrackerArn":{
+ "shape":"Arn",
+ "documentation":"The Amazon Resource Name (ARN) of the updated tracker resource. Used to specify a resource across AWS.
"
+ },
"UpdateTime":{
"shape":"Timestamp",
"documentation":"The timestamp for when the tracker resource was last updated in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
}
}
},
+ "Uuid":{
+ "type":"string",
+ "pattern":"[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}"
+ },
"ValidationException":{
"type":"structure",
"required":[
- "FieldList",
"Message",
- "Reason"
+ "Reason",
+ "FieldList"
],
"members":{
- "FieldList":{
- "shape":"ValidationExceptionFieldList",
- "documentation":"The field where the invalid entry was detected.
",
- "locationName":"fieldList"
- },
"Message":{
"shape":"String",
"locationName":"message"
@@ -5696,6 +6147,11 @@
"shape":"ValidationExceptionReason",
"documentation":"A message with the reason for the validation exception error.
",
"locationName":"reason"
+ },
+ "FieldList":{
+ "shape":"ValidationExceptionFieldList",
+ "documentation":"The field where the invalid entry was detected.
",
+ "locationName":"fieldList"
}
},
"documentation":"The input failed to meet the constraints specified by the AWS service.
",
@@ -5708,19 +6164,19 @@
"ValidationExceptionField":{
"type":"structure",
"required":[
- "Message",
- "Name"
+ "Name",
+ "Message"
],
"members":{
- "Message":{
- "shape":"String",
- "documentation":"A message with the reason for the validation exception error.
",
- "locationName":"message"
- },
"Name":{
"shape":"String",
"documentation":"The field name where the invalid entry was detected.
",
"locationName":"name"
+ },
+ "Message":{
+ "shape":"String",
+ "documentation":"A message with the reason for the validation exception error.
",
+ "locationName":"message"
}
},
"documentation":"The input failed to meet the constraints specified by the AWS service in a specified field.
"
@@ -5745,6 +6201,95 @@
"Kilograms",
"Pounds"
]
+ },
+ "VerifyDevicePositionRequest":{
+ "type":"structure",
+ "required":[
+ "TrackerName",
+ "DeviceState"
+ ],
+ "members":{
+ "TrackerName":{
+ "shape":"ResourceName",
+ "documentation":"The name of the tracker resource to be associated with verification request.
",
+ "location":"uri",
+ "locationName":"TrackerName"
+ },
+ "DeviceState":{
+ "shape":"DeviceState",
+ "documentation":"The device's state, including position, IP address, cell signals and Wi-Fi access points.
"
+ },
+ "DistanceUnit":{
+ "shape":"DistanceUnit",
+ "documentation":"The distance unit for the verification request.
Default Value: Kilometers
"
+ }
+ }
+ },
+ "VerifyDevicePositionResponse":{
+ "type":"structure",
+ "required":[
+ "InferredState",
+ "DeviceId",
+ "SampleTime",
+ "ReceivedTime",
+ "DistanceUnit"
+ ],
+ "members":{
+ "InferredState":{
+ "shape":"InferredState",
+ "documentation":"The inferred state of the device, given the provided position, IP address, cellular signals, and Wi-Fi- access points.
"
+ },
+ "DeviceId":{
+ "shape":"Id",
+ "documentation":"The device identifier.
"
+ },
+ "SampleTime":{
+ "shape":"Timestamp",
+ "documentation":"The timestamp at which the device's position was determined. Uses ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
+ },
+ "ReceivedTime":{
+ "shape":"Timestamp",
+ "documentation":"The timestamp for when the tracker resource received the device position in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
.
"
+ },
+ "DistanceUnit":{
+ "shape":"DistanceUnit",
+ "documentation":"The distance unit for the verification response.
"
+ }
+ }
+ },
+ "WiFiAccessPoint":{
+ "type":"structure",
+ "required":[
+ "MacAddress",
+ "Rss"
+ ],
+ "members":{
+ "MacAddress":{
+ "shape":"WiFiAccessPointMacAddressString",
+ "documentation":"Medium access control address (Mac).
"
+ },
+ "Rss":{
+ "shape":"WiFiAccessPointRssInteger",
+ "documentation":"Received signal strength (dBm) of the WLAN measurement data.
"
+ }
+ },
+ "documentation":"Wi-Fi access point.
"
+ },
+ "WiFiAccessPointList":{
+ "type":"list",
+ "member":{"shape":"WiFiAccessPoint"}
+ },
+ "WiFiAccessPointMacAddressString":{
+ "type":"string",
+ "max":17,
+ "min":12,
+ "pattern":"([0-9A-Fa-f]{2}[:-]?){5}([0-9A-Fa-f]{2})"
+ },
+ "WiFiAccessPointRssInteger":{
+ "type":"integer",
+ "box":true,
+ "max":0,
+ "min":-128
}
},
"documentation":"\"Suite of geospatial services including Maps, Places, Routes, Tracking, and Geofencing\"
"
From ef49ac5f472b14b6697bac0b5437f7ea1a0924c7 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Thu, 6 Jun 2024 18:07:07 +0000
Subject: [PATCH 16/30] AWS Glue Update: This release adds support for creating
and updating Glue Data Catalog Views.
---
.../next-release/feature-AWSGlue-ada2f90.json | 6 ++
.../codegen-resources/service-2.json | 79 +++++++++++++++++++
2 files changed, 85 insertions(+)
create mode 100644 .changes/next-release/feature-AWSGlue-ada2f90.json
diff --git a/.changes/next-release/feature-AWSGlue-ada2f90.json b/.changes/next-release/feature-AWSGlue-ada2f90.json
new file mode 100644
index 000000000000..2f79e07986f3
--- /dev/null
+++ b/.changes/next-release/feature-AWSGlue-ada2f90.json
@@ -0,0 +1,6 @@
+{
+ "type": "feature",
+ "category": "AWS Glue",
+ "contributor": "",
+ "description": "This release adds support for creating and updating Glue Data Catalog Views."
+}
diff --git a/services/glue/src/main/resources/codegen-resources/service-2.json b/services/glue/src/main/resources/codegen-resources/service-2.json
index e1b73c913f1d..3d9c0c27f87f 100644
--- a/services/glue/src/main/resources/codegen-resources/service-2.json
+++ b/services/glue/src/main/resources/codegen-resources/service-2.json
@@ -20530,6 +20530,10 @@
"TargetTable":{
"shape":"TableIdentifier",
"documentation":"A TableIdentifier
structure that describes a target table for resource linking.
"
+ },
+ "ViewDefinition":{
+ "shape":"ViewDefinitionInput",
+ "documentation":"A structure that contains all the information that defines the view, including the dialect or dialects for the view, and the query.
"
}
},
"documentation":"A structure used to define a table.
"
@@ -22091,6 +22095,14 @@
"VersionId":{
"shape":"VersionString",
"documentation":"The version ID at which to update the table contents.
"
+ },
+ "ViewUpdateAction":{
+ "shape":"ViewUpdateAction",
+ "documentation":"The operation to be performed when updating the view.
"
+ },
+ "Force":{
+ "shape":"Boolean",
+ "documentation":"A flag that can be set to true to ignore matching storage descriptor and subobject matching requirements.
"
}
}
},
@@ -22369,6 +22381,28 @@
},
"documentation":"A structure containing details for representations.
"
},
+ "ViewDefinitionInput":{
+ "type":"structure",
+ "members":{
+ "IsProtected":{
+ "shape":"NullableBoolean",
+ "documentation":"You can set this flag as true to instruct the engine not to push user-provided operations into the logical plan of the view during query planning. However, setting this flag does not guarantee that the engine will comply. Refer to the engine's documentation to understand the guarantees provided, if any.
"
+ },
+ "Definer":{
+ "shape":"ArnString",
+ "documentation":"The definer of a view in SQL.
"
+ },
+ "Representations":{
+ "shape":"ViewRepresentationInputList",
+ "documentation":"A list of structures that contains the dialect of the view, and the query that defines the view.
"
+ },
+ "SubObjects":{
+ "shape":"ViewSubObjectsList",
+ "documentation":"A list of base table ARNs that make up the view.
"
+ }
+ },
+ "documentation":"A structure containing details for creating or updating an Glue view.
"
+ },
"ViewDialect":{
"type":"string",
"enum":[
@@ -22401,6 +22435,10 @@
"shape":"ViewTextString",
"documentation":"The expanded SQL for the view. This SQL is used by engines while processing a query on a view. Engines may perform operations during view creation to transform ViewOriginalText
to ViewExpandedText
. For example:
"
},
+ "ValidationConnection":{
+ "shape":"NameString",
+ "documentation":"The name of the connection to be used to validate the specific representation of the view.
"
+ },
"IsStale":{
"shape":"NullableBoolean",
"documentation":"Dialects marked as stale are no longer valid and must be updated before they can be queried in their respective query engines.
"
@@ -22408,6 +22446,38 @@
},
"documentation":"A structure that contains the dialect of the view, and the query that defines the view.
"
},
+ "ViewRepresentationInput":{
+ "type":"structure",
+ "members":{
+ "Dialect":{
+ "shape":"ViewDialect",
+ "documentation":"A parameter that specifies the engine type of a specific representation.
"
+ },
+ "DialectVersion":{
+ "shape":"ViewDialectVersionString",
+ "documentation":"A parameter that specifies the version of the engine of a specific representation.
"
+ },
+ "ViewOriginalText":{
+ "shape":"ViewTextString",
+ "documentation":"A string that represents the original SQL query that describes the view.
"
+ },
+ "ValidationConnection":{
+ "shape":"NameString",
+ "documentation":"The name of the connection to be used to validate the specific representation of the view.
"
+ },
+ "ViewExpandedText":{
+ "shape":"ViewTextString",
+ "documentation":"A string that represents the SQL query that describes the view with expanded resource ARNs
"
+ }
+ },
+ "documentation":"A structure containing details of a representation to update or create a Lake Formation view.
"
+ },
+ "ViewRepresentationInputList":{
+ "type":"list",
+ "member":{"shape":"ViewRepresentationInput"},
+ "max":10,
+ "min":1
+ },
"ViewRepresentationList":{
"type":"list",
"member":{"shape":"ViewRepresentation"},
@@ -22424,6 +22494,15 @@
"type":"string",
"max":409600
},
+ "ViewUpdateAction":{
+ "type":"string",
+ "enum":[
+ "ADD",
+ "REPLACE",
+ "ADD_OR_REPLACE",
+ "DROP"
+ ]
+ },
"WorkerType":{
"type":"string",
"enum":[
From 0c350918bcbfb1abadfae087f5a192af5446ae18 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Thu, 6 Jun 2024 18:07:09 +0000
Subject: [PATCH 17/30] Amazon Simple Queue Service Update: Doc only updates
for SQS. These updates include customer-reported issues and TCX3
modifications.
---
.../feature-AmazonSimpleQueueService-8ac65e6.json | 6 ++++++
.../src/main/resources/codegen-resources/service-2.json | 7 ++++---
2 files changed, 10 insertions(+), 3 deletions(-)
create mode 100644 .changes/next-release/feature-AmazonSimpleQueueService-8ac65e6.json
diff --git a/.changes/next-release/feature-AmazonSimpleQueueService-8ac65e6.json b/.changes/next-release/feature-AmazonSimpleQueueService-8ac65e6.json
new file mode 100644
index 000000000000..b1e99cbb4b52
--- /dev/null
+++ b/.changes/next-release/feature-AmazonSimpleQueueService-8ac65e6.json
@@ -0,0 +1,6 @@
+{
+ "type": "feature",
+ "category": "Amazon Simple Queue Service",
+ "contributor": "",
+ "description": "Doc only updates for SQS. These updates include customer-reported issues and TCX3 modifications."
+}
diff --git a/services/sqs/src/main/resources/codegen-resources/service-2.json b/services/sqs/src/main/resources/codegen-resources/service-2.json
index 018749d7f336..f544283aca66 100644
--- a/services/sqs/src/main/resources/codegen-resources/service-2.json
+++ b/services/sqs/src/main/resources/codegen-resources/service-2.json
@@ -7,6 +7,7 @@
"endpointPrefix":"sqs",
"jsonVersion":"1.0",
"protocol":"json",
+ "protocols":["json"],
"serviceAbbreviation":"Amazon SQS",
"serviceFullName":"Amazon Simple Queue Service",
"serviceId":"SQS",
@@ -346,7 +347,7 @@
{"shape":"KmsInvalidKeyUsage"},
{"shape":"InvalidAddress"}
],
- "documentation":"Delivers a message to the specified queue.
A message can include only XML, JSON, and unformatted text. The following Unicode characters are allowed:
#x9
| #xA
| #xD
| #x20
to #xD7FF
| #xE000
to #xFFFD
| #x10000
to #x10FFFF
Any characters not included in this list will be rejected. For more information, see the W3C specification for characters.
"
+ "documentation":"Delivers a message to the specified queue.
A message can include only XML, JSON, and unformatted text. The following Unicode characters are allowed. For more information, see the W3C specification for characters.
#x9
| #xA
| #xD
| #x20
to #xD7FF
| #xE000
to #xFFFD
| #x10000
to #x10FFFF
Amazon SQS does not throw an exception or completely reject the message if it contains invalid characters. Instead, it replaces those invalid characters with U+FFFD
before storing the message in the queue, as long as the message body contains at least one valid character.
"
},
"SendMessageBatch":{
"name":"SendMessageBatch",
@@ -375,7 +376,7 @@
{"shape":"KmsInvalidKeyUsage"},
{"shape":"InvalidAddress"}
],
- "documentation":"You can use SendMessageBatch
to send up to 10 messages to the specified queue by assigning either identical or different values to each message (or by not assigning values at all). This is a batch version of SendMessage.
For a FIFO queue, multiple messages within a single batch are enqueued in the order they are sent.
The result of sending each message is reported individually in the response. Because the batch request can result in a combination of successful and unsuccessful actions, you should check for batch errors even when the call returns an HTTP status code of 200
.
The maximum allowed individual message size and the maximum total payload size (the sum of the individual lengths of all of the batched messages) are both 256 KiB (262,144 bytes).
A message can include only XML, JSON, and unformatted text. The following Unicode characters are allowed:
#x9
| #xA
| #xD
| #x20
to #xD7FF
| #xE000
to #xFFFD
| #x10000
to #x10FFFF
Any characters not included in this list will be rejected. For more information, see the W3C specification for characters.
If you don't specify the DelaySeconds
parameter for an entry, Amazon SQS uses the default value for the queue.
"
+ "documentation":"You can use SendMessageBatch
to send up to 10 messages to the specified queue by assigning either identical or different values to each message (or by not assigning values at all). This is a batch version of SendMessage.
For a FIFO queue, multiple messages within a single batch are enqueued in the order they are sent.
The result of sending each message is reported individually in the response. Because the batch request can result in a combination of successful and unsuccessful actions, you should check for batch errors even when the call returns an HTTP status code of 200
.
The maximum allowed individual message size and the maximum total payload size (the sum of the individual lengths of all of the batched messages) are both 256 KiB (262,144 bytes).
A message can include only XML, JSON, and unformatted text. The following Unicode characters are allowed. For more information, see the W3C specification for characters.
#x9
| #xA
| #xD
| #x20
to #xD7FF
| #xE000
to #xFFFD
| #x10000
to #x10FFFF
Amazon SQS does not throw an exception or completely reject the message if it contains invalid characters. Instead, it replaces those invalid characters with U+FFFD
before storing the message in the queue, as long as the message body contains at least one valid character.
If you don't specify the DelaySeconds
parameter for an entry, Amazon SQS uses the default value for the queue.
"
},
"SetQueueAttributes":{
"name":"SetQueueAttributes",
@@ -1598,7 +1599,7 @@
},
"MessageBody":{
"shape":"String",
- "documentation":"The message to send. The minimum size is one character. The maximum size is 256 KiB.
A message can include only XML, JSON, and unformatted text. The following Unicode characters are allowed:
#x9
| #xA
| #xD
| #x20
to #xD7FF
| #xE000
to #xFFFD
| #x10000
to #x10FFFF
Any characters not included in this list will be rejected. For more information, see the W3C specification for characters.
"
+ "documentation":"The message to send. The minimum size is one character. The maximum size is 256 KiB.
A message can include only XML, JSON, and unformatted text. The following Unicode characters are allowed. For more information, see the W3C specification for characters.
#x9
| #xA
| #xD
| #x20
to #xD7FF
| #xE000
to #xFFFD
| #x10000
to #x10FFFF
Amazon SQS does not throw an exception or completely reject the message if it contains invalid characters. Instead, it replaces those invalid characters with U+FFFD
before storing the message in the queue, as long as the message body contains at least one valid character.
"
},
"DelaySeconds":{
"shape":"NullableInteger",
From 6d54a0a1077d2965adfb8cbf75ea2a0576408f9f Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Thu, 6 Jun 2024 18:09:38 +0000
Subject: [PATCH 18/30] Release 2.25.68. Updated CHANGELOG.md, README.md and
all pom.xml.
---
.changes/2.25.68.json | 66 +++++++++++++++++++
.../feature-AWSAccount-d8f4e47.json | 6 --
.../next-release/feature-AWSGlue-ada2f90.json | 6 --
.../feature-AWSIoTWireless-03ff273.json | 6 --
.../next-release/feature-AWSS3-bb458a5.json | 6 --
.../feature-AWSStorageGateway-399ed09.json | 6 --
.../feature-AmazonFSx-18aa8f3.json | 6 --
...feature-AmazonKinesisFirehose-c55852b.json | 6 --
...feature-AmazonLocationService-8f7a8d6.json | 6 --
...azonSimpleNotificationService-1efd268.json | 6 --
...ture-AmazonSimpleQueueService-8ac65e6.json | 6 --
CHANGELOG.md | 46 +++++++++++++
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 +-
.../s3-event-notifications/pom.xml | 2 +-
services-custom/s3-transfer-manager/pom.xml | 2 +-
services/accessanalyzer/pom.xml | 2 +-
services/account/pom.xml | 2 +-
services/acm/pom.xml | 2 +-
services/acmpca/pom.xml | 2 +-
services/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/codeconnections/pom.xml | 2 +-
services/codedeploy/pom.xml | 2 +-
services/codeguruprofiler/pom.xml | 2 +-
services/codegurureviewer/pom.xml | 2 +-
services/codegurusecurity/pom.xml | 2 +-
services/codepipeline/pom.xml | 2 +-
services/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/controlcatalog/pom.xml | 2 +-
services/controltower/pom.xml | 2 +-
services/costandusagereport/pom.xml | 2 +-
services/costexplorer/pom.xml | 2 +-
services/costoptimizationhub/pom.xml | 2 +-
services/customerprofiles/pom.xml | 2 +-
services/databasemigration/pom.xml | 2 +-
services/databrew/pom.xml | 2 +-
services/dataexchange/pom.xml | 2 +-
services/datapipeline/pom.xml | 2 +-
services/datasync/pom.xml | 2 +-
services/datazone/pom.xml | 2 +-
services/dax/pom.xml | 2 +-
services/deadline/pom.xml | 2 +-
services/detective/pom.xml | 2 +-
services/devicefarm/pom.xml | 2 +-
services/devopsguru/pom.xml | 2 +-
services/directconnect/pom.xml | 2 +-
services/directory/pom.xml | 2 +-
services/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/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/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/mailmanager/pom.xml | 2 +-
services/managedblockchain/pom.xml | 2 +-
services/managedblockchainquery/pom.xml | 2 +-
services/marketplaceagreement/pom.xml | 2 +-
services/marketplacecatalog/pom.xml | 2 +-
services/marketplacecommerceanalytics/pom.xml | 2 +-
services/marketplacedeployment/pom.xml | 2 +-
services/marketplaceentitlement/pom.xml | 2 +-
services/marketplacemetering/pom.xml | 2 +-
services/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/route53profiles/pom.xml | 2 +-
services/route53recoverycluster/pom.xml | 2 +-
services/route53recoverycontrolconfig/pom.xml | 2 +-
services/route53recoveryreadiness/pom.xml | 2 +-
services/route53resolver/pom.xml | 2 +-
services/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/taxsettings/pom.xml | 2 +-
services/textract/pom.xml | 2 +-
services/timestreaminfluxdb/pom.xml | 2 +-
services/timestreamquery/pom.xml | 2 +-
services/timestreamwrite/pom.xml | 2 +-
services/tnb/pom.xml | 2 +-
services/transcribe/pom.xml | 2 +-
services/transcribestreaming/pom.xml | 2 +-
services/transfer/pom.xml | 2 +-
services/translate/pom.xml | 2 +-
services/trustedadvisor/pom.xml | 2 +-
services/verifiedpermissions/pom.xml | 2 +-
services/voiceid/pom.xml | 2 +-
services/vpclattice/pom.xml | 2 +-
services/waf/pom.xml | 2 +-
services/wafv2/pom.xml | 2 +-
services/wellarchitected/pom.xml | 2 +-
services/wisdom/pom.xml | 2 +-
services/workdocs/pom.xml | 2 +-
services/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/bundle-shading-tests/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 +-
475 files changed, 578 insertions(+), 526 deletions(-)
create mode 100644 .changes/2.25.68.json
delete mode 100644 .changes/next-release/feature-AWSAccount-d8f4e47.json
delete mode 100644 .changes/next-release/feature-AWSGlue-ada2f90.json
delete mode 100644 .changes/next-release/feature-AWSIoTWireless-03ff273.json
delete mode 100644 .changes/next-release/feature-AWSS3-bb458a5.json
delete mode 100644 .changes/next-release/feature-AWSStorageGateway-399ed09.json
delete mode 100644 .changes/next-release/feature-AmazonFSx-18aa8f3.json
delete mode 100644 .changes/next-release/feature-AmazonKinesisFirehose-c55852b.json
delete mode 100644 .changes/next-release/feature-AmazonLocationService-8f7a8d6.json
delete mode 100644 .changes/next-release/feature-AmazonSimpleNotificationService-1efd268.json
delete mode 100644 .changes/next-release/feature-AmazonSimpleQueueService-8ac65e6.json
diff --git a/.changes/2.25.68.json b/.changes/2.25.68.json
new file mode 100644
index 000000000000..72b369cdd1ab
--- /dev/null
+++ b/.changes/2.25.68.json
@@ -0,0 +1,66 @@
+{
+ "version": "2.25.68",
+ "date": "2024-06-06",
+ "entries": [
+ {
+ "type": "feature",
+ "category": "AWS Account",
+ "contributor": "",
+ "description": "This release adds 3 new APIs (AcceptPrimaryEmailUpdate, GetPrimaryEmail, and StartPrimaryEmailUpdate) used to centrally manage the root user email address of member accounts within an AWS organization."
+ },
+ {
+ "type": "feature",
+ "category": "AWS Glue",
+ "contributor": "",
+ "description": "This release adds support for creating and updating Glue Data Catalog Views."
+ },
+ {
+ "type": "feature",
+ "category": "AWS IoT Wireless",
+ "contributor": "",
+ "description": "Adds support for wireless device to be in Conflict FUOTA Device Status due to a FUOTA Task, so it couldn't be attached to a new one."
+ },
+ {
+ "type": "feature",
+ "category": "Amazon S3",
+ "contributor": "chaykin",
+ "description": "Allow user to configure content type for BlockingInputStreamAsyncRequestBody"
+ },
+ {
+ "type": "feature",
+ "category": "AWS Storage Gateway",
+ "contributor": "",
+ "description": "Adds SoftwareUpdatePreferences to DescribeMaintenanceStartTime and UpdateMaintenanceStartTime, a structure which contains AutomaticUpdatePolicy."
+ },
+ {
+ "type": "feature",
+ "category": "Amazon FSx",
+ "contributor": "",
+ "description": "This release adds support to increase metadata performance on FSx for Lustre file systems beyond the default level provisioned when a file system is created. This can be done by specifying MetadataConfiguration during the creation of Persistent_2 file systems or by updating it on demand."
+ },
+ {
+ "type": "feature",
+ "category": "Amazon Kinesis Firehose",
+ "contributor": "",
+ "description": "Adds integration with Secrets Manager for Redshift, Splunk, HttpEndpoint, and Snowflake destinations"
+ },
+ {
+ "type": "feature",
+ "category": "Amazon Location Service",
+ "contributor": "",
+ "description": "Added two new APIs, VerifyDevicePosition and ForecastGeofenceEvents. Added support for putting larger geofences up to 100,000 vertices with Geobuf fields."
+ },
+ {
+ "type": "feature",
+ "category": "Amazon Simple Notification Service",
+ "contributor": "",
+ "description": "Doc-only update for SNS. These changes include customer-reported issues and TXC3 updates."
+ },
+ {
+ "type": "feature",
+ "category": "Amazon Simple Queue Service",
+ "contributor": "",
+ "description": "Doc only updates for SQS. These updates include customer-reported issues and TCX3 modifications."
+ }
+ ]
+}
\ No newline at end of file
diff --git a/.changes/next-release/feature-AWSAccount-d8f4e47.json b/.changes/next-release/feature-AWSAccount-d8f4e47.json
deleted file mode 100644
index 369c0c4ddc97..000000000000
--- a/.changes/next-release/feature-AWSAccount-d8f4e47.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "feature",
- "category": "AWS Account",
- "contributor": "",
- "description": "This release adds 3 new APIs (AcceptPrimaryEmailUpdate, GetPrimaryEmail, and StartPrimaryEmailUpdate) used to centrally manage the root user email address of member accounts within an AWS organization."
-}
diff --git a/.changes/next-release/feature-AWSGlue-ada2f90.json b/.changes/next-release/feature-AWSGlue-ada2f90.json
deleted file mode 100644
index 2f79e07986f3..000000000000
--- a/.changes/next-release/feature-AWSGlue-ada2f90.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "feature",
- "category": "AWS Glue",
- "contributor": "",
- "description": "This release adds support for creating and updating Glue Data Catalog Views."
-}
diff --git a/.changes/next-release/feature-AWSIoTWireless-03ff273.json b/.changes/next-release/feature-AWSIoTWireless-03ff273.json
deleted file mode 100644
index f039b52f7c69..000000000000
--- a/.changes/next-release/feature-AWSIoTWireless-03ff273.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "feature",
- "category": "AWS IoT Wireless",
- "contributor": "",
- "description": "Adds support for wireless device to be in Conflict FUOTA Device Status due to a FUOTA Task, so it couldn't be attached to a new one."
-}
diff --git a/.changes/next-release/feature-AWSS3-bb458a5.json b/.changes/next-release/feature-AWSS3-bb458a5.json
deleted file mode 100644
index 60d9c7cc16b3..000000000000
--- a/.changes/next-release/feature-AWSS3-bb458a5.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "feature",
- "category": "Amazon S3",
- "contributor": "chaykin",
- "description": "Allow user to configure content type for BlockingInputStreamAsyncRequestBody"
-}
diff --git a/.changes/next-release/feature-AWSStorageGateway-399ed09.json b/.changes/next-release/feature-AWSStorageGateway-399ed09.json
deleted file mode 100644
index bb79d3ccc0d0..000000000000
--- a/.changes/next-release/feature-AWSStorageGateway-399ed09.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "feature",
- "category": "AWS Storage Gateway",
- "contributor": "",
- "description": "Adds SoftwareUpdatePreferences to DescribeMaintenanceStartTime and UpdateMaintenanceStartTime, a structure which contains AutomaticUpdatePolicy."
-}
diff --git a/.changes/next-release/feature-AmazonFSx-18aa8f3.json b/.changes/next-release/feature-AmazonFSx-18aa8f3.json
deleted file mode 100644
index 22778dc75036..000000000000
--- a/.changes/next-release/feature-AmazonFSx-18aa8f3.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "feature",
- "category": "Amazon FSx",
- "contributor": "",
- "description": "This release adds support to increase metadata performance on FSx for Lustre file systems beyond the default level provisioned when a file system is created. This can be done by specifying MetadataConfiguration during the creation of Persistent_2 file systems or by updating it on demand."
-}
diff --git a/.changes/next-release/feature-AmazonKinesisFirehose-c55852b.json b/.changes/next-release/feature-AmazonKinesisFirehose-c55852b.json
deleted file mode 100644
index 947be710bad9..000000000000
--- a/.changes/next-release/feature-AmazonKinesisFirehose-c55852b.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "feature",
- "category": "Amazon Kinesis Firehose",
- "contributor": "",
- "description": "Adds integration with Secrets Manager for Redshift, Splunk, HttpEndpoint, and Snowflake destinations"
-}
diff --git a/.changes/next-release/feature-AmazonLocationService-8f7a8d6.json b/.changes/next-release/feature-AmazonLocationService-8f7a8d6.json
deleted file mode 100644
index e7d2574adea1..000000000000
--- a/.changes/next-release/feature-AmazonLocationService-8f7a8d6.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "feature",
- "category": "Amazon Location Service",
- "contributor": "",
- "description": "Added two new APIs, VerifyDevicePosition and ForecastGeofenceEvents. Added support for putting larger geofences up to 100,000 vertices with Geobuf fields."
-}
diff --git a/.changes/next-release/feature-AmazonSimpleNotificationService-1efd268.json b/.changes/next-release/feature-AmazonSimpleNotificationService-1efd268.json
deleted file mode 100644
index 8b47d4ea1bd8..000000000000
--- a/.changes/next-release/feature-AmazonSimpleNotificationService-1efd268.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "feature",
- "category": "Amazon Simple Notification Service",
- "contributor": "",
- "description": "Doc-only update for SNS. These changes include customer-reported issues and TXC3 updates."
-}
diff --git a/.changes/next-release/feature-AmazonSimpleQueueService-8ac65e6.json b/.changes/next-release/feature-AmazonSimpleQueueService-8ac65e6.json
deleted file mode 100644
index b1e99cbb4b52..000000000000
--- a/.changes/next-release/feature-AmazonSimpleQueueService-8ac65e6.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "feature",
- "category": "Amazon Simple Queue Service",
- "contributor": "",
- "description": "Doc only updates for SQS. These updates include customer-reported issues and TCX3 modifications."
-}
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e3fac48337a5..e31d36ea4faf 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,50 @@
#### 👋 _Looking for changelogs for older versions? You can find them in the [changelogs](./changelogs) directory._
+# __2.25.68__ __2024-06-06__
+## __AWS Account__
+ - ### Features
+ - This release adds 3 new APIs (AcceptPrimaryEmailUpdate, GetPrimaryEmail, and StartPrimaryEmailUpdate) used to centrally manage the root user email address of member accounts within an AWS organization.
+
+## __AWS Glue__
+ - ### Features
+ - This release adds support for creating and updating Glue Data Catalog Views.
+
+## __AWS IoT Wireless__
+ - ### Features
+ - Adds support for wireless device to be in Conflict FUOTA Device Status due to a FUOTA Task, so it couldn't be attached to a new one.
+
+## __AWS Storage Gateway__
+ - ### Features
+ - Adds SoftwareUpdatePreferences to DescribeMaintenanceStartTime and UpdateMaintenanceStartTime, a structure which contains AutomaticUpdatePolicy.
+
+## __Amazon FSx__
+ - ### Features
+ - This release adds support to increase metadata performance on FSx for Lustre file systems beyond the default level provisioned when a file system is created. This can be done by specifying MetadataConfiguration during the creation of Persistent_2 file systems or by updating it on demand.
+
+## __Amazon Kinesis Firehose__
+ - ### Features
+ - Adds integration with Secrets Manager for Redshift, Splunk, HttpEndpoint, and Snowflake destinations
+
+## __Amazon Location Service__
+ - ### Features
+ - Added two new APIs, VerifyDevicePosition and ForecastGeofenceEvents. Added support for putting larger geofences up to 100,000 vertices with Geobuf fields.
+
+## __Amazon S3__
+ - ### Features
+ - Allow user to configure content type for BlockingInputStreamAsyncRequestBody
+ - Contributed by: [@chaykin](https://github.com/chaykin)
+
+## __Amazon Simple Notification Service__
+ - ### Features
+ - Doc-only update for SNS. These changes include customer-reported issues and TXC3 updates.
+
+## __Amazon Simple Queue Service__
+ - ### Features
+ - Doc only updates for SQS. These updates include customer-reported issues and TCX3 modifications.
+
+## __Contributors__
+Special thanks to the following contributors to this release:
+
+[@chaykin](https://github.com/chaykin)
# __2.25.67__ __2024-06-05__
## __AWS Global Accelerator__
- ### Features
diff --git a/README.md b/README.md
index 3ebfd5c47f91..4efac9b3109f 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.25.67
+ 2.25.68
pom
import
@@ -86,12 +86,12 @@ Alternatively you can add dependencies for the specific services you use only:
software.amazon.awssdk
ec2
- 2.25.67
+ 2.25.68
software.amazon.awssdk
s3
- 2.25.67
+ 2.25.68
```
@@ -103,7 +103,7 @@ You can import the whole SDK into your project (includes *ALL* services). Please
software.amazon.awssdk
aws-sdk-java
- 2.25.67
+ 2.25.68
```
diff --git a/archetypes/archetype-app-quickstart/pom.xml b/archetypes/archetype-app-quickstart/pom.xml
index 3830ac9480c6..f0b32c505ad8 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.68-SNAPSHOT
+ 2.25.68
4.0.0
diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml
index bc835366f726..36998d93b7a8 100644
--- a/archetypes/archetype-lambda/pom.xml
+++ b/archetypes/archetype-lambda/pom.xml
@@ -20,7 +20,7 @@
archetypes
software.amazon.awssdk
- 2.25.68-SNAPSHOT
+ 2.25.68
4.0.0
archetype-lambda
diff --git a/archetypes/archetype-tools/pom.xml b/archetypes/archetype-tools/pom.xml
index b17eaa804265..32b16536ea6c 100644
--- a/archetypes/archetype-tools/pom.xml
+++ b/archetypes/archetype-tools/pom.xml
@@ -20,7 +20,7 @@
archetypes
software.amazon.awssdk
- 2.25.68-SNAPSHOT
+ 2.25.68
4.0.0
diff --git a/archetypes/pom.xml b/archetypes/pom.xml
index bffa9b257067..4bef44eff7cb 100644
--- a/archetypes/pom.xml
+++ b/archetypes/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.25.68-SNAPSHOT
+ 2.25.68
4.0.0
archetypes
diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml
index f927ce783f97..9272edfead0f 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.68-SNAPSHOT
+ 2.25.68
../pom.xml
aws-sdk-java
diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml
index 5913dec756ee..206b00be620a 100644
--- a/bom-internal/pom.xml
+++ b/bom-internal/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.25.68-SNAPSHOT
+ 2.25.68
4.0.0
diff --git a/bom/pom.xml b/bom/pom.xml
index d1fe59af9a2d..5822423a9392 100644
--- a/bom/pom.xml
+++ b/bom/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.68-SNAPSHOT
+ 2.25.68
../pom.xml
bom
diff --git a/bundle-logging-bridge/pom.xml b/bundle-logging-bridge/pom.xml
index 81a6c7fca8c0..151804f0dda1 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.68-SNAPSHOT
+ 2.25.68
bundle-logging-bridge
jar
diff --git a/bundle-sdk/pom.xml b/bundle-sdk/pom.xml
index 27d190727010..1ad9b36b89ac 100644
--- a/bundle-sdk/pom.xml
+++ b/bundle-sdk/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.68-SNAPSHOT
+ 2.25.68
bundle-sdk
jar
diff --git a/bundle/pom.xml b/bundle/pom.xml
index 60ba1a2e7435..b125a6706d21 100644
--- a/bundle/pom.xml
+++ b/bundle/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.68-SNAPSHOT
+ 2.25.68
bundle
jar
diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml
index de70243c0519..98054ff9ef29 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.68-SNAPSHOT
+ 2.25.68
../pom.xml
codegen-lite-maven-plugin
diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml
index f68bab1dca07..b4810747bddf 100644
--- a/codegen-lite/pom.xml
+++ b/codegen-lite/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.68-SNAPSHOT
+ 2.25.68
codegen-lite
AWS Java SDK :: Code Generator Lite
diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml
index 18300a7b325a..d3534c309431 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.68-SNAPSHOT
+ 2.25.68
../pom.xml
codegen-maven-plugin
diff --git a/codegen/pom.xml b/codegen/pom.xml
index b61cb99c6e9e..51de53b63c6b 100644
--- a/codegen/pom.xml
+++ b/codegen/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.68-SNAPSHOT
+ 2.25.68
codegen
AWS Java SDK :: Code Generator
diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml
index ed2a02ee4913..e67a2d76fbd9 100644
--- a/core/annotations/pom.xml
+++ b/core/annotations/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.25.68-SNAPSHOT
+ 2.25.68
4.0.0
diff --git a/core/arns/pom.xml b/core/arns/pom.xml
index 99be9a4b1fcd..68345035e471 100644
--- a/core/arns/pom.xml
+++ b/core/arns/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.25.68-SNAPSHOT
+ 2.25.68
4.0.0
diff --git a/core/auth-crt/pom.xml b/core/auth-crt/pom.xml
index 8857ceef661c..9785e21938f5 100644
--- a/core/auth-crt/pom.xml
+++ b/core/auth-crt/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.25.68-SNAPSHOT
+ 2.25.68
auth-crt
diff --git a/core/auth/pom.xml b/core/auth/pom.xml
index 2d9e2f279eba..5d23a8812d46 100644
--- a/core/auth/pom.xml
+++ b/core/auth/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.25.68-SNAPSHOT
+ 2.25.68
auth
diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml
index 7b26fd82c42d..c9ff33c15712 100644
--- a/core/aws-core/pom.xml
+++ b/core/aws-core/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.25.68-SNAPSHOT
+ 2.25.68
aws-core
diff --git a/core/checksums-spi/pom.xml b/core/checksums-spi/pom.xml
index ff0e8a869a52..d781991203e7 100644
--- a/core/checksums-spi/pom.xml
+++ b/core/checksums-spi/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.25.68-SNAPSHOT
+ 2.25.68
checksums-spi
diff --git a/core/checksums/pom.xml b/core/checksums/pom.xml
index 8b11d20a5418..56823052eab9 100644
--- a/core/checksums/pom.xml
+++ b/core/checksums/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.25.68-SNAPSHOT
+ 2.25.68
checksums
diff --git a/core/crt-core/pom.xml b/core/crt-core/pom.xml
index e2805b80b691..4b03da4c64f5 100644
--- a/core/crt-core/pom.xml
+++ b/core/crt-core/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
core
- 2.25.68-SNAPSHOT
+ 2.25.68
crt-core
diff --git a/core/endpoints-spi/pom.xml b/core/endpoints-spi/pom.xml
index 8047066b940d..dc4d9e179604 100644
--- a/core/endpoints-spi/pom.xml
+++ b/core/endpoints-spi/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.25.68-SNAPSHOT
+ 2.25.68
4.0.0
diff --git a/core/http-auth-aws-crt/pom.xml b/core/http-auth-aws-crt/pom.xml
index b6629c8fd641..59adfd751997 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.68-SNAPSHOT
+ 2.25.68
http-auth-aws-crt
diff --git a/core/http-auth-aws-eventstream/pom.xml b/core/http-auth-aws-eventstream/pom.xml
index bd41a42ce8df..4e9d8e841d77 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.68-SNAPSHOT
+ 2.25.68
http-auth-aws-eventstream
diff --git a/core/http-auth-aws/pom.xml b/core/http-auth-aws/pom.xml
index 1187dc9fd563..252a326181a1 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.68-SNAPSHOT
+ 2.25.68
http-auth-aws
diff --git a/core/http-auth-spi/pom.xml b/core/http-auth-spi/pom.xml
index aeca76152f26..189a90e26449 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.68-SNAPSHOT
+ 2.25.68
http-auth-spi
diff --git a/core/http-auth/pom.xml b/core/http-auth/pom.xml
index 32c17001007b..77d2a8d2b774 100644
--- a/core/http-auth/pom.xml
+++ b/core/http-auth/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.25.68-SNAPSHOT
+ 2.25.68
http-auth
diff --git a/core/identity-spi/pom.xml b/core/identity-spi/pom.xml
index 317dcb15daa6..08721926efeb 100644
--- a/core/identity-spi/pom.xml
+++ b/core/identity-spi/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.25.68-SNAPSHOT
+ 2.25.68
identity-spi
diff --git a/core/imds/pom.xml b/core/imds/pom.xml
index 283f5474bcdd..aadf232c813a 100644
--- a/core/imds/pom.xml
+++ b/core/imds/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.25.68-SNAPSHOT
+ 2.25.68
4.0.0
imds
diff --git a/core/json-utils/pom.xml b/core/json-utils/pom.xml
index b75bd30e71bc..a4482a84a5c6 100644
--- a/core/json-utils/pom.xml
+++ b/core/json-utils/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.25.68-SNAPSHOT
+ 2.25.68
4.0.0
diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml
index 4a3545b281b5..fbda0e2908fe 100644
--- a/core/metrics-spi/pom.xml
+++ b/core/metrics-spi/pom.xml
@@ -5,7 +5,7 @@
core
software.amazon.awssdk
- 2.25.68-SNAPSHOT
+ 2.25.68
4.0.0
diff --git a/core/pom.xml b/core/pom.xml
index 2c39aa41c204..312b10398b39 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.25.68-SNAPSHOT
+ 2.25.68
core
diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml
index 58ace51840bd..00ea1722b5c2 100644
--- a/core/profiles/pom.xml
+++ b/core/profiles/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.25.68-SNAPSHOT
+ 2.25.68
profiles
diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml
index 3b6ec1e135b4..ba14befba018 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.68-SNAPSHOT
+ 2.25.68
4.0.0
diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml
index 62927bb73b1b..f2290ae8aafc 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.68-SNAPSHOT
+ 2.25.68
4.0.0
diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml
index df224f1edf01..409caaa71653 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.68-SNAPSHOT
+ 2.25.68
4.0.0
diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml
index ce23b964577d..3208e348868a 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.68-SNAPSHOT
+ 2.25.68
4.0.0
diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml
index fb824d168d33..2570c6da0539 100644
--- a/core/protocols/pom.xml
+++ b/core/protocols/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.25.68-SNAPSHOT
+ 2.25.68
4.0.0
diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml
index dd704afe9f59..e03814d49c39 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.68-SNAPSHOT
+ 2.25.68
4.0.0
diff --git a/core/regions/pom.xml b/core/regions/pom.xml
index 08497f88016c..2c74510e90b3 100644
--- a/core/regions/pom.xml
+++ b/core/regions/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.25.68-SNAPSHOT
+ 2.25.68
regions
diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml
index bedcec489087..42d0b545c8b4 100644
--- a/core/sdk-core/pom.xml
+++ b/core/sdk-core/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
core
- 2.25.68-SNAPSHOT
+ 2.25.68
sdk-core
AWS Java SDK :: SDK Core
diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml
index f0acdb87acbf..00c4a2f62030 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.68-SNAPSHOT
+ 2.25.68
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 d0a90f88bf0f..26fdb99678b3 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.68-SNAPSHOT
+ 2.25.68
apache-client
diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml
index 1dca0e80deeb..315dd8e48aeb 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.68-SNAPSHOT
+ 2.25.68
4.0.0
diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml
index 8cabd98525b0..fbf6c5d02a93 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.68-SNAPSHOT
+ 2.25.68
4.0.0
diff --git a/http-clients/pom.xml b/http-clients/pom.xml
index 7d2bf7ea7a70..ad6679690dc2 100644
--- a/http-clients/pom.xml
+++ b/http-clients/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.25.68-SNAPSHOT
+ 2.25.68
4.0.0
diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml
index edda8d979e98..6c100575d2ee 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.68-SNAPSHOT
+ 2.25.68
4.0.0
diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml
index ae5f9fce7f5e..9ff7335622dd 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.68-SNAPSHOT
+ 2.25.68
cloudwatch-metric-publisher
diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml
index 554346446076..e5a09c277bbc 100644
--- a/metric-publishers/pom.xml
+++ b/metric-publishers/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.68-SNAPSHOT
+ 2.25.68
metric-publishers
diff --git a/pom.xml b/pom.xml
index eb006c6fea49..ce698d0a08fc 100644
--- a/pom.xml
+++ b/pom.xml
@@ -20,7 +20,7 @@
4.0.0
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.68-SNAPSHOT
+ 2.25.68
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 d9bd4e8e6159..0aaa1e329be9 100644
--- a/release-scripts/pom.xml
+++ b/release-scripts/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.68-SNAPSHOT
+ 2.25.68
../pom.xml
release-scripts
diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml
index ebe68fe17510..46969dcba86f 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.68-SNAPSHOT
+ 2.25.68
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 2e168b423cc9..4bb0f29b46f6 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.68-SNAPSHOT
+ 2.25.68
../../pom.xml
iam-policy-builder
diff --git a/services-custom/pom.xml b/services-custom/pom.xml
index ae08e7b3b22a..eae2be708783 100644
--- a/services-custom/pom.xml
+++ b/services-custom/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.68-SNAPSHOT
+ 2.25.68
services-custom
AWS Java SDK :: Custom Services
diff --git a/services-custom/s3-event-notifications/pom.xml b/services-custom/s3-event-notifications/pom.xml
index d2c8c7c6923b..c9d42445d111 100644
--- a/services-custom/s3-event-notifications/pom.xml
+++ b/services-custom/s3-event-notifications/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.68-SNAPSHOT
+ 2.25.68
../../pom.xml
s3-event-notifications
diff --git a/services-custom/s3-transfer-manager/pom.xml b/services-custom/s3-transfer-manager/pom.xml
index dc06a7de02d3..7d6681b45d5b 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.68-SNAPSHOT
+ 2.25.68
../../pom.xml
s3-transfer-manager
diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml
index ad9b074ac813..f69bdab5c01b 100644
--- a/services/accessanalyzer/pom.xml
+++ b/services/accessanalyzer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
accessanalyzer
AWS Java SDK :: Services :: AccessAnalyzer
diff --git a/services/account/pom.xml b/services/account/pom.xml
index 1ebffd205148..6d736a52b3b6 100644
--- a/services/account/pom.xml
+++ b/services/account/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
account
AWS Java SDK :: Services :: Account
diff --git a/services/acm/pom.xml b/services/acm/pom.xml
index b47c63741180..aec3397dc2b5 100644
--- a/services/acm/pom.xml
+++ b/services/acm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
acm
AWS Java SDK :: Services :: AWS Certificate Manager
diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml
index c7c0525e1ec5..a6510aa5134c 100644
--- a/services/acmpca/pom.xml
+++ b/services/acmpca/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
acmpca
AWS Java SDK :: Services :: ACM PCA
diff --git a/services/amp/pom.xml b/services/amp/pom.xml
index 0d1ec57a053e..2bb3390f96fe 100644
--- a/services/amp/pom.xml
+++ b/services/amp/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
amp
AWS Java SDK :: Services :: Amp
diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml
index aeae86b50858..8571b320511a 100644
--- a/services/amplify/pom.xml
+++ b/services/amplify/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
amplify
AWS Java SDK :: Services :: Amplify
diff --git a/services/amplifybackend/pom.xml b/services/amplifybackend/pom.xml
index 47270cd3a3a9..43f8ff666c3d 100644
--- a/services/amplifybackend/pom.xml
+++ b/services/amplifybackend/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
amplifybackend
AWS Java SDK :: Services :: Amplify Backend
diff --git a/services/amplifyuibuilder/pom.xml b/services/amplifyuibuilder/pom.xml
index a85d6042a4ca..ff3450f99f7e 100644
--- a/services/amplifyuibuilder/pom.xml
+++ b/services/amplifyuibuilder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
amplifyuibuilder
AWS Java SDK :: Services :: Amplify UI Builder
diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml
index deee4f23ce97..add23f42c2a8 100644
--- a/services/apigateway/pom.xml
+++ b/services/apigateway/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
apigateway
AWS Java SDK :: Services :: Amazon API Gateway
diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml
index e7b026b15c2b..a41a9adbfaf5 100644
--- a/services/apigatewaymanagementapi/pom.xml
+++ b/services/apigatewaymanagementapi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
apigatewaymanagementapi
AWS Java SDK :: Services :: ApiGatewayManagementApi
diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml
index daf1bcccf855..3c2ca0a06571 100644
--- a/services/apigatewayv2/pom.xml
+++ b/services/apigatewayv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
apigatewayv2
AWS Java SDK :: Services :: ApiGatewayV2
diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml
index ba6e5ad04bd7..fe3b7a101635 100644
--- a/services/appconfig/pom.xml
+++ b/services/appconfig/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
appconfig
AWS Java SDK :: Services :: AppConfig
diff --git a/services/appconfigdata/pom.xml b/services/appconfigdata/pom.xml
index 77049b4def7d..57137c96d9e7 100644
--- a/services/appconfigdata/pom.xml
+++ b/services/appconfigdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
appconfigdata
AWS Java SDK :: Services :: App Config Data
diff --git a/services/appfabric/pom.xml b/services/appfabric/pom.xml
index 711f3ed8b35a..ee344bde4183 100644
--- a/services/appfabric/pom.xml
+++ b/services/appfabric/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
appfabric
AWS Java SDK :: Services :: App Fabric
diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml
index 2a0c030c04d2..8c3fad1a57fe 100644
--- a/services/appflow/pom.xml
+++ b/services/appflow/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
appflow
AWS Java SDK :: Services :: Appflow
diff --git a/services/appintegrations/pom.xml b/services/appintegrations/pom.xml
index 317cd0048159..b3f43d88f501 100644
--- a/services/appintegrations/pom.xml
+++ b/services/appintegrations/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
appintegrations
AWS Java SDK :: Services :: App Integrations
diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml
index 6de3f22357ea..ae4985f11102 100644
--- a/services/applicationautoscaling/pom.xml
+++ b/services/applicationautoscaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
applicationautoscaling
AWS Java SDK :: Services :: AWS Application Auto Scaling
diff --git a/services/applicationcostprofiler/pom.xml b/services/applicationcostprofiler/pom.xml
index cf294e3eafd1..6ca02ceacc64 100644
--- a/services/applicationcostprofiler/pom.xml
+++ b/services/applicationcostprofiler/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
applicationcostprofiler
AWS Java SDK :: Services :: Application Cost Profiler
diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml
index b010fd7d9c4f..618e26b1f648 100644
--- a/services/applicationdiscovery/pom.xml
+++ b/services/applicationdiscovery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
applicationdiscovery
AWS Java SDK :: Services :: AWS Application Discovery Service
diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml
index d2711011b020..ad7ec9c795e8 100644
--- a/services/applicationinsights/pom.xml
+++ b/services/applicationinsights/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
applicationinsights
AWS Java SDK :: Services :: Application Insights
diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml
index aba4aabd5a21..0833f84d9849 100644
--- a/services/appmesh/pom.xml
+++ b/services/appmesh/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
appmesh
AWS Java SDK :: Services :: App Mesh
diff --git a/services/apprunner/pom.xml b/services/apprunner/pom.xml
index 811afd434214..51e90a88c53e 100644
--- a/services/apprunner/pom.xml
+++ b/services/apprunner/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
apprunner
AWS Java SDK :: Services :: App Runner
diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml
index e75032766cb4..f6eba87de09a 100644
--- a/services/appstream/pom.xml
+++ b/services/appstream/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
appstream
AWS Java SDK :: Services :: Amazon AppStream
diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml
index fd449ed4f284..1fa308f2f81c 100644
--- a/services/appsync/pom.xml
+++ b/services/appsync/pom.xml
@@ -21,7 +21,7 @@
services
software.amazon.awssdk
- 2.25.68-SNAPSHOT
+ 2.25.68
appsync
diff --git a/services/arczonalshift/pom.xml b/services/arczonalshift/pom.xml
index 5d01c4f94d95..70a3f309424f 100644
--- a/services/arczonalshift/pom.xml
+++ b/services/arczonalshift/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
arczonalshift
AWS Java SDK :: Services :: ARC Zonal Shift
diff --git a/services/artifact/pom.xml b/services/artifact/pom.xml
index 7bcaa0748f72..3b0804d6fd47 100644
--- a/services/artifact/pom.xml
+++ b/services/artifact/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
artifact
AWS Java SDK :: Services :: Artifact
diff --git a/services/athena/pom.xml b/services/athena/pom.xml
index e7c7c81ed3b9..beea237e55b5 100644
--- a/services/athena/pom.xml
+++ b/services/athena/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
athena
AWS Java SDK :: Services :: Amazon Athena
diff --git a/services/auditmanager/pom.xml b/services/auditmanager/pom.xml
index 2d7ea54f5bec..1022d3e088bc 100644
--- a/services/auditmanager/pom.xml
+++ b/services/auditmanager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
auditmanager
AWS Java SDK :: Services :: Audit Manager
diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml
index f8c532df9479..943beabaedeb 100644
--- a/services/autoscaling/pom.xml
+++ b/services/autoscaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
autoscaling
AWS Java SDK :: Services :: Auto Scaling
diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml
index f830b39ab6fd..069a1747d021 100644
--- a/services/autoscalingplans/pom.xml
+++ b/services/autoscalingplans/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
autoscalingplans
AWS Java SDK :: Services :: Auto Scaling Plans
diff --git a/services/b2bi/pom.xml b/services/b2bi/pom.xml
index 0df9fea8bfab..94990deffa47 100644
--- a/services/b2bi/pom.xml
+++ b/services/b2bi/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
b2bi
AWS Java SDK :: Services :: B2 Bi
diff --git a/services/backup/pom.xml b/services/backup/pom.xml
index 2a3f21adf974..e939b499ef7c 100644
--- a/services/backup/pom.xml
+++ b/services/backup/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
backup
AWS Java SDK :: Services :: Backup
diff --git a/services/backupgateway/pom.xml b/services/backupgateway/pom.xml
index 452b2f24483c..af3055c6b4ec 100644
--- a/services/backupgateway/pom.xml
+++ b/services/backupgateway/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
backupgateway
AWS Java SDK :: Services :: Backup Gateway
diff --git a/services/backupstorage/pom.xml b/services/backupstorage/pom.xml
index 0ed1db1014b8..5af915257743 100644
--- a/services/backupstorage/pom.xml
+++ b/services/backupstorage/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
backupstorage
AWS Java SDK :: Services :: Backup Storage
diff --git a/services/batch/pom.xml b/services/batch/pom.xml
index 145b666ffd6d..57bea6a2170e 100644
--- a/services/batch/pom.xml
+++ b/services/batch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
batch
AWS Java SDK :: Services :: AWS Batch
diff --git a/services/bcmdataexports/pom.xml b/services/bcmdataexports/pom.xml
index 2a3173ac1643..f57360467066 100644
--- a/services/bcmdataexports/pom.xml
+++ b/services/bcmdataexports/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
bcmdataexports
AWS Java SDK :: Services :: BCM Data Exports
diff --git a/services/bedrock/pom.xml b/services/bedrock/pom.xml
index 1cdbd280faf5..655dc3482f55 100644
--- a/services/bedrock/pom.xml
+++ b/services/bedrock/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
bedrock
AWS Java SDK :: Services :: Bedrock
diff --git a/services/bedrockagent/pom.xml b/services/bedrockagent/pom.xml
index 65cfbc0a8e4c..2b3ea0f70de8 100644
--- a/services/bedrockagent/pom.xml
+++ b/services/bedrockagent/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
bedrockagent
AWS Java SDK :: Services :: Bedrock Agent
diff --git a/services/bedrockagentruntime/pom.xml b/services/bedrockagentruntime/pom.xml
index 4f9518cc8aac..9b2b87b1eeeb 100644
--- a/services/bedrockagentruntime/pom.xml
+++ b/services/bedrockagentruntime/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
bedrockagentruntime
AWS Java SDK :: Services :: Bedrock Agent Runtime
diff --git a/services/bedrockruntime/pom.xml b/services/bedrockruntime/pom.xml
index a5c1d0b263a2..3c63dbce3ac9 100644
--- a/services/bedrockruntime/pom.xml
+++ b/services/bedrockruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
bedrockruntime
AWS Java SDK :: Services :: Bedrock Runtime
diff --git a/services/billingconductor/pom.xml b/services/billingconductor/pom.xml
index 51bd0c5875ca..835aa282389f 100644
--- a/services/billingconductor/pom.xml
+++ b/services/billingconductor/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
billingconductor
AWS Java SDK :: Services :: Billingconductor
diff --git a/services/braket/pom.xml b/services/braket/pom.xml
index 81ee566fea39..e950a2f633ec 100644
--- a/services/braket/pom.xml
+++ b/services/braket/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
braket
AWS Java SDK :: Services :: Braket
diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml
index 22cc79a6680d..7e033f2cdf6e 100644
--- a/services/budgets/pom.xml
+++ b/services/budgets/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
budgets
AWS Java SDK :: Services :: AWS Budgets
diff --git a/services/chatbot/pom.xml b/services/chatbot/pom.xml
index 0d8cc0fc1f79..18a91f42f7f1 100644
--- a/services/chatbot/pom.xml
+++ b/services/chatbot/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
chatbot
AWS Java SDK :: Services :: Chatbot
diff --git a/services/chime/pom.xml b/services/chime/pom.xml
index 01cf8e521099..4e60e1775228 100644
--- a/services/chime/pom.xml
+++ b/services/chime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
chime
AWS Java SDK :: Services :: Chime
diff --git a/services/chimesdkidentity/pom.xml b/services/chimesdkidentity/pom.xml
index 0792cb8c383b..a3a68299fab3 100644
--- a/services/chimesdkidentity/pom.xml
+++ b/services/chimesdkidentity/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
chimesdkidentity
AWS Java SDK :: Services :: Chime SDK Identity
diff --git a/services/chimesdkmediapipelines/pom.xml b/services/chimesdkmediapipelines/pom.xml
index 418c1456ebdd..4cd623359463 100644
--- a/services/chimesdkmediapipelines/pom.xml
+++ b/services/chimesdkmediapipelines/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
chimesdkmediapipelines
AWS Java SDK :: Services :: Chime SDK Media Pipelines
diff --git a/services/chimesdkmeetings/pom.xml b/services/chimesdkmeetings/pom.xml
index eb91c059e0b9..c9625659f3ad 100644
--- a/services/chimesdkmeetings/pom.xml
+++ b/services/chimesdkmeetings/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
chimesdkmeetings
AWS Java SDK :: Services :: Chime SDK Meetings
diff --git a/services/chimesdkmessaging/pom.xml b/services/chimesdkmessaging/pom.xml
index be62905d2bdd..1f3778d6c3f2 100644
--- a/services/chimesdkmessaging/pom.xml
+++ b/services/chimesdkmessaging/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
chimesdkmessaging
AWS Java SDK :: Services :: Chime SDK Messaging
diff --git a/services/chimesdkvoice/pom.xml b/services/chimesdkvoice/pom.xml
index d9f836d6b7bc..8540612312bf 100644
--- a/services/chimesdkvoice/pom.xml
+++ b/services/chimesdkvoice/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
chimesdkvoice
AWS Java SDK :: Services :: Chime SDK Voice
diff --git a/services/cleanrooms/pom.xml b/services/cleanrooms/pom.xml
index b84f1abc77ba..a137bb629c73 100644
--- a/services/cleanrooms/pom.xml
+++ b/services/cleanrooms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
cleanrooms
AWS Java SDK :: Services :: Clean Rooms
diff --git a/services/cleanroomsml/pom.xml b/services/cleanroomsml/pom.xml
index c9a6943cb5ea..4dfb3e2452a0 100644
--- a/services/cleanroomsml/pom.xml
+++ b/services/cleanroomsml/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
cleanroomsml
AWS Java SDK :: Services :: Clean Rooms ML
diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml
index e97ea5fdf2af..c1a2cc5df78f 100644
--- a/services/cloud9/pom.xml
+++ b/services/cloud9/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.68-SNAPSHOT
+ 2.25.68
4.0.0
cloud9
diff --git a/services/cloudcontrol/pom.xml b/services/cloudcontrol/pom.xml
index 1c6d415ea9b5..afe1e147ff56 100644
--- a/services/cloudcontrol/pom.xml
+++ b/services/cloudcontrol/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
cloudcontrol
AWS Java SDK :: Services :: Cloud Control
diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml
index 9f0d7ce82551..da309adfaa6b 100644
--- a/services/clouddirectory/pom.xml
+++ b/services/clouddirectory/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
clouddirectory
AWS Java SDK :: Services :: Amazon CloudDirectory
diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml
index 0e85802fa63d..1553ed612f8b 100644
--- a/services/cloudformation/pom.xml
+++ b/services/cloudformation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
cloudformation
AWS Java SDK :: Services :: AWS CloudFormation
diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml
index 7277ca5ef464..ddfbdae710e6 100644
--- a/services/cloudfront/pom.xml
+++ b/services/cloudfront/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
cloudfront
AWS Java SDK :: Services :: Amazon CloudFront
diff --git a/services/cloudfrontkeyvaluestore/pom.xml b/services/cloudfrontkeyvaluestore/pom.xml
index 847bab81f98b..aa7e169027f3 100644
--- a/services/cloudfrontkeyvaluestore/pom.xml
+++ b/services/cloudfrontkeyvaluestore/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
cloudfrontkeyvaluestore
AWS Java SDK :: Services :: Cloud Front Key Value Store
diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml
index b96513daae92..6cc31ba57cb2 100644
--- a/services/cloudhsm/pom.xml
+++ b/services/cloudhsm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
cloudhsm
AWS Java SDK :: Services :: AWS CloudHSM
diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml
index 3dd48e89c07d..460617d7011f 100644
--- a/services/cloudhsmv2/pom.xml
+++ b/services/cloudhsmv2/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.68-SNAPSHOT
+ 2.25.68
4.0.0
cloudhsmv2
diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml
index 49bcb02f1e5c..cfa2f252ffa1 100644
--- a/services/cloudsearch/pom.xml
+++ b/services/cloudsearch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
cloudsearch
AWS Java SDK :: Services :: Amazon CloudSearch
diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml
index 37927de697fe..a901f8705e1e 100644
--- a/services/cloudsearchdomain/pom.xml
+++ b/services/cloudsearchdomain/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
cloudsearchdomain
AWS Java SDK :: Services :: Amazon CloudSearch Domain
diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml
index b386658a944b..4233700e55e7 100644
--- a/services/cloudtrail/pom.xml
+++ b/services/cloudtrail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
cloudtrail
AWS Java SDK :: Services :: AWS CloudTrail
diff --git a/services/cloudtraildata/pom.xml b/services/cloudtraildata/pom.xml
index 17228823a731..1aaa71b3fc09 100644
--- a/services/cloudtraildata/pom.xml
+++ b/services/cloudtraildata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
cloudtraildata
AWS Java SDK :: Services :: Cloud Trail Data
diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml
index d412768db6c6..4697da9c4b26 100644
--- a/services/cloudwatch/pom.xml
+++ b/services/cloudwatch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
cloudwatch
AWS Java SDK :: Services :: Amazon CloudWatch
diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml
index 25f786221cff..147fbed717d7 100644
--- a/services/cloudwatchevents/pom.xml
+++ b/services/cloudwatchevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
cloudwatchevents
AWS Java SDK :: Services :: Amazon CloudWatch Events
diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml
index 233ce1c827fc..6e6c8d8fe54e 100644
--- a/services/cloudwatchlogs/pom.xml
+++ b/services/cloudwatchlogs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
cloudwatchlogs
AWS Java SDK :: Services :: Amazon CloudWatch Logs
diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml
index 33717b121afe..1bf99608050f 100644
--- a/services/codeartifact/pom.xml
+++ b/services/codeartifact/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
codeartifact
AWS Java SDK :: Services :: Codeartifact
diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml
index ca4253ce33c8..77a1d950a790 100644
--- a/services/codebuild/pom.xml
+++ b/services/codebuild/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
codebuild
AWS Java SDK :: Services :: AWS Code Build
diff --git a/services/codecatalyst/pom.xml b/services/codecatalyst/pom.xml
index 2b8646704112..1d80fd1142c6 100644
--- a/services/codecatalyst/pom.xml
+++ b/services/codecatalyst/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
codecatalyst
AWS Java SDK :: Services :: Code Catalyst
diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml
index d5bd79e81663..d55590f4c9f4 100644
--- a/services/codecommit/pom.xml
+++ b/services/codecommit/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
codecommit
AWS Java SDK :: Services :: AWS CodeCommit
diff --git a/services/codeconnections/pom.xml b/services/codeconnections/pom.xml
index 00d7df56b7a5..6274cbd3e654 100644
--- a/services/codeconnections/pom.xml
+++ b/services/codeconnections/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
codeconnections
AWS Java SDK :: Services :: Code Connections
diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml
index 55751c92b8ea..9a2da3a14364 100644
--- a/services/codedeploy/pom.xml
+++ b/services/codedeploy/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
codedeploy
AWS Java SDK :: Services :: AWS CodeDeploy
diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml
index 7db3cb3316c8..02717815c1fa 100644
--- a/services/codeguruprofiler/pom.xml
+++ b/services/codeguruprofiler/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
codeguruprofiler
AWS Java SDK :: Services :: CodeGuruProfiler
diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml
index a079d7e1aeb4..76c7d19f3731 100644
--- a/services/codegurureviewer/pom.xml
+++ b/services/codegurureviewer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
codegurureviewer
AWS Java SDK :: Services :: CodeGuru Reviewer
diff --git a/services/codegurusecurity/pom.xml b/services/codegurusecurity/pom.xml
index f557d692f6d8..a1ac60d77555 100644
--- a/services/codegurusecurity/pom.xml
+++ b/services/codegurusecurity/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
codegurusecurity
AWS Java SDK :: Services :: Code Guru Security
diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml
index f474b62c8103..000dbe987a14 100644
--- a/services/codepipeline/pom.xml
+++ b/services/codepipeline/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
codepipeline
AWS Java SDK :: Services :: AWS CodePipeline
diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml
index ca2ebb07dc14..e5a6fdeed01e 100644
--- a/services/codestar/pom.xml
+++ b/services/codestar/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
codestar
AWS Java SDK :: Services :: AWS CodeStar
diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml
index d4c2efa4bbea..a86087ed5aaf 100644
--- a/services/codestarconnections/pom.xml
+++ b/services/codestarconnections/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
codestarconnections
AWS Java SDK :: Services :: CodeStar connections
diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml
index 2960ca36ed7d..f898c1920400 100644
--- a/services/codestarnotifications/pom.xml
+++ b/services/codestarnotifications/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
codestarnotifications
AWS Java SDK :: Services :: Codestar Notifications
diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml
index 1a3c8f6601b8..20c86f4f979a 100644
--- a/services/cognitoidentity/pom.xml
+++ b/services/cognitoidentity/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
cognitoidentity
AWS Java SDK :: Services :: Amazon Cognito Identity
diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml
index f8b86ae5a845..ad8837f4f812 100644
--- a/services/cognitoidentityprovider/pom.xml
+++ b/services/cognitoidentityprovider/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
cognitoidentityprovider
AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service
diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml
index c647cbc5016c..b21f10b95f90 100644
--- a/services/cognitosync/pom.xml
+++ b/services/cognitosync/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
cognitosync
AWS Java SDK :: Services :: Amazon Cognito Sync
diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml
index e9c6a5830b3a..ef13818cff03 100644
--- a/services/comprehend/pom.xml
+++ b/services/comprehend/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.68-SNAPSHOT
+ 2.25.68
4.0.0
comprehend
diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml
index 698ae9a6db99..5e526d2e5bf4 100644
--- a/services/comprehendmedical/pom.xml
+++ b/services/comprehendmedical/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
comprehendmedical
AWS Java SDK :: Services :: ComprehendMedical
diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml
index 6ebd7a498fb5..e56bc4082de9 100644
--- a/services/computeoptimizer/pom.xml
+++ b/services/computeoptimizer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
computeoptimizer
AWS Java SDK :: Services :: Compute Optimizer
diff --git a/services/config/pom.xml b/services/config/pom.xml
index e3e12a8fefb0..094a04c6fe85 100644
--- a/services/config/pom.xml
+++ b/services/config/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
config
AWS Java SDK :: Services :: AWS Config
diff --git a/services/connect/pom.xml b/services/connect/pom.xml
index 8330c651bba2..c2c957a66501 100644
--- a/services/connect/pom.xml
+++ b/services/connect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
connect
AWS Java SDK :: Services :: Connect
diff --git a/services/connectcampaigns/pom.xml b/services/connectcampaigns/pom.xml
index f3bf1a0ef30e..507bcaef6344 100644
--- a/services/connectcampaigns/pom.xml
+++ b/services/connectcampaigns/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
connectcampaigns
AWS Java SDK :: Services :: Connect Campaigns
diff --git a/services/connectcases/pom.xml b/services/connectcases/pom.xml
index 16d16161e70d..79c667013677 100644
--- a/services/connectcases/pom.xml
+++ b/services/connectcases/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
connectcases
AWS Java SDK :: Services :: Connect Cases
diff --git a/services/connectcontactlens/pom.xml b/services/connectcontactlens/pom.xml
index f8c4faa83ba3..3efe561069bf 100644
--- a/services/connectcontactlens/pom.xml
+++ b/services/connectcontactlens/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
connectcontactlens
AWS Java SDK :: Services :: Connect Contact Lens
diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml
index 8280a8703138..514382ff17f0 100644
--- a/services/connectparticipant/pom.xml
+++ b/services/connectparticipant/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
connectparticipant
AWS Java SDK :: Services :: ConnectParticipant
diff --git a/services/controlcatalog/pom.xml b/services/controlcatalog/pom.xml
index b9b7d524e5a5..1b3afa07b6a5 100644
--- a/services/controlcatalog/pom.xml
+++ b/services/controlcatalog/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
controlcatalog
AWS Java SDK :: Services :: Control Catalog
diff --git a/services/controltower/pom.xml b/services/controltower/pom.xml
index 96807a5eb77b..6b2064cd1958 100644
--- a/services/controltower/pom.xml
+++ b/services/controltower/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
controltower
AWS Java SDK :: Services :: Control Tower
diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml
index d199fadb6a82..d4c755c6ecc1 100644
--- a/services/costandusagereport/pom.xml
+++ b/services/costandusagereport/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
costandusagereport
AWS Java SDK :: Services :: AWS Cost and Usage Report
diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml
index e49e5a8446d5..e68d17287012 100644
--- a/services/costexplorer/pom.xml
+++ b/services/costexplorer/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.68-SNAPSHOT
+ 2.25.68
4.0.0
costexplorer
diff --git a/services/costoptimizationhub/pom.xml b/services/costoptimizationhub/pom.xml
index 9e9da7e765af..e228a4596313 100644
--- a/services/costoptimizationhub/pom.xml
+++ b/services/costoptimizationhub/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
costoptimizationhub
AWS Java SDK :: Services :: Cost Optimization Hub
diff --git a/services/customerprofiles/pom.xml b/services/customerprofiles/pom.xml
index 5f9d4d3c2489..ee43ea992d1d 100644
--- a/services/customerprofiles/pom.xml
+++ b/services/customerprofiles/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
customerprofiles
AWS Java SDK :: Services :: Customer Profiles
diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml
index ef4b063afb59..1efd6f739ec7 100644
--- a/services/databasemigration/pom.xml
+++ b/services/databasemigration/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
databasemigration
AWS Java SDK :: Services :: AWS Database Migration Service
diff --git a/services/databrew/pom.xml b/services/databrew/pom.xml
index aec5a5ddbfbd..6be36e505854 100644
--- a/services/databrew/pom.xml
+++ b/services/databrew/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
databrew
AWS Java SDK :: Services :: Data Brew
diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml
index fb99665fb5e4..e8c43e180fef 100644
--- a/services/dataexchange/pom.xml
+++ b/services/dataexchange/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
dataexchange
AWS Java SDK :: Services :: DataExchange
diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml
index 187349ec8f1e..35e13d05ef85 100644
--- a/services/datapipeline/pom.xml
+++ b/services/datapipeline/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
datapipeline
AWS Java SDK :: Services :: AWS Data Pipeline
diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml
index 88bb85170526..4bfe1d78dd57 100644
--- a/services/datasync/pom.xml
+++ b/services/datasync/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
datasync
AWS Java SDK :: Services :: DataSync
diff --git a/services/datazone/pom.xml b/services/datazone/pom.xml
index 2eab0e48c022..44ed874375f2 100644
--- a/services/datazone/pom.xml
+++ b/services/datazone/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
datazone
AWS Java SDK :: Services :: Data Zone
diff --git a/services/dax/pom.xml b/services/dax/pom.xml
index 335085ca5369..cfe190667ff1 100644
--- a/services/dax/pom.xml
+++ b/services/dax/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
dax
AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX)
diff --git a/services/deadline/pom.xml b/services/deadline/pom.xml
index fb5242d5db1c..70ee318306e8 100644
--- a/services/deadline/pom.xml
+++ b/services/deadline/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
deadline
AWS Java SDK :: Services :: Deadline
diff --git a/services/detective/pom.xml b/services/detective/pom.xml
index 1af742c2cc9e..fecc520a05cd 100644
--- a/services/detective/pom.xml
+++ b/services/detective/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
detective
AWS Java SDK :: Services :: Detective
diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml
index e7e2c2ac8ec8..371fd91e272d 100644
--- a/services/devicefarm/pom.xml
+++ b/services/devicefarm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
devicefarm
AWS Java SDK :: Services :: AWS Device Farm
diff --git a/services/devopsguru/pom.xml b/services/devopsguru/pom.xml
index 5e1291224ade..d6d4fb3709cf 100644
--- a/services/devopsguru/pom.xml
+++ b/services/devopsguru/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
devopsguru
AWS Java SDK :: Services :: Dev Ops Guru
diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml
index 2bf15aa1fcf3..fb6a7a6c4029 100644
--- a/services/directconnect/pom.xml
+++ b/services/directconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
directconnect
AWS Java SDK :: Services :: AWS Direct Connect
diff --git a/services/directory/pom.xml b/services/directory/pom.xml
index f3ebc3f1d611..7908fe7da1bb 100644
--- a/services/directory/pom.xml
+++ b/services/directory/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
directory
AWS Java SDK :: Services :: AWS Directory Service
diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml
index e5230c170003..4f425079c11e 100644
--- a/services/dlm/pom.xml
+++ b/services/dlm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
dlm
AWS Java SDK :: Services :: DLM
diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml
index 4faa72dfdbd4..bdce4753e031 100644
--- a/services/docdb/pom.xml
+++ b/services/docdb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
docdb
AWS Java SDK :: Services :: DocDB
diff --git a/services/docdbelastic/pom.xml b/services/docdbelastic/pom.xml
index 79da849733f9..f9f31be4ff72 100644
--- a/services/docdbelastic/pom.xml
+++ b/services/docdbelastic/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
docdbelastic
AWS Java SDK :: Services :: Doc DB Elastic
diff --git a/services/drs/pom.xml b/services/drs/pom.xml
index ceb1a373edef..99fad3cd3817 100644
--- a/services/drs/pom.xml
+++ b/services/drs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
drs
AWS Java SDK :: Services :: Drs
diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml
index 77a357a0575b..088431afb60f 100644
--- a/services/dynamodb/pom.xml
+++ b/services/dynamodb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
dynamodb
AWS Java SDK :: Services :: Amazon DynamoDB
diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml
index 97298ce5a8f7..64f29ea29b1f 100644
--- a/services/ebs/pom.xml
+++ b/services/ebs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
ebs
AWS Java SDK :: Services :: EBS
diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml
index 8adea42109b5..8b5f639d6d1a 100644
--- a/services/ec2/pom.xml
+++ b/services/ec2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
ec2
AWS Java SDK :: Services :: Amazon EC2
diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml
index e506542c76b0..e0270d4c6632 100644
--- a/services/ec2instanceconnect/pom.xml
+++ b/services/ec2instanceconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
ec2instanceconnect
AWS Java SDK :: Services :: EC2 Instance Connect
diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml
index ebd2b3e7548f..3863d26b17c6 100644
--- a/services/ecr/pom.xml
+++ b/services/ecr/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
ecr
AWS Java SDK :: Services :: Amazon EC2 Container Registry
diff --git a/services/ecrpublic/pom.xml b/services/ecrpublic/pom.xml
index dcb3a2fd794b..b2ba81b4fb7c 100644
--- a/services/ecrpublic/pom.xml
+++ b/services/ecrpublic/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
ecrpublic
AWS Java SDK :: Services :: ECR PUBLIC
diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml
index d5f42b0fbe02..baba52050606 100644
--- a/services/ecs/pom.xml
+++ b/services/ecs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
ecs
AWS Java SDK :: Services :: Amazon EC2 Container Service
diff --git a/services/efs/pom.xml b/services/efs/pom.xml
index 46e319f1a0fa..fcfa1fbe9d1d 100644
--- a/services/efs/pom.xml
+++ b/services/efs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
efs
AWS Java SDK :: Services :: Amazon Elastic File System
diff --git a/services/eks/pom.xml b/services/eks/pom.xml
index 906fd14d8bdd..e83c15ad9287 100644
--- a/services/eks/pom.xml
+++ b/services/eks/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
eks
AWS Java SDK :: Services :: EKS
diff --git a/services/eksauth/pom.xml b/services/eksauth/pom.xml
index d87738601af9..ea76eec53427 100644
--- a/services/eksauth/pom.xml
+++ b/services/eksauth/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
eksauth
AWS Java SDK :: Services :: EKS Auth
diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml
index 5fa2cd6d3087..d2734b9f6fa8 100644
--- a/services/elasticache/pom.xml
+++ b/services/elasticache/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
elasticache
AWS Java SDK :: Services :: Amazon ElastiCache
diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml
index 950925a3ecb8..fbc31d44aa48 100644
--- a/services/elasticbeanstalk/pom.xml
+++ b/services/elasticbeanstalk/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
elasticbeanstalk
AWS Java SDK :: Services :: AWS Elastic Beanstalk
diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml
index d95c058205fb..b5171fd23748 100644
--- a/services/elasticinference/pom.xml
+++ b/services/elasticinference/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
elasticinference
AWS Java SDK :: Services :: Elastic Inference
diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml
index 2b8114a2ffca..a6589e47b47e 100644
--- a/services/elasticloadbalancing/pom.xml
+++ b/services/elasticloadbalancing/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
elasticloadbalancing
AWS Java SDK :: Services :: Elastic Load Balancing
diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml
index 564c929daa7d..c5f9c079fd17 100644
--- a/services/elasticloadbalancingv2/pom.xml
+++ b/services/elasticloadbalancingv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
elasticloadbalancingv2
AWS Java SDK :: Services :: Elastic Load Balancing V2
diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml
index 771d874f4af0..f1704508e507 100644
--- a/services/elasticsearch/pom.xml
+++ b/services/elasticsearch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
elasticsearch
AWS Java SDK :: Services :: Amazon Elasticsearch Service
diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml
index 44e313135a9f..4bd51f8aec2a 100644
--- a/services/elastictranscoder/pom.xml
+++ b/services/elastictranscoder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
elastictranscoder
AWS Java SDK :: Services :: Amazon Elastic Transcoder
diff --git a/services/emr/pom.xml b/services/emr/pom.xml
index fef286869074..760ea296cc23 100644
--- a/services/emr/pom.xml
+++ b/services/emr/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
emr
AWS Java SDK :: Services :: Amazon EMR
diff --git a/services/emrcontainers/pom.xml b/services/emrcontainers/pom.xml
index 22d44f90da1a..ee5d11dd9ce7 100644
--- a/services/emrcontainers/pom.xml
+++ b/services/emrcontainers/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
emrcontainers
AWS Java SDK :: Services :: EMR Containers
diff --git a/services/emrserverless/pom.xml b/services/emrserverless/pom.xml
index 3ebca2306e7d..273144e454d6 100644
--- a/services/emrserverless/pom.xml
+++ b/services/emrserverless/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
emrserverless
AWS Java SDK :: Services :: EMR Serverless
diff --git a/services/entityresolution/pom.xml b/services/entityresolution/pom.xml
index b27dcac2048f..482e6a85b312 100644
--- a/services/entityresolution/pom.xml
+++ b/services/entityresolution/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
entityresolution
AWS Java SDK :: Services :: Entity Resolution
diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml
index 921ece3c47d1..96fbb4f713d9 100644
--- a/services/eventbridge/pom.xml
+++ b/services/eventbridge/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
eventbridge
AWS Java SDK :: Services :: EventBridge
diff --git a/services/evidently/pom.xml b/services/evidently/pom.xml
index 250159f77cff..1dab12a46cac 100644
--- a/services/evidently/pom.xml
+++ b/services/evidently/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
evidently
AWS Java SDK :: Services :: Evidently
diff --git a/services/finspace/pom.xml b/services/finspace/pom.xml
index c22987b7cf24..8ce26668d55f 100644
--- a/services/finspace/pom.xml
+++ b/services/finspace/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
finspace
AWS Java SDK :: Services :: Finspace
diff --git a/services/finspacedata/pom.xml b/services/finspacedata/pom.xml
index bf016fc79e35..40736e8a207f 100644
--- a/services/finspacedata/pom.xml
+++ b/services/finspacedata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
finspacedata
AWS Java SDK :: Services :: Finspace Data
diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml
index 1f3253ee5338..3369a0cf3f0d 100644
--- a/services/firehose/pom.xml
+++ b/services/firehose/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
firehose
AWS Java SDK :: Services :: Amazon Kinesis Firehose
diff --git a/services/fis/pom.xml b/services/fis/pom.xml
index dcbd69dc2a38..c8e73515e24f 100644
--- a/services/fis/pom.xml
+++ b/services/fis/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
fis
AWS Java SDK :: Services :: Fis
diff --git a/services/fms/pom.xml b/services/fms/pom.xml
index 0500465ad6dc..a4d91a8abaee 100644
--- a/services/fms/pom.xml
+++ b/services/fms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
fms
AWS Java SDK :: Services :: FMS
diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml
index fe6ffe154290..ad8988332881 100644
--- a/services/forecast/pom.xml
+++ b/services/forecast/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
forecast
AWS Java SDK :: Services :: Forecast
diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml
index c8354a3c6797..f609c37c452a 100644
--- a/services/forecastquery/pom.xml
+++ b/services/forecastquery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
forecastquery
AWS Java SDK :: Services :: Forecastquery
diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml
index 94eef894ead4..6f3e56424ec8 100644
--- a/services/frauddetector/pom.xml
+++ b/services/frauddetector/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
frauddetector
AWS Java SDK :: Services :: FraudDetector
diff --git a/services/freetier/pom.xml b/services/freetier/pom.xml
index f4987ca71fe9..277d44dc3b35 100644
--- a/services/freetier/pom.xml
+++ b/services/freetier/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
freetier
AWS Java SDK :: Services :: Free Tier
diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml
index a183f6fce636..9fd4c817a33e 100644
--- a/services/fsx/pom.xml
+++ b/services/fsx/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
fsx
AWS Java SDK :: Services :: FSx
diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml
index d937d5bcaafa..c8c659500027 100644
--- a/services/gamelift/pom.xml
+++ b/services/gamelift/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
gamelift
AWS Java SDK :: Services :: AWS GameLift
diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml
index f3c380ba6b46..f8b58d2c94e4 100644
--- a/services/glacier/pom.xml
+++ b/services/glacier/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
glacier
AWS Java SDK :: Services :: Amazon Glacier
diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml
index 37abf3dd573c..a3bcc41af0ea 100644
--- a/services/globalaccelerator/pom.xml
+++ b/services/globalaccelerator/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
globalaccelerator
AWS Java SDK :: Services :: Global Accelerator
diff --git a/services/glue/pom.xml b/services/glue/pom.xml
index fdbdf03b92cd..cfab56f625a0 100644
--- a/services/glue/pom.xml
+++ b/services/glue/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.68-SNAPSHOT
+ 2.25.68
4.0.0
glue
diff --git a/services/grafana/pom.xml b/services/grafana/pom.xml
index c0a22fe04ae6..ead35ec231bd 100644
--- a/services/grafana/pom.xml
+++ b/services/grafana/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
grafana
AWS Java SDK :: Services :: Grafana
diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml
index 7da581a243f1..b9c7a9a04190 100644
--- a/services/greengrass/pom.xml
+++ b/services/greengrass/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
greengrass
AWS Java SDK :: Services :: AWS Greengrass
diff --git a/services/greengrassv2/pom.xml b/services/greengrassv2/pom.xml
index 035474c655b8..2365601b0405 100644
--- a/services/greengrassv2/pom.xml
+++ b/services/greengrassv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
greengrassv2
AWS Java SDK :: Services :: Greengrass V2
diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml
index 3294a1b37b7f..996f5f9ef2ba 100644
--- a/services/groundstation/pom.xml
+++ b/services/groundstation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
groundstation
AWS Java SDK :: Services :: GroundStation
diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml
index a504314c256a..f955fb3692ae 100644
--- a/services/guardduty/pom.xml
+++ b/services/guardduty/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.68-SNAPSHOT
+ 2.25.68
4.0.0
guardduty
diff --git a/services/health/pom.xml b/services/health/pom.xml
index 544dcbb3f8ca..1162c36e8423 100644
--- a/services/health/pom.xml
+++ b/services/health/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
health
AWS Java SDK :: Services :: AWS Health APIs and Notifications
diff --git a/services/healthlake/pom.xml b/services/healthlake/pom.xml
index e9471a9bcce3..38b073f19682 100644
--- a/services/healthlake/pom.xml
+++ b/services/healthlake/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
healthlake
AWS Java SDK :: Services :: Health Lake
diff --git a/services/iam/pom.xml b/services/iam/pom.xml
index cb5b2e37ec1e..324559906585 100644
--- a/services/iam/pom.xml
+++ b/services/iam/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
iam
AWS Java SDK :: Services :: AWS IAM
diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml
index d375dc378e28..c005aafb65a0 100644
--- a/services/identitystore/pom.xml
+++ b/services/identitystore/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
identitystore
AWS Java SDK :: Services :: Identitystore
diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml
index 90f388055407..6e21c2e2a225 100644
--- a/services/imagebuilder/pom.xml
+++ b/services/imagebuilder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
imagebuilder
AWS Java SDK :: Services :: Imagebuilder
diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml
index 98cb1d66cbb6..079cec0dd191 100644
--- a/services/inspector/pom.xml
+++ b/services/inspector/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
inspector
AWS Java SDK :: Services :: Amazon Inspector Service
diff --git a/services/inspector2/pom.xml b/services/inspector2/pom.xml
index e1d65ca91100..7137327120f3 100644
--- a/services/inspector2/pom.xml
+++ b/services/inspector2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
inspector2
AWS Java SDK :: Services :: Inspector2
diff --git a/services/inspectorscan/pom.xml b/services/inspectorscan/pom.xml
index 407615231457..90a4cecd159a 100644
--- a/services/inspectorscan/pom.xml
+++ b/services/inspectorscan/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
inspectorscan
AWS Java SDK :: Services :: Inspector Scan
diff --git a/services/internetmonitor/pom.xml b/services/internetmonitor/pom.xml
index 5bab8dbcb553..60e44c3294f0 100644
--- a/services/internetmonitor/pom.xml
+++ b/services/internetmonitor/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
internetmonitor
AWS Java SDK :: Services :: Internet Monitor
diff --git a/services/iot/pom.xml b/services/iot/pom.xml
index 7d93eb57acf9..8f04a20557b3 100644
--- a/services/iot/pom.xml
+++ b/services/iot/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
iot
AWS Java SDK :: Services :: AWS IoT
diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml
index 8556707f82ad..55a8fa59c3d0 100644
--- a/services/iot1clickdevices/pom.xml
+++ b/services/iot1clickdevices/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
iot1clickdevices
AWS Java SDK :: Services :: IoT 1Click Devices Service
diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml
index 81205943a83a..123b04406876 100644
--- a/services/iot1clickprojects/pom.xml
+++ b/services/iot1clickprojects/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
iot1clickprojects
AWS Java SDK :: Services :: IoT 1Click Projects
diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml
index 97f5289d5ace..93ba95b0f20e 100644
--- a/services/iotanalytics/pom.xml
+++ b/services/iotanalytics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
iotanalytics
AWS Java SDK :: Services :: IoTAnalytics
diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml
index 8dd1efa6a670..b4a4e5154a7c 100644
--- a/services/iotdataplane/pom.xml
+++ b/services/iotdataplane/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
iotdataplane
AWS Java SDK :: Services :: AWS IoT Data Plane
diff --git a/services/iotdeviceadvisor/pom.xml b/services/iotdeviceadvisor/pom.xml
index 233ee09da4ce..7b6884744b1b 100644
--- a/services/iotdeviceadvisor/pom.xml
+++ b/services/iotdeviceadvisor/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
iotdeviceadvisor
AWS Java SDK :: Services :: Iot Device Advisor
diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml
index 9c42f54ddcd1..6118bfbb62d9 100644
--- a/services/iotevents/pom.xml
+++ b/services/iotevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
iotevents
AWS Java SDK :: Services :: IoT Events
diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml
index b5d4e75bce7d..23e38ba31898 100644
--- a/services/ioteventsdata/pom.xml
+++ b/services/ioteventsdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
ioteventsdata
AWS Java SDK :: Services :: IoT Events Data
diff --git a/services/iotfleethub/pom.xml b/services/iotfleethub/pom.xml
index 4f035a26cdb1..0ffba3f8f6e7 100644
--- a/services/iotfleethub/pom.xml
+++ b/services/iotfleethub/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
iotfleethub
AWS Java SDK :: Services :: Io T Fleet Hub
diff --git a/services/iotfleetwise/pom.xml b/services/iotfleetwise/pom.xml
index c877edfa36af..b202f129a5e4 100644
--- a/services/iotfleetwise/pom.xml
+++ b/services/iotfleetwise/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
iotfleetwise
AWS Java SDK :: Services :: Io T Fleet Wise
diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml
index 435cd43038ed..287920daac7f 100644
--- a/services/iotjobsdataplane/pom.xml
+++ b/services/iotjobsdataplane/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
iotjobsdataplane
AWS Java SDK :: Services :: IoT Jobs Data Plane
diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml
index f7b95d71cc43..5b42f39b7138 100644
--- a/services/iotsecuretunneling/pom.xml
+++ b/services/iotsecuretunneling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
iotsecuretunneling
AWS Java SDK :: Services :: IoTSecureTunneling
diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml
index 979cec040b78..45fcd4c2d82b 100644
--- a/services/iotsitewise/pom.xml
+++ b/services/iotsitewise/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
iotsitewise
AWS Java SDK :: Services :: Io T Site Wise
diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml
index 21b2d7e47d83..67b0b2a78c41 100644
--- a/services/iotthingsgraph/pom.xml
+++ b/services/iotthingsgraph/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
iotthingsgraph
AWS Java SDK :: Services :: IoTThingsGraph
diff --git a/services/iottwinmaker/pom.xml b/services/iottwinmaker/pom.xml
index fdf654fab68d..63f0352bc822 100644
--- a/services/iottwinmaker/pom.xml
+++ b/services/iottwinmaker/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
iottwinmaker
AWS Java SDK :: Services :: Io T Twin Maker
diff --git a/services/iotwireless/pom.xml b/services/iotwireless/pom.xml
index 781f9c5647b7..245ae089930b 100644
--- a/services/iotwireless/pom.xml
+++ b/services/iotwireless/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
iotwireless
AWS Java SDK :: Services :: IoT Wireless
diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml
index c7a7659c78ec..a928d84ad1c6 100644
--- a/services/ivs/pom.xml
+++ b/services/ivs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
ivs
AWS Java SDK :: Services :: Ivs
diff --git a/services/ivschat/pom.xml b/services/ivschat/pom.xml
index f48069331669..5fd2eca9b0e4 100644
--- a/services/ivschat/pom.xml
+++ b/services/ivschat/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
ivschat
AWS Java SDK :: Services :: Ivschat
diff --git a/services/ivsrealtime/pom.xml b/services/ivsrealtime/pom.xml
index 0c8f6f3fd84e..253869163afc 100644
--- a/services/ivsrealtime/pom.xml
+++ b/services/ivsrealtime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
ivsrealtime
AWS Java SDK :: Services :: IVS Real Time
diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml
index 48f872cf75f4..5ddfd45d469d 100644
--- a/services/kafka/pom.xml
+++ b/services/kafka/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
kafka
AWS Java SDK :: Services :: Kafka
diff --git a/services/kafkaconnect/pom.xml b/services/kafkaconnect/pom.xml
index 7f736e272e0d..46af01aafebb 100644
--- a/services/kafkaconnect/pom.xml
+++ b/services/kafkaconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
kafkaconnect
AWS Java SDK :: Services :: Kafka Connect
diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml
index 0e5e14d9aca5..390306bfc602 100644
--- a/services/kendra/pom.xml
+++ b/services/kendra/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
kendra
AWS Java SDK :: Services :: Kendra
diff --git a/services/kendraranking/pom.xml b/services/kendraranking/pom.xml
index c56bcd3d8369..1c8b5a41ce32 100644
--- a/services/kendraranking/pom.xml
+++ b/services/kendraranking/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
kendraranking
AWS Java SDK :: Services :: Kendra Ranking
diff --git a/services/keyspaces/pom.xml b/services/keyspaces/pom.xml
index 642ce644fb01..f663a15d8193 100644
--- a/services/keyspaces/pom.xml
+++ b/services/keyspaces/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
keyspaces
AWS Java SDK :: Services :: Keyspaces
diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml
index fe669f39f998..442d08f099d0 100644
--- a/services/kinesis/pom.xml
+++ b/services/kinesis/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
kinesis
AWS Java SDK :: Services :: Amazon Kinesis
diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml
index c917a7cfcea2..e85920691e82 100644
--- a/services/kinesisanalytics/pom.xml
+++ b/services/kinesisanalytics/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
kinesisanalytics
AWS Java SDK :: Services :: Amazon Kinesis Analytics
diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml
index 61583c216e89..f9a693068464 100644
--- a/services/kinesisanalyticsv2/pom.xml
+++ b/services/kinesisanalyticsv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
kinesisanalyticsv2
AWS Java SDK :: Services :: Kinesis Analytics V2
diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml
index b8e323a65310..a79e0c0f429f 100644
--- a/services/kinesisvideo/pom.xml
+++ b/services/kinesisvideo/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.68-SNAPSHOT
+ 2.25.68
4.0.0
kinesisvideo
diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml
index ffbab426c11e..dc3b8b2550ed 100644
--- a/services/kinesisvideoarchivedmedia/pom.xml
+++ b/services/kinesisvideoarchivedmedia/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
kinesisvideoarchivedmedia
AWS Java SDK :: Services :: Kinesis Video Archived Media
diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml
index 8e48cb33d8b2..3b6109ac3c2e 100644
--- a/services/kinesisvideomedia/pom.xml
+++ b/services/kinesisvideomedia/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
kinesisvideomedia
AWS Java SDK :: Services :: Kinesis Video Media
diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml
index 0defdd4c3218..927462fdd54e 100644
--- a/services/kinesisvideosignaling/pom.xml
+++ b/services/kinesisvideosignaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
kinesisvideosignaling
AWS Java SDK :: Services :: Kinesis Video Signaling
diff --git a/services/kinesisvideowebrtcstorage/pom.xml b/services/kinesisvideowebrtcstorage/pom.xml
index d3116d102c3d..ec0e89c5f292 100644
--- a/services/kinesisvideowebrtcstorage/pom.xml
+++ b/services/kinesisvideowebrtcstorage/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
kinesisvideowebrtcstorage
AWS Java SDK :: Services :: Kinesis Video Web RTC Storage
diff --git a/services/kms/pom.xml b/services/kms/pom.xml
index def49562fbcd..0aa3eaa0d3f2 100644
--- a/services/kms/pom.xml
+++ b/services/kms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
kms
AWS Java SDK :: Services :: AWS KMS
diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml
index 4e3f4a16808c..62a22d72c98e 100644
--- a/services/lakeformation/pom.xml
+++ b/services/lakeformation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
lakeformation
AWS Java SDK :: Services :: LakeFormation
diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml
index 0a91a18ef0c9..9863a686b93d 100644
--- a/services/lambda/pom.xml
+++ b/services/lambda/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
lambda
AWS Java SDK :: Services :: AWS Lambda
diff --git a/services/launchwizard/pom.xml b/services/launchwizard/pom.xml
index 196e2df568be..b5e29ca15737 100644
--- a/services/launchwizard/pom.xml
+++ b/services/launchwizard/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
launchwizard
AWS Java SDK :: Services :: Launch Wizard
diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml
index 927c9a04fa53..c285ad932221 100644
--- a/services/lexmodelbuilding/pom.xml
+++ b/services/lexmodelbuilding/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
lexmodelbuilding
AWS Java SDK :: Services :: Amazon Lex Model Building
diff --git a/services/lexmodelsv2/pom.xml b/services/lexmodelsv2/pom.xml
index 99aa80f95de3..1f00303c200b 100644
--- a/services/lexmodelsv2/pom.xml
+++ b/services/lexmodelsv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
lexmodelsv2
AWS Java SDK :: Services :: Lex Models V2
diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml
index bdcdfe890a83..9ea6509970a6 100644
--- a/services/lexruntime/pom.xml
+++ b/services/lexruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
lexruntime
AWS Java SDK :: Services :: Amazon Lex Runtime
diff --git a/services/lexruntimev2/pom.xml b/services/lexruntimev2/pom.xml
index b85720165d3c..44e8eebe7971 100644
--- a/services/lexruntimev2/pom.xml
+++ b/services/lexruntimev2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
lexruntimev2
AWS Java SDK :: Services :: Lex Runtime V2
diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml
index ca2484a9492d..7efec521c23b 100644
--- a/services/licensemanager/pom.xml
+++ b/services/licensemanager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
licensemanager
AWS Java SDK :: Services :: License Manager
diff --git a/services/licensemanagerlinuxsubscriptions/pom.xml b/services/licensemanagerlinuxsubscriptions/pom.xml
index 78828e45c62a..40b6422f7e55 100644
--- a/services/licensemanagerlinuxsubscriptions/pom.xml
+++ b/services/licensemanagerlinuxsubscriptions/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
licensemanagerlinuxsubscriptions
AWS Java SDK :: Services :: License Manager Linux Subscriptions
diff --git a/services/licensemanagerusersubscriptions/pom.xml b/services/licensemanagerusersubscriptions/pom.xml
index 85c0d20b2354..96a37ba4e12c 100644
--- a/services/licensemanagerusersubscriptions/pom.xml
+++ b/services/licensemanagerusersubscriptions/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
licensemanagerusersubscriptions
AWS Java SDK :: Services :: License Manager User Subscriptions
diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml
index 4930ffe5831a..6ffdb4882adc 100644
--- a/services/lightsail/pom.xml
+++ b/services/lightsail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
lightsail
AWS Java SDK :: Services :: Amazon Lightsail
diff --git a/services/location/pom.xml b/services/location/pom.xml
index b7a65a3a8104..37d27273764a 100644
--- a/services/location/pom.xml
+++ b/services/location/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
location
AWS Java SDK :: Services :: Location
diff --git a/services/lookoutequipment/pom.xml b/services/lookoutequipment/pom.xml
index d555521eabd2..dbf356bcb7b9 100644
--- a/services/lookoutequipment/pom.xml
+++ b/services/lookoutequipment/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
lookoutequipment
AWS Java SDK :: Services :: Lookout Equipment
diff --git a/services/lookoutmetrics/pom.xml b/services/lookoutmetrics/pom.xml
index 6e8824756013..6d5f99222510 100644
--- a/services/lookoutmetrics/pom.xml
+++ b/services/lookoutmetrics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
lookoutmetrics
AWS Java SDK :: Services :: Lookout Metrics
diff --git a/services/lookoutvision/pom.xml b/services/lookoutvision/pom.xml
index 37ba80f3ea68..b56d4df227d4 100644
--- a/services/lookoutvision/pom.xml
+++ b/services/lookoutvision/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
lookoutvision
AWS Java SDK :: Services :: Lookout Vision
diff --git a/services/m2/pom.xml b/services/m2/pom.xml
index 86004cb08d6e..86c9c2785549 100644
--- a/services/m2/pom.xml
+++ b/services/m2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
m2
AWS Java SDK :: Services :: M2
diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml
index b5dfa59c536e..24ca9b65fd89 100644
--- a/services/machinelearning/pom.xml
+++ b/services/machinelearning/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
machinelearning
AWS Java SDK :: Services :: Amazon Machine Learning
diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml
index 0c0ef6ebab1e..af0af01079d3 100644
--- a/services/macie2/pom.xml
+++ b/services/macie2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
macie2
AWS Java SDK :: Services :: Macie2
diff --git a/services/mailmanager/pom.xml b/services/mailmanager/pom.xml
index 00c292f26733..d8a83343fcd9 100644
--- a/services/mailmanager/pom.xml
+++ b/services/mailmanager/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
mailmanager
AWS Java SDK :: Services :: Mail Manager
diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml
index 03eb0224aa44..b735cff9a298 100644
--- a/services/managedblockchain/pom.xml
+++ b/services/managedblockchain/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
managedblockchain
AWS Java SDK :: Services :: ManagedBlockchain
diff --git a/services/managedblockchainquery/pom.xml b/services/managedblockchainquery/pom.xml
index fbe07bfcfe7e..bab55e375e27 100644
--- a/services/managedblockchainquery/pom.xml
+++ b/services/managedblockchainquery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
managedblockchainquery
AWS Java SDK :: Services :: Managed Blockchain Query
diff --git a/services/marketplaceagreement/pom.xml b/services/marketplaceagreement/pom.xml
index de0e2c4c6049..2e36c4717e76 100644
--- a/services/marketplaceagreement/pom.xml
+++ b/services/marketplaceagreement/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
marketplaceagreement
AWS Java SDK :: Services :: Marketplace Agreement
diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml
index ee7d4b3a2d81..041b4f33f416 100644
--- a/services/marketplacecatalog/pom.xml
+++ b/services/marketplacecatalog/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
marketplacecatalog
AWS Java SDK :: Services :: Marketplace Catalog
diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml
index 0fce7bc65615..dec645cdb735 100644
--- a/services/marketplacecommerceanalytics/pom.xml
+++ b/services/marketplacecommerceanalytics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
marketplacecommerceanalytics
AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics
diff --git a/services/marketplacedeployment/pom.xml b/services/marketplacedeployment/pom.xml
index a09e2f2d5ebe..86cafb0c7641 100644
--- a/services/marketplacedeployment/pom.xml
+++ b/services/marketplacedeployment/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
marketplacedeployment
AWS Java SDK :: Services :: Marketplace Deployment
diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml
index ef2ecd1d83b9..e4c83feaddcf 100644
--- a/services/marketplaceentitlement/pom.xml
+++ b/services/marketplaceentitlement/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
marketplaceentitlement
AWS Java SDK :: Services :: AWS Marketplace Entitlement
diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml
index 2e70129c1567..2a6eed91a6cb 100644
--- a/services/marketplacemetering/pom.xml
+++ b/services/marketplacemetering/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
marketplacemetering
AWS Java SDK :: Services :: AWS Marketplace Metering Service
diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml
index 857deb4de5e0..1b030af7d719 100644
--- a/services/mediaconnect/pom.xml
+++ b/services/mediaconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
mediaconnect
AWS Java SDK :: Services :: MediaConnect
diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml
index a602766fac20..d78672d29f9b 100644
--- a/services/mediaconvert/pom.xml
+++ b/services/mediaconvert/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.68-SNAPSHOT
+ 2.25.68
4.0.0
mediaconvert
diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml
index ff4e3e57ecbd..028ca01daf30 100644
--- a/services/medialive/pom.xml
+++ b/services/medialive/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.68-SNAPSHOT
+ 2.25.68
4.0.0
medialive
diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml
index fe77fed5c8cc..61c2355502ca 100644
--- a/services/mediapackage/pom.xml
+++ b/services/mediapackage/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.68-SNAPSHOT
+ 2.25.68
4.0.0
mediapackage
diff --git a/services/mediapackagev2/pom.xml b/services/mediapackagev2/pom.xml
index c5d061ef4a77..8af4556aa366 100644
--- a/services/mediapackagev2/pom.xml
+++ b/services/mediapackagev2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
mediapackagev2
AWS Java SDK :: Services :: Media Package V2
diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml
index 9c7e6ea54562..248cb366601b 100644
--- a/services/mediapackagevod/pom.xml
+++ b/services/mediapackagevod/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
mediapackagevod
AWS Java SDK :: Services :: MediaPackage Vod
diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml
index 214c993d8ab6..0b37e74f5e1d 100644
--- a/services/mediastore/pom.xml
+++ b/services/mediastore/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.68-SNAPSHOT
+ 2.25.68
4.0.0
mediastore
diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml
index c8bbd2f0b2fc..1a4ab1d25b52 100644
--- a/services/mediastoredata/pom.xml
+++ b/services/mediastoredata/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.68-SNAPSHOT
+ 2.25.68
4.0.0
mediastoredata
diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml
index 531601b91766..62b9e0f85d6c 100644
--- a/services/mediatailor/pom.xml
+++ b/services/mediatailor/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
mediatailor
AWS Java SDK :: Services :: MediaTailor
diff --git a/services/medicalimaging/pom.xml b/services/medicalimaging/pom.xml
index 26b8e42d0e83..60b7ccff40a2 100644
--- a/services/medicalimaging/pom.xml
+++ b/services/medicalimaging/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
medicalimaging
AWS Java SDK :: Services :: Medical Imaging
diff --git a/services/memorydb/pom.xml b/services/memorydb/pom.xml
index c2b5f7877af5..33222dfffe14 100644
--- a/services/memorydb/pom.xml
+++ b/services/memorydb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
memorydb
AWS Java SDK :: Services :: Memory DB
diff --git a/services/mgn/pom.xml b/services/mgn/pom.xml
index ff902aad9308..992e2ffdf72c 100644
--- a/services/mgn/pom.xml
+++ b/services/mgn/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
mgn
AWS Java SDK :: Services :: Mgn
diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml
index 6c9ffe20315c..29b7ef8282a8 100644
--- a/services/migrationhub/pom.xml
+++ b/services/migrationhub/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.68-SNAPSHOT
+ 2.25.68
4.0.0
migrationhub
diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml
index 0dcda9c12abe..92238a621886 100644
--- a/services/migrationhubconfig/pom.xml
+++ b/services/migrationhubconfig/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
migrationhubconfig
AWS Java SDK :: Services :: MigrationHub Config
diff --git a/services/migrationhuborchestrator/pom.xml b/services/migrationhuborchestrator/pom.xml
index 6d8bb2c714f9..4677f20ea33a 100644
--- a/services/migrationhuborchestrator/pom.xml
+++ b/services/migrationhuborchestrator/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
migrationhuborchestrator
AWS Java SDK :: Services :: Migration Hub Orchestrator
diff --git a/services/migrationhubrefactorspaces/pom.xml b/services/migrationhubrefactorspaces/pom.xml
index 597a5c754639..f72cd927f847 100644
--- a/services/migrationhubrefactorspaces/pom.xml
+++ b/services/migrationhubrefactorspaces/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
migrationhubrefactorspaces
AWS Java SDK :: Services :: Migration Hub Refactor Spaces
diff --git a/services/migrationhubstrategy/pom.xml b/services/migrationhubstrategy/pom.xml
index 4a8ee1769760..c08bcd319b23 100644
--- a/services/migrationhubstrategy/pom.xml
+++ b/services/migrationhubstrategy/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
migrationhubstrategy
AWS Java SDK :: Services :: Migration Hub Strategy
diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml
index 82461884a6e0..b92fda122ef1 100644
--- a/services/mobile/pom.xml
+++ b/services/mobile/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.68-SNAPSHOT
+ 2.25.68
4.0.0
mobile
diff --git a/services/mq/pom.xml b/services/mq/pom.xml
index a89b28318d0c..8dde3381dc3c 100644
--- a/services/mq/pom.xml
+++ b/services/mq/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.68-SNAPSHOT
+ 2.25.68
4.0.0
mq
diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml
index 564b48abb571..c26b29ba173d 100644
--- a/services/mturk/pom.xml
+++ b/services/mturk/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
mturk
AWS Java SDK :: Services :: Amazon Mechanical Turk Requester
diff --git a/services/mwaa/pom.xml b/services/mwaa/pom.xml
index 647b51ba221b..c5b28058be31 100644
--- a/services/mwaa/pom.xml
+++ b/services/mwaa/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
mwaa
AWS Java SDK :: Services :: MWAA
diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml
index 9d6f3defb7c4..2dac1ea93640 100644
--- a/services/neptune/pom.xml
+++ b/services/neptune/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
neptune
AWS Java SDK :: Services :: Neptune
diff --git a/services/neptunedata/pom.xml b/services/neptunedata/pom.xml
index 7df27c6e8de6..531c37ed293c 100644
--- a/services/neptunedata/pom.xml
+++ b/services/neptunedata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
neptunedata
AWS Java SDK :: Services :: Neptunedata
diff --git a/services/neptunegraph/pom.xml b/services/neptunegraph/pom.xml
index fff3fce9f969..b82597338ea6 100644
--- a/services/neptunegraph/pom.xml
+++ b/services/neptunegraph/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
neptunegraph
AWS Java SDK :: Services :: Neptune Graph
diff --git a/services/networkfirewall/pom.xml b/services/networkfirewall/pom.xml
index 79bcbd4b0dfe..afe0cc092f12 100644
--- a/services/networkfirewall/pom.xml
+++ b/services/networkfirewall/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
networkfirewall
AWS Java SDK :: Services :: Network Firewall
diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml
index e172f4f67e74..fb937b5c7946 100644
--- a/services/networkmanager/pom.xml
+++ b/services/networkmanager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
networkmanager
AWS Java SDK :: Services :: NetworkManager
diff --git a/services/networkmonitor/pom.xml b/services/networkmonitor/pom.xml
index ade304c6c685..c99d8493d654 100644
--- a/services/networkmonitor/pom.xml
+++ b/services/networkmonitor/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
networkmonitor
AWS Java SDK :: Services :: Network Monitor
diff --git a/services/nimble/pom.xml b/services/nimble/pom.xml
index 75dc2bb48495..cd1adb9e6df7 100644
--- a/services/nimble/pom.xml
+++ b/services/nimble/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
nimble
AWS Java SDK :: Services :: Nimble
diff --git a/services/oam/pom.xml b/services/oam/pom.xml
index 5ac086cb2f24..c632bfcc3f80 100644
--- a/services/oam/pom.xml
+++ b/services/oam/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
oam
AWS Java SDK :: Services :: OAM
diff --git a/services/omics/pom.xml b/services/omics/pom.xml
index 8a7a3ceb1999..b5bfbf5a3e0c 100644
--- a/services/omics/pom.xml
+++ b/services/omics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
omics
AWS Java SDK :: Services :: Omics
diff --git a/services/opensearch/pom.xml b/services/opensearch/pom.xml
index 2d6f0bf7a529..d049e6687627 100644
--- a/services/opensearch/pom.xml
+++ b/services/opensearch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
opensearch
AWS Java SDK :: Services :: Open Search
diff --git a/services/opensearchserverless/pom.xml b/services/opensearchserverless/pom.xml
index 83f0222a0571..d94e66c34c6c 100644
--- a/services/opensearchserverless/pom.xml
+++ b/services/opensearchserverless/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
opensearchserverless
AWS Java SDK :: Services :: Open Search Serverless
diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml
index f812823ae79b..f1558b583314 100644
--- a/services/opsworks/pom.xml
+++ b/services/opsworks/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
opsworks
AWS Java SDK :: Services :: AWS OpsWorks
diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml
index 0e7fefc4624a..3baabbd1d73c 100644
--- a/services/opsworkscm/pom.xml
+++ b/services/opsworkscm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
opsworkscm
AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate
diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml
index 4b0584281615..fbd0ce049122 100644
--- a/services/organizations/pom.xml
+++ b/services/organizations/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
organizations
AWS Java SDK :: Services :: AWS Organizations
diff --git a/services/osis/pom.xml b/services/osis/pom.xml
index 140316af003e..b89b139fca80 100644
--- a/services/osis/pom.xml
+++ b/services/osis/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
osis
AWS Java SDK :: Services :: OSIS
diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml
index 197dd94261c7..57221d2cfa4d 100644
--- a/services/outposts/pom.xml
+++ b/services/outposts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
outposts
AWS Java SDK :: Services :: Outposts
diff --git a/services/panorama/pom.xml b/services/panorama/pom.xml
index 257c1c82a9c0..6928428bbfe9 100644
--- a/services/panorama/pom.xml
+++ b/services/panorama/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
panorama
AWS Java SDK :: Services :: Panorama
diff --git a/services/paymentcryptography/pom.xml b/services/paymentcryptography/pom.xml
index 28721d6a570b..2712a7542105 100644
--- a/services/paymentcryptography/pom.xml
+++ b/services/paymentcryptography/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
paymentcryptography
AWS Java SDK :: Services :: Payment Cryptography
diff --git a/services/paymentcryptographydata/pom.xml b/services/paymentcryptographydata/pom.xml
index 48c0bf968467..5633ac344e7e 100644
--- a/services/paymentcryptographydata/pom.xml
+++ b/services/paymentcryptographydata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
paymentcryptographydata
AWS Java SDK :: Services :: Payment Cryptography Data
diff --git a/services/pcaconnectorad/pom.xml b/services/pcaconnectorad/pom.xml
index 7941e6769822..b5a55b520b8e 100644
--- a/services/pcaconnectorad/pom.xml
+++ b/services/pcaconnectorad/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
pcaconnectorad
AWS Java SDK :: Services :: Pca Connector Ad
diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml
index 9cdfd9d3a1c6..918278d86b39 100644
--- a/services/personalize/pom.xml
+++ b/services/personalize/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
personalize
AWS Java SDK :: Services :: Personalize
diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml
index d796a536965b..8ae85395addc 100644
--- a/services/personalizeevents/pom.xml
+++ b/services/personalizeevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
personalizeevents
AWS Java SDK :: Services :: Personalize Events
diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml
index fe5e847772cb..896a85df0672 100644
--- a/services/personalizeruntime/pom.xml
+++ b/services/personalizeruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
personalizeruntime
AWS Java SDK :: Services :: Personalize Runtime
diff --git a/services/pi/pom.xml b/services/pi/pom.xml
index 429df623e1be..8db1577c7445 100644
--- a/services/pi/pom.xml
+++ b/services/pi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
pi
AWS Java SDK :: Services :: PI
diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml
index a3688674860f..d27dfe84a2e2 100644
--- a/services/pinpoint/pom.xml
+++ b/services/pinpoint/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
pinpoint
AWS Java SDK :: Services :: Amazon Pinpoint
diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml
index ee1cf8a1d05a..0cd659223d34 100644
--- a/services/pinpointemail/pom.xml
+++ b/services/pinpointemail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
pinpointemail
AWS Java SDK :: Services :: Pinpoint Email
diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml
index fa02a9e98764..26345449760e 100644
--- a/services/pinpointsmsvoice/pom.xml
+++ b/services/pinpointsmsvoice/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
pinpointsmsvoice
AWS Java SDK :: Services :: Pinpoint SMS Voice
diff --git a/services/pinpointsmsvoicev2/pom.xml b/services/pinpointsmsvoicev2/pom.xml
index 71e9ac335935..7405a725c904 100644
--- a/services/pinpointsmsvoicev2/pom.xml
+++ b/services/pinpointsmsvoicev2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
pinpointsmsvoicev2
AWS Java SDK :: Services :: Pinpoint SMS Voice V2
diff --git a/services/pipes/pom.xml b/services/pipes/pom.xml
index 1a95146614b9..3bc00fe3406e 100644
--- a/services/pipes/pom.xml
+++ b/services/pipes/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
pipes
AWS Java SDK :: Services :: Pipes
diff --git a/services/polly/pom.xml b/services/polly/pom.xml
index b2b8e5b70827..c646c1a5070a 100644
--- a/services/polly/pom.xml
+++ b/services/polly/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
polly
AWS Java SDK :: Services :: Amazon Polly
diff --git a/services/pom.xml b/services/pom.xml
index 7ca668ed36ea..9bfb0a6b1c5d 100644
--- a/services/pom.xml
+++ b/services/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.68-SNAPSHOT
+ 2.25.68
services
AWS Java SDK :: Services
diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml
index a75f79a33269..aeeea7da32b0 100644
--- a/services/pricing/pom.xml
+++ b/services/pricing/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.68-SNAPSHOT
+ 2.25.68
4.0.0
pricing
diff --git a/services/privatenetworks/pom.xml b/services/privatenetworks/pom.xml
index 521fe4d53872..391ae3ed0ac0 100644
--- a/services/privatenetworks/pom.xml
+++ b/services/privatenetworks/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
privatenetworks
AWS Java SDK :: Services :: Private Networks
diff --git a/services/proton/pom.xml b/services/proton/pom.xml
index 0e38517271ba..99f06873beda 100644
--- a/services/proton/pom.xml
+++ b/services/proton/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
proton
AWS Java SDK :: Services :: Proton
diff --git a/services/qbusiness/pom.xml b/services/qbusiness/pom.xml
index d2a125b7bb0a..01e9c3609b39 100644
--- a/services/qbusiness/pom.xml
+++ b/services/qbusiness/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
qbusiness
AWS Java SDK :: Services :: Q Business
diff --git a/services/qconnect/pom.xml b/services/qconnect/pom.xml
index 0daa7e016139..0b67fbfae280 100644
--- a/services/qconnect/pom.xml
+++ b/services/qconnect/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
qconnect
AWS Java SDK :: Services :: Q Connect
diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml
index c2a86d6cb961..6b9f7950121c 100644
--- a/services/qldb/pom.xml
+++ b/services/qldb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
qldb
AWS Java SDK :: Services :: QLDB
diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml
index 0cc18c24848a..f64290ff8130 100644
--- a/services/qldbsession/pom.xml
+++ b/services/qldbsession/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
qldbsession
AWS Java SDK :: Services :: QLDB Session
diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml
index 41a2a65a828e..dcaa789882ac 100644
--- a/services/quicksight/pom.xml
+++ b/services/quicksight/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
quicksight
AWS Java SDK :: Services :: QuickSight
diff --git a/services/ram/pom.xml b/services/ram/pom.xml
index c912f86a20a9..9bdd3f85c45a 100644
--- a/services/ram/pom.xml
+++ b/services/ram/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
ram
AWS Java SDK :: Services :: RAM
diff --git a/services/rbin/pom.xml b/services/rbin/pom.xml
index 7bc9e59f01f5..06fbcc84bba7 100644
--- a/services/rbin/pom.xml
+++ b/services/rbin/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
rbin
AWS Java SDK :: Services :: Rbin
diff --git a/services/rds/pom.xml b/services/rds/pom.xml
index 9fc4e6edd9c3..7cecd3a74510 100644
--- a/services/rds/pom.xml
+++ b/services/rds/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
rds
AWS Java SDK :: Services :: Amazon RDS
diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml
index c025322551a9..011ae0c90485 100644
--- a/services/rdsdata/pom.xml
+++ b/services/rdsdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
rdsdata
AWS Java SDK :: Services :: RDS Data
diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml
index c299fca81623..b280e700d84c 100644
--- a/services/redshift/pom.xml
+++ b/services/redshift/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
redshift
AWS Java SDK :: Services :: Amazon Redshift
diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml
index 6d1a62f89119..be1ca5aded0f 100644
--- a/services/redshiftdata/pom.xml
+++ b/services/redshiftdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
redshiftdata
AWS Java SDK :: Services :: Redshift Data
diff --git a/services/redshiftserverless/pom.xml b/services/redshiftserverless/pom.xml
index 0d7dacb87ffc..cbc5cf9c68ad 100644
--- a/services/redshiftserverless/pom.xml
+++ b/services/redshiftserverless/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
redshiftserverless
AWS Java SDK :: Services :: Redshift Serverless
diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml
index fb1787a5cc32..03751116355a 100644
--- a/services/rekognition/pom.xml
+++ b/services/rekognition/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
rekognition
AWS Java SDK :: Services :: Amazon Rekognition
diff --git a/services/repostspace/pom.xml b/services/repostspace/pom.xml
index 7ec1889893cc..9d23b147749d 100644
--- a/services/repostspace/pom.xml
+++ b/services/repostspace/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
repostspace
AWS Java SDK :: Services :: Repostspace
diff --git a/services/resiliencehub/pom.xml b/services/resiliencehub/pom.xml
index af62b4ce9618..9ddcb3ae1a7b 100644
--- a/services/resiliencehub/pom.xml
+++ b/services/resiliencehub/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
resiliencehub
AWS Java SDK :: Services :: Resiliencehub
diff --git a/services/resourceexplorer2/pom.xml b/services/resourceexplorer2/pom.xml
index 0d968472b35d..b3582f735b86 100644
--- a/services/resourceexplorer2/pom.xml
+++ b/services/resourceexplorer2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
resourceexplorer2
AWS Java SDK :: Services :: Resource Explorer 2
diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml
index 09cf340ca81c..7996391bc3f6 100644
--- a/services/resourcegroups/pom.xml
+++ b/services/resourcegroups/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.68-SNAPSHOT
+ 2.25.68
4.0.0
resourcegroups
diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml
index 1b4adf892a1d..e5a3a848582c 100644
--- a/services/resourcegroupstaggingapi/pom.xml
+++ b/services/resourcegroupstaggingapi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
resourcegroupstaggingapi
AWS Java SDK :: Services :: AWS Resource Groups Tagging API
diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml
index 48c7a4c36192..0b170d4c2c95 100644
--- a/services/robomaker/pom.xml
+++ b/services/robomaker/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
robomaker
AWS Java SDK :: Services :: RoboMaker
diff --git a/services/rolesanywhere/pom.xml b/services/rolesanywhere/pom.xml
index dda61715bf38..a3efc261baa0 100644
--- a/services/rolesanywhere/pom.xml
+++ b/services/rolesanywhere/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
rolesanywhere
AWS Java SDK :: Services :: Roles Anywhere
diff --git a/services/route53/pom.xml b/services/route53/pom.xml
index 51a53ea93aaa..e504d606795a 100644
--- a/services/route53/pom.xml
+++ b/services/route53/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
route53
AWS Java SDK :: Services :: Amazon Route53
diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml
index 83b93473b3c3..8387d396bdb7 100644
--- a/services/route53domains/pom.xml
+++ b/services/route53domains/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
route53domains
AWS Java SDK :: Services :: Amazon Route53 Domains
diff --git a/services/route53profiles/pom.xml b/services/route53profiles/pom.xml
index 48d1afd45546..bb308fd6e612 100644
--- a/services/route53profiles/pom.xml
+++ b/services/route53profiles/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
route53profiles
AWS Java SDK :: Services :: Route53 Profiles
diff --git a/services/route53recoverycluster/pom.xml b/services/route53recoverycluster/pom.xml
index a3dc4ffa7439..5aaa8c5aab4e 100644
--- a/services/route53recoverycluster/pom.xml
+++ b/services/route53recoverycluster/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
route53recoverycluster
AWS Java SDK :: Services :: Route53 Recovery Cluster
diff --git a/services/route53recoverycontrolconfig/pom.xml b/services/route53recoverycontrolconfig/pom.xml
index 1a768ae4739d..6e0c8bf5b687 100644
--- a/services/route53recoverycontrolconfig/pom.xml
+++ b/services/route53recoverycontrolconfig/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
route53recoverycontrolconfig
AWS Java SDK :: Services :: Route53 Recovery Control Config
diff --git a/services/route53recoveryreadiness/pom.xml b/services/route53recoveryreadiness/pom.xml
index 28693f72d5d4..4b39a78b7b0e 100644
--- a/services/route53recoveryreadiness/pom.xml
+++ b/services/route53recoveryreadiness/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
route53recoveryreadiness
AWS Java SDK :: Services :: Route53 Recovery Readiness
diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml
index b14f435d97e7..fd1d5fb2b833 100644
--- a/services/route53resolver/pom.xml
+++ b/services/route53resolver/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
route53resolver
AWS Java SDK :: Services :: Route53Resolver
diff --git a/services/rum/pom.xml b/services/rum/pom.xml
index 1afe5e7dcae8..6226abff7549 100644
--- a/services/rum/pom.xml
+++ b/services/rum/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
rum
AWS Java SDK :: Services :: RUM
diff --git a/services/s3/pom.xml b/services/s3/pom.xml
index ecde28a701cc..d1952629e1fb 100644
--- a/services/s3/pom.xml
+++ b/services/s3/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
s3
AWS Java SDK :: Services :: Amazon S3
diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml
index 5ab92e0cae65..8d4b9c352ae6 100644
--- a/services/s3control/pom.xml
+++ b/services/s3control/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
s3control
AWS Java SDK :: Services :: Amazon S3 Control
diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml
index d6c8da36f884..a1255ed3df37 100644
--- a/services/s3outposts/pom.xml
+++ b/services/s3outposts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
s3outposts
AWS Java SDK :: Services :: S3 Outposts
diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml
index 7716aa7eff5d..ba4869287d8d 100644
--- a/services/sagemaker/pom.xml
+++ b/services/sagemaker/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.68-SNAPSHOT
+ 2.25.68
4.0.0
sagemaker
diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml
index 0c0f99fe06a6..7a3975d403fc 100644
--- a/services/sagemakera2iruntime/pom.xml
+++ b/services/sagemakera2iruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
sagemakera2iruntime
AWS Java SDK :: Services :: SageMaker A2I Runtime
diff --git a/services/sagemakeredge/pom.xml b/services/sagemakeredge/pom.xml
index a44367d9b697..d41416e8aad9 100644
--- a/services/sagemakeredge/pom.xml
+++ b/services/sagemakeredge/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
sagemakeredge
AWS Java SDK :: Services :: Sagemaker Edge
diff --git a/services/sagemakerfeaturestoreruntime/pom.xml b/services/sagemakerfeaturestoreruntime/pom.xml
index 6418e1389a89..e58cc50abac8 100644
--- a/services/sagemakerfeaturestoreruntime/pom.xml
+++ b/services/sagemakerfeaturestoreruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
sagemakerfeaturestoreruntime
AWS Java SDK :: Services :: Sage Maker Feature Store Runtime
diff --git a/services/sagemakergeospatial/pom.xml b/services/sagemakergeospatial/pom.xml
index eb998fbef109..68b851e912cd 100644
--- a/services/sagemakergeospatial/pom.xml
+++ b/services/sagemakergeospatial/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
sagemakergeospatial
AWS Java SDK :: Services :: Sage Maker Geospatial
diff --git a/services/sagemakermetrics/pom.xml b/services/sagemakermetrics/pom.xml
index db8a1b996fd0..cfde9eb8de07 100644
--- a/services/sagemakermetrics/pom.xml
+++ b/services/sagemakermetrics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
sagemakermetrics
AWS Java SDK :: Services :: Sage Maker Metrics
diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml
index 5f361bfce9ab..1a72bf5517c8 100644
--- a/services/sagemakerruntime/pom.xml
+++ b/services/sagemakerruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
sagemakerruntime
AWS Java SDK :: Services :: SageMaker Runtime
diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml
index 98411acc435d..ca0e65523544 100644
--- a/services/savingsplans/pom.xml
+++ b/services/savingsplans/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
savingsplans
AWS Java SDK :: Services :: Savingsplans
diff --git a/services/scheduler/pom.xml b/services/scheduler/pom.xml
index 801ebd3e1aa0..bb332796bc0e 100644
--- a/services/scheduler/pom.xml
+++ b/services/scheduler/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
scheduler
AWS Java SDK :: Services :: Scheduler
diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml
index a91a74d027ff..b78db1a37e7a 100644
--- a/services/schemas/pom.xml
+++ b/services/schemas/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
schemas
AWS Java SDK :: Services :: Schemas
diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml
index 6e3ba9792b45..5701b8f956b5 100644
--- a/services/secretsmanager/pom.xml
+++ b/services/secretsmanager/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
secretsmanager
AWS Java SDK :: Services :: AWS Secrets Manager
diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml
index 95f7bc00dab1..72746052b1e3 100644
--- a/services/securityhub/pom.xml
+++ b/services/securityhub/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
securityhub
AWS Java SDK :: Services :: SecurityHub
diff --git a/services/securitylake/pom.xml b/services/securitylake/pom.xml
index 0e16fc0f2278..05ed22947609 100644
--- a/services/securitylake/pom.xml
+++ b/services/securitylake/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
securitylake
AWS Java SDK :: Services :: Security Lake
diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml
index c012d3eb97f8..ee6b6852c764 100644
--- a/services/serverlessapplicationrepository/pom.xml
+++ b/services/serverlessapplicationrepository/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.68-SNAPSHOT
+ 2.25.68
4.0.0
serverlessapplicationrepository
diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml
index 75edb8b15d01..33df2cb6586c 100644
--- a/services/servicecatalog/pom.xml
+++ b/services/servicecatalog/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
servicecatalog
AWS Java SDK :: Services :: AWS Service Catalog
diff --git a/services/servicecatalogappregistry/pom.xml b/services/servicecatalogappregistry/pom.xml
index ebda7d150788..16a95f7843b6 100644
--- a/services/servicecatalogappregistry/pom.xml
+++ b/services/servicecatalogappregistry/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
servicecatalogappregistry
AWS Java SDK :: Services :: Service Catalog App Registry
diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml
index ee98dbffe275..5baf4c54cd1d 100644
--- a/services/servicediscovery/pom.xml
+++ b/services/servicediscovery/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.68-SNAPSHOT
+ 2.25.68
4.0.0
servicediscovery
diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml
index 29829623ac10..bf73e3d6b6cf 100644
--- a/services/servicequotas/pom.xml
+++ b/services/servicequotas/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
servicequotas
AWS Java SDK :: Services :: Service Quotas
diff --git a/services/ses/pom.xml b/services/ses/pom.xml
index ddf998e37fc6..9c2dda0eceab 100644
--- a/services/ses/pom.xml
+++ b/services/ses/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
ses
AWS Java SDK :: Services :: Amazon SES
diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml
index 551b83251bf5..e15933583e95 100644
--- a/services/sesv2/pom.xml
+++ b/services/sesv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
sesv2
AWS Java SDK :: Services :: SESv2
diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml
index 361bc8521bf4..f9df1596c4e7 100644
--- a/services/sfn/pom.xml
+++ b/services/sfn/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
sfn
AWS Java SDK :: Services :: AWS Step Functions
diff --git a/services/shield/pom.xml b/services/shield/pom.xml
index 23877732f9f2..971169b53e4e 100644
--- a/services/shield/pom.xml
+++ b/services/shield/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
shield
AWS Java SDK :: Services :: AWS Shield
diff --git a/services/signer/pom.xml b/services/signer/pom.xml
index 43d0073fdd0e..e7c9a68a711f 100644
--- a/services/signer/pom.xml
+++ b/services/signer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
signer
AWS Java SDK :: Services :: Signer
diff --git a/services/simspaceweaver/pom.xml b/services/simspaceweaver/pom.xml
index 013a6db27bf8..fc9b04fff41e 100644
--- a/services/simspaceweaver/pom.xml
+++ b/services/simspaceweaver/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
simspaceweaver
AWS Java SDK :: Services :: Sim Space Weaver
diff --git a/services/sms/pom.xml b/services/sms/pom.xml
index 9f409d151a33..ed2e7274f348 100644
--- a/services/sms/pom.xml
+++ b/services/sms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
sms
AWS Java SDK :: Services :: AWS Server Migration
diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml
index 003a97711856..308503bb46b7 100644
--- a/services/snowball/pom.xml
+++ b/services/snowball/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
snowball
AWS Java SDK :: Services :: Amazon Snowball
diff --git a/services/snowdevicemanagement/pom.xml b/services/snowdevicemanagement/pom.xml
index 189cc912c027..74730a9dbe35 100644
--- a/services/snowdevicemanagement/pom.xml
+++ b/services/snowdevicemanagement/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
snowdevicemanagement
AWS Java SDK :: Services :: Snow Device Management
diff --git a/services/sns/pom.xml b/services/sns/pom.xml
index 0634d6de7bb4..de6fb099e0e0 100644
--- a/services/sns/pom.xml
+++ b/services/sns/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
sns
AWS Java SDK :: Services :: Amazon SNS
diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml
index 6d5479991d28..f634d0f30f35 100644
--- a/services/sqs/pom.xml
+++ b/services/sqs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
sqs
AWS Java SDK :: Services :: Amazon SQS
diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml
index 261b80ecf4d5..e6feca15e1e0 100644
--- a/services/ssm/pom.xml
+++ b/services/ssm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
ssm
AWS Java SDK :: Services :: AWS Simple Systems Management (SSM)
diff --git a/services/ssmcontacts/pom.xml b/services/ssmcontacts/pom.xml
index 08e66400481c..e02b43dbcdbd 100644
--- a/services/ssmcontacts/pom.xml
+++ b/services/ssmcontacts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
ssmcontacts
AWS Java SDK :: Services :: SSM Contacts
diff --git a/services/ssmincidents/pom.xml b/services/ssmincidents/pom.xml
index 46eff6ab6b60..5e79e0746a54 100644
--- a/services/ssmincidents/pom.xml
+++ b/services/ssmincidents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
ssmincidents
AWS Java SDK :: Services :: SSM Incidents
diff --git a/services/ssmsap/pom.xml b/services/ssmsap/pom.xml
index 709eb6c74173..471fa513a4ba 100644
--- a/services/ssmsap/pom.xml
+++ b/services/ssmsap/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
ssmsap
AWS Java SDK :: Services :: Ssm Sap
diff --git a/services/sso/pom.xml b/services/sso/pom.xml
index 980ed47785e0..2f4ddcc6bfa5 100644
--- a/services/sso/pom.xml
+++ b/services/sso/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
sso
AWS Java SDK :: Services :: SSO
diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml
index 39138dcee110..aa405da0e0ee 100644
--- a/services/ssoadmin/pom.xml
+++ b/services/ssoadmin/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
ssoadmin
AWS Java SDK :: Services :: SSO Admin
diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml
index 705f96d2be9e..e193dce21993 100644
--- a/services/ssooidc/pom.xml
+++ b/services/ssooidc/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
ssooidc
AWS Java SDK :: Services :: SSO OIDC
diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml
index 680fe5a294ee..902ce0c64866 100644
--- a/services/storagegateway/pom.xml
+++ b/services/storagegateway/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
storagegateway
AWS Java SDK :: Services :: AWS Storage Gateway
diff --git a/services/sts/pom.xml b/services/sts/pom.xml
index 30be82b2796b..16fd370e699a 100644
--- a/services/sts/pom.xml
+++ b/services/sts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
sts
AWS Java SDK :: Services :: AWS STS
diff --git a/services/supplychain/pom.xml b/services/supplychain/pom.xml
index ab2fd480569d..6544cbb4f7e3 100644
--- a/services/supplychain/pom.xml
+++ b/services/supplychain/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
supplychain
AWS Java SDK :: Services :: Supply Chain
diff --git a/services/support/pom.xml b/services/support/pom.xml
index 39584b03faa3..4ed2d59f2fb9 100644
--- a/services/support/pom.xml
+++ b/services/support/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
support
AWS Java SDK :: Services :: AWS Support
diff --git a/services/supportapp/pom.xml b/services/supportapp/pom.xml
index 2724266b7468..af4a361d8e6d 100644
--- a/services/supportapp/pom.xml
+++ b/services/supportapp/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
supportapp
AWS Java SDK :: Services :: Support App
diff --git a/services/swf/pom.xml b/services/swf/pom.xml
index 08e5ab2bf841..8e6da197fd5d 100644
--- a/services/swf/pom.xml
+++ b/services/swf/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
swf
AWS Java SDK :: Services :: Amazon SWF
diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml
index 2981e5d4cf25..1e14caa67e96 100644
--- a/services/synthetics/pom.xml
+++ b/services/synthetics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
synthetics
AWS Java SDK :: Services :: Synthetics
diff --git a/services/taxsettings/pom.xml b/services/taxsettings/pom.xml
index eb600c6388b1..6f41bf522d8b 100644
--- a/services/taxsettings/pom.xml
+++ b/services/taxsettings/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
taxsettings
AWS Java SDK :: Services :: Tax Settings
diff --git a/services/textract/pom.xml b/services/textract/pom.xml
index d08746bec5db..6d686b122a5d 100644
--- a/services/textract/pom.xml
+++ b/services/textract/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
textract
AWS Java SDK :: Services :: Textract
diff --git a/services/timestreaminfluxdb/pom.xml b/services/timestreaminfluxdb/pom.xml
index 96db17a54f5b..33e8cf06f436 100644
--- a/services/timestreaminfluxdb/pom.xml
+++ b/services/timestreaminfluxdb/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
timestreaminfluxdb
AWS Java SDK :: Services :: Timestream Influx DB
diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml
index 621ef8bb3171..b38abbf82872 100644
--- a/services/timestreamquery/pom.xml
+++ b/services/timestreamquery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
timestreamquery
AWS Java SDK :: Services :: Timestream Query
diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml
index 75290d70bfd1..602710c61eb8 100644
--- a/services/timestreamwrite/pom.xml
+++ b/services/timestreamwrite/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
timestreamwrite
AWS Java SDK :: Services :: Timestream Write
diff --git a/services/tnb/pom.xml b/services/tnb/pom.xml
index 1d0a6b3bbd47..990680a14e1e 100644
--- a/services/tnb/pom.xml
+++ b/services/tnb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
tnb
AWS Java SDK :: Services :: Tnb
diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml
index d0d989c3ee9b..d82a601f3832 100644
--- a/services/transcribe/pom.xml
+++ b/services/transcribe/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
transcribe
AWS Java SDK :: Services :: Transcribe
diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml
index c9e98b753209..5ac0cc81bcac 100644
--- a/services/transcribestreaming/pom.xml
+++ b/services/transcribestreaming/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
transcribestreaming
AWS Java SDK :: Services :: AWS Transcribe Streaming
diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml
index 6a60455c9a85..8e76b6cc9ed7 100644
--- a/services/transfer/pom.xml
+++ b/services/transfer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
transfer
AWS Java SDK :: Services :: Transfer
diff --git a/services/translate/pom.xml b/services/translate/pom.xml
index 19fc6692fbd6..31c08cfa5578 100644
--- a/services/translate/pom.xml
+++ b/services/translate/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.68-SNAPSHOT
+ 2.25.68
4.0.0
translate
diff --git a/services/trustedadvisor/pom.xml b/services/trustedadvisor/pom.xml
index 8861e12ecf60..323541be55fa 100644
--- a/services/trustedadvisor/pom.xml
+++ b/services/trustedadvisor/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
trustedadvisor
AWS Java SDK :: Services :: Trusted Advisor
diff --git a/services/verifiedpermissions/pom.xml b/services/verifiedpermissions/pom.xml
index fea7f34e51d1..4e8fcbb755c1 100644
--- a/services/verifiedpermissions/pom.xml
+++ b/services/verifiedpermissions/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
verifiedpermissions
AWS Java SDK :: Services :: Verified Permissions
diff --git a/services/voiceid/pom.xml b/services/voiceid/pom.xml
index aacf691e277e..a1b7c151350a 100644
--- a/services/voiceid/pom.xml
+++ b/services/voiceid/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
voiceid
AWS Java SDK :: Services :: Voice ID
diff --git a/services/vpclattice/pom.xml b/services/vpclattice/pom.xml
index 0d4640d998f9..0ce07a155291 100644
--- a/services/vpclattice/pom.xml
+++ b/services/vpclattice/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
vpclattice
AWS Java SDK :: Services :: VPC Lattice
diff --git a/services/waf/pom.xml b/services/waf/pom.xml
index 0ef23748415a..283969f0c974 100644
--- a/services/waf/pom.xml
+++ b/services/waf/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
waf
AWS Java SDK :: Services :: AWS WAF
diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml
index f4f7d73221f5..e3c770b7c062 100644
--- a/services/wafv2/pom.xml
+++ b/services/wafv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
wafv2
AWS Java SDK :: Services :: WAFV2
diff --git a/services/wellarchitected/pom.xml b/services/wellarchitected/pom.xml
index 70c49a132591..9b7dd0f74d1e 100644
--- a/services/wellarchitected/pom.xml
+++ b/services/wellarchitected/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
wellarchitected
AWS Java SDK :: Services :: Well Architected
diff --git a/services/wisdom/pom.xml b/services/wisdom/pom.xml
index 82426d63ab41..5b819f1671aa 100644
--- a/services/wisdom/pom.xml
+++ b/services/wisdom/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
wisdom
AWS Java SDK :: Services :: Wisdom
diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml
index 7b0b1bb06307..a9b7ae1b1885 100644
--- a/services/workdocs/pom.xml
+++ b/services/workdocs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
workdocs
AWS Java SDK :: Services :: Amazon WorkDocs
diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml
index 96d4d845301c..8a088e42e65a 100644
--- a/services/worklink/pom.xml
+++ b/services/worklink/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
worklink
AWS Java SDK :: Services :: WorkLink
diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml
index e53d75d0563b..14d44450b1bd 100644
--- a/services/workmail/pom.xml
+++ b/services/workmail/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.68-SNAPSHOT
+ 2.25.68
4.0.0
workmail
diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml
index af81036e2842..2343c190994e 100644
--- a/services/workmailmessageflow/pom.xml
+++ b/services/workmailmessageflow/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
workmailmessageflow
AWS Java SDK :: Services :: WorkMailMessageFlow
diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml
index 026f1edf169c..d63ba49e04ee 100644
--- a/services/workspaces/pom.xml
+++ b/services/workspaces/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
workspaces
AWS Java SDK :: Services :: Amazon WorkSpaces
diff --git a/services/workspacesthinclient/pom.xml b/services/workspacesthinclient/pom.xml
index 4f4b48485fee..5e976b9841ba 100644
--- a/services/workspacesthinclient/pom.xml
+++ b/services/workspacesthinclient/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
workspacesthinclient
AWS Java SDK :: Services :: Work Spaces Thin Client
diff --git a/services/workspacesweb/pom.xml b/services/workspacesweb/pom.xml
index 3e28d43c5abb..2da58e4d89c6 100644
--- a/services/workspacesweb/pom.xml
+++ b/services/workspacesweb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
workspacesweb
AWS Java SDK :: Services :: Work Spaces Web
diff --git a/services/xray/pom.xml b/services/xray/pom.xml
index 00e76cdce488..222d7e151e58 100644
--- a/services/xray/pom.xml
+++ b/services/xray/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68-SNAPSHOT
+ 2.25.68
xray
AWS Java SDK :: Services :: AWS X-Ray
diff --git a/test/auth-tests/pom.xml b/test/auth-tests/pom.xml
index be192cb305a1..1facdc37f970 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.68-SNAPSHOT
+ 2.25.68
../../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 92ec2d753994..32fef2800d5c 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.68-SNAPSHOT
+ 2.25.68
../../pom.xml
4.0.0
diff --git a/test/bundle-shading-tests/pom.xml b/test/bundle-shading-tests/pom.xml
index 2dad7e82b4f4..2c783a3c6e74 100644
--- a/test/bundle-shading-tests/pom.xml
+++ b/test/bundle-shading-tests/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.25.68-SNAPSHOT
+ 2.25.68
../../pom.xml
4.0.0
diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml
index 57c80d4718ed..207d4e7b1a5c 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.68-SNAPSHOT
+ 2.25.68
../../pom.xml
diff --git a/test/crt-unavailable-tests/pom.xml b/test/crt-unavailable-tests/pom.xml
index 3a5277c5e693..17ca6e5c7577 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.68-SNAPSHOT
+ 2.25.68
../../pom.xml
4.0.0
diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml
index d09cb5f96d68..1eefce34ca72 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.68-SNAPSHOT
+ 2.25.68
../../pom.xml
http-client-tests
diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml
index 18df6d1b533b..caaec0324473 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.68-SNAPSHOT
+ 2.25.68
../../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 64a75319e381..e7dce4682d74 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.68-SNAPSHOT
+ 2.25.68
../../pom.xml
diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml
index 62c72651365f..8cea32be7de5 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.68-SNAPSHOT
+ 2.25.68
../../pom.xml
4.0.0
diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml
index 61c7bd203725..95dc63be34d9 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.68-SNAPSHOT
+ 2.25.68
../../pom.xml
4.0.0
diff --git a/test/region-testing/pom.xml b/test/region-testing/pom.xml
index 25646e764af4..3da3af0b7386 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.68-SNAPSHOT
+ 2.25.68
../../pom.xml
4.0.0
diff --git a/test/ruleset-testing-core/pom.xml b/test/ruleset-testing-core/pom.xml
index a1d3a1a4c2dd..c6e73cad814a 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.68-SNAPSHOT
+ 2.25.68
../../pom.xml
4.0.0
diff --git a/test/s3-benchmarks/pom.xml b/test/s3-benchmarks/pom.xml
index 9b5a42efb840..d95405a9f3a5 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.68-SNAPSHOT
+ 2.25.68
../../pom.xml
4.0.0
diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml
index 0d59e84fb697..baeb9f891419 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.68-SNAPSHOT
+ 2.25.68
../../pom.xml
diff --git a/test/sdk-native-image-test/pom.xml b/test/sdk-native-image-test/pom.xml
index 24b1c7372312..d8e8123585ba 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.68-SNAPSHOT
+ 2.25.68
../../pom.xml
4.0.0
diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml
index 74203d8c088b..55405ee00ebc 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.68-SNAPSHOT
+ 2.25.68
../../pom.xml
service-test-utils
diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml
index 002ff1911bb2..f6bbed9b0de1 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.68-SNAPSHOT
+ 2.25.68
../../pom.xml
4.0.0
diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml
index c7c6530be6df..8a6001eb47e6 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.68-SNAPSHOT
+ 2.25.68
../../pom.xml
test-utils
diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml
index fa2ca274e3b3..0bf20f62fb0b 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.68-SNAPSHOT
+ 2.25.68
../../pom.xml
4.0.0
diff --git a/third-party/pom.xml b/third-party/pom.xml
index f2dbd94f98ed..8b08f27490ca 100644
--- a/third-party/pom.xml
+++ b/third-party/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.25.68-SNAPSHOT
+ 2.25.68
third-party
diff --git a/third-party/third-party-jackson-core/pom.xml b/third-party/third-party-jackson-core/pom.xml
index 291fa39b0a31..e72b95a67501 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.68-SNAPSHOT
+ 2.25.68
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 858a161462fc..c5f4473bcbbd 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.68-SNAPSHOT
+ 2.25.68
4.0.0
diff --git a/third-party/third-party-slf4j-api/pom.xml b/third-party/third-party-slf4j-api/pom.xml
index 1010ce2f5dd8..d95607850904 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.68-SNAPSHOT
+ 2.25.68
4.0.0
diff --git a/utils/pom.xml b/utils/pom.xml
index 1b74edaf0f65..cc11f664277f 100644
--- a/utils/pom.xml
+++ b/utils/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.25.68-SNAPSHOT
+ 2.25.68
4.0.0
From 44a3e014608757742fae9d28e8269cf536f6afc5 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Thu, 6 Jun 2024 18:53:18 +0000
Subject: [PATCH 19/30] Update to next snapshot version: 2.25.69-SNAPSHOT
---
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 +-
metric-publishers/cloudwatch-metric-publisher/pom.xml | 2 +-
metric-publishers/pom.xml | 2 +-
pom.xml | 4 ++--
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-event-notifications/pom.xml | 2 +-
services-custom/s3-transfer-manager/pom.xml | 2 +-
services/accessanalyzer/pom.xml | 2 +-
services/account/pom.xml | 2 +-
services/acm/pom.xml | 2 +-
services/acmpca/pom.xml | 2 +-
services/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/codeconnections/pom.xml | 2 +-
services/codedeploy/pom.xml | 2 +-
services/codeguruprofiler/pom.xml | 2 +-
services/codegurureviewer/pom.xml | 2 +-
services/codegurusecurity/pom.xml | 2 +-
services/codepipeline/pom.xml | 2 +-
services/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/controlcatalog/pom.xml | 2 +-
services/controltower/pom.xml | 2 +-
services/costandusagereport/pom.xml | 2 +-
services/costexplorer/pom.xml | 2 +-
services/costoptimizationhub/pom.xml | 2 +-
services/customerprofiles/pom.xml | 2 +-
services/databasemigration/pom.xml | 2 +-
services/databrew/pom.xml | 2 +-
services/dataexchange/pom.xml | 2 +-
services/datapipeline/pom.xml | 2 +-
services/datasync/pom.xml | 2 +-
services/datazone/pom.xml | 2 +-
services/dax/pom.xml | 2 +-
services/deadline/pom.xml | 2 +-
services/detective/pom.xml | 2 +-
services/devicefarm/pom.xml | 2 +-
services/devopsguru/pom.xml | 2 +-
services/directconnect/pom.xml | 2 +-
services/directory/pom.xml | 2 +-
services/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/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/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 +-
services/licensemanagerlinuxsubscriptions/pom.xml | 2 +-
services/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/mailmanager/pom.xml | 2 +-
services/managedblockchain/pom.xml | 2 +-
services/managedblockchainquery/pom.xml | 2 +-
services/marketplaceagreement/pom.xml | 2 +-
services/marketplacecatalog/pom.xml | 2 +-
services/marketplacecommerceanalytics/pom.xml | 2 +-
services/marketplacedeployment/pom.xml | 2 +-
services/marketplaceentitlement/pom.xml | 2 +-
services/marketplacemetering/pom.xml | 2 +-
services/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/route53profiles/pom.xml | 2 +-
services/route53recoverycluster/pom.xml | 2 +-
services/route53recoverycontrolconfig/pom.xml | 2 +-
services/route53recoveryreadiness/pom.xml | 2 +-
services/route53resolver/pom.xml | 2 +-
services/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 +-
services/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/taxsettings/pom.xml | 2 +-
services/textract/pom.xml | 2 +-
services/timestreaminfluxdb/pom.xml | 2 +-
services/timestreamquery/pom.xml | 2 +-
services/timestreamwrite/pom.xml | 2 +-
services/tnb/pom.xml | 2 +-
services/transcribe/pom.xml | 2 +-
services/transcribestreaming/pom.xml | 2 +-
services/transfer/pom.xml | 2 +-
services/translate/pom.xml | 2 +-
services/trustedadvisor/pom.xml | 2 +-
services/verifiedpermissions/pom.xml | 2 +-
services/voiceid/pom.xml | 2 +-
services/vpclattice/pom.xml | 2 +-
services/waf/pom.xml | 2 +-
services/wafv2/pom.xml | 2 +-
services/wellarchitected/pom.xml | 2 +-
services/wisdom/pom.xml | 2 +-
services/workdocs/pom.xml | 2 +-
services/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 +-
test/bundle-logging-bridge-binding-test/pom.xml | 2 +-
test/bundle-shading-tests/pom.xml | 2 +-
test/codegen-generated-classes-test/pom.xml | 2 +-
test/crt-unavailable-tests/pom.xml | 2 +-
test/http-client-tests/pom.xml | 2 +-
test/module-path-tests/pom.xml | 2 +-
test/old-client-version-compatibility-test/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 +-
third-party/third-party-jackson-dataformat-cbor/pom.xml | 2 +-
third-party/third-party-slf4j-api/pom.xml | 2 +-
utils/pom.xml | 2 +-
462 files changed, 463 insertions(+), 463 deletions(-)
diff --git a/archetypes/archetype-app-quickstart/pom.xml b/archetypes/archetype-app-quickstart/pom.xml
index f0b32c505ad8..006b357c6f01 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.68
+ 2.25.69-SNAPSHOT
4.0.0
diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml
index 36998d93b7a8..00be32b7bdd6 100644
--- a/archetypes/archetype-lambda/pom.xml
+++ b/archetypes/archetype-lambda/pom.xml
@@ -20,7 +20,7 @@
archetypes
software.amazon.awssdk
- 2.25.68
+ 2.25.69-SNAPSHOT
4.0.0
archetype-lambda
diff --git a/archetypes/archetype-tools/pom.xml b/archetypes/archetype-tools/pom.xml
index 32b16536ea6c..aa27651310bb 100644
--- a/archetypes/archetype-tools/pom.xml
+++ b/archetypes/archetype-tools/pom.xml
@@ -20,7 +20,7 @@
archetypes
software.amazon.awssdk
- 2.25.68
+ 2.25.69-SNAPSHOT
4.0.0
diff --git a/archetypes/pom.xml b/archetypes/pom.xml
index 4bef44eff7cb..f327fbaf3ec5 100644
--- a/archetypes/pom.xml
+++ b/archetypes/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.25.68
+ 2.25.69-SNAPSHOT
4.0.0
archetypes
diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml
index 9272edfead0f..fb6423150db8 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.68
+ 2.25.69-SNAPSHOT
../pom.xml
aws-sdk-java
diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml
index 206b00be620a..2c3148602d05 100644
--- a/bom-internal/pom.xml
+++ b/bom-internal/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.25.68
+ 2.25.69-SNAPSHOT
4.0.0
diff --git a/bom/pom.xml b/bom/pom.xml
index 5822423a9392..b608bcefb415 100644
--- a/bom/pom.xml
+++ b/bom/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.68
+ 2.25.69-SNAPSHOT
../pom.xml
bom
diff --git a/bundle-logging-bridge/pom.xml b/bundle-logging-bridge/pom.xml
index 151804f0dda1..ea1417d4b831 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.68
+ 2.25.69-SNAPSHOT
bundle-logging-bridge
jar
diff --git a/bundle-sdk/pom.xml b/bundle-sdk/pom.xml
index 1ad9b36b89ac..4b9465226b9b 100644
--- a/bundle-sdk/pom.xml
+++ b/bundle-sdk/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.68
+ 2.25.69-SNAPSHOT
bundle-sdk
jar
diff --git a/bundle/pom.xml b/bundle/pom.xml
index b125a6706d21..b3aa0e3233b5 100644
--- a/bundle/pom.xml
+++ b/bundle/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.68
+ 2.25.69-SNAPSHOT
bundle
jar
diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml
index 98054ff9ef29..40c1d5d6fee5 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.68
+ 2.25.69-SNAPSHOT
../pom.xml
codegen-lite-maven-plugin
diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml
index b4810747bddf..66516d381f63 100644
--- a/codegen-lite/pom.xml
+++ b/codegen-lite/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.68
+ 2.25.69-SNAPSHOT
codegen-lite
AWS Java SDK :: Code Generator Lite
diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml
index d3534c309431..e6c33e54692a 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.68
+ 2.25.69-SNAPSHOT
../pom.xml
codegen-maven-plugin
diff --git a/codegen/pom.xml b/codegen/pom.xml
index 51de53b63c6b..8478301f4096 100644
--- a/codegen/pom.xml
+++ b/codegen/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.68
+ 2.25.69-SNAPSHOT
codegen
AWS Java SDK :: Code Generator
diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml
index e67a2d76fbd9..bd1bb0935e37 100644
--- a/core/annotations/pom.xml
+++ b/core/annotations/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.25.68
+ 2.25.69-SNAPSHOT
4.0.0
diff --git a/core/arns/pom.xml b/core/arns/pom.xml
index 68345035e471..7d216fcda717 100644
--- a/core/arns/pom.xml
+++ b/core/arns/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.25.68
+ 2.25.69-SNAPSHOT
4.0.0
diff --git a/core/auth-crt/pom.xml b/core/auth-crt/pom.xml
index 9785e21938f5..41e6be522963 100644
--- a/core/auth-crt/pom.xml
+++ b/core/auth-crt/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.25.68
+ 2.25.69-SNAPSHOT
auth-crt
diff --git a/core/auth/pom.xml b/core/auth/pom.xml
index 5d23a8812d46..62a3001f660e 100644
--- a/core/auth/pom.xml
+++ b/core/auth/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.25.68
+ 2.25.69-SNAPSHOT
auth
diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml
index c9ff33c15712..374060832498 100644
--- a/core/aws-core/pom.xml
+++ b/core/aws-core/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.25.68
+ 2.25.69-SNAPSHOT
aws-core
diff --git a/core/checksums-spi/pom.xml b/core/checksums-spi/pom.xml
index d781991203e7..1d9ae907202a 100644
--- a/core/checksums-spi/pom.xml
+++ b/core/checksums-spi/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.25.68
+ 2.25.69-SNAPSHOT
checksums-spi
diff --git a/core/checksums/pom.xml b/core/checksums/pom.xml
index 56823052eab9..fc229250b5c5 100644
--- a/core/checksums/pom.xml
+++ b/core/checksums/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.25.68
+ 2.25.69-SNAPSHOT
checksums
diff --git a/core/crt-core/pom.xml b/core/crt-core/pom.xml
index 4b03da4c64f5..faacdcba0c84 100644
--- a/core/crt-core/pom.xml
+++ b/core/crt-core/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
core
- 2.25.68
+ 2.25.69-SNAPSHOT
crt-core
diff --git a/core/endpoints-spi/pom.xml b/core/endpoints-spi/pom.xml
index dc4d9e179604..86f8f647bda9 100644
--- a/core/endpoints-spi/pom.xml
+++ b/core/endpoints-spi/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.25.68
+ 2.25.69-SNAPSHOT
4.0.0
diff --git a/core/http-auth-aws-crt/pom.xml b/core/http-auth-aws-crt/pom.xml
index 59adfd751997..fc5117786e48 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.68
+ 2.25.69-SNAPSHOT
http-auth-aws-crt
diff --git a/core/http-auth-aws-eventstream/pom.xml b/core/http-auth-aws-eventstream/pom.xml
index 4e9d8e841d77..0de554ad9fc3 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.68
+ 2.25.69-SNAPSHOT
http-auth-aws-eventstream
diff --git a/core/http-auth-aws/pom.xml b/core/http-auth-aws/pom.xml
index 252a326181a1..ce4c841090c6 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.68
+ 2.25.69-SNAPSHOT
http-auth-aws
diff --git a/core/http-auth-spi/pom.xml b/core/http-auth-spi/pom.xml
index 189a90e26449..17e798c51c62 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.68
+ 2.25.69-SNAPSHOT
http-auth-spi
diff --git a/core/http-auth/pom.xml b/core/http-auth/pom.xml
index 77d2a8d2b774..93b48cd3e0ea 100644
--- a/core/http-auth/pom.xml
+++ b/core/http-auth/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.25.68
+ 2.25.69-SNAPSHOT
http-auth
diff --git a/core/identity-spi/pom.xml b/core/identity-spi/pom.xml
index 08721926efeb..c30eae9e3ea4 100644
--- a/core/identity-spi/pom.xml
+++ b/core/identity-spi/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.25.68
+ 2.25.69-SNAPSHOT
identity-spi
diff --git a/core/imds/pom.xml b/core/imds/pom.xml
index aadf232c813a..e277ccadceef 100644
--- a/core/imds/pom.xml
+++ b/core/imds/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.25.68
+ 2.25.69-SNAPSHOT
4.0.0
imds
diff --git a/core/json-utils/pom.xml b/core/json-utils/pom.xml
index a4482a84a5c6..74fd35091f11 100644
--- a/core/json-utils/pom.xml
+++ b/core/json-utils/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.25.68
+ 2.25.69-SNAPSHOT
4.0.0
diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml
index fbda0e2908fe..f54830b9dcb0 100644
--- a/core/metrics-spi/pom.xml
+++ b/core/metrics-spi/pom.xml
@@ -5,7 +5,7 @@
core
software.amazon.awssdk
- 2.25.68
+ 2.25.69-SNAPSHOT
4.0.0
diff --git a/core/pom.xml b/core/pom.xml
index 312b10398b39..d4a097645b97 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.25.68
+ 2.25.69-SNAPSHOT
core
diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml
index 00ea1722b5c2..0fb23d28a903 100644
--- a/core/profiles/pom.xml
+++ b/core/profiles/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.25.68
+ 2.25.69-SNAPSHOT
profiles
diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml
index ba14befba018..9f78a6799798 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.68
+ 2.25.69-SNAPSHOT
4.0.0
diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml
index f2290ae8aafc..05107e682482 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.68
+ 2.25.69-SNAPSHOT
4.0.0
diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml
index 409caaa71653..d6df281faadf 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.68
+ 2.25.69-SNAPSHOT
4.0.0
diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml
index 3208e348868a..1cfa8595750c 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.68
+ 2.25.69-SNAPSHOT
4.0.0
diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml
index 2570c6da0539..bad82a15bf24 100644
--- a/core/protocols/pom.xml
+++ b/core/protocols/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.25.68
+ 2.25.69-SNAPSHOT
4.0.0
diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml
index e03814d49c39..556682d382f3 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.68
+ 2.25.69-SNAPSHOT
4.0.0
diff --git a/core/regions/pom.xml b/core/regions/pom.xml
index 2c74510e90b3..8e0e1ec922c0 100644
--- a/core/regions/pom.xml
+++ b/core/regions/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.25.68
+ 2.25.69-SNAPSHOT
regions
diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml
index 42d0b545c8b4..ce61525736fd 100644
--- a/core/sdk-core/pom.xml
+++ b/core/sdk-core/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
core
- 2.25.68
+ 2.25.69-SNAPSHOT
sdk-core
AWS Java SDK :: SDK Core
diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml
index 00c4a2f62030..bd132f402913 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.68
+ 2.25.69-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 26fdb99678b3..c8833423dec0 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.68
+ 2.25.69-SNAPSHOT
apache-client
diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml
index 315dd8e48aeb..482438f03362 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.68
+ 2.25.69-SNAPSHOT
4.0.0
diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml
index fbf6c5d02a93..f79a426aed45 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.68
+ 2.25.69-SNAPSHOT
4.0.0
diff --git a/http-clients/pom.xml b/http-clients/pom.xml
index ad6679690dc2..9f1504fdda41 100644
--- a/http-clients/pom.xml
+++ b/http-clients/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.25.68
+ 2.25.69-SNAPSHOT
4.0.0
diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml
index 6c100575d2ee..225094261d4e 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.68
+ 2.25.69-SNAPSHOT
4.0.0
diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml
index 9ff7335622dd..a6bee4028324 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.68
+ 2.25.69-SNAPSHOT
cloudwatch-metric-publisher
diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml
index e5a09c277bbc..ec8ff6eccd19 100644
--- a/metric-publishers/pom.xml
+++ b/metric-publishers/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.68
+ 2.25.69-SNAPSHOT
metric-publishers
diff --git a/pom.xml b/pom.xml
index ce698d0a08fc..611aef92d84b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -20,7 +20,7 @@
4.0.0
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.68
+ 2.25.69-SNAPSHOT
pom
AWS Java SDK :: Parent
The Amazon Web Services SDK for Java provides Java APIs
@@ -97,7 +97,7 @@
${project.version}
- 2.25.67
+ 2.25.68
2.15.2
2.15.2
2.13.2
diff --git a/release-scripts/pom.xml b/release-scripts/pom.xml
index 0aaa1e329be9..35f747bc5d31 100644
--- a/release-scripts/pom.xml
+++ b/release-scripts/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.68
+ 2.25.69-SNAPSHOT
../pom.xml
release-scripts
diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml
index 46969dcba86f..fc279957800b 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.68
+ 2.25.69-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 4bb0f29b46f6..203d133b6f64 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.68
+ 2.25.69-SNAPSHOT
../../pom.xml
iam-policy-builder
diff --git a/services-custom/pom.xml b/services-custom/pom.xml
index eae2be708783..0b381cf4d1a6 100644
--- a/services-custom/pom.xml
+++ b/services-custom/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.68
+ 2.25.69-SNAPSHOT
services-custom
AWS Java SDK :: Custom Services
diff --git a/services-custom/s3-event-notifications/pom.xml b/services-custom/s3-event-notifications/pom.xml
index c9d42445d111..5d9c631a3ce2 100644
--- a/services-custom/s3-event-notifications/pom.xml
+++ b/services-custom/s3-event-notifications/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.68
+ 2.25.69-SNAPSHOT
../../pom.xml
s3-event-notifications
diff --git a/services-custom/s3-transfer-manager/pom.xml b/services-custom/s3-transfer-manager/pom.xml
index 7d6681b45d5b..422a0b5f6c91 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.68
+ 2.25.69-SNAPSHOT
../../pom.xml
s3-transfer-manager
diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml
index f69bdab5c01b..42a9621d66f4 100644
--- a/services/accessanalyzer/pom.xml
+++ b/services/accessanalyzer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
accessanalyzer
AWS Java SDK :: Services :: AccessAnalyzer
diff --git a/services/account/pom.xml b/services/account/pom.xml
index 6d736a52b3b6..2794fa72d0f6 100644
--- a/services/account/pom.xml
+++ b/services/account/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
account
AWS Java SDK :: Services :: Account
diff --git a/services/acm/pom.xml b/services/acm/pom.xml
index aec3397dc2b5..5dfa0777093f 100644
--- a/services/acm/pom.xml
+++ b/services/acm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
acm
AWS Java SDK :: Services :: AWS Certificate Manager
diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml
index a6510aa5134c..e7d9089e7bca 100644
--- a/services/acmpca/pom.xml
+++ b/services/acmpca/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
acmpca
AWS Java SDK :: Services :: ACM PCA
diff --git a/services/amp/pom.xml b/services/amp/pom.xml
index 2bb3390f96fe..b48f11353d43 100644
--- a/services/amp/pom.xml
+++ b/services/amp/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
amp
AWS Java SDK :: Services :: Amp
diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml
index 8571b320511a..8d51fba4285a 100644
--- a/services/amplify/pom.xml
+++ b/services/amplify/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
amplify
AWS Java SDK :: Services :: Amplify
diff --git a/services/amplifybackend/pom.xml b/services/amplifybackend/pom.xml
index 43f8ff666c3d..095dcb6908a7 100644
--- a/services/amplifybackend/pom.xml
+++ b/services/amplifybackend/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
amplifybackend
AWS Java SDK :: Services :: Amplify Backend
diff --git a/services/amplifyuibuilder/pom.xml b/services/amplifyuibuilder/pom.xml
index ff3450f99f7e..fc808c46c4db 100644
--- a/services/amplifyuibuilder/pom.xml
+++ b/services/amplifyuibuilder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
amplifyuibuilder
AWS Java SDK :: Services :: Amplify UI Builder
diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml
index add23f42c2a8..e3404a6392b9 100644
--- a/services/apigateway/pom.xml
+++ b/services/apigateway/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
apigateway
AWS Java SDK :: Services :: Amazon API Gateway
diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml
index a41a9adbfaf5..78127836959b 100644
--- a/services/apigatewaymanagementapi/pom.xml
+++ b/services/apigatewaymanagementapi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
apigatewaymanagementapi
AWS Java SDK :: Services :: ApiGatewayManagementApi
diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml
index 3c2ca0a06571..b4653b45e319 100644
--- a/services/apigatewayv2/pom.xml
+++ b/services/apigatewayv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
apigatewayv2
AWS Java SDK :: Services :: ApiGatewayV2
diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml
index fe3b7a101635..a861301b015a 100644
--- a/services/appconfig/pom.xml
+++ b/services/appconfig/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
appconfig
AWS Java SDK :: Services :: AppConfig
diff --git a/services/appconfigdata/pom.xml b/services/appconfigdata/pom.xml
index 57137c96d9e7..120b61566185 100644
--- a/services/appconfigdata/pom.xml
+++ b/services/appconfigdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
appconfigdata
AWS Java SDK :: Services :: App Config Data
diff --git a/services/appfabric/pom.xml b/services/appfabric/pom.xml
index ee344bde4183..24efe0e7df97 100644
--- a/services/appfabric/pom.xml
+++ b/services/appfabric/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
appfabric
AWS Java SDK :: Services :: App Fabric
diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml
index 8c3fad1a57fe..32ebc9ade50f 100644
--- a/services/appflow/pom.xml
+++ b/services/appflow/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
appflow
AWS Java SDK :: Services :: Appflow
diff --git a/services/appintegrations/pom.xml b/services/appintegrations/pom.xml
index b3f43d88f501..8ee57b725907 100644
--- a/services/appintegrations/pom.xml
+++ b/services/appintegrations/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
appintegrations
AWS Java SDK :: Services :: App Integrations
diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml
index ae4985f11102..ec69b0a3a629 100644
--- a/services/applicationautoscaling/pom.xml
+++ b/services/applicationautoscaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
applicationautoscaling
AWS Java SDK :: Services :: AWS Application Auto Scaling
diff --git a/services/applicationcostprofiler/pom.xml b/services/applicationcostprofiler/pom.xml
index 6ca02ceacc64..3a7ab3f8836e 100644
--- a/services/applicationcostprofiler/pom.xml
+++ b/services/applicationcostprofiler/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
applicationcostprofiler
AWS Java SDK :: Services :: Application Cost Profiler
diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml
index 618e26b1f648..1a4cfb49d2e1 100644
--- a/services/applicationdiscovery/pom.xml
+++ b/services/applicationdiscovery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
applicationdiscovery
AWS Java SDK :: Services :: AWS Application Discovery Service
diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml
index ad7ec9c795e8..63839bdb1c22 100644
--- a/services/applicationinsights/pom.xml
+++ b/services/applicationinsights/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
applicationinsights
AWS Java SDK :: Services :: Application Insights
diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml
index 0833f84d9849..acc37cda439d 100644
--- a/services/appmesh/pom.xml
+++ b/services/appmesh/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
appmesh
AWS Java SDK :: Services :: App Mesh
diff --git a/services/apprunner/pom.xml b/services/apprunner/pom.xml
index 51e90a88c53e..a7017451af90 100644
--- a/services/apprunner/pom.xml
+++ b/services/apprunner/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
apprunner
AWS Java SDK :: Services :: App Runner
diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml
index f6eba87de09a..154905e670c8 100644
--- a/services/appstream/pom.xml
+++ b/services/appstream/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
appstream
AWS Java SDK :: Services :: Amazon AppStream
diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml
index 1fa308f2f81c..45e2e2c4b86e 100644
--- a/services/appsync/pom.xml
+++ b/services/appsync/pom.xml
@@ -21,7 +21,7 @@
services
software.amazon.awssdk
- 2.25.68
+ 2.25.69-SNAPSHOT
appsync
diff --git a/services/arczonalshift/pom.xml b/services/arczonalshift/pom.xml
index 70a3f309424f..5dee39a1c084 100644
--- a/services/arczonalshift/pom.xml
+++ b/services/arczonalshift/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
arczonalshift
AWS Java SDK :: Services :: ARC Zonal Shift
diff --git a/services/artifact/pom.xml b/services/artifact/pom.xml
index 3b0804d6fd47..8ce7f69a7e30 100644
--- a/services/artifact/pom.xml
+++ b/services/artifact/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
artifact
AWS Java SDK :: Services :: Artifact
diff --git a/services/athena/pom.xml b/services/athena/pom.xml
index beea237e55b5..7633f8531f6c 100644
--- a/services/athena/pom.xml
+++ b/services/athena/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
athena
AWS Java SDK :: Services :: Amazon Athena
diff --git a/services/auditmanager/pom.xml b/services/auditmanager/pom.xml
index 1022d3e088bc..ecce70823dc0 100644
--- a/services/auditmanager/pom.xml
+++ b/services/auditmanager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
auditmanager
AWS Java SDK :: Services :: Audit Manager
diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml
index 943beabaedeb..cce5f3d45159 100644
--- a/services/autoscaling/pom.xml
+++ b/services/autoscaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
autoscaling
AWS Java SDK :: Services :: Auto Scaling
diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml
index 069a1747d021..053413537cd5 100644
--- a/services/autoscalingplans/pom.xml
+++ b/services/autoscalingplans/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
autoscalingplans
AWS Java SDK :: Services :: Auto Scaling Plans
diff --git a/services/b2bi/pom.xml b/services/b2bi/pom.xml
index 94990deffa47..f21755535de9 100644
--- a/services/b2bi/pom.xml
+++ b/services/b2bi/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
b2bi
AWS Java SDK :: Services :: B2 Bi
diff --git a/services/backup/pom.xml b/services/backup/pom.xml
index e939b499ef7c..ae1ca1235efc 100644
--- a/services/backup/pom.xml
+++ b/services/backup/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
backup
AWS Java SDK :: Services :: Backup
diff --git a/services/backupgateway/pom.xml b/services/backupgateway/pom.xml
index af3055c6b4ec..52a89725ee99 100644
--- a/services/backupgateway/pom.xml
+++ b/services/backupgateway/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
backupgateway
AWS Java SDK :: Services :: Backup Gateway
diff --git a/services/backupstorage/pom.xml b/services/backupstorage/pom.xml
index 5af915257743..8d19429eb6a6 100644
--- a/services/backupstorage/pom.xml
+++ b/services/backupstorage/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
backupstorage
AWS Java SDK :: Services :: Backup Storage
diff --git a/services/batch/pom.xml b/services/batch/pom.xml
index 57bea6a2170e..ee5c7c57d801 100644
--- a/services/batch/pom.xml
+++ b/services/batch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
batch
AWS Java SDK :: Services :: AWS Batch
diff --git a/services/bcmdataexports/pom.xml b/services/bcmdataexports/pom.xml
index f57360467066..24dbacb7353c 100644
--- a/services/bcmdataexports/pom.xml
+++ b/services/bcmdataexports/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
bcmdataexports
AWS Java SDK :: Services :: BCM Data Exports
diff --git a/services/bedrock/pom.xml b/services/bedrock/pom.xml
index 655dc3482f55..a06ad01d2be9 100644
--- a/services/bedrock/pom.xml
+++ b/services/bedrock/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
bedrock
AWS Java SDK :: Services :: Bedrock
diff --git a/services/bedrockagent/pom.xml b/services/bedrockagent/pom.xml
index 2b3ea0f70de8..1805019f59a8 100644
--- a/services/bedrockagent/pom.xml
+++ b/services/bedrockagent/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
bedrockagent
AWS Java SDK :: Services :: Bedrock Agent
diff --git a/services/bedrockagentruntime/pom.xml b/services/bedrockagentruntime/pom.xml
index 9b2b87b1eeeb..81f36d76d2d1 100644
--- a/services/bedrockagentruntime/pom.xml
+++ b/services/bedrockagentruntime/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
bedrockagentruntime
AWS Java SDK :: Services :: Bedrock Agent Runtime
diff --git a/services/bedrockruntime/pom.xml b/services/bedrockruntime/pom.xml
index 3c63dbce3ac9..cd965bebf344 100644
--- a/services/bedrockruntime/pom.xml
+++ b/services/bedrockruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
bedrockruntime
AWS Java SDK :: Services :: Bedrock Runtime
diff --git a/services/billingconductor/pom.xml b/services/billingconductor/pom.xml
index 835aa282389f..338d7a064a16 100644
--- a/services/billingconductor/pom.xml
+++ b/services/billingconductor/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
billingconductor
AWS Java SDK :: Services :: Billingconductor
diff --git a/services/braket/pom.xml b/services/braket/pom.xml
index e950a2f633ec..6e29eead8f51 100644
--- a/services/braket/pom.xml
+++ b/services/braket/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
braket
AWS Java SDK :: Services :: Braket
diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml
index 7e033f2cdf6e..0c90e5fd7ba3 100644
--- a/services/budgets/pom.xml
+++ b/services/budgets/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
budgets
AWS Java SDK :: Services :: AWS Budgets
diff --git a/services/chatbot/pom.xml b/services/chatbot/pom.xml
index 18a91f42f7f1..f1d0240ef420 100644
--- a/services/chatbot/pom.xml
+++ b/services/chatbot/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
chatbot
AWS Java SDK :: Services :: Chatbot
diff --git a/services/chime/pom.xml b/services/chime/pom.xml
index 4e60e1775228..4d8541afaa1e 100644
--- a/services/chime/pom.xml
+++ b/services/chime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
chime
AWS Java SDK :: Services :: Chime
diff --git a/services/chimesdkidentity/pom.xml b/services/chimesdkidentity/pom.xml
index a3a68299fab3..cde9aa8d2d97 100644
--- a/services/chimesdkidentity/pom.xml
+++ b/services/chimesdkidentity/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
chimesdkidentity
AWS Java SDK :: Services :: Chime SDK Identity
diff --git a/services/chimesdkmediapipelines/pom.xml b/services/chimesdkmediapipelines/pom.xml
index 4cd623359463..eaa13972b8eb 100644
--- a/services/chimesdkmediapipelines/pom.xml
+++ b/services/chimesdkmediapipelines/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
chimesdkmediapipelines
AWS Java SDK :: Services :: Chime SDK Media Pipelines
diff --git a/services/chimesdkmeetings/pom.xml b/services/chimesdkmeetings/pom.xml
index c9625659f3ad..26b0c6c33a8c 100644
--- a/services/chimesdkmeetings/pom.xml
+++ b/services/chimesdkmeetings/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
chimesdkmeetings
AWS Java SDK :: Services :: Chime SDK Meetings
diff --git a/services/chimesdkmessaging/pom.xml b/services/chimesdkmessaging/pom.xml
index 1f3778d6c3f2..93632676a26a 100644
--- a/services/chimesdkmessaging/pom.xml
+++ b/services/chimesdkmessaging/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
chimesdkmessaging
AWS Java SDK :: Services :: Chime SDK Messaging
diff --git a/services/chimesdkvoice/pom.xml b/services/chimesdkvoice/pom.xml
index 8540612312bf..f2ca47c99167 100644
--- a/services/chimesdkvoice/pom.xml
+++ b/services/chimesdkvoice/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
chimesdkvoice
AWS Java SDK :: Services :: Chime SDK Voice
diff --git a/services/cleanrooms/pom.xml b/services/cleanrooms/pom.xml
index a137bb629c73..b3e323150448 100644
--- a/services/cleanrooms/pom.xml
+++ b/services/cleanrooms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
cleanrooms
AWS Java SDK :: Services :: Clean Rooms
diff --git a/services/cleanroomsml/pom.xml b/services/cleanroomsml/pom.xml
index 4dfb3e2452a0..342226323647 100644
--- a/services/cleanroomsml/pom.xml
+++ b/services/cleanroomsml/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
cleanroomsml
AWS Java SDK :: Services :: Clean Rooms ML
diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml
index c1a2cc5df78f..37154cdcb02c 100644
--- a/services/cloud9/pom.xml
+++ b/services/cloud9/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.68
+ 2.25.69-SNAPSHOT
4.0.0
cloud9
diff --git a/services/cloudcontrol/pom.xml b/services/cloudcontrol/pom.xml
index afe1e147ff56..16f468c86df1 100644
--- a/services/cloudcontrol/pom.xml
+++ b/services/cloudcontrol/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
cloudcontrol
AWS Java SDK :: Services :: Cloud Control
diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml
index da309adfaa6b..a23711b00337 100644
--- a/services/clouddirectory/pom.xml
+++ b/services/clouddirectory/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
clouddirectory
AWS Java SDK :: Services :: Amazon CloudDirectory
diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml
index 1553ed612f8b..01298f5c3afa 100644
--- a/services/cloudformation/pom.xml
+++ b/services/cloudformation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
cloudformation
AWS Java SDK :: Services :: AWS CloudFormation
diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml
index ddfbdae710e6..7ab3e6f4728a 100644
--- a/services/cloudfront/pom.xml
+++ b/services/cloudfront/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
cloudfront
AWS Java SDK :: Services :: Amazon CloudFront
diff --git a/services/cloudfrontkeyvaluestore/pom.xml b/services/cloudfrontkeyvaluestore/pom.xml
index aa7e169027f3..b3fba57637f9 100644
--- a/services/cloudfrontkeyvaluestore/pom.xml
+++ b/services/cloudfrontkeyvaluestore/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
cloudfrontkeyvaluestore
AWS Java SDK :: Services :: Cloud Front Key Value Store
diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml
index 6cc31ba57cb2..9ce9abf21439 100644
--- a/services/cloudhsm/pom.xml
+++ b/services/cloudhsm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
cloudhsm
AWS Java SDK :: Services :: AWS CloudHSM
diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml
index 460617d7011f..7b98efba0052 100644
--- a/services/cloudhsmv2/pom.xml
+++ b/services/cloudhsmv2/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.68
+ 2.25.69-SNAPSHOT
4.0.0
cloudhsmv2
diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml
index cfa2f252ffa1..f458f7c87fb5 100644
--- a/services/cloudsearch/pom.xml
+++ b/services/cloudsearch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
cloudsearch
AWS Java SDK :: Services :: Amazon CloudSearch
diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml
index a901f8705e1e..68312b0ad17f 100644
--- a/services/cloudsearchdomain/pom.xml
+++ b/services/cloudsearchdomain/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
cloudsearchdomain
AWS Java SDK :: Services :: Amazon CloudSearch Domain
diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml
index 4233700e55e7..01452bddc2f3 100644
--- a/services/cloudtrail/pom.xml
+++ b/services/cloudtrail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
cloudtrail
AWS Java SDK :: Services :: AWS CloudTrail
diff --git a/services/cloudtraildata/pom.xml b/services/cloudtraildata/pom.xml
index 1aaa71b3fc09..7389ecb044bb 100644
--- a/services/cloudtraildata/pom.xml
+++ b/services/cloudtraildata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
cloudtraildata
AWS Java SDK :: Services :: Cloud Trail Data
diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml
index 4697da9c4b26..a50acc039403 100644
--- a/services/cloudwatch/pom.xml
+++ b/services/cloudwatch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
cloudwatch
AWS Java SDK :: Services :: Amazon CloudWatch
diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml
index 147fbed717d7..705cc08cbdca 100644
--- a/services/cloudwatchevents/pom.xml
+++ b/services/cloudwatchevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
cloudwatchevents
AWS Java SDK :: Services :: Amazon CloudWatch Events
diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml
index 6e6c8d8fe54e..4fea106215c9 100644
--- a/services/cloudwatchlogs/pom.xml
+++ b/services/cloudwatchlogs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
cloudwatchlogs
AWS Java SDK :: Services :: Amazon CloudWatch Logs
diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml
index 1bf99608050f..0d0304fa6869 100644
--- a/services/codeartifact/pom.xml
+++ b/services/codeartifact/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
codeartifact
AWS Java SDK :: Services :: Codeartifact
diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml
index 77a1d950a790..b54db55ab0e0 100644
--- a/services/codebuild/pom.xml
+++ b/services/codebuild/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
codebuild
AWS Java SDK :: Services :: AWS Code Build
diff --git a/services/codecatalyst/pom.xml b/services/codecatalyst/pom.xml
index 1d80fd1142c6..1663d63947fc 100644
--- a/services/codecatalyst/pom.xml
+++ b/services/codecatalyst/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
codecatalyst
AWS Java SDK :: Services :: Code Catalyst
diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml
index d55590f4c9f4..5c619a16233a 100644
--- a/services/codecommit/pom.xml
+++ b/services/codecommit/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
codecommit
AWS Java SDK :: Services :: AWS CodeCommit
diff --git a/services/codeconnections/pom.xml b/services/codeconnections/pom.xml
index 6274cbd3e654..64f1ab936a7a 100644
--- a/services/codeconnections/pom.xml
+++ b/services/codeconnections/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
codeconnections
AWS Java SDK :: Services :: Code Connections
diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml
index 9a2da3a14364..bc9fb5b276a0 100644
--- a/services/codedeploy/pom.xml
+++ b/services/codedeploy/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
codedeploy
AWS Java SDK :: Services :: AWS CodeDeploy
diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml
index 02717815c1fa..8d61f463662b 100644
--- a/services/codeguruprofiler/pom.xml
+++ b/services/codeguruprofiler/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
codeguruprofiler
AWS Java SDK :: Services :: CodeGuruProfiler
diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml
index 76c7d19f3731..056a6b5e29de 100644
--- a/services/codegurureviewer/pom.xml
+++ b/services/codegurureviewer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
codegurureviewer
AWS Java SDK :: Services :: CodeGuru Reviewer
diff --git a/services/codegurusecurity/pom.xml b/services/codegurusecurity/pom.xml
index a1ac60d77555..b020c44e9298 100644
--- a/services/codegurusecurity/pom.xml
+++ b/services/codegurusecurity/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
codegurusecurity
AWS Java SDK :: Services :: Code Guru Security
diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml
index 000dbe987a14..022db70ffa85 100644
--- a/services/codepipeline/pom.xml
+++ b/services/codepipeline/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
codepipeline
AWS Java SDK :: Services :: AWS CodePipeline
diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml
index e5a6fdeed01e..bd6c3b5f331f 100644
--- a/services/codestar/pom.xml
+++ b/services/codestar/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
codestar
AWS Java SDK :: Services :: AWS CodeStar
diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml
index a86087ed5aaf..68d70df7aec3 100644
--- a/services/codestarconnections/pom.xml
+++ b/services/codestarconnections/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
codestarconnections
AWS Java SDK :: Services :: CodeStar connections
diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml
index f898c1920400..66253678d9be 100644
--- a/services/codestarnotifications/pom.xml
+++ b/services/codestarnotifications/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
codestarnotifications
AWS Java SDK :: Services :: Codestar Notifications
diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml
index 20c86f4f979a..d495891ecc30 100644
--- a/services/cognitoidentity/pom.xml
+++ b/services/cognitoidentity/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
cognitoidentity
AWS Java SDK :: Services :: Amazon Cognito Identity
diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml
index ad8837f4f812..41a26c2d47cb 100644
--- a/services/cognitoidentityprovider/pom.xml
+++ b/services/cognitoidentityprovider/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
cognitoidentityprovider
AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service
diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml
index b21f10b95f90..17e0a953e16b 100644
--- a/services/cognitosync/pom.xml
+++ b/services/cognitosync/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
cognitosync
AWS Java SDK :: Services :: Amazon Cognito Sync
diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml
index ef13818cff03..20e8071f94f7 100644
--- a/services/comprehend/pom.xml
+++ b/services/comprehend/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.68
+ 2.25.69-SNAPSHOT
4.0.0
comprehend
diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml
index 5e526d2e5bf4..3c4e663f0ac8 100644
--- a/services/comprehendmedical/pom.xml
+++ b/services/comprehendmedical/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
comprehendmedical
AWS Java SDK :: Services :: ComprehendMedical
diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml
index e56bc4082de9..3b957fba4281 100644
--- a/services/computeoptimizer/pom.xml
+++ b/services/computeoptimizer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
computeoptimizer
AWS Java SDK :: Services :: Compute Optimizer
diff --git a/services/config/pom.xml b/services/config/pom.xml
index 094a04c6fe85..d5d66bf7da28 100644
--- a/services/config/pom.xml
+++ b/services/config/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
config
AWS Java SDK :: Services :: AWS Config
diff --git a/services/connect/pom.xml b/services/connect/pom.xml
index c2c957a66501..1ed9b9074a7d 100644
--- a/services/connect/pom.xml
+++ b/services/connect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
connect
AWS Java SDK :: Services :: Connect
diff --git a/services/connectcampaigns/pom.xml b/services/connectcampaigns/pom.xml
index 507bcaef6344..b8a8d5d6c7ab 100644
--- a/services/connectcampaigns/pom.xml
+++ b/services/connectcampaigns/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
connectcampaigns
AWS Java SDK :: Services :: Connect Campaigns
diff --git a/services/connectcases/pom.xml b/services/connectcases/pom.xml
index 79c667013677..8ef514c531cb 100644
--- a/services/connectcases/pom.xml
+++ b/services/connectcases/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
connectcases
AWS Java SDK :: Services :: Connect Cases
diff --git a/services/connectcontactlens/pom.xml b/services/connectcontactlens/pom.xml
index 3efe561069bf..c6406afdf7c6 100644
--- a/services/connectcontactlens/pom.xml
+++ b/services/connectcontactlens/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
connectcontactlens
AWS Java SDK :: Services :: Connect Contact Lens
diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml
index 514382ff17f0..e78f42489763 100644
--- a/services/connectparticipant/pom.xml
+++ b/services/connectparticipant/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
connectparticipant
AWS Java SDK :: Services :: ConnectParticipant
diff --git a/services/controlcatalog/pom.xml b/services/controlcatalog/pom.xml
index 1b3afa07b6a5..1b7944c7f4d9 100644
--- a/services/controlcatalog/pom.xml
+++ b/services/controlcatalog/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
controlcatalog
AWS Java SDK :: Services :: Control Catalog
diff --git a/services/controltower/pom.xml b/services/controltower/pom.xml
index 6b2064cd1958..dbd911490270 100644
--- a/services/controltower/pom.xml
+++ b/services/controltower/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
controltower
AWS Java SDK :: Services :: Control Tower
diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml
index d4c755c6ecc1..735fc09e14ed 100644
--- a/services/costandusagereport/pom.xml
+++ b/services/costandusagereport/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
costandusagereport
AWS Java SDK :: Services :: AWS Cost and Usage Report
diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml
index e68d17287012..81fa4a0a811c 100644
--- a/services/costexplorer/pom.xml
+++ b/services/costexplorer/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.68
+ 2.25.69-SNAPSHOT
4.0.0
costexplorer
diff --git a/services/costoptimizationhub/pom.xml b/services/costoptimizationhub/pom.xml
index e228a4596313..b6d3cd467a96 100644
--- a/services/costoptimizationhub/pom.xml
+++ b/services/costoptimizationhub/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
costoptimizationhub
AWS Java SDK :: Services :: Cost Optimization Hub
diff --git a/services/customerprofiles/pom.xml b/services/customerprofiles/pom.xml
index ee43ea992d1d..e50580df41ea 100644
--- a/services/customerprofiles/pom.xml
+++ b/services/customerprofiles/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
customerprofiles
AWS Java SDK :: Services :: Customer Profiles
diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml
index 1efd6f739ec7..30915254ba3a 100644
--- a/services/databasemigration/pom.xml
+++ b/services/databasemigration/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
databasemigration
AWS Java SDK :: Services :: AWS Database Migration Service
diff --git a/services/databrew/pom.xml b/services/databrew/pom.xml
index 6be36e505854..dc6477eb9924 100644
--- a/services/databrew/pom.xml
+++ b/services/databrew/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
databrew
AWS Java SDK :: Services :: Data Brew
diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml
index e8c43e180fef..6fde2bac5de0 100644
--- a/services/dataexchange/pom.xml
+++ b/services/dataexchange/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
dataexchange
AWS Java SDK :: Services :: DataExchange
diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml
index 35e13d05ef85..d92676caabbb 100644
--- a/services/datapipeline/pom.xml
+++ b/services/datapipeline/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
datapipeline
AWS Java SDK :: Services :: AWS Data Pipeline
diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml
index 4bfe1d78dd57..cd1fa8b8ac72 100644
--- a/services/datasync/pom.xml
+++ b/services/datasync/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
datasync
AWS Java SDK :: Services :: DataSync
diff --git a/services/datazone/pom.xml b/services/datazone/pom.xml
index 44ed874375f2..7b2e5df082e6 100644
--- a/services/datazone/pom.xml
+++ b/services/datazone/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
datazone
AWS Java SDK :: Services :: Data Zone
diff --git a/services/dax/pom.xml b/services/dax/pom.xml
index cfe190667ff1..e22543acfc79 100644
--- a/services/dax/pom.xml
+++ b/services/dax/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
dax
AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX)
diff --git a/services/deadline/pom.xml b/services/deadline/pom.xml
index 70ee318306e8..51a33a6f9b00 100644
--- a/services/deadline/pom.xml
+++ b/services/deadline/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
deadline
AWS Java SDK :: Services :: Deadline
diff --git a/services/detective/pom.xml b/services/detective/pom.xml
index fecc520a05cd..6222c086df2d 100644
--- a/services/detective/pom.xml
+++ b/services/detective/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
detective
AWS Java SDK :: Services :: Detective
diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml
index 371fd91e272d..2979bfe6b59f 100644
--- a/services/devicefarm/pom.xml
+++ b/services/devicefarm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
devicefarm
AWS Java SDK :: Services :: AWS Device Farm
diff --git a/services/devopsguru/pom.xml b/services/devopsguru/pom.xml
index d6d4fb3709cf..5092f4954278 100644
--- a/services/devopsguru/pom.xml
+++ b/services/devopsguru/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
devopsguru
AWS Java SDK :: Services :: Dev Ops Guru
diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml
index fb6a7a6c4029..a918e2af4236 100644
--- a/services/directconnect/pom.xml
+++ b/services/directconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
directconnect
AWS Java SDK :: Services :: AWS Direct Connect
diff --git a/services/directory/pom.xml b/services/directory/pom.xml
index 7908fe7da1bb..380ecd9b6fdd 100644
--- a/services/directory/pom.xml
+++ b/services/directory/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
directory
AWS Java SDK :: Services :: AWS Directory Service
diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml
index 4f425079c11e..46ee2f063888 100644
--- a/services/dlm/pom.xml
+++ b/services/dlm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
dlm
AWS Java SDK :: Services :: DLM
diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml
index bdce4753e031..cd6990a73f23 100644
--- a/services/docdb/pom.xml
+++ b/services/docdb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
docdb
AWS Java SDK :: Services :: DocDB
diff --git a/services/docdbelastic/pom.xml b/services/docdbelastic/pom.xml
index f9f31be4ff72..3d4a98fe64ed 100644
--- a/services/docdbelastic/pom.xml
+++ b/services/docdbelastic/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
docdbelastic
AWS Java SDK :: Services :: Doc DB Elastic
diff --git a/services/drs/pom.xml b/services/drs/pom.xml
index 99fad3cd3817..c7bc1fd83148 100644
--- a/services/drs/pom.xml
+++ b/services/drs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
drs
AWS Java SDK :: Services :: Drs
diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml
index 088431afb60f..416cb446276f 100644
--- a/services/dynamodb/pom.xml
+++ b/services/dynamodb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
dynamodb
AWS Java SDK :: Services :: Amazon DynamoDB
diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml
index 64f29ea29b1f..ceaf90680bae 100644
--- a/services/ebs/pom.xml
+++ b/services/ebs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
ebs
AWS Java SDK :: Services :: EBS
diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml
index 8b5f639d6d1a..32a318959a14 100644
--- a/services/ec2/pom.xml
+++ b/services/ec2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
ec2
AWS Java SDK :: Services :: Amazon EC2
diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml
index e0270d4c6632..b78aedf98060 100644
--- a/services/ec2instanceconnect/pom.xml
+++ b/services/ec2instanceconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
ec2instanceconnect
AWS Java SDK :: Services :: EC2 Instance Connect
diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml
index 3863d26b17c6..6a49acc29815 100644
--- a/services/ecr/pom.xml
+++ b/services/ecr/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
ecr
AWS Java SDK :: Services :: Amazon EC2 Container Registry
diff --git a/services/ecrpublic/pom.xml b/services/ecrpublic/pom.xml
index b2ba81b4fb7c..aacf30b3c702 100644
--- a/services/ecrpublic/pom.xml
+++ b/services/ecrpublic/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
ecrpublic
AWS Java SDK :: Services :: ECR PUBLIC
diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml
index baba52050606..abd7756fa108 100644
--- a/services/ecs/pom.xml
+++ b/services/ecs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
ecs
AWS Java SDK :: Services :: Amazon EC2 Container Service
diff --git a/services/efs/pom.xml b/services/efs/pom.xml
index fcfa1fbe9d1d..f0dd2d198153 100644
--- a/services/efs/pom.xml
+++ b/services/efs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
efs
AWS Java SDK :: Services :: Amazon Elastic File System
diff --git a/services/eks/pom.xml b/services/eks/pom.xml
index e83c15ad9287..d7eacfecede5 100644
--- a/services/eks/pom.xml
+++ b/services/eks/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
eks
AWS Java SDK :: Services :: EKS
diff --git a/services/eksauth/pom.xml b/services/eksauth/pom.xml
index ea76eec53427..f8efa1e7f656 100644
--- a/services/eksauth/pom.xml
+++ b/services/eksauth/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
eksauth
AWS Java SDK :: Services :: EKS Auth
diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml
index d2734b9f6fa8..8abb348d3cd5 100644
--- a/services/elasticache/pom.xml
+++ b/services/elasticache/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
elasticache
AWS Java SDK :: Services :: Amazon ElastiCache
diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml
index fbc31d44aa48..03032cdf2d84 100644
--- a/services/elasticbeanstalk/pom.xml
+++ b/services/elasticbeanstalk/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
elasticbeanstalk
AWS Java SDK :: Services :: AWS Elastic Beanstalk
diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml
index b5171fd23748..98014ad7c5ee 100644
--- a/services/elasticinference/pom.xml
+++ b/services/elasticinference/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
elasticinference
AWS Java SDK :: Services :: Elastic Inference
diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml
index a6589e47b47e..1fc5b92aaea4 100644
--- a/services/elasticloadbalancing/pom.xml
+++ b/services/elasticloadbalancing/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
elasticloadbalancing
AWS Java SDK :: Services :: Elastic Load Balancing
diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml
index c5f9c079fd17..85940b91d53e 100644
--- a/services/elasticloadbalancingv2/pom.xml
+++ b/services/elasticloadbalancingv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
elasticloadbalancingv2
AWS Java SDK :: Services :: Elastic Load Balancing V2
diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml
index f1704508e507..ca2162355eb6 100644
--- a/services/elasticsearch/pom.xml
+++ b/services/elasticsearch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
elasticsearch
AWS Java SDK :: Services :: Amazon Elasticsearch Service
diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml
index 4bd51f8aec2a..926e600fbe0a 100644
--- a/services/elastictranscoder/pom.xml
+++ b/services/elastictranscoder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
elastictranscoder
AWS Java SDK :: Services :: Amazon Elastic Transcoder
diff --git a/services/emr/pom.xml b/services/emr/pom.xml
index 760ea296cc23..52950e4022b7 100644
--- a/services/emr/pom.xml
+++ b/services/emr/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
emr
AWS Java SDK :: Services :: Amazon EMR
diff --git a/services/emrcontainers/pom.xml b/services/emrcontainers/pom.xml
index ee5d11dd9ce7..f0f25ddf7b96 100644
--- a/services/emrcontainers/pom.xml
+++ b/services/emrcontainers/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
emrcontainers
AWS Java SDK :: Services :: EMR Containers
diff --git a/services/emrserverless/pom.xml b/services/emrserverless/pom.xml
index 273144e454d6..8aedab8909a2 100644
--- a/services/emrserverless/pom.xml
+++ b/services/emrserverless/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
emrserverless
AWS Java SDK :: Services :: EMR Serverless
diff --git a/services/entityresolution/pom.xml b/services/entityresolution/pom.xml
index 482e6a85b312..e19a2d5aeccf 100644
--- a/services/entityresolution/pom.xml
+++ b/services/entityresolution/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
entityresolution
AWS Java SDK :: Services :: Entity Resolution
diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml
index 96fbb4f713d9..eb177fd82f96 100644
--- a/services/eventbridge/pom.xml
+++ b/services/eventbridge/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
eventbridge
AWS Java SDK :: Services :: EventBridge
diff --git a/services/evidently/pom.xml b/services/evidently/pom.xml
index 1dab12a46cac..eec56c5d18cf 100644
--- a/services/evidently/pom.xml
+++ b/services/evidently/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
evidently
AWS Java SDK :: Services :: Evidently
diff --git a/services/finspace/pom.xml b/services/finspace/pom.xml
index 8ce26668d55f..c2f63001eb80 100644
--- a/services/finspace/pom.xml
+++ b/services/finspace/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
finspace
AWS Java SDK :: Services :: Finspace
diff --git a/services/finspacedata/pom.xml b/services/finspacedata/pom.xml
index 40736e8a207f..f898581e21c5 100644
--- a/services/finspacedata/pom.xml
+++ b/services/finspacedata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
finspacedata
AWS Java SDK :: Services :: Finspace Data
diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml
index 3369a0cf3f0d..f84d80101ae4 100644
--- a/services/firehose/pom.xml
+++ b/services/firehose/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
firehose
AWS Java SDK :: Services :: Amazon Kinesis Firehose
diff --git a/services/fis/pom.xml b/services/fis/pom.xml
index c8e73515e24f..032e330fcb08 100644
--- a/services/fis/pom.xml
+++ b/services/fis/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
fis
AWS Java SDK :: Services :: Fis
diff --git a/services/fms/pom.xml b/services/fms/pom.xml
index a4d91a8abaee..8f73ea690713 100644
--- a/services/fms/pom.xml
+++ b/services/fms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
fms
AWS Java SDK :: Services :: FMS
diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml
index ad8988332881..7e13b5975723 100644
--- a/services/forecast/pom.xml
+++ b/services/forecast/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
forecast
AWS Java SDK :: Services :: Forecast
diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml
index f609c37c452a..155cf601ccc7 100644
--- a/services/forecastquery/pom.xml
+++ b/services/forecastquery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
forecastquery
AWS Java SDK :: Services :: Forecastquery
diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml
index 6f3e56424ec8..be3ec252cf11 100644
--- a/services/frauddetector/pom.xml
+++ b/services/frauddetector/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
frauddetector
AWS Java SDK :: Services :: FraudDetector
diff --git a/services/freetier/pom.xml b/services/freetier/pom.xml
index 277d44dc3b35..20209264bfa1 100644
--- a/services/freetier/pom.xml
+++ b/services/freetier/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
freetier
AWS Java SDK :: Services :: Free Tier
diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml
index 9fd4c817a33e..2107b6b91c90 100644
--- a/services/fsx/pom.xml
+++ b/services/fsx/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
fsx
AWS Java SDK :: Services :: FSx
diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml
index c8c659500027..32708a51fcc9 100644
--- a/services/gamelift/pom.xml
+++ b/services/gamelift/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
gamelift
AWS Java SDK :: Services :: AWS GameLift
diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml
index f8b58d2c94e4..f5ea04196d19 100644
--- a/services/glacier/pom.xml
+++ b/services/glacier/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
glacier
AWS Java SDK :: Services :: Amazon Glacier
diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml
index a3bcc41af0ea..054469eadf9f 100644
--- a/services/globalaccelerator/pom.xml
+++ b/services/globalaccelerator/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
globalaccelerator
AWS Java SDK :: Services :: Global Accelerator
diff --git a/services/glue/pom.xml b/services/glue/pom.xml
index cfab56f625a0..4601cdf050e0 100644
--- a/services/glue/pom.xml
+++ b/services/glue/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.68
+ 2.25.69-SNAPSHOT
4.0.0
glue
diff --git a/services/grafana/pom.xml b/services/grafana/pom.xml
index ead35ec231bd..d89cc31afc28 100644
--- a/services/grafana/pom.xml
+++ b/services/grafana/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
grafana
AWS Java SDK :: Services :: Grafana
diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml
index b9c7a9a04190..dca89c5fd776 100644
--- a/services/greengrass/pom.xml
+++ b/services/greengrass/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
greengrass
AWS Java SDK :: Services :: AWS Greengrass
diff --git a/services/greengrassv2/pom.xml b/services/greengrassv2/pom.xml
index 2365601b0405..b980c9250037 100644
--- a/services/greengrassv2/pom.xml
+++ b/services/greengrassv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
greengrassv2
AWS Java SDK :: Services :: Greengrass V2
diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml
index 996f5f9ef2ba..09eb67f2af06 100644
--- a/services/groundstation/pom.xml
+++ b/services/groundstation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
groundstation
AWS Java SDK :: Services :: GroundStation
diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml
index f955fb3692ae..ba07a23f5742 100644
--- a/services/guardduty/pom.xml
+++ b/services/guardduty/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.68
+ 2.25.69-SNAPSHOT
4.0.0
guardduty
diff --git a/services/health/pom.xml b/services/health/pom.xml
index 1162c36e8423..1deb6f5d3d37 100644
--- a/services/health/pom.xml
+++ b/services/health/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
health
AWS Java SDK :: Services :: AWS Health APIs and Notifications
diff --git a/services/healthlake/pom.xml b/services/healthlake/pom.xml
index 38b073f19682..1b537124c175 100644
--- a/services/healthlake/pom.xml
+++ b/services/healthlake/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
healthlake
AWS Java SDK :: Services :: Health Lake
diff --git a/services/iam/pom.xml b/services/iam/pom.xml
index 324559906585..bd6e1b1fce2b 100644
--- a/services/iam/pom.xml
+++ b/services/iam/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
iam
AWS Java SDK :: Services :: AWS IAM
diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml
index c005aafb65a0..2fa40a111a2e 100644
--- a/services/identitystore/pom.xml
+++ b/services/identitystore/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
identitystore
AWS Java SDK :: Services :: Identitystore
diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml
index 6e21c2e2a225..7dddac392c0d 100644
--- a/services/imagebuilder/pom.xml
+++ b/services/imagebuilder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
imagebuilder
AWS Java SDK :: Services :: Imagebuilder
diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml
index 079cec0dd191..d5e9a0e0ea8a 100644
--- a/services/inspector/pom.xml
+++ b/services/inspector/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
inspector
AWS Java SDK :: Services :: Amazon Inspector Service
diff --git a/services/inspector2/pom.xml b/services/inspector2/pom.xml
index 7137327120f3..519fbc911b78 100644
--- a/services/inspector2/pom.xml
+++ b/services/inspector2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
inspector2
AWS Java SDK :: Services :: Inspector2
diff --git a/services/inspectorscan/pom.xml b/services/inspectorscan/pom.xml
index 90a4cecd159a..76ccbbba4a52 100644
--- a/services/inspectorscan/pom.xml
+++ b/services/inspectorscan/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
inspectorscan
AWS Java SDK :: Services :: Inspector Scan
diff --git a/services/internetmonitor/pom.xml b/services/internetmonitor/pom.xml
index 60e44c3294f0..7378a1021719 100644
--- a/services/internetmonitor/pom.xml
+++ b/services/internetmonitor/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
internetmonitor
AWS Java SDK :: Services :: Internet Monitor
diff --git a/services/iot/pom.xml b/services/iot/pom.xml
index 8f04a20557b3..289c4b3e95de 100644
--- a/services/iot/pom.xml
+++ b/services/iot/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
iot
AWS Java SDK :: Services :: AWS IoT
diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml
index 55a8fa59c3d0..461298fe241f 100644
--- a/services/iot1clickdevices/pom.xml
+++ b/services/iot1clickdevices/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
iot1clickdevices
AWS Java SDK :: Services :: IoT 1Click Devices Service
diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml
index 123b04406876..2587107753a0 100644
--- a/services/iot1clickprojects/pom.xml
+++ b/services/iot1clickprojects/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
iot1clickprojects
AWS Java SDK :: Services :: IoT 1Click Projects
diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml
index 93ba95b0f20e..1469c9cadf3b 100644
--- a/services/iotanalytics/pom.xml
+++ b/services/iotanalytics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
iotanalytics
AWS Java SDK :: Services :: IoTAnalytics
diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml
index b4a4e5154a7c..184ec8fb09b2 100644
--- a/services/iotdataplane/pom.xml
+++ b/services/iotdataplane/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
iotdataplane
AWS Java SDK :: Services :: AWS IoT Data Plane
diff --git a/services/iotdeviceadvisor/pom.xml b/services/iotdeviceadvisor/pom.xml
index 7b6884744b1b..a9d48757fdde 100644
--- a/services/iotdeviceadvisor/pom.xml
+++ b/services/iotdeviceadvisor/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
iotdeviceadvisor
AWS Java SDK :: Services :: Iot Device Advisor
diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml
index 6118bfbb62d9..ed20dd9e73d1 100644
--- a/services/iotevents/pom.xml
+++ b/services/iotevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
iotevents
AWS Java SDK :: Services :: IoT Events
diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml
index 23e38ba31898..d6e840b37202 100644
--- a/services/ioteventsdata/pom.xml
+++ b/services/ioteventsdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
ioteventsdata
AWS Java SDK :: Services :: IoT Events Data
diff --git a/services/iotfleethub/pom.xml b/services/iotfleethub/pom.xml
index 0ffba3f8f6e7..c03f86701ae5 100644
--- a/services/iotfleethub/pom.xml
+++ b/services/iotfleethub/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
iotfleethub
AWS Java SDK :: Services :: Io T Fleet Hub
diff --git a/services/iotfleetwise/pom.xml b/services/iotfleetwise/pom.xml
index b202f129a5e4..2a060c2cbbeb 100644
--- a/services/iotfleetwise/pom.xml
+++ b/services/iotfleetwise/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
iotfleetwise
AWS Java SDK :: Services :: Io T Fleet Wise
diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml
index 287920daac7f..835f90fd5be5 100644
--- a/services/iotjobsdataplane/pom.xml
+++ b/services/iotjobsdataplane/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
iotjobsdataplane
AWS Java SDK :: Services :: IoT Jobs Data Plane
diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml
index 5b42f39b7138..eb22187a00a9 100644
--- a/services/iotsecuretunneling/pom.xml
+++ b/services/iotsecuretunneling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
iotsecuretunneling
AWS Java SDK :: Services :: IoTSecureTunneling
diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml
index 45fcd4c2d82b..bc6964cf8c97 100644
--- a/services/iotsitewise/pom.xml
+++ b/services/iotsitewise/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
iotsitewise
AWS Java SDK :: Services :: Io T Site Wise
diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml
index 67b0b2a78c41..20ec3e98e7bd 100644
--- a/services/iotthingsgraph/pom.xml
+++ b/services/iotthingsgraph/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
iotthingsgraph
AWS Java SDK :: Services :: IoTThingsGraph
diff --git a/services/iottwinmaker/pom.xml b/services/iottwinmaker/pom.xml
index 63f0352bc822..a2a6f2a1dcb0 100644
--- a/services/iottwinmaker/pom.xml
+++ b/services/iottwinmaker/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
iottwinmaker
AWS Java SDK :: Services :: Io T Twin Maker
diff --git a/services/iotwireless/pom.xml b/services/iotwireless/pom.xml
index 245ae089930b..bf7a81d90996 100644
--- a/services/iotwireless/pom.xml
+++ b/services/iotwireless/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
iotwireless
AWS Java SDK :: Services :: IoT Wireless
diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml
index a928d84ad1c6..aaff89404d5d 100644
--- a/services/ivs/pom.xml
+++ b/services/ivs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
ivs
AWS Java SDK :: Services :: Ivs
diff --git a/services/ivschat/pom.xml b/services/ivschat/pom.xml
index 5fd2eca9b0e4..872dc73eeebd 100644
--- a/services/ivschat/pom.xml
+++ b/services/ivschat/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
ivschat
AWS Java SDK :: Services :: Ivschat
diff --git a/services/ivsrealtime/pom.xml b/services/ivsrealtime/pom.xml
index 253869163afc..9e793e125a27 100644
--- a/services/ivsrealtime/pom.xml
+++ b/services/ivsrealtime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
ivsrealtime
AWS Java SDK :: Services :: IVS Real Time
diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml
index 5ddfd45d469d..a6ad1e73db48 100644
--- a/services/kafka/pom.xml
+++ b/services/kafka/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
kafka
AWS Java SDK :: Services :: Kafka
diff --git a/services/kafkaconnect/pom.xml b/services/kafkaconnect/pom.xml
index 46af01aafebb..b1153f79e423 100644
--- a/services/kafkaconnect/pom.xml
+++ b/services/kafkaconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
kafkaconnect
AWS Java SDK :: Services :: Kafka Connect
diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml
index 390306bfc602..2ca5f70ab89d 100644
--- a/services/kendra/pom.xml
+++ b/services/kendra/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
kendra
AWS Java SDK :: Services :: Kendra
diff --git a/services/kendraranking/pom.xml b/services/kendraranking/pom.xml
index 1c8b5a41ce32..0395d95eeaef 100644
--- a/services/kendraranking/pom.xml
+++ b/services/kendraranking/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
kendraranking
AWS Java SDK :: Services :: Kendra Ranking
diff --git a/services/keyspaces/pom.xml b/services/keyspaces/pom.xml
index f663a15d8193..92e440c06cbe 100644
--- a/services/keyspaces/pom.xml
+++ b/services/keyspaces/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
keyspaces
AWS Java SDK :: Services :: Keyspaces
diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml
index 442d08f099d0..bb34f2fa61b3 100644
--- a/services/kinesis/pom.xml
+++ b/services/kinesis/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
kinesis
AWS Java SDK :: Services :: Amazon Kinesis
diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml
index e85920691e82..2cd247097c7e 100644
--- a/services/kinesisanalytics/pom.xml
+++ b/services/kinesisanalytics/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
kinesisanalytics
AWS Java SDK :: Services :: Amazon Kinesis Analytics
diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml
index f9a693068464..bc2cfd0ee031 100644
--- a/services/kinesisanalyticsv2/pom.xml
+++ b/services/kinesisanalyticsv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
kinesisanalyticsv2
AWS Java SDK :: Services :: Kinesis Analytics V2
diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml
index a79e0c0f429f..16de9ef0afab 100644
--- a/services/kinesisvideo/pom.xml
+++ b/services/kinesisvideo/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.68
+ 2.25.69-SNAPSHOT
4.0.0
kinesisvideo
diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml
index dc3b8b2550ed..5df0fa739ca9 100644
--- a/services/kinesisvideoarchivedmedia/pom.xml
+++ b/services/kinesisvideoarchivedmedia/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
kinesisvideoarchivedmedia
AWS Java SDK :: Services :: Kinesis Video Archived Media
diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml
index 3b6109ac3c2e..aa678b7ef351 100644
--- a/services/kinesisvideomedia/pom.xml
+++ b/services/kinesisvideomedia/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
kinesisvideomedia
AWS Java SDK :: Services :: Kinesis Video Media
diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml
index 927462fdd54e..635d0879f717 100644
--- a/services/kinesisvideosignaling/pom.xml
+++ b/services/kinesisvideosignaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
kinesisvideosignaling
AWS Java SDK :: Services :: Kinesis Video Signaling
diff --git a/services/kinesisvideowebrtcstorage/pom.xml b/services/kinesisvideowebrtcstorage/pom.xml
index ec0e89c5f292..6d36eac6d179 100644
--- a/services/kinesisvideowebrtcstorage/pom.xml
+++ b/services/kinesisvideowebrtcstorage/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
kinesisvideowebrtcstorage
AWS Java SDK :: Services :: Kinesis Video Web RTC Storage
diff --git a/services/kms/pom.xml b/services/kms/pom.xml
index 0aa3eaa0d3f2..84f0c5430d70 100644
--- a/services/kms/pom.xml
+++ b/services/kms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
kms
AWS Java SDK :: Services :: AWS KMS
diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml
index 62a22d72c98e..ae277c8ab7a8 100644
--- a/services/lakeformation/pom.xml
+++ b/services/lakeformation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
lakeformation
AWS Java SDK :: Services :: LakeFormation
diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml
index 9863a686b93d..613824627068 100644
--- a/services/lambda/pom.xml
+++ b/services/lambda/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
lambda
AWS Java SDK :: Services :: AWS Lambda
diff --git a/services/launchwizard/pom.xml b/services/launchwizard/pom.xml
index b5e29ca15737..199227a07945 100644
--- a/services/launchwizard/pom.xml
+++ b/services/launchwizard/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
launchwizard
AWS Java SDK :: Services :: Launch Wizard
diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml
index c285ad932221..70107cf07650 100644
--- a/services/lexmodelbuilding/pom.xml
+++ b/services/lexmodelbuilding/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
lexmodelbuilding
AWS Java SDK :: Services :: Amazon Lex Model Building
diff --git a/services/lexmodelsv2/pom.xml b/services/lexmodelsv2/pom.xml
index 1f00303c200b..de67b8ac9c6c 100644
--- a/services/lexmodelsv2/pom.xml
+++ b/services/lexmodelsv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
lexmodelsv2
AWS Java SDK :: Services :: Lex Models V2
diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml
index 9ea6509970a6..bed9af26d544 100644
--- a/services/lexruntime/pom.xml
+++ b/services/lexruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
lexruntime
AWS Java SDK :: Services :: Amazon Lex Runtime
diff --git a/services/lexruntimev2/pom.xml b/services/lexruntimev2/pom.xml
index 44e8eebe7971..036df4d4289f 100644
--- a/services/lexruntimev2/pom.xml
+++ b/services/lexruntimev2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
lexruntimev2
AWS Java SDK :: Services :: Lex Runtime V2
diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml
index 7efec521c23b..413d31307f47 100644
--- a/services/licensemanager/pom.xml
+++ b/services/licensemanager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
licensemanager
AWS Java SDK :: Services :: License Manager
diff --git a/services/licensemanagerlinuxsubscriptions/pom.xml b/services/licensemanagerlinuxsubscriptions/pom.xml
index 40b6422f7e55..1bded51311bd 100644
--- a/services/licensemanagerlinuxsubscriptions/pom.xml
+++ b/services/licensemanagerlinuxsubscriptions/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
licensemanagerlinuxsubscriptions
AWS Java SDK :: Services :: License Manager Linux Subscriptions
diff --git a/services/licensemanagerusersubscriptions/pom.xml b/services/licensemanagerusersubscriptions/pom.xml
index 96a37ba4e12c..6b34234bbe3a 100644
--- a/services/licensemanagerusersubscriptions/pom.xml
+++ b/services/licensemanagerusersubscriptions/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
licensemanagerusersubscriptions
AWS Java SDK :: Services :: License Manager User Subscriptions
diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml
index 6ffdb4882adc..aaa9411765f7 100644
--- a/services/lightsail/pom.xml
+++ b/services/lightsail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
lightsail
AWS Java SDK :: Services :: Amazon Lightsail
diff --git a/services/location/pom.xml b/services/location/pom.xml
index 37d27273764a..ab35e2ad0dca 100644
--- a/services/location/pom.xml
+++ b/services/location/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
location
AWS Java SDK :: Services :: Location
diff --git a/services/lookoutequipment/pom.xml b/services/lookoutequipment/pom.xml
index dbf356bcb7b9..d2b3bbac5d9d 100644
--- a/services/lookoutequipment/pom.xml
+++ b/services/lookoutequipment/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
lookoutequipment
AWS Java SDK :: Services :: Lookout Equipment
diff --git a/services/lookoutmetrics/pom.xml b/services/lookoutmetrics/pom.xml
index 6d5f99222510..45da18161e51 100644
--- a/services/lookoutmetrics/pom.xml
+++ b/services/lookoutmetrics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
lookoutmetrics
AWS Java SDK :: Services :: Lookout Metrics
diff --git a/services/lookoutvision/pom.xml b/services/lookoutvision/pom.xml
index b56d4df227d4..0f0ce0a75653 100644
--- a/services/lookoutvision/pom.xml
+++ b/services/lookoutvision/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
lookoutvision
AWS Java SDK :: Services :: Lookout Vision
diff --git a/services/m2/pom.xml b/services/m2/pom.xml
index 86c9c2785549..eabd0c9bd631 100644
--- a/services/m2/pom.xml
+++ b/services/m2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
m2
AWS Java SDK :: Services :: M2
diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml
index 24ca9b65fd89..a9b467d76faf 100644
--- a/services/machinelearning/pom.xml
+++ b/services/machinelearning/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
machinelearning
AWS Java SDK :: Services :: Amazon Machine Learning
diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml
index af0af01079d3..584949bf77d9 100644
--- a/services/macie2/pom.xml
+++ b/services/macie2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
macie2
AWS Java SDK :: Services :: Macie2
diff --git a/services/mailmanager/pom.xml b/services/mailmanager/pom.xml
index d8a83343fcd9..7b7cc3ca9574 100644
--- a/services/mailmanager/pom.xml
+++ b/services/mailmanager/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
mailmanager
AWS Java SDK :: Services :: Mail Manager
diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml
index b735cff9a298..57a35a7f3bf8 100644
--- a/services/managedblockchain/pom.xml
+++ b/services/managedblockchain/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
managedblockchain
AWS Java SDK :: Services :: ManagedBlockchain
diff --git a/services/managedblockchainquery/pom.xml b/services/managedblockchainquery/pom.xml
index bab55e375e27..c0cb46b5243f 100644
--- a/services/managedblockchainquery/pom.xml
+++ b/services/managedblockchainquery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
managedblockchainquery
AWS Java SDK :: Services :: Managed Blockchain Query
diff --git a/services/marketplaceagreement/pom.xml b/services/marketplaceagreement/pom.xml
index 2e36c4717e76..26de4b58181f 100644
--- a/services/marketplaceagreement/pom.xml
+++ b/services/marketplaceagreement/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
marketplaceagreement
AWS Java SDK :: Services :: Marketplace Agreement
diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml
index 041b4f33f416..7990aa2382bf 100644
--- a/services/marketplacecatalog/pom.xml
+++ b/services/marketplacecatalog/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
marketplacecatalog
AWS Java SDK :: Services :: Marketplace Catalog
diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml
index dec645cdb735..1523855efe5e 100644
--- a/services/marketplacecommerceanalytics/pom.xml
+++ b/services/marketplacecommerceanalytics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
marketplacecommerceanalytics
AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics
diff --git a/services/marketplacedeployment/pom.xml b/services/marketplacedeployment/pom.xml
index 86cafb0c7641..f6c66558ba5d 100644
--- a/services/marketplacedeployment/pom.xml
+++ b/services/marketplacedeployment/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
marketplacedeployment
AWS Java SDK :: Services :: Marketplace Deployment
diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml
index e4c83feaddcf..0a06d4016378 100644
--- a/services/marketplaceentitlement/pom.xml
+++ b/services/marketplaceentitlement/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
marketplaceentitlement
AWS Java SDK :: Services :: AWS Marketplace Entitlement
diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml
index 2a6eed91a6cb..8f11a778b6a6 100644
--- a/services/marketplacemetering/pom.xml
+++ b/services/marketplacemetering/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
marketplacemetering
AWS Java SDK :: Services :: AWS Marketplace Metering Service
diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml
index 1b030af7d719..0a7323903e82 100644
--- a/services/mediaconnect/pom.xml
+++ b/services/mediaconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
mediaconnect
AWS Java SDK :: Services :: MediaConnect
diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml
index d78672d29f9b..0394c2616e79 100644
--- a/services/mediaconvert/pom.xml
+++ b/services/mediaconvert/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.68
+ 2.25.69-SNAPSHOT
4.0.0
mediaconvert
diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml
index 028ca01daf30..2588d7369cf8 100644
--- a/services/medialive/pom.xml
+++ b/services/medialive/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.68
+ 2.25.69-SNAPSHOT
4.0.0
medialive
diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml
index 61c2355502ca..cf296db5a493 100644
--- a/services/mediapackage/pom.xml
+++ b/services/mediapackage/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.68
+ 2.25.69-SNAPSHOT
4.0.0
mediapackage
diff --git a/services/mediapackagev2/pom.xml b/services/mediapackagev2/pom.xml
index 8af4556aa366..f84e63dab530 100644
--- a/services/mediapackagev2/pom.xml
+++ b/services/mediapackagev2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
mediapackagev2
AWS Java SDK :: Services :: Media Package V2
diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml
index 248cb366601b..6f31c79d47a9 100644
--- a/services/mediapackagevod/pom.xml
+++ b/services/mediapackagevod/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
mediapackagevod
AWS Java SDK :: Services :: MediaPackage Vod
diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml
index 0b37e74f5e1d..fb200a3a679a 100644
--- a/services/mediastore/pom.xml
+++ b/services/mediastore/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.68
+ 2.25.69-SNAPSHOT
4.0.0
mediastore
diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml
index 1a4ab1d25b52..26175e31a5ee 100644
--- a/services/mediastoredata/pom.xml
+++ b/services/mediastoredata/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.68
+ 2.25.69-SNAPSHOT
4.0.0
mediastoredata
diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml
index 62b9e0f85d6c..90ec0ff46440 100644
--- a/services/mediatailor/pom.xml
+++ b/services/mediatailor/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
mediatailor
AWS Java SDK :: Services :: MediaTailor
diff --git a/services/medicalimaging/pom.xml b/services/medicalimaging/pom.xml
index 60b7ccff40a2..6b5db676bd8e 100644
--- a/services/medicalimaging/pom.xml
+++ b/services/medicalimaging/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
medicalimaging
AWS Java SDK :: Services :: Medical Imaging
diff --git a/services/memorydb/pom.xml b/services/memorydb/pom.xml
index 33222dfffe14..5c6a9c521fda 100644
--- a/services/memorydb/pom.xml
+++ b/services/memorydb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
memorydb
AWS Java SDK :: Services :: Memory DB
diff --git a/services/mgn/pom.xml b/services/mgn/pom.xml
index 992e2ffdf72c..e05e53e1c47b 100644
--- a/services/mgn/pom.xml
+++ b/services/mgn/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
mgn
AWS Java SDK :: Services :: Mgn
diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml
index 29b7ef8282a8..4c85813510b4 100644
--- a/services/migrationhub/pom.xml
+++ b/services/migrationhub/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.68
+ 2.25.69-SNAPSHOT
4.0.0
migrationhub
diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml
index 92238a621886..55fa8dff2a4a 100644
--- a/services/migrationhubconfig/pom.xml
+++ b/services/migrationhubconfig/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
migrationhubconfig
AWS Java SDK :: Services :: MigrationHub Config
diff --git a/services/migrationhuborchestrator/pom.xml b/services/migrationhuborchestrator/pom.xml
index 4677f20ea33a..b1bc0c73ae4c 100644
--- a/services/migrationhuborchestrator/pom.xml
+++ b/services/migrationhuborchestrator/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
migrationhuborchestrator
AWS Java SDK :: Services :: Migration Hub Orchestrator
diff --git a/services/migrationhubrefactorspaces/pom.xml b/services/migrationhubrefactorspaces/pom.xml
index f72cd927f847..407fbd26dd6d 100644
--- a/services/migrationhubrefactorspaces/pom.xml
+++ b/services/migrationhubrefactorspaces/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
migrationhubrefactorspaces
AWS Java SDK :: Services :: Migration Hub Refactor Spaces
diff --git a/services/migrationhubstrategy/pom.xml b/services/migrationhubstrategy/pom.xml
index c08bcd319b23..b162d3d4491b 100644
--- a/services/migrationhubstrategy/pom.xml
+++ b/services/migrationhubstrategy/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
migrationhubstrategy
AWS Java SDK :: Services :: Migration Hub Strategy
diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml
index b92fda122ef1..525f9c5481ca 100644
--- a/services/mobile/pom.xml
+++ b/services/mobile/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.68
+ 2.25.69-SNAPSHOT
4.0.0
mobile
diff --git a/services/mq/pom.xml b/services/mq/pom.xml
index 8dde3381dc3c..f0183a742ef0 100644
--- a/services/mq/pom.xml
+++ b/services/mq/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.68
+ 2.25.69-SNAPSHOT
4.0.0
mq
diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml
index c26b29ba173d..494828023572 100644
--- a/services/mturk/pom.xml
+++ b/services/mturk/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
mturk
AWS Java SDK :: Services :: Amazon Mechanical Turk Requester
diff --git a/services/mwaa/pom.xml b/services/mwaa/pom.xml
index c5b28058be31..4571c7bfd680 100644
--- a/services/mwaa/pom.xml
+++ b/services/mwaa/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
mwaa
AWS Java SDK :: Services :: MWAA
diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml
index 2dac1ea93640..51434c9c234d 100644
--- a/services/neptune/pom.xml
+++ b/services/neptune/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
neptune
AWS Java SDK :: Services :: Neptune
diff --git a/services/neptunedata/pom.xml b/services/neptunedata/pom.xml
index 531c37ed293c..f62c402f9d4c 100644
--- a/services/neptunedata/pom.xml
+++ b/services/neptunedata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
neptunedata
AWS Java SDK :: Services :: Neptunedata
diff --git a/services/neptunegraph/pom.xml b/services/neptunegraph/pom.xml
index b82597338ea6..5a87f1e587d6 100644
--- a/services/neptunegraph/pom.xml
+++ b/services/neptunegraph/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
neptunegraph
AWS Java SDK :: Services :: Neptune Graph
diff --git a/services/networkfirewall/pom.xml b/services/networkfirewall/pom.xml
index afe0cc092f12..c85429b3e51e 100644
--- a/services/networkfirewall/pom.xml
+++ b/services/networkfirewall/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
networkfirewall
AWS Java SDK :: Services :: Network Firewall
diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml
index fb937b5c7946..62318768c8cd 100644
--- a/services/networkmanager/pom.xml
+++ b/services/networkmanager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
networkmanager
AWS Java SDK :: Services :: NetworkManager
diff --git a/services/networkmonitor/pom.xml b/services/networkmonitor/pom.xml
index c99d8493d654..02a22e0287d6 100644
--- a/services/networkmonitor/pom.xml
+++ b/services/networkmonitor/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
networkmonitor
AWS Java SDK :: Services :: Network Monitor
diff --git a/services/nimble/pom.xml b/services/nimble/pom.xml
index cd1adb9e6df7..5b52e1e3068a 100644
--- a/services/nimble/pom.xml
+++ b/services/nimble/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
nimble
AWS Java SDK :: Services :: Nimble
diff --git a/services/oam/pom.xml b/services/oam/pom.xml
index c632bfcc3f80..78aee72bf9a2 100644
--- a/services/oam/pom.xml
+++ b/services/oam/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
oam
AWS Java SDK :: Services :: OAM
diff --git a/services/omics/pom.xml b/services/omics/pom.xml
index b5bfbf5a3e0c..70f70d1050e0 100644
--- a/services/omics/pom.xml
+++ b/services/omics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
omics
AWS Java SDK :: Services :: Omics
diff --git a/services/opensearch/pom.xml b/services/opensearch/pom.xml
index d049e6687627..2b5bd9622d55 100644
--- a/services/opensearch/pom.xml
+++ b/services/opensearch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
opensearch
AWS Java SDK :: Services :: Open Search
diff --git a/services/opensearchserverless/pom.xml b/services/opensearchserverless/pom.xml
index d94e66c34c6c..0867d5710b0a 100644
--- a/services/opensearchserverless/pom.xml
+++ b/services/opensearchserverless/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
opensearchserverless
AWS Java SDK :: Services :: Open Search Serverless
diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml
index f1558b583314..cd827bfab8be 100644
--- a/services/opsworks/pom.xml
+++ b/services/opsworks/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
opsworks
AWS Java SDK :: Services :: AWS OpsWorks
diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml
index 3baabbd1d73c..b9687e11b99c 100644
--- a/services/opsworkscm/pom.xml
+++ b/services/opsworkscm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
opsworkscm
AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate
diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml
index fbd0ce049122..73118bfc07c7 100644
--- a/services/organizations/pom.xml
+++ b/services/organizations/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
organizations
AWS Java SDK :: Services :: AWS Organizations
diff --git a/services/osis/pom.xml b/services/osis/pom.xml
index b89b139fca80..17c07652cba4 100644
--- a/services/osis/pom.xml
+++ b/services/osis/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
osis
AWS Java SDK :: Services :: OSIS
diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml
index 57221d2cfa4d..590474198203 100644
--- a/services/outposts/pom.xml
+++ b/services/outposts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
outposts
AWS Java SDK :: Services :: Outposts
diff --git a/services/panorama/pom.xml b/services/panorama/pom.xml
index 6928428bbfe9..ad0c1e3e6a37 100644
--- a/services/panorama/pom.xml
+++ b/services/panorama/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
panorama
AWS Java SDK :: Services :: Panorama
diff --git a/services/paymentcryptography/pom.xml b/services/paymentcryptography/pom.xml
index 2712a7542105..b0947387368e 100644
--- a/services/paymentcryptography/pom.xml
+++ b/services/paymentcryptography/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
paymentcryptography
AWS Java SDK :: Services :: Payment Cryptography
diff --git a/services/paymentcryptographydata/pom.xml b/services/paymentcryptographydata/pom.xml
index 5633ac344e7e..51d5b823730b 100644
--- a/services/paymentcryptographydata/pom.xml
+++ b/services/paymentcryptographydata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
paymentcryptographydata
AWS Java SDK :: Services :: Payment Cryptography Data
diff --git a/services/pcaconnectorad/pom.xml b/services/pcaconnectorad/pom.xml
index b5a55b520b8e..6cd810f1d456 100644
--- a/services/pcaconnectorad/pom.xml
+++ b/services/pcaconnectorad/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
pcaconnectorad
AWS Java SDK :: Services :: Pca Connector Ad
diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml
index 918278d86b39..8c982f354696 100644
--- a/services/personalize/pom.xml
+++ b/services/personalize/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
personalize
AWS Java SDK :: Services :: Personalize
diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml
index 8ae85395addc..34c75c5f4c53 100644
--- a/services/personalizeevents/pom.xml
+++ b/services/personalizeevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
personalizeevents
AWS Java SDK :: Services :: Personalize Events
diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml
index 896a85df0672..06a8ec610b74 100644
--- a/services/personalizeruntime/pom.xml
+++ b/services/personalizeruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
personalizeruntime
AWS Java SDK :: Services :: Personalize Runtime
diff --git a/services/pi/pom.xml b/services/pi/pom.xml
index 8db1577c7445..84280ff8cf0c 100644
--- a/services/pi/pom.xml
+++ b/services/pi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
pi
AWS Java SDK :: Services :: PI
diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml
index d27dfe84a2e2..cb4afd6ccb92 100644
--- a/services/pinpoint/pom.xml
+++ b/services/pinpoint/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
pinpoint
AWS Java SDK :: Services :: Amazon Pinpoint
diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml
index 0cd659223d34..83d9aa8aabe3 100644
--- a/services/pinpointemail/pom.xml
+++ b/services/pinpointemail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
pinpointemail
AWS Java SDK :: Services :: Pinpoint Email
diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml
index 26345449760e..562e25a1aae3 100644
--- a/services/pinpointsmsvoice/pom.xml
+++ b/services/pinpointsmsvoice/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
pinpointsmsvoice
AWS Java SDK :: Services :: Pinpoint SMS Voice
diff --git a/services/pinpointsmsvoicev2/pom.xml b/services/pinpointsmsvoicev2/pom.xml
index 7405a725c904..5c7fa487fb94 100644
--- a/services/pinpointsmsvoicev2/pom.xml
+++ b/services/pinpointsmsvoicev2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
pinpointsmsvoicev2
AWS Java SDK :: Services :: Pinpoint SMS Voice V2
diff --git a/services/pipes/pom.xml b/services/pipes/pom.xml
index 3bc00fe3406e..504bb9ad1142 100644
--- a/services/pipes/pom.xml
+++ b/services/pipes/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
pipes
AWS Java SDK :: Services :: Pipes
diff --git a/services/polly/pom.xml b/services/polly/pom.xml
index c646c1a5070a..043f6331b73e 100644
--- a/services/polly/pom.xml
+++ b/services/polly/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
polly
AWS Java SDK :: Services :: Amazon Polly
diff --git a/services/pom.xml b/services/pom.xml
index 9bfb0a6b1c5d..b19b113261a2 100644
--- a/services/pom.xml
+++ b/services/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.68
+ 2.25.69-SNAPSHOT
services
AWS Java SDK :: Services
diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml
index aeeea7da32b0..80704a39e59c 100644
--- a/services/pricing/pom.xml
+++ b/services/pricing/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.68
+ 2.25.69-SNAPSHOT
4.0.0
pricing
diff --git a/services/privatenetworks/pom.xml b/services/privatenetworks/pom.xml
index 391ae3ed0ac0..ee1d80541f9c 100644
--- a/services/privatenetworks/pom.xml
+++ b/services/privatenetworks/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
privatenetworks
AWS Java SDK :: Services :: Private Networks
diff --git a/services/proton/pom.xml b/services/proton/pom.xml
index 99f06873beda..6b5b3176fdfc 100644
--- a/services/proton/pom.xml
+++ b/services/proton/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
proton
AWS Java SDK :: Services :: Proton
diff --git a/services/qbusiness/pom.xml b/services/qbusiness/pom.xml
index 01e9c3609b39..c8c656e02af6 100644
--- a/services/qbusiness/pom.xml
+++ b/services/qbusiness/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
qbusiness
AWS Java SDK :: Services :: Q Business
diff --git a/services/qconnect/pom.xml b/services/qconnect/pom.xml
index 0b67fbfae280..21def9090a78 100644
--- a/services/qconnect/pom.xml
+++ b/services/qconnect/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
qconnect
AWS Java SDK :: Services :: Q Connect
diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml
index 6b9f7950121c..a263349ee0af 100644
--- a/services/qldb/pom.xml
+++ b/services/qldb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
qldb
AWS Java SDK :: Services :: QLDB
diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml
index f64290ff8130..35892f70898b 100644
--- a/services/qldbsession/pom.xml
+++ b/services/qldbsession/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
qldbsession
AWS Java SDK :: Services :: QLDB Session
diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml
index dcaa789882ac..c685525bf6f6 100644
--- a/services/quicksight/pom.xml
+++ b/services/quicksight/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
quicksight
AWS Java SDK :: Services :: QuickSight
diff --git a/services/ram/pom.xml b/services/ram/pom.xml
index 9bdd3f85c45a..e6b667cbbd17 100644
--- a/services/ram/pom.xml
+++ b/services/ram/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
ram
AWS Java SDK :: Services :: RAM
diff --git a/services/rbin/pom.xml b/services/rbin/pom.xml
index 06fbcc84bba7..ec806f671221 100644
--- a/services/rbin/pom.xml
+++ b/services/rbin/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
rbin
AWS Java SDK :: Services :: Rbin
diff --git a/services/rds/pom.xml b/services/rds/pom.xml
index 7cecd3a74510..11c8e2868abe 100644
--- a/services/rds/pom.xml
+++ b/services/rds/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
rds
AWS Java SDK :: Services :: Amazon RDS
diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml
index 011ae0c90485..eafdec42ac71 100644
--- a/services/rdsdata/pom.xml
+++ b/services/rdsdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
rdsdata
AWS Java SDK :: Services :: RDS Data
diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml
index b280e700d84c..b647bebe271c 100644
--- a/services/redshift/pom.xml
+++ b/services/redshift/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
redshift
AWS Java SDK :: Services :: Amazon Redshift
diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml
index be1ca5aded0f..6935011927f8 100644
--- a/services/redshiftdata/pom.xml
+++ b/services/redshiftdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
redshiftdata
AWS Java SDK :: Services :: Redshift Data
diff --git a/services/redshiftserverless/pom.xml b/services/redshiftserverless/pom.xml
index cbc5cf9c68ad..09401278e322 100644
--- a/services/redshiftserverless/pom.xml
+++ b/services/redshiftserverless/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
redshiftserverless
AWS Java SDK :: Services :: Redshift Serverless
diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml
index 03751116355a..42c33fe0a393 100644
--- a/services/rekognition/pom.xml
+++ b/services/rekognition/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
rekognition
AWS Java SDK :: Services :: Amazon Rekognition
diff --git a/services/repostspace/pom.xml b/services/repostspace/pom.xml
index 9d23b147749d..4b0f40a1e44d 100644
--- a/services/repostspace/pom.xml
+++ b/services/repostspace/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
repostspace
AWS Java SDK :: Services :: Repostspace
diff --git a/services/resiliencehub/pom.xml b/services/resiliencehub/pom.xml
index 9ddcb3ae1a7b..3c70c854e96f 100644
--- a/services/resiliencehub/pom.xml
+++ b/services/resiliencehub/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
resiliencehub
AWS Java SDK :: Services :: Resiliencehub
diff --git a/services/resourceexplorer2/pom.xml b/services/resourceexplorer2/pom.xml
index b3582f735b86..e63338d87273 100644
--- a/services/resourceexplorer2/pom.xml
+++ b/services/resourceexplorer2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
resourceexplorer2
AWS Java SDK :: Services :: Resource Explorer 2
diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml
index 7996391bc3f6..47cb88b41cb5 100644
--- a/services/resourcegroups/pom.xml
+++ b/services/resourcegroups/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.68
+ 2.25.69-SNAPSHOT
4.0.0
resourcegroups
diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml
index e5a3a848582c..0b8b2450b92c 100644
--- a/services/resourcegroupstaggingapi/pom.xml
+++ b/services/resourcegroupstaggingapi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
resourcegroupstaggingapi
AWS Java SDK :: Services :: AWS Resource Groups Tagging API
diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml
index 0b170d4c2c95..d51f322457cd 100644
--- a/services/robomaker/pom.xml
+++ b/services/robomaker/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
robomaker
AWS Java SDK :: Services :: RoboMaker
diff --git a/services/rolesanywhere/pom.xml b/services/rolesanywhere/pom.xml
index a3efc261baa0..9747ac7dc813 100644
--- a/services/rolesanywhere/pom.xml
+++ b/services/rolesanywhere/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
rolesanywhere
AWS Java SDK :: Services :: Roles Anywhere
diff --git a/services/route53/pom.xml b/services/route53/pom.xml
index e504d606795a..9084646e0cc6 100644
--- a/services/route53/pom.xml
+++ b/services/route53/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
route53
AWS Java SDK :: Services :: Amazon Route53
diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml
index 8387d396bdb7..f86233d4abcd 100644
--- a/services/route53domains/pom.xml
+++ b/services/route53domains/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
route53domains
AWS Java SDK :: Services :: Amazon Route53 Domains
diff --git a/services/route53profiles/pom.xml b/services/route53profiles/pom.xml
index bb308fd6e612..4f9a11bf8d8d 100644
--- a/services/route53profiles/pom.xml
+++ b/services/route53profiles/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
route53profiles
AWS Java SDK :: Services :: Route53 Profiles
diff --git a/services/route53recoverycluster/pom.xml b/services/route53recoverycluster/pom.xml
index 5aaa8c5aab4e..ddb0a3cbe12c 100644
--- a/services/route53recoverycluster/pom.xml
+++ b/services/route53recoverycluster/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
route53recoverycluster
AWS Java SDK :: Services :: Route53 Recovery Cluster
diff --git a/services/route53recoverycontrolconfig/pom.xml b/services/route53recoverycontrolconfig/pom.xml
index 6e0c8bf5b687..bca0a698a8dc 100644
--- a/services/route53recoverycontrolconfig/pom.xml
+++ b/services/route53recoverycontrolconfig/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
route53recoverycontrolconfig
AWS Java SDK :: Services :: Route53 Recovery Control Config
diff --git a/services/route53recoveryreadiness/pom.xml b/services/route53recoveryreadiness/pom.xml
index 4b39a78b7b0e..f6d16d952fa2 100644
--- a/services/route53recoveryreadiness/pom.xml
+++ b/services/route53recoveryreadiness/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
route53recoveryreadiness
AWS Java SDK :: Services :: Route53 Recovery Readiness
diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml
index fd1d5fb2b833..ea100253c168 100644
--- a/services/route53resolver/pom.xml
+++ b/services/route53resolver/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
route53resolver
AWS Java SDK :: Services :: Route53Resolver
diff --git a/services/rum/pom.xml b/services/rum/pom.xml
index 6226abff7549..be7d70f1a423 100644
--- a/services/rum/pom.xml
+++ b/services/rum/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
rum
AWS Java SDK :: Services :: RUM
diff --git a/services/s3/pom.xml b/services/s3/pom.xml
index d1952629e1fb..d98c31a2c904 100644
--- a/services/s3/pom.xml
+++ b/services/s3/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
s3
AWS Java SDK :: Services :: Amazon S3
diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml
index 8d4b9c352ae6..f614b20c52fd 100644
--- a/services/s3control/pom.xml
+++ b/services/s3control/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
s3control
AWS Java SDK :: Services :: Amazon S3 Control
diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml
index a1255ed3df37..1de2a5fca2ce 100644
--- a/services/s3outposts/pom.xml
+++ b/services/s3outposts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
s3outposts
AWS Java SDK :: Services :: S3 Outposts
diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml
index ba4869287d8d..84162b58ca80 100644
--- a/services/sagemaker/pom.xml
+++ b/services/sagemaker/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.68
+ 2.25.69-SNAPSHOT
4.0.0
sagemaker
diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml
index 7a3975d403fc..e19c6866df32 100644
--- a/services/sagemakera2iruntime/pom.xml
+++ b/services/sagemakera2iruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
sagemakera2iruntime
AWS Java SDK :: Services :: SageMaker A2I Runtime
diff --git a/services/sagemakeredge/pom.xml b/services/sagemakeredge/pom.xml
index d41416e8aad9..a120fed39078 100644
--- a/services/sagemakeredge/pom.xml
+++ b/services/sagemakeredge/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
sagemakeredge
AWS Java SDK :: Services :: Sagemaker Edge
diff --git a/services/sagemakerfeaturestoreruntime/pom.xml b/services/sagemakerfeaturestoreruntime/pom.xml
index e58cc50abac8..671909a38320 100644
--- a/services/sagemakerfeaturestoreruntime/pom.xml
+++ b/services/sagemakerfeaturestoreruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
sagemakerfeaturestoreruntime
AWS Java SDK :: Services :: Sage Maker Feature Store Runtime
diff --git a/services/sagemakergeospatial/pom.xml b/services/sagemakergeospatial/pom.xml
index 68b851e912cd..3d96a1721e01 100644
--- a/services/sagemakergeospatial/pom.xml
+++ b/services/sagemakergeospatial/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
sagemakergeospatial
AWS Java SDK :: Services :: Sage Maker Geospatial
diff --git a/services/sagemakermetrics/pom.xml b/services/sagemakermetrics/pom.xml
index cfde9eb8de07..ff69632fa799 100644
--- a/services/sagemakermetrics/pom.xml
+++ b/services/sagemakermetrics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
sagemakermetrics
AWS Java SDK :: Services :: Sage Maker Metrics
diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml
index 1a72bf5517c8..c979fe93e01f 100644
--- a/services/sagemakerruntime/pom.xml
+++ b/services/sagemakerruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
sagemakerruntime
AWS Java SDK :: Services :: SageMaker Runtime
diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml
index ca0e65523544..023900929f7e 100644
--- a/services/savingsplans/pom.xml
+++ b/services/savingsplans/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
savingsplans
AWS Java SDK :: Services :: Savingsplans
diff --git a/services/scheduler/pom.xml b/services/scheduler/pom.xml
index bb332796bc0e..4b3f331c4972 100644
--- a/services/scheduler/pom.xml
+++ b/services/scheduler/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
scheduler
AWS Java SDK :: Services :: Scheduler
diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml
index b78db1a37e7a..a610e729ffc8 100644
--- a/services/schemas/pom.xml
+++ b/services/schemas/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
schemas
AWS Java SDK :: Services :: Schemas
diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml
index 5701b8f956b5..812951f27088 100644
--- a/services/secretsmanager/pom.xml
+++ b/services/secretsmanager/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
secretsmanager
AWS Java SDK :: Services :: AWS Secrets Manager
diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml
index 72746052b1e3..c77dea4c43b0 100644
--- a/services/securityhub/pom.xml
+++ b/services/securityhub/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
securityhub
AWS Java SDK :: Services :: SecurityHub
diff --git a/services/securitylake/pom.xml b/services/securitylake/pom.xml
index 05ed22947609..56150065e7be 100644
--- a/services/securitylake/pom.xml
+++ b/services/securitylake/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
securitylake
AWS Java SDK :: Services :: Security Lake
diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml
index ee6b6852c764..2092fadb1d85 100644
--- a/services/serverlessapplicationrepository/pom.xml
+++ b/services/serverlessapplicationrepository/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.68
+ 2.25.69-SNAPSHOT
4.0.0
serverlessapplicationrepository
diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml
index 33df2cb6586c..87010c8759b8 100644
--- a/services/servicecatalog/pom.xml
+++ b/services/servicecatalog/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
servicecatalog
AWS Java SDK :: Services :: AWS Service Catalog
diff --git a/services/servicecatalogappregistry/pom.xml b/services/servicecatalogappregistry/pom.xml
index 16a95f7843b6..0e26f23c6702 100644
--- a/services/servicecatalogappregistry/pom.xml
+++ b/services/servicecatalogappregistry/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
servicecatalogappregistry
AWS Java SDK :: Services :: Service Catalog App Registry
diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml
index 5baf4c54cd1d..229e0f335f53 100644
--- a/services/servicediscovery/pom.xml
+++ b/services/servicediscovery/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.68
+ 2.25.69-SNAPSHOT
4.0.0
servicediscovery
diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml
index bf73e3d6b6cf..102a5ce0df08 100644
--- a/services/servicequotas/pom.xml
+++ b/services/servicequotas/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
servicequotas
AWS Java SDK :: Services :: Service Quotas
diff --git a/services/ses/pom.xml b/services/ses/pom.xml
index 9c2dda0eceab..544c912f36e4 100644
--- a/services/ses/pom.xml
+++ b/services/ses/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
ses
AWS Java SDK :: Services :: Amazon SES
diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml
index e15933583e95..7785cd3eeacd 100644
--- a/services/sesv2/pom.xml
+++ b/services/sesv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
sesv2
AWS Java SDK :: Services :: SESv2
diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml
index f9df1596c4e7..c067c337a4b3 100644
--- a/services/sfn/pom.xml
+++ b/services/sfn/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
sfn
AWS Java SDK :: Services :: AWS Step Functions
diff --git a/services/shield/pom.xml b/services/shield/pom.xml
index 971169b53e4e..95dd6226d79c 100644
--- a/services/shield/pom.xml
+++ b/services/shield/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
shield
AWS Java SDK :: Services :: AWS Shield
diff --git a/services/signer/pom.xml b/services/signer/pom.xml
index e7c9a68a711f..82eab5f6f9a9 100644
--- a/services/signer/pom.xml
+++ b/services/signer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
signer
AWS Java SDK :: Services :: Signer
diff --git a/services/simspaceweaver/pom.xml b/services/simspaceweaver/pom.xml
index fc9b04fff41e..0e416cb04237 100644
--- a/services/simspaceweaver/pom.xml
+++ b/services/simspaceweaver/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
simspaceweaver
AWS Java SDK :: Services :: Sim Space Weaver
diff --git a/services/sms/pom.xml b/services/sms/pom.xml
index ed2e7274f348..31389ade971a 100644
--- a/services/sms/pom.xml
+++ b/services/sms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
sms
AWS Java SDK :: Services :: AWS Server Migration
diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml
index 308503bb46b7..38622a04f814 100644
--- a/services/snowball/pom.xml
+++ b/services/snowball/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
snowball
AWS Java SDK :: Services :: Amazon Snowball
diff --git a/services/snowdevicemanagement/pom.xml b/services/snowdevicemanagement/pom.xml
index 74730a9dbe35..c921a06cb451 100644
--- a/services/snowdevicemanagement/pom.xml
+++ b/services/snowdevicemanagement/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
snowdevicemanagement
AWS Java SDK :: Services :: Snow Device Management
diff --git a/services/sns/pom.xml b/services/sns/pom.xml
index de6fb099e0e0..1b2df63c66cd 100644
--- a/services/sns/pom.xml
+++ b/services/sns/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
sns
AWS Java SDK :: Services :: Amazon SNS
diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml
index f634d0f30f35..c7c03f1987de 100644
--- a/services/sqs/pom.xml
+++ b/services/sqs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
sqs
AWS Java SDK :: Services :: Amazon SQS
diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml
index e6feca15e1e0..ff05e7864c22 100644
--- a/services/ssm/pom.xml
+++ b/services/ssm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
ssm
AWS Java SDK :: Services :: AWS Simple Systems Management (SSM)
diff --git a/services/ssmcontacts/pom.xml b/services/ssmcontacts/pom.xml
index e02b43dbcdbd..5dd84894ddc9 100644
--- a/services/ssmcontacts/pom.xml
+++ b/services/ssmcontacts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
ssmcontacts
AWS Java SDK :: Services :: SSM Contacts
diff --git a/services/ssmincidents/pom.xml b/services/ssmincidents/pom.xml
index 5e79e0746a54..65a84b411153 100644
--- a/services/ssmincidents/pom.xml
+++ b/services/ssmincidents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
ssmincidents
AWS Java SDK :: Services :: SSM Incidents
diff --git a/services/ssmsap/pom.xml b/services/ssmsap/pom.xml
index 471fa513a4ba..99d60315ff14 100644
--- a/services/ssmsap/pom.xml
+++ b/services/ssmsap/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
ssmsap
AWS Java SDK :: Services :: Ssm Sap
diff --git a/services/sso/pom.xml b/services/sso/pom.xml
index 2f4ddcc6bfa5..263e665144c1 100644
--- a/services/sso/pom.xml
+++ b/services/sso/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
sso
AWS Java SDK :: Services :: SSO
diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml
index aa405da0e0ee..ef82439e9539 100644
--- a/services/ssoadmin/pom.xml
+++ b/services/ssoadmin/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
ssoadmin
AWS Java SDK :: Services :: SSO Admin
diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml
index e193dce21993..c44e62b92231 100644
--- a/services/ssooidc/pom.xml
+++ b/services/ssooidc/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
ssooidc
AWS Java SDK :: Services :: SSO OIDC
diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml
index 902ce0c64866..9f8312a1ef30 100644
--- a/services/storagegateway/pom.xml
+++ b/services/storagegateway/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
storagegateway
AWS Java SDK :: Services :: AWS Storage Gateway
diff --git a/services/sts/pom.xml b/services/sts/pom.xml
index 16fd370e699a..bc606eddec3d 100644
--- a/services/sts/pom.xml
+++ b/services/sts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
sts
AWS Java SDK :: Services :: AWS STS
diff --git a/services/supplychain/pom.xml b/services/supplychain/pom.xml
index 6544cbb4f7e3..88632a65522e 100644
--- a/services/supplychain/pom.xml
+++ b/services/supplychain/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
supplychain
AWS Java SDK :: Services :: Supply Chain
diff --git a/services/support/pom.xml b/services/support/pom.xml
index 4ed2d59f2fb9..e811f22e12f8 100644
--- a/services/support/pom.xml
+++ b/services/support/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
support
AWS Java SDK :: Services :: AWS Support
diff --git a/services/supportapp/pom.xml b/services/supportapp/pom.xml
index af4a361d8e6d..0a94f1fecbef 100644
--- a/services/supportapp/pom.xml
+++ b/services/supportapp/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
supportapp
AWS Java SDK :: Services :: Support App
diff --git a/services/swf/pom.xml b/services/swf/pom.xml
index 8e6da197fd5d..279b1a30f10e 100644
--- a/services/swf/pom.xml
+++ b/services/swf/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
swf
AWS Java SDK :: Services :: Amazon SWF
diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml
index 1e14caa67e96..ae00e476335a 100644
--- a/services/synthetics/pom.xml
+++ b/services/synthetics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
synthetics
AWS Java SDK :: Services :: Synthetics
diff --git a/services/taxsettings/pom.xml b/services/taxsettings/pom.xml
index 6f41bf522d8b..154565ea23e2 100644
--- a/services/taxsettings/pom.xml
+++ b/services/taxsettings/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
taxsettings
AWS Java SDK :: Services :: Tax Settings
diff --git a/services/textract/pom.xml b/services/textract/pom.xml
index 6d686b122a5d..52f0ebb18ac0 100644
--- a/services/textract/pom.xml
+++ b/services/textract/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
textract
AWS Java SDK :: Services :: Textract
diff --git a/services/timestreaminfluxdb/pom.xml b/services/timestreaminfluxdb/pom.xml
index 33e8cf06f436..73da5d252198 100644
--- a/services/timestreaminfluxdb/pom.xml
+++ b/services/timestreaminfluxdb/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
timestreaminfluxdb
AWS Java SDK :: Services :: Timestream Influx DB
diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml
index b38abbf82872..bed7495b97fc 100644
--- a/services/timestreamquery/pom.xml
+++ b/services/timestreamquery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
timestreamquery
AWS Java SDK :: Services :: Timestream Query
diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml
index 602710c61eb8..0a7bd0eff7c9 100644
--- a/services/timestreamwrite/pom.xml
+++ b/services/timestreamwrite/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
timestreamwrite
AWS Java SDK :: Services :: Timestream Write
diff --git a/services/tnb/pom.xml b/services/tnb/pom.xml
index 990680a14e1e..203ea3a994f8 100644
--- a/services/tnb/pom.xml
+++ b/services/tnb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
tnb
AWS Java SDK :: Services :: Tnb
diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml
index d82a601f3832..2bb225b862cb 100644
--- a/services/transcribe/pom.xml
+++ b/services/transcribe/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
transcribe
AWS Java SDK :: Services :: Transcribe
diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml
index 5ac0cc81bcac..7282d9442103 100644
--- a/services/transcribestreaming/pom.xml
+++ b/services/transcribestreaming/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
transcribestreaming
AWS Java SDK :: Services :: AWS Transcribe Streaming
diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml
index 8e76b6cc9ed7..ace3dc2aebe5 100644
--- a/services/transfer/pom.xml
+++ b/services/transfer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
transfer
AWS Java SDK :: Services :: Transfer
diff --git a/services/translate/pom.xml b/services/translate/pom.xml
index 31c08cfa5578..68ae1b11a8ef 100644
--- a/services/translate/pom.xml
+++ b/services/translate/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.68
+ 2.25.69-SNAPSHOT
4.0.0
translate
diff --git a/services/trustedadvisor/pom.xml b/services/trustedadvisor/pom.xml
index 323541be55fa..35164aa4688f 100644
--- a/services/trustedadvisor/pom.xml
+++ b/services/trustedadvisor/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
trustedadvisor
AWS Java SDK :: Services :: Trusted Advisor
diff --git a/services/verifiedpermissions/pom.xml b/services/verifiedpermissions/pom.xml
index 4e8fcbb755c1..e2000f92bb90 100644
--- a/services/verifiedpermissions/pom.xml
+++ b/services/verifiedpermissions/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
verifiedpermissions
AWS Java SDK :: Services :: Verified Permissions
diff --git a/services/voiceid/pom.xml b/services/voiceid/pom.xml
index a1b7c151350a..e2051e0426eb 100644
--- a/services/voiceid/pom.xml
+++ b/services/voiceid/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
voiceid
AWS Java SDK :: Services :: Voice ID
diff --git a/services/vpclattice/pom.xml b/services/vpclattice/pom.xml
index 0ce07a155291..c093d767146e 100644
--- a/services/vpclattice/pom.xml
+++ b/services/vpclattice/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
vpclattice
AWS Java SDK :: Services :: VPC Lattice
diff --git a/services/waf/pom.xml b/services/waf/pom.xml
index 283969f0c974..49d9c41692d9 100644
--- a/services/waf/pom.xml
+++ b/services/waf/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
waf
AWS Java SDK :: Services :: AWS WAF
diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml
index e3c770b7c062..635c9ac34078 100644
--- a/services/wafv2/pom.xml
+++ b/services/wafv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
wafv2
AWS Java SDK :: Services :: WAFV2
diff --git a/services/wellarchitected/pom.xml b/services/wellarchitected/pom.xml
index 9b7dd0f74d1e..cdb717b30beb 100644
--- a/services/wellarchitected/pom.xml
+++ b/services/wellarchitected/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
wellarchitected
AWS Java SDK :: Services :: Well Architected
diff --git a/services/wisdom/pom.xml b/services/wisdom/pom.xml
index 5b819f1671aa..c1a1d41ccb7e 100644
--- a/services/wisdom/pom.xml
+++ b/services/wisdom/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
wisdom
AWS Java SDK :: Services :: Wisdom
diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml
index a9b7ae1b1885..1d59825f2de7 100644
--- a/services/workdocs/pom.xml
+++ b/services/workdocs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
workdocs
AWS Java SDK :: Services :: Amazon WorkDocs
diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml
index 8a088e42e65a..951982d7fe31 100644
--- a/services/worklink/pom.xml
+++ b/services/worklink/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
worklink
AWS Java SDK :: Services :: WorkLink
diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml
index 14d44450b1bd..e49d83c78712 100644
--- a/services/workmail/pom.xml
+++ b/services/workmail/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.68
+ 2.25.69-SNAPSHOT
4.0.0
workmail
diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml
index 2343c190994e..e3059e6945d6 100644
--- a/services/workmailmessageflow/pom.xml
+++ b/services/workmailmessageflow/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
workmailmessageflow
AWS Java SDK :: Services :: WorkMailMessageFlow
diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml
index d63ba49e04ee..2ec0ad88b2dd 100644
--- a/services/workspaces/pom.xml
+++ b/services/workspaces/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
workspaces
AWS Java SDK :: Services :: Amazon WorkSpaces
diff --git a/services/workspacesthinclient/pom.xml b/services/workspacesthinclient/pom.xml
index 5e976b9841ba..16d91478e99a 100644
--- a/services/workspacesthinclient/pom.xml
+++ b/services/workspacesthinclient/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
workspacesthinclient
AWS Java SDK :: Services :: Work Spaces Thin Client
diff --git a/services/workspacesweb/pom.xml b/services/workspacesweb/pom.xml
index 2da58e4d89c6..2c39e8dbfd43 100644
--- a/services/workspacesweb/pom.xml
+++ b/services/workspacesweb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
workspacesweb
AWS Java SDK :: Services :: Work Spaces Web
diff --git a/services/xray/pom.xml b/services/xray/pom.xml
index 222d7e151e58..b014ec79931a 100644
--- a/services/xray/pom.xml
+++ b/services/xray/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.68
+ 2.25.69-SNAPSHOT
xray
AWS Java SDK :: Services :: AWS X-Ray
diff --git a/test/auth-tests/pom.xml b/test/auth-tests/pom.xml
index 1facdc37f970..686b70e7282f 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.68
+ 2.25.69-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 32fef2800d5c..9ad8a8fa2641 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.68
+ 2.25.69-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/bundle-shading-tests/pom.xml b/test/bundle-shading-tests/pom.xml
index 2c783a3c6e74..e0bd3b8f84b5 100644
--- a/test/bundle-shading-tests/pom.xml
+++ b/test/bundle-shading-tests/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.25.68
+ 2.25.69-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 207d4e7b1a5c..6a2b0c76c690 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.68
+ 2.25.69-SNAPSHOT
../../pom.xml
diff --git a/test/crt-unavailable-tests/pom.xml b/test/crt-unavailable-tests/pom.xml
index 17ca6e5c7577..906e29c7c53c 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.68
+ 2.25.69-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml
index 1eefce34ca72..f5d023e7f7e2 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.68
+ 2.25.69-SNAPSHOT
../../pom.xml
http-client-tests
diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml
index caaec0324473..4372739d417f 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.68
+ 2.25.69-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 e7dce4682d74..1f2849ce57ea 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.68
+ 2.25.69-SNAPSHOT
../../pom.xml
diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml
index 8cea32be7de5..ab6c30db8bcf 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.68
+ 2.25.69-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml
index 95dc63be34d9..67c090bb3429 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.68
+ 2.25.69-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/region-testing/pom.xml b/test/region-testing/pom.xml
index 3da3af0b7386..c293cb684b7b 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.68
+ 2.25.69-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/ruleset-testing-core/pom.xml b/test/ruleset-testing-core/pom.xml
index c6e73cad814a..07175863c6d2 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.68
+ 2.25.69-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/s3-benchmarks/pom.xml b/test/s3-benchmarks/pom.xml
index d95405a9f3a5..fd35366fb507 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.68
+ 2.25.69-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml
index baeb9f891419..4f98b48301b3 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.68
+ 2.25.69-SNAPSHOT
../../pom.xml
diff --git a/test/sdk-native-image-test/pom.xml b/test/sdk-native-image-test/pom.xml
index d8e8123585ba..216d4a1dc02a 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.68
+ 2.25.69-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml
index 55405ee00ebc..4d163b088d51 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.68
+ 2.25.69-SNAPSHOT
../../pom.xml
service-test-utils
diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml
index f6bbed9b0de1..3cf1ab37c987 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.68
+ 2.25.69-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml
index 8a6001eb47e6..f1bc38d76977 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.68
+ 2.25.69-SNAPSHOT
../../pom.xml
test-utils
diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml
index 0bf20f62fb0b..4d289403b0a0 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.68
+ 2.25.69-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/third-party/pom.xml b/third-party/pom.xml
index 8b08f27490ca..fb1382213478 100644
--- a/third-party/pom.xml
+++ b/third-party/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.25.68
+ 2.25.69-SNAPSHOT
third-party
diff --git a/third-party/third-party-jackson-core/pom.xml b/third-party/third-party-jackson-core/pom.xml
index e72b95a67501..54d3fabce51d 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.68
+ 2.25.69-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 c5f4473bcbbd..4be49c11b0a2 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.68
+ 2.25.69-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 d95607850904..b7a2d9f1e6a0 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.68
+ 2.25.69-SNAPSHOT
4.0.0
diff --git a/utils/pom.xml b/utils/pom.xml
index cc11f664277f..af2ac08b0342 100644
--- a/utils/pom.xml
+++ b/utils/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.25.68
+ 2.25.69-SNAPSHOT
4.0.0
From 5a9bd22cf89361ed494e685358c8ed65275cecd0 Mon Sep 17 00:00:00 2001
From: Matthew Miller
Date: Thu, 6 Jun 2024 14:48:13 -0700
Subject: [PATCH 20/30] Improve SRA signer user experience, with documentation
and helper methods. (#5270)
1. Deprecate old signer interfaces, directing to new interfaces.
2. Add Javadoc for new v4 and v4a signers.
3. Add utility methods for creating ContentStreamProviders.
---
.../authcrt/signer/AwsCrtS3V4aSigner.java | 3 +
.../authcrt/signer/AwsCrtV4aSigner.java | 3 +
.../awssdk/auth/signer/AsyncAws4Signer.java | 3 +
.../amazon/awssdk/auth/signer/Aws4Signer.java | 3 +
.../signer/Aws4UnsignedPayloadSigner.java | 3 +
.../awssdk/auth/signer/AwsS3V4Signer.java | 3 +
.../auth/signer/EventStreamAws4Signer.java | 1 +
.../awssdk/auth/signer/SignerLoader.java | 1 +
.../auth/signer/internal/BaseAws4Signer.java | 1 +
.../token/signer/aws/BearerTokenSigner.java | 3 +
.../aws/signer/AwsV4FamilyHttpSigner.java | 17 +-
.../http/auth/aws/signer/AwsV4HttpSigner.java | 61 +++++-
.../auth/aws/signer/AwsV4aHttpSigner.java | 62 +++++-
.../spi/internal/signer/NoOpHttpSigner.java | 44 ++++
.../http/auth/spi/signer/HttpSigner.java | 10 +-
.../core/signer/AsyncRequestBodySigner.java | 3 +
.../awssdk/core/signer/AsyncSigner.java | 3 +
.../amazon/awssdk/core/signer/NoOpSigner.java | 4 +
.../amazon/awssdk/core/signer/Presigner.java | 3 +
.../amazon/awssdk/core/signer/Signer.java | 3 +
.../awssdk/http/ContentStreamProvider.java | 102 +++++++++-
.../amazon/awssdk/http/SdkHttpRequest.java | 11 +
.../http/ContentStreamProviderTest.java | 188 ++++++++++++++++++
.../awssdk/utils/StringInputStream.java | 7 +-
24 files changed, 531 insertions(+), 11 deletions(-)
create mode 100644 core/http-auth-spi/src/main/java/software/amazon/awssdk/http/auth/spi/internal/signer/NoOpHttpSigner.java
create mode 100644 http-client-spi/src/test/java/software/amazon/awssdk/http/ContentStreamProviderTest.java
diff --git a/core/auth-crt/src/main/java/software/amazon/awssdk/authcrt/signer/AwsCrtS3V4aSigner.java b/core/auth-crt/src/main/java/software/amazon/awssdk/authcrt/signer/AwsCrtS3V4aSigner.java
index c6ee258c064e..794245dea8d9 100644
--- a/core/auth-crt/src/main/java/software/amazon/awssdk/authcrt/signer/AwsCrtS3V4aSigner.java
+++ b/core/auth-crt/src/main/java/software/amazon/awssdk/authcrt/signer/AwsCrtS3V4aSigner.java
@@ -38,10 +38,13 @@
*
* See
* Amazon S3 Sigv4 documentation for more detailed information.
+ *
+ * @deprecated Use {@code software.amazon.awssdk.http.auth.aws.signer.AwsV4aHttpSigner} from the 'http-auth-aws' module.
*/
@SdkPublicApi
@Immutable
@ThreadSafe
+@Deprecated
public interface AwsCrtS3V4aSigner extends Signer, Presigner {
/**
diff --git a/core/auth-crt/src/main/java/software/amazon/awssdk/authcrt/signer/AwsCrtV4aSigner.java b/core/auth-crt/src/main/java/software/amazon/awssdk/authcrt/signer/AwsCrtV4aSigner.java
index 692ecec5047f..e43425d83db6 100644
--- a/core/auth-crt/src/main/java/software/amazon/awssdk/authcrt/signer/AwsCrtV4aSigner.java
+++ b/core/auth-crt/src/main/java/software/amazon/awssdk/authcrt/signer/AwsCrtV4aSigner.java
@@ -28,10 +28,13 @@
* (Common RunTime) library.
*
* In CRT signing, payload signing is the default unless an override value is specified.
+ *
+ * @deprecated Use {@code software.amazon.awssdk.http.auth.aws.signer.AwsV4aHttpSigner} from the 'http-auth-aws' module.
*/
@SdkPublicApi
@Immutable
@ThreadSafe
+@Deprecated
public interface AwsCrtV4aSigner extends Signer, Presigner {
/**
diff --git a/core/auth/src/main/java/software/amazon/awssdk/auth/signer/AsyncAws4Signer.java b/core/auth/src/main/java/software/amazon/awssdk/auth/signer/AsyncAws4Signer.java
index 5a175bcaf4b4..eb5a6b4339db 100644
--- a/core/auth/src/main/java/software/amazon/awssdk/auth/signer/AsyncAws4Signer.java
+++ b/core/auth/src/main/java/software/amazon/awssdk/auth/signer/AsyncAws4Signer.java
@@ -34,7 +34,10 @@
/**
* AWS Signature Version 4 signer that can include contents of an asynchronous request body into the signature
* calculation.
+ *
+ * @deprecated Use {@code software.amazon.awssdk.http.auth.aws.signer.AwsV4HttpSigner} from the 'http-auth-aws' module.
*/
+@Deprecated
@SdkPublicApi
public final class AsyncAws4Signer extends BaseAws4Signer implements AsyncSigner {
diff --git a/core/auth/src/main/java/software/amazon/awssdk/auth/signer/Aws4Signer.java b/core/auth/src/main/java/software/amazon/awssdk/auth/signer/Aws4Signer.java
index bad5428c3a8c..7c37904ecfe1 100644
--- a/core/auth/src/main/java/software/amazon/awssdk/auth/signer/Aws4Signer.java
+++ b/core/auth/src/main/java/software/amazon/awssdk/auth/signer/Aws4Signer.java
@@ -20,7 +20,10 @@
/**
* Signer implementation that signs requests with the AWS4 signing protocol.
+ *
+ * @deprecated Use {@code software.amazon.awssdk.http.auth.aws.signer.AwsV4HttpSigner} from the 'http-auth-aws' module.
*/
+@Deprecated
@SdkPublicApi
public final class Aws4Signer extends BaseAws4Signer {
diff --git a/core/auth/src/main/java/software/amazon/awssdk/auth/signer/Aws4UnsignedPayloadSigner.java b/core/auth/src/main/java/software/amazon/awssdk/auth/signer/Aws4UnsignedPayloadSigner.java
index 5b49c694dc3a..9773d81d7645 100644
--- a/core/auth/src/main/java/software/amazon/awssdk/auth/signer/Aws4UnsignedPayloadSigner.java
+++ b/core/auth/src/main/java/software/amazon/awssdk/auth/signer/Aws4UnsignedPayloadSigner.java
@@ -32,8 +32,11 @@
*
* Payloads are still signed for requests over HTTP to preserve the request
* integrity over a non-secure transport.
+ *
+ * @deprecated Use {@code software.amazon.awssdk.http.auth.aws.signer.AwsV4HttpSigner} from the 'http-auth-aws' module.
*/
@SdkPublicApi
+@Deprecated
public final class Aws4UnsignedPayloadSigner extends BaseAws4Signer {
public static final String UNSIGNED_PAYLOAD = "UNSIGNED-PAYLOAD";
diff --git a/core/auth/src/main/java/software/amazon/awssdk/auth/signer/AwsS3V4Signer.java b/core/auth/src/main/java/software/amazon/awssdk/auth/signer/AwsS3V4Signer.java
index eb0a93c123f4..9df0b58b9302 100644
--- a/core/auth/src/main/java/software/amazon/awssdk/auth/signer/AwsS3V4Signer.java
+++ b/core/auth/src/main/java/software/amazon/awssdk/auth/signer/AwsS3V4Signer.java
@@ -20,7 +20,10 @@
/**
* AWS4 signer implementation for AWS S3
+ *
+ * @deprecated Use {@code software.amazon.awssdk.http.auth.aws.signer.AwsV4HttpSigner} from the 'http-auth-aws' module.
*/
+@Deprecated
@SdkPublicApi
public final class AwsS3V4Signer extends AbstractAwsS3V4Signer {
private AwsS3V4Signer() {
diff --git a/core/auth/src/main/java/software/amazon/awssdk/auth/signer/EventStreamAws4Signer.java b/core/auth/src/main/java/software/amazon/awssdk/auth/signer/EventStreamAws4Signer.java
index 474046cf2202..8776f4b5dc0b 100644
--- a/core/auth/src/main/java/software/amazon/awssdk/auth/signer/EventStreamAws4Signer.java
+++ b/core/auth/src/main/java/software/amazon/awssdk/auth/signer/EventStreamAws4Signer.java
@@ -18,6 +18,7 @@
import software.amazon.awssdk.annotations.SdkProtectedApi;
import software.amazon.awssdk.auth.signer.internal.BaseEventStreamAsyncAws4Signer;
+@Deprecated
@SdkProtectedApi
public final class EventStreamAws4Signer extends BaseEventStreamAsyncAws4Signer {
private EventStreamAws4Signer() {
diff --git a/core/auth/src/main/java/software/amazon/awssdk/auth/signer/SignerLoader.java b/core/auth/src/main/java/software/amazon/awssdk/auth/signer/SignerLoader.java
index add5a3e83208..94781f69b90f 100644
--- a/core/auth/src/main/java/software/amazon/awssdk/auth/signer/SignerLoader.java
+++ b/core/auth/src/main/java/software/amazon/awssdk/auth/signer/SignerLoader.java
@@ -26,6 +26,7 @@
/**
* Utility class for instantiating signers only if they're available on the class path.
*/
+@Deprecated
@SdkProtectedApi
public final class SignerLoader {
diff --git a/core/auth/src/main/java/software/amazon/awssdk/auth/signer/internal/BaseAws4Signer.java b/core/auth/src/main/java/software/amazon/awssdk/auth/signer/internal/BaseAws4Signer.java
index 6ae237487578..08652ec79134 100644
--- a/core/auth/src/main/java/software/amazon/awssdk/auth/signer/internal/BaseAws4Signer.java
+++ b/core/auth/src/main/java/software/amazon/awssdk/auth/signer/internal/BaseAws4Signer.java
@@ -27,6 +27,7 @@
* Abstract base class for concrete implementations of Aws4 signers.
*/
@SdkInternalApi
+@Deprecated
public abstract class BaseAws4Signer extends AbstractAws4Signer {
@Override
diff --git a/core/auth/src/main/java/software/amazon/awssdk/auth/token/signer/aws/BearerTokenSigner.java b/core/auth/src/main/java/software/amazon/awssdk/auth/token/signer/aws/BearerTokenSigner.java
index f150ac057fe1..9d8e6040ccdd 100644
--- a/core/auth/src/main/java/software/amazon/awssdk/auth/token/signer/aws/BearerTokenSigner.java
+++ b/core/auth/src/main/java/software/amazon/awssdk/auth/token/signer/aws/BearerTokenSigner.java
@@ -27,8 +27,11 @@
/**
* A {@link Signer} that will sign a request with Bearer token authorization.
+ *
+ * @deprecated Use {@code software.amazon.awssdk.http.auth.signer.BearerHttpSigner} from the 'http-auth' module.
*/
@SdkPublicApi
+@Deprecated
public final class BearerTokenSigner implements Signer {
private static final String BEARER_LABEL = "Bearer";
diff --git a/core/http-auth-aws/src/main/java/software/amazon/awssdk/http/auth/aws/signer/AwsV4FamilyHttpSigner.java b/core/http-auth-aws/src/main/java/software/amazon/awssdk/http/auth/aws/signer/AwsV4FamilyHttpSigner.java
index dd6ebdf72760..5041047cb509 100644
--- a/core/http-auth-aws/src/main/java/software/amazon/awssdk/http/auth/aws/signer/AwsV4FamilyHttpSigner.java
+++ b/core/http-auth-aws/src/main/java/software/amazon/awssdk/http/auth/aws/signer/AwsV4FamilyHttpSigner.java
@@ -29,7 +29,8 @@
@SdkPublicApi
public interface AwsV4FamilyHttpSigner extends HttpSigner {
/**
- * The name of the AWS service. This property is required.
+ * The name of the AWS service. This property is required. This value can be found in the service documentation or
+ * on the service client itself (e.g. {@code S3Client.SERVICE_NAME}).
*/
SignerProperty SERVICE_SIGNING_NAME =
SignerProperty.create(AwsV4FamilyHttpSigner.class, "ServiceSigningName");
@@ -37,6 +38,8 @@ public interface AwsV4FamilyHttpSigner extends HttpSigner
/**
* A boolean to indicate whether to double url-encode the resource path when constructing the canonical request. This property
* defaults to true.
+ *
+ * Note: S3 requires this value to be set to 'false' to prevent signature mismatch errors for certain paths.
*/
SignerProperty DOUBLE_URL_ENCODE =
SignerProperty.create(AwsV4FamilyHttpSigner.class, "DoubleUrlEncode");
@@ -44,6 +47,8 @@ public interface AwsV4FamilyHttpSigner extends HttpSigner
/**
* A boolean to indicate whether the resource path should be "normalized" according to RFC3986 when constructing the canonical
* request. This property defaults to true.
+ *
+ * Note: S3 requires this value to be set to 'false' to prevent signature mismatch errors for certain paths.
*/
SignerProperty NORMALIZE_PATH =
SignerProperty.create(AwsV4FamilyHttpSigner.class, "NormalizePath");
@@ -64,13 +69,21 @@ public interface AwsV4FamilyHttpSigner extends HttpSigner
/**
* Whether to indicate that a payload is signed or not. This property defaults to true. This can be set false to disable
* payload signing.
+ *
+ * When this value is true and {@link #CHUNK_ENCODING_ENABLED} is false, the whole payload must be read to generate
+ * the payload signature. For very large payloads, this could impact memory usage and call latency. Some services
+ * support this value being disabled, especially over HTTPS where SSL provides some of its own protections against
+ * payload tampering.
*/
SignerProperty PAYLOAD_SIGNING_ENABLED =
SignerProperty.create(AwsV4FamilyHttpSigner.class, "PayloadSigningEnabled");
/**
* Whether to indicate that a payload is chunk-encoded or not. This property defaults to false. This can be set true to
- * enable the `aws-chunk` content-encoding
+ * enable the `aws-chunked` content-encoding.
+ *
+ * Only some services support this value being set to true, but for those services it can prevent the need to read
+ * the whole payload before writing when {@link #PAYLOAD_SIGNING_ENABLED} is true.
*/
SignerProperty CHUNK_ENCODING_ENABLED =
SignerProperty.create(AwsV4FamilyHttpSigner.class, "ChunkEncodingEnabled");
diff --git a/core/http-auth-aws/src/main/java/software/amazon/awssdk/http/auth/aws/signer/AwsV4HttpSigner.java b/core/http-auth-aws/src/main/java/software/amazon/awssdk/http/auth/aws/signer/AwsV4HttpSigner.java
index 4b85c017c0f5..ee3656f946e4 100644
--- a/core/http-auth-aws/src/main/java/software/amazon/awssdk/http/auth/aws/signer/AwsV4HttpSigner.java
+++ b/core/http-auth-aws/src/main/java/software/amazon/awssdk/http/auth/aws/signer/AwsV4HttpSigner.java
@@ -22,10 +22,67 @@
import software.amazon.awssdk.identity.spi.AwsCredentialsIdentity;
/**
- * An {@link HttpSigner} that will sign a request using an AWS credentials {@link AwsCredentialsIdentity}).
+ * An {@link HttpSigner} that will use the AWS V4 signing algorithm to sign a request using an
+ * {@link AwsCredentialsIdentity}).
+ *
*
- * The process for signing requests to send to AWS services is documented
+ * The steps performed by this signer are documented
* here.
+ *
+ *
Using the AwsV4HttpSigner
+ *
+ * Sign an HTTP request and send it to a service.
+ *
+ * {@snippet :
+ * AwsV4HttpSigner signer = AwsV4HttpSigner.create();
+ *
+ * // Specify AWS credentials. Credential providers that are used by the SDK by default are
+ * // available in the module "auth" (e.g. DefaultCredentialsProvider).
+ * AwsCredentialsIdentity credentials =
+ * AwsSessionCredentialsIdentity.create("skid", "akid", "stok");
+ *
+ * // Create the HTTP request to be signed
+ * SdkHttpRequest httpRequest =
+ * SdkHttpRequest.builder()
+ * .uri("https://s3.us-west-2.amazonaws.com/bucket/object")
+ * .method(SdkHttpMethod.PUT)
+ * .putHeader("Content-Type", "text/plain")
+ * .build();
+ *
+ * // Create the request payload to be signed
+ * ContentStreamProvider requestPayload =
+ * ContentStreamProvider.fromUtf8String("Hello, World!");
+ *
+ * // Sign the request. Some services require custom signing configuration properties (e.g. S3).
+ * // See AwsV4HttpSigner and AwsV4FamilyHttpSigner for the available signing options.
+ * // Note: The S3Client class below requires a dependency on the 's3' module. Alternatively, the
+ * // signing name can be hard-coded because it is guaranteed to not change.
+ * SignedRequest signedRequest =
+ * signer.sign(r -> r.identity(credentials)
+ * .request(httpRequest)
+ * .payload(requestPayload)
+ * .putProperty(AwsV4HttpSigner.SERVICE_SIGNING_NAME, S3Client.SERVICE_NAME)
+ * .putProperty(AwsV4HttpSigner.REGION_NAME, "us-west-2")
+ * .putProperty(AwsV4HttpSigner.DOUBLE_URL_ENCODE, false) // Required for S3 only
+ * .putProperty(AwsV4HttpSigner.NORMALIZE_PATH, false)); // Required for S3 only
+ *
+ * // Create and HTTP client and send the request. ApacheHttpClient requires the 'apache-client' module.
+ * try (SdkHttpClient httpClient = ApacheHttpClient.create()) {
+ * HttpExecuteRequest httpExecuteRequest =
+ * HttpExecuteRequest.builder()
+ * .request(signedRequest.request())
+ * .contentStreamProvider(signedRequest.payload().orElse(null))
+ * .build();
+ *
+ * HttpExecuteResponse httpResponse =
+ * httpClient.prepareRequest(httpExecuteRequest).call();
+ *
+ * System.out.println("HTTP Status Code: " + httpResponse.httpResponse().statusCode());
+ * } catch (IOException e) {
+ * System.err.println("HTTP Request Failed.");
+ * e.printStackTrace();
+ * }
+ * }
*/
@SdkPublicApi
public interface AwsV4HttpSigner extends AwsV4FamilyHttpSigner {
diff --git a/core/http-auth-aws/src/main/java/software/amazon/awssdk/http/auth/aws/signer/AwsV4aHttpSigner.java b/core/http-auth-aws/src/main/java/software/amazon/awssdk/http/auth/aws/signer/AwsV4aHttpSigner.java
index 686ac70645aa..503d2de7e0ef 100644
--- a/core/http-auth-aws/src/main/java/software/amazon/awssdk/http/auth/aws/signer/AwsV4aHttpSigner.java
+++ b/core/http-auth-aws/src/main/java/software/amazon/awssdk/http/auth/aws/signer/AwsV4aHttpSigner.java
@@ -23,10 +23,67 @@
import software.amazon.awssdk.identity.spi.AwsCredentialsIdentity;
/**
- * An {@link HttpSigner} that will sign a request using an AWS credentials {@link AwsCredentialsIdentity}).
+ * An {@link HttpSigner} that will use the AWS V4a signing algorithm to sign a request using an
+ * {@link AwsCredentialsIdentity}).
+ *
*
- * The process for signing requests to send to AWS services is documented
+ * AWS request signing is described
* here.
+ *
+ *
Using the AwsV4aHttpSigner
+ *
+ * Sign an HTTP request and send it to a service.
+ *
+ * {@snippet :
+ * AwsV4aHttpSigner signer = AwsV4aHttpSigner.create();
+ *
+ * // Specify AWS credentials. Credential providers that are used by the SDK by default are
+ * // available in the module "auth" (e.g. DefaultCredentialsProvider).
+ * AwsCredentialsIdentity credentials =
+ * AwsSessionCredentialsIdentity.create("skid", "akid", "stok");
+ *
+ * // Create the HTTP request to be signed
+ * SdkHttpRequest httpRequest =
+ * SdkHttpRequest.builder()
+ * .uri("https://s3.us-west-2.amazonaws.com/bucket/object")
+ * .method(SdkHttpMethod.PUT)
+ * .putHeader("Content-Type", "text/plain")
+ * .build();
+ *
+ * // Create the request payload to be signed
+ * ContentStreamProvider requestPayload =
+ * ContentStreamProvider.fromUtf8String("Hello, World!");
+ *
+ * // Sign the request. Some services require custom signing configuration properties (e.g. S3).
+ * // See AwsV4aHttpSigner and AwsV4FamilyHttpSigner for the available signing options.
+ * // Note: The S3Client class below requires a dependency on the 's3' module. Alternatively, the
+ * // signing name can be hard-coded because it is guaranteed to not change.
+ * SignedRequest signedRequest =
+ * signer.sign(r -> r.identity(credentials)
+ * .request(httpRequest)
+ * .payload(requestPayload)
+ * .putProperty(AwsV4aHttpSigner.SERVICE_SIGNING_NAME, S3Client.SERVICE_NAME)
+ * .putProperty(AwsV4aHttpSigner.REGION_SET, RegionSet.create("us-west-2"))
+ * .putProperty(AwsV4aHttpSigner.DOUBLE_URL_ENCODE, false) // Required for S3 only
+ * .putProperty(AwsV4aHttpSigner.NORMALIZE_PATH, false)); // Required for S3 only
+ *
+ * // Create and HTTP client and send the request. ApacheHttpClient requires the 'apache-client' module.
+ * try (SdkHttpClient httpClient = ApacheHttpClient.create()) {
+ * HttpExecuteRequest httpExecuteRequest =
+ * HttpExecuteRequest.builder()
+ * .request(signedRequest.request())
+ * .contentStreamProvider(signedRequest.payload().orElse(null))
+ * .build();
+ *
+ * HttpExecuteResponse httpResponse =
+ * httpClient.prepareRequest(httpExecuteRequest).call();
+ *
+ * System.out.println("HTTP Status Code: " + httpResponse.httpResponse().statusCode());
+ * } catch (IOException e) {
+ * System.err.println("HTTP Request Failed.");
+ * e.printStackTrace();
+ * }
+ * }
*/
@SdkPublicApi
public interface AwsV4aHttpSigner extends AwsV4FamilyHttpSigner {
@@ -41,5 +98,4 @@ public interface AwsV4aHttpSigner extends AwsV4FamilyHttpSigner implements HttpSigner {
+ @Override
+ public SignedRequest sign(SignRequest extends T> request) {
+ return SignedRequest.builder()
+ .request(request.request())
+ .payload(request.payload().orElse(null))
+ .build();
+ }
+
+ @Override
+ public CompletableFuture signAsync(AsyncSignRequest extends T> request) {
+ return CompletableFuture.completedFuture(AsyncSignedRequest.builder()
+ .request(request.request())
+ .payload(request.payload().orElse(null))
+ .build());
+ }
+}
diff --git a/core/http-auth-spi/src/main/java/software/amazon/awssdk/http/auth/spi/signer/HttpSigner.java b/core/http-auth-spi/src/main/java/software/amazon/awssdk/http/auth/spi/signer/HttpSigner.java
index 5aafbe51e116..0f60bae1d7e0 100644
--- a/core/http-auth-spi/src/main/java/software/amazon/awssdk/http/auth/spi/signer/HttpSigner.java
+++ b/core/http-auth-spi/src/main/java/software/amazon/awssdk/http/auth/spi/signer/HttpSigner.java
@@ -21,6 +21,7 @@
import software.amazon.awssdk.annotations.SdkPublicApi;
import software.amazon.awssdk.http.auth.spi.internal.signer.DefaultAsyncSignRequest;
import software.amazon.awssdk.http.auth.spi.internal.signer.DefaultSignRequest;
+import software.amazon.awssdk.http.auth.spi.internal.signer.NoOpHttpSigner;
import software.amazon.awssdk.identity.spi.Identity;
/**
@@ -31,7 +32,6 @@
*/
@SdkPublicApi
public interface HttpSigner {
-
/**
* A {@link Clock} to be used to derive the signing time. This property defaults to the system clock.
*
@@ -39,6 +39,13 @@ public interface HttpSigner {
*/
SignerProperty SIGNING_CLOCK = SignerProperty.create(HttpSigner.class, "SigningClock");
+ /**
+ * Retrieve a signer that returns the input message, without signing.
+ */
+ default HttpSigner doNotSign() {
+ return new NoOpHttpSigner<>();
+ }
+
/**
* Method that takes in inputs to sign a request with sync payload and returns a signed version of the request.
*
@@ -84,4 +91,5 @@ default SignedRequest sign(Consumer> consumer) {
default CompletableFuture signAsync(Consumer> consumer) {
return signAsync(DefaultAsyncSignRequest.builder().applyMutation(consumer).build());
}
+
}
diff --git a/core/sdk-core/src/main/java/software/amazon/awssdk/core/signer/AsyncRequestBodySigner.java b/core/sdk-core/src/main/java/software/amazon/awssdk/core/signer/AsyncRequestBodySigner.java
index fca744c562de..e0ef03e70b03 100644
--- a/core/sdk-core/src/main/java/software/amazon/awssdk/core/signer/AsyncRequestBodySigner.java
+++ b/core/sdk-core/src/main/java/software/amazon/awssdk/core/signer/AsyncRequestBodySigner.java
@@ -22,9 +22,12 @@
/**
* Interface for the signer used for signing the async requests.
+ *
+ * @deprecated Replaced by {@code software.amazon.awssdk.http.auth.spi.signer.HttpSigner} in 'http-auth-spi'.
*/
@SdkPublicApi
@FunctionalInterface
+@Deprecated
public interface AsyncRequestBodySigner {
/**
* Method that takes in an signed request and async request body provider,
diff --git a/core/sdk-core/src/main/java/software/amazon/awssdk/core/signer/AsyncSigner.java b/core/sdk-core/src/main/java/software/amazon/awssdk/core/signer/AsyncSigner.java
index ee31dfffbe91..e901242db74f 100644
--- a/core/sdk-core/src/main/java/software/amazon/awssdk/core/signer/AsyncSigner.java
+++ b/core/sdk-core/src/main/java/software/amazon/awssdk/core/signer/AsyncSigner.java
@@ -23,8 +23,11 @@
/**
* A signer capable of including the contents of the asynchronous body into the request calculation.
+ *
+ * @deprecated Replaced by {@code software.amazon.awssdk.http.auth.spi.signer.HttpSigner} in 'http-auth-spi'.
*/
@SdkPublicApi
+@Deprecated
public interface AsyncSigner {
/**
* Sign the request, including the contents of the body into the signature calculation.
diff --git a/core/sdk-core/src/main/java/software/amazon/awssdk/core/signer/NoOpSigner.java b/core/sdk-core/src/main/java/software/amazon/awssdk/core/signer/NoOpSigner.java
index e6f2f96dd1d6..ae0576920998 100644
--- a/core/sdk-core/src/main/java/software/amazon/awssdk/core/signer/NoOpSigner.java
+++ b/core/sdk-core/src/main/java/software/amazon/awssdk/core/signer/NoOpSigner.java
@@ -22,8 +22,12 @@
/**
* A No op implementation of Signer and Presigner interfaces that returns the
* input {@link SdkHttpFullRequest} without modifications.
+ *
+ * @deprecated Replaced by {@code software.amazon.awssdk.http.auth.spi.signer.HttpSigner#doNotSign()} in
+ * 'http-auth-spi'.
*/
@SdkPublicApi
+@Deprecated
public final class NoOpSigner implements Signer, Presigner {
@Override
diff --git a/core/sdk-core/src/main/java/software/amazon/awssdk/core/signer/Presigner.java b/core/sdk-core/src/main/java/software/amazon/awssdk/core/signer/Presigner.java
index f3eeda10be93..025e86dcf4d5 100644
--- a/core/sdk-core/src/main/java/software/amazon/awssdk/core/signer/Presigner.java
+++ b/core/sdk-core/src/main/java/software/amazon/awssdk/core/signer/Presigner.java
@@ -22,9 +22,12 @@
/**
* Interface for the signer used for pre-signing the requests. All SDK signer implementations that support pre-signing
* will implement this interface.
+ *
+ * @deprecated Replaced by {@code software.amazon.awssdk.http.auth.spi.signer.HttpSigner} in 'http-auth-spi'.
*/
@SdkPublicApi
@FunctionalInterface
+@Deprecated
public interface Presigner {
/**
* Method that takes in an request and returns a pre signed version of the request.
diff --git a/core/sdk-core/src/main/java/software/amazon/awssdk/core/signer/Signer.java b/core/sdk-core/src/main/java/software/amazon/awssdk/core/signer/Signer.java
index c44adaa37089..e43b420d908c 100644
--- a/core/sdk-core/src/main/java/software/amazon/awssdk/core/signer/Signer.java
+++ b/core/sdk-core/src/main/java/software/amazon/awssdk/core/signer/Signer.java
@@ -22,9 +22,12 @@
/**
* Interface for the signer used for signing the requests. All SDK signer implementations will implement this interface.
+ *
+ * @deprecated Replaced by {@code software.amazon.awssdk.http.auth.spi.signer.HttpSigner} in 'http-auth-spi'.
*/
@SdkPublicApi
@FunctionalInterface
+@Deprecated
public interface Signer {
/**
* Method that takes in an request and returns a signed version of the request.
diff --git a/http-client-spi/src/main/java/software/amazon/awssdk/http/ContentStreamProvider.java b/http-client-spi/src/main/java/software/amazon/awssdk/http/ContentStreamProvider.java
index cbb63dc2faf2..59493fd33e4d 100644
--- a/http-client-spi/src/main/java/software/amazon/awssdk/http/ContentStreamProvider.java
+++ b/http-client-spi/src/main/java/software/amazon/awssdk/http/ContentStreamProvider.java
@@ -15,21 +15,119 @@
package software.amazon.awssdk.http;
+import static software.amazon.awssdk.utils.FunctionalUtils.invokeSafely;
+
+import java.io.ByteArrayInputStream;
import java.io.InputStream;
+import java.nio.charset.Charset;
+import java.nio.charset.StandardCharsets;
+import java.util.Arrays;
+import java.util.function.Supplier;
import software.amazon.awssdk.annotations.SdkPublicApi;
+import software.amazon.awssdk.utils.IoUtils;
+import software.amazon.awssdk.utils.StringInputStream;
+import software.amazon.awssdk.utils.Validate;
/**
* Provides the content stream of a request.
*
- * Each call to to the {@link #newStream()} method must result in a stream whose position is at the beginning of the content.
+ * Each call to the {@link #newStream()} method must result in a stream whose position is at the beginning of the content.
* Implementations may return a new stream or the same stream for each call. If returning a new stream, the implementation
* must ensure to {@code close()} and free any resources acquired by the previous stream. The last stream returned by {@link
* #newStream()}} will be closed by the SDK.
- *
*/
@SdkPublicApi
@FunctionalInterface
public interface ContentStreamProvider {
+ /**
+ * Create {@link ContentStreamProvider} from a byte array. This will copy the contents of the byte array.
+ */
+ static ContentStreamProvider fromByteArray(byte[] bytes) {
+ Validate.paramNotNull(bytes, "bytes");
+ byte[] copy = Arrays.copyOf(bytes, bytes.length);
+ return () -> new ByteArrayInputStream(copy);
+ }
+
+ /**
+ * Create {@link ContentStreamProvider} from a byte array without copying the contents of the byte array.
+ * This introduces concurrency risks, allowing the caller to modify the byte array stored in this
+ * {@code ContentStreamProvider} implementation.
+ *
+ *
As the method name implies, this is unsafe. Use {@link #fromByteArray(byte[])} unless you're sure you know
+ * the risks.
+ */
+ static ContentStreamProvider fromByteArrayUnsafe(byte[] bytes) {
+ Validate.paramNotNull(bytes, "bytes");
+ return () -> new ByteArrayInputStream(bytes);
+ }
+
+ /**
+ * Create {@link ContentStreamProvider} from a string, using the provided charset.
+ */
+ static ContentStreamProvider fromString(String string, Charset charset) {
+ Validate.paramNotNull(string, "string");
+ Validate.paramNotNull(charset, "charset");
+ return () -> new StringInputStream(string, charset);
+ }
+
+ /**
+ * Create {@link ContentStreamProvider} from a string, using the UTF-8 charset.
+ */
+ static ContentStreamProvider fromUtf8String(String string) {
+ return fromString(string, StandardCharsets.UTF_8);
+ }
+
+ /**
+ * Create a {@link ContentStreamProvider} from an input stream.
+ *
+ * If the provided input stream supports mark/reset, the stream will be marked with a 128Kb read limit and reset
+ * each time {@link #newStream()} is invoked. If the provided input stream does not support mark/reset,
+ * {@link #newStream()} will return the provided stream once, but fail subsequent calls. To create new streams when
+ * needed instead of using mark/reset, see {@link #fromInputStreamSupplier(Supplier)}.
+ */
+ static ContentStreamProvider fromInputStream(InputStream inputStream) {
+ Validate.paramNotNull(inputStream, "inputStream");
+ IoUtils.markStreamWithMaxReadLimit(inputStream);
+ return new ContentStreamProvider() {
+ private boolean first = true;
+ @Override
+ public InputStream newStream() {
+ if (first) {
+ first = false;
+ return inputStream;
+ }
+
+ if (inputStream.markSupported()) {
+ invokeSafely(inputStream::reset);
+ return inputStream;
+ }
+
+ throw new IllegalStateException("Content input stream does not support mark/reset, "
+ + "and was already read once.");
+ }
+ };
+ }
+
+ /**
+ * Create {@link ContentStreamProvider} from an input stream supplier. Each time a new stream is retrieved from
+ * this content stream provider, the last one returned will be closed.
+ */
+ static ContentStreamProvider fromInputStreamSupplier(Supplier inputStreamSupplier) {
+ Validate.paramNotNull(inputStreamSupplier, "inputStreamSupplier");
+ return new ContentStreamProvider() {
+ private InputStream lastStream;
+
+ @Override
+ public InputStream newStream() {
+ if (lastStream != null) {
+ invokeSafely(lastStream::close);
+ }
+ lastStream = inputStreamSupplier.get();
+ return lastStream;
+ }
+ };
+ }
+
/**
* @return The content stream.
*/
diff --git a/http-client-spi/src/main/java/software/amazon/awssdk/http/SdkHttpRequest.java b/http-client-spi/src/main/java/software/amazon/awssdk/http/SdkHttpRequest.java
index d011f9d7b19a..bb34909b5f36 100644
--- a/http-client-spi/src/main/java/software/amazon/awssdk/http/SdkHttpRequest.java
+++ b/http-client-spi/src/main/java/software/amazon/awssdk/http/SdkHttpRequest.java
@@ -191,6 +191,17 @@ default Builder uri(URI uri) {
return builder;
}
+ /**
+ * Convenience method to set the {@link #protocol()}, {@link #host()}, {@link #port()},
+ * {@link #encodedPath()} and extracts query parameters from a URI string.
+ *
+ * @param uri URI containing protocol, host, port and path.
+ * @return This builder for method chaining.
+ */
+ default Builder uri(String uri) {
+ return uri(URI.create(uri));
+ }
+
/**
* The protocol, exactly as it was configured with {@link #protocol(String)}.
*/
diff --git a/http-client-spi/src/test/java/software/amazon/awssdk/http/ContentStreamProviderTest.java b/http-client-spi/src/test/java/software/amazon/awssdk/http/ContentStreamProviderTest.java
new file mode 100644
index 000000000000..1298360f753b
--- /dev/null
+++ b/http-client-spi/src/test/java/software/amazon/awssdk/http/ContentStreamProviderTest.java
@@ -0,0 +1,188 @@
+/*
+ * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License").
+ * You may not use this file except in compliance with the License.
+ * A copy of the License is located at
+ *
+ * http://aws.amazon.com/apache2.0
+ *
+ * or in the "license" file accompanying this file. This file is distributed
+ * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
+ * express or implied. See the License for the specific language governing
+ * permissions and limitations under the License.
+ */
+
+package software.amazon.awssdk.http;
+
+import static org.assertj.core.api.Assertions.assertThatThrownBy;
+import static org.junit.jupiter.api.Assertions.*;
+
+import java.io.ByteArrayInputStream;
+import java.io.IOException;
+import java.io.InputStream;
+import java.nio.charset.StandardCharsets;
+import java.util.Arrays;
+import java.util.function.Supplier;
+import org.junit.jupiter.api.Test;
+import org.mockito.Mockito;
+import software.amazon.awssdk.utils.IoUtils;
+import software.amazon.awssdk.utils.StringInputStream;
+
+class ContentStreamProviderTest {
+ @Test
+ void fromMethods_failOnNull() {
+ assertThatThrownBy(() -> ContentStreamProvider.fromByteArray(null)).isInstanceOf(NullPointerException.class);
+ assertThatThrownBy(() -> ContentStreamProvider.fromByteArrayUnsafe(null)).isInstanceOf(NullPointerException.class);
+ assertThatThrownBy(() -> ContentStreamProvider.fromString("foo", null)).isInstanceOf(NullPointerException.class);
+ assertThatThrownBy(() -> ContentStreamProvider.fromString(null, StandardCharsets.UTF_8)).isInstanceOf(NullPointerException.class);
+ assertThatThrownBy(() -> ContentStreamProvider.fromUtf8String(null)).isInstanceOf(NullPointerException.class);
+ assertThatThrownBy(() -> ContentStreamProvider.fromInputStream(null)).isInstanceOf(NullPointerException.class);
+ assertThatThrownBy(() -> ContentStreamProvider.fromInputStreamSupplier(null)).isInstanceOf(NullPointerException.class);
+ }
+
+ @Test
+ void fromByteArray_containsInputBytes() throws IOException {
+ byte[] bytes = "foo".getBytes();
+ ContentStreamProvider provider = ContentStreamProvider.fromByteArray(bytes);
+ assertArrayEquals(bytes, IoUtils.toByteArray(provider.newStream()));
+ assertArrayEquals(bytes, IoUtils.toByteArray(provider.newStream()));
+ }
+
+ @Test
+ void fromByteArray_doesNotAllowModifyingInputBytes() throws IOException {
+ byte[] bytes = "foo".getBytes();
+ byte[] bytesCopy = Arrays.copyOf(bytes, bytes.length);
+
+ ContentStreamProvider provider = ContentStreamProvider.fromByteArray(bytes);
+ assertArrayEquals(bytes, IoUtils.toByteArray(provider.newStream()));
+ bytes[0] = 'b';
+ assertArrayEquals(bytesCopy, IoUtils.toByteArray(provider.newStream()));
+ }
+
+ @Test
+ void fromByteArrayUnsafe_containsInputBytes() throws IOException {
+ byte[] bytes = "foo".getBytes();
+ ContentStreamProvider provider = ContentStreamProvider.fromByteArray(bytes);
+ assertArrayEquals(bytes, IoUtils.toByteArray(provider.newStream()));
+ assertArrayEquals(bytes, IoUtils.toByteArray(provider.newStream()));
+ }
+
+ @Test
+ void fromByteArrayUnsafe_doesNotProtectAgainstModifyingInputBytes() throws IOException {
+ byte[] bytes = "foo".getBytes();
+
+ ContentStreamProvider provider = ContentStreamProvider.fromByteArrayUnsafe(bytes);
+ assertArrayEquals(bytes, IoUtils.toByteArray(provider.newStream()));
+ bytes[0] = 'b';
+ assertArrayEquals(bytes, IoUtils.toByteArray(provider.newStream()));
+ }
+
+ @Test
+ void fromString_containsInputBytes() throws IOException {
+ String str = "foo";
+ ContentStreamProvider provider = ContentStreamProvider.fromString(str, StandardCharsets.UTF_8);
+ assertEquals(str, IoUtils.toUtf8String(provider.newStream()));
+ assertEquals(str, IoUtils.toUtf8String(provider.newStream()));
+ }
+
+ @Test
+ void fromString_honorsEncoding() throws IOException {
+ String str = "\uD83D\uDE0A";
+ ContentStreamProvider asciiProvider = ContentStreamProvider.fromString(str, StandardCharsets.US_ASCII);
+ ContentStreamProvider utf8Provider = ContentStreamProvider.fromString(str, StandardCharsets.UTF_8);
+ assertArrayEquals("?".getBytes(StandardCharsets.US_ASCII), IoUtils.toByteArray(asciiProvider.newStream()));
+ assertArrayEquals("\uD83D\uDE0A".getBytes(StandardCharsets.UTF_8), IoUtils.toByteArray(utf8Provider.newStream()));
+ }
+
+ @Test
+ void fromUtf8String_containsInputBytes() throws IOException {
+ String str = "foo";
+ ContentStreamProvider provider = ContentStreamProvider.fromUtf8String(str);
+ assertEquals(str, IoUtils.toUtf8String(provider.newStream()));
+ assertEquals(str, IoUtils.toUtf8String(provider.newStream()));
+ }
+
+ @Test
+ void fromInputStream_containsInputBytes() throws IOException {
+ String str = "foo";
+ ContentStreamProvider provider = ContentStreamProvider.fromInputStream(new StringInputStream(str));
+ assertEquals(str, IoUtils.toUtf8String(provider.newStream()));
+ assertEquals(str, IoUtils.toUtf8String(provider.newStream()));
+ }
+
+ @Test
+ void fromInputStream_failsOnSecondNewStream_ifInputStreamDoesNotSupportMarkAndReset() {
+ InputStream stream = new InputStream() {
+ @Override
+ public int read() {
+ return 0;
+ }
+ };
+
+ ContentStreamProvider provider = ContentStreamProvider.fromInputStream(stream);
+ provider.newStream();
+ assertThatThrownBy(provider::newStream).isInstanceOf(IllegalStateException.class)
+ .hasMessageContaining("reset");
+ }
+
+ @Test
+ void fromInputStream_marksStream() throws IOException {
+ InputStream stream = Mockito.mock(InputStream.class);
+ Mockito.when(stream.markSupported()).thenReturn(true);
+
+ ContentStreamProvider provider = ContentStreamProvider.fromInputStream(stream);
+ provider.newStream().read();
+ Mockito.verify(stream, Mockito.atLeastOnce()).mark(Mockito.anyInt());
+ }
+
+ @Test
+ void fromInputStream_doesNotCloseProvidedResettableStream() throws IOException {
+ InputStream stream = Mockito.mock(InputStream.class);
+ Mockito.when(stream.markSupported()).thenReturn(true);
+
+ ContentStreamProvider provider = ContentStreamProvider.fromInputStream(stream);
+ provider.newStream().read();
+ provider.newStream().read();
+ Mockito.verify(stream, Mockito.never()).close();
+ }
+
+ @Test
+ void fromInputStream_doesNotCloseProvidedSingleUseStream() throws IOException {
+ InputStream stream = Mockito.mock(InputStream.class);
+ Mockito.when(stream.markSupported()).thenReturn(false);
+
+ ContentStreamProvider provider = ContentStreamProvider.fromInputStream(stream);
+ provider.newStream().read();
+ Mockito.verify(stream, Mockito.never()).close();
+ }
+
+ @Test
+ void fromInputStreamSupplier_containsInputBytes() throws IOException {
+ String str = "foo";
+ ContentStreamProvider provider = ContentStreamProvider.fromInputStreamSupplier(() -> new StringInputStream(str));
+ assertEquals(str, IoUtils.toUtf8String(provider.newStream()));
+ assertEquals(str, IoUtils.toUtf8String(provider.newStream()));
+ }
+
+ @Test
+ void fromInputStreamSupplier_closesStreams() throws IOException {
+ InputStream stream1 = Mockito.mock(InputStream.class);
+ InputStream stream2 = Mockito.mock(InputStream.class);
+ Supplier streamSupplier = Mockito.mock(Supplier.class);
+
+ Mockito.when(streamSupplier.get()).thenReturn(stream1, stream2);
+
+ ContentStreamProvider provider = ContentStreamProvider.fromInputStreamSupplier(streamSupplier);
+
+ provider.newStream();
+
+ Mockito.verify(stream1, Mockito.never()).close();
+ Mockito.verify(stream2, Mockito.never()).close();
+
+ provider.newStream();
+
+ Mockito.verify(stream1, Mockito.times(1)).close();
+ Mockito.verify(stream2, Mockito.never()).close();
+ }
+}
\ No newline at end of file
diff --git a/utils/src/main/java/software/amazon/awssdk/utils/StringInputStream.java b/utils/src/main/java/software/amazon/awssdk/utils/StringInputStream.java
index f0d595c681e3..36da50fbce5d 100644
--- a/utils/src/main/java/software/amazon/awssdk/utils/StringInputStream.java
+++ b/utils/src/main/java/software/amazon/awssdk/utils/StringInputStream.java
@@ -16,6 +16,7 @@
package software.amazon.awssdk.utils;
import java.io.ByteArrayInputStream;
+import java.nio.charset.Charset;
import java.nio.charset.StandardCharsets;
import software.amazon.awssdk.annotations.SdkProtectedApi;
@@ -29,7 +30,11 @@ public class StringInputStream extends ByteArrayInputStream {
private final String string;
public StringInputStream(String s) {
- super(s.getBytes(StandardCharsets.UTF_8));
+ this(s, StandardCharsets.UTF_8);
+ }
+
+ public StringInputStream(String s, Charset charset) {
+ super(s.getBytes(charset));
this.string = s;
}
From 9be3d6f668cef5660509a9ec5fcc69d4e5e8104c Mon Sep 17 00:00:00 2001
From: Jaykumar Gosar <5666661+gosar@users.noreply.github.com>
Date: Thu, 6 Jun 2024 18:37:16 -0700
Subject: [PATCH 21/30] Remove AWS_CREDENTIALS in backwards compatibility test
(#5266)
---
...ecutionAttributeBackwardsCompatibilityTest.java | 14 ++++++--------
1 file changed, 6 insertions(+), 8 deletions(-)
diff --git a/services/s3/src/test/java/software/amazon/awssdk/services/s3/ExecutionAttributeBackwardsCompatibilityTest.java b/services/s3/src/test/java/software/amazon/awssdk/services/s3/ExecutionAttributeBackwardsCompatibilityTest.java
index abbae1ba6f95..a4816d22e4d0 100644
--- a/services/s3/src/test/java/software/amazon/awssdk/services/s3/ExecutionAttributeBackwardsCompatibilityTest.java
+++ b/services/s3/src/test/java/software/amazon/awssdk/services/s3/ExecutionAttributeBackwardsCompatibilityTest.java
@@ -75,20 +75,18 @@ public void beforeExecution(Context.BeforeExecution context, ExecutionAttributes
},
AwsSignerExecutionAttribute.SERVICE_SIGNING_NAME, // Endpoint rules override signing name
AwsSignerExecutionAttribute.SIGNING_REGION, // Endpoint rules override signing region
- AwsSignerExecutionAttribute.AWS_CREDENTIALS, // Legacy auth strategy overrides credentials
AwsSignerExecutionAttribute.SIGNER_DOUBLE_URL_ENCODE); // Endpoint rules override double-url-encode
}
@Test
public void canSetSignerExecutionAttributes_modifyRequest() {
test(attributeModifications -> new ExecutionInterceptor() {
- @Override
- public SdkRequest modifyRequest(Context.ModifyRequest context, ExecutionAttributes executionAttributes) {
- attributeModifications.accept(executionAttributes);
- return context.request();
- }
- },
- AwsSignerExecutionAttribute.AWS_CREDENTIALS); // Legacy auth strategy overrides credentials
+ @Override
+ public SdkRequest modifyRequest(Context.ModifyRequest context, ExecutionAttributes executionAttributes) {
+ attributeModifications.accept(executionAttributes);
+ return context.request();
+ }
+ });
}
@Test
From b4fb83b33227ed43f492032812363af29511f9d4 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Fri, 7 Jun 2024 18:07:08 +0000
Subject: [PATCH 22/30] Amazon SageMaker Service Update: This release
introduces a new optional parameter: InferenceAmiVersion, in
ProductionVariant.
---
...eature-AmazonSageMakerService-64af295.json | 6 ++++++
.../codegen-resources/service-2.json | 20 +++++++++++++------
2 files changed, 20 insertions(+), 6 deletions(-)
create mode 100644 .changes/next-release/feature-AmazonSageMakerService-64af295.json
diff --git a/.changes/next-release/feature-AmazonSageMakerService-64af295.json b/.changes/next-release/feature-AmazonSageMakerService-64af295.json
new file mode 100644
index 000000000000..768851bf4c52
--- /dev/null
+++ b/.changes/next-release/feature-AmazonSageMakerService-64af295.json
@@ -0,0 +1,6 @@
+{
+ "type": "feature",
+ "category": "Amazon SageMaker Service",
+ "contributor": "",
+ "description": "This release introduces a new optional parameter: InferenceAmiVersion, in ProductionVariant."
+}
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 0511ba3c29ac..2687f7524c5d 100644
--- a/services/sagemaker/src/main/resources/codegen-resources/service-2.json
+++ b/services/sagemaker/src/main/resources/codegen-resources/service-2.json
@@ -9703,7 +9703,7 @@
},
"ModelCard":{
"shape":"ModelPackageModelCard",
- "documentation":"The model card associated with the model package. Since ModelPackageModelCard
is tied to a model package, it is a specific usage of a model card and its schema is simplified compared to the schema of ModelCard
. The ModelPackageModelCard
schema does not include model_package_details
, and model_overview
is composed of the model_creator
and model_artifact
properties. For more information about the model card associated with the model package, see View the Details of a Model Version.
"
+ "documentation":"The model card associated with the model package. Since ModelPackageModelCard
is tied to a model package, it is a specific usage of a model card and its schema is simplified compared to the schema of ModelCard
. The ModelPackageModelCard
schema does not include model_package_details
, and model_overview
is composed of the model_creator
and model_artifact
properties. For more information about the model package model card schema, see Model package model card schema. For more information about the model card associated with the model package, see View the Details of a Model Version.
"
}
}
},
@@ -14974,7 +14974,7 @@
},
"ModelCard":{
"shape":"ModelPackageModelCard",
- "documentation":"The model card associated with the model package. Since ModelPackageModelCard
is tied to a model package, it is a specific usage of a model card and its schema is simplified compared to the schema of ModelCard
. The ModelPackageModelCard
schema does not include model_package_details
, and model_overview
is composed of the model_creator
and model_artifact
properties. For more information about the model card associated with the model package, see View the Details of a Model Version.
"
+ "documentation":"The model card associated with the model package. Since ModelPackageModelCard
is tied to a model package, it is a specific usage of a model card and its schema is simplified compared to the schema of ModelCard
. The ModelPackageModelCard
schema does not include model_package_details
, and model_overview
is composed of the model_creator
and model_artifact
properties. For more information about the model package model card schema, see Model package model card schema. For more information about the model card associated with the model package, see View the Details of a Model Version.
"
}
}
},
@@ -27306,14 +27306,14 @@
"members":{
"ModelCardContent":{
"shape":"ModelCardContent",
- "documentation":"The content of the model card.
"
+ "documentation":"The content of the model card. The content must follow the schema described in Model Package Model Card Schema.
"
},
"ModelCardStatus":{
"shape":"ModelCardStatus",
"documentation":"The approval status of the model card within your organization. Different organizations might have different criteria for model card review and approval.
-
Draft
: The model card is a work in progress.
-
PendingReview
: The model card is pending review.
-
Approved
: The model card is approved.
-
Archived
: The model card is archived. No more updates can be made to the model card content. If you try to update the model card content, you will receive the message Model Card is in Archived state
.
"
}
},
- "documentation":"The model card associated with the model package. Since ModelPackageModelCard
is tied to a model package, it is a specific usage of a model card and its schema is simplified compared to the schema of ModelCard
. The ModelPackageModelCard
schema does not include model_package_details
, and model_overview
is composed of the model_creator
and model_artifact
properties. For more information about the model card associated with the model package, see View the Details of a Model Version.
"
+ "documentation":"The model card associated with the model package. Since ModelPackageModelCard
is tied to a model package, it is a specific usage of a model card and its schema is simplified compared to the schema of ModelCard
. The ModelPackageModelCard
schema does not include model_package_details
, and model_overview
is composed of the model_creator
and model_artifact
properties. For more information about the model package model card schema, see Model package model card schema. For more information about the model card associated with the model package, see View the Details of a Model Version.
"
},
"ModelPackageSecurityConfig":{
"type":"structure",
@@ -30383,6 +30383,10 @@
"RoutingConfig":{
"shape":"ProductionVariantRoutingConfig",
"documentation":"Settings that control how the endpoint routes incoming traffic to the instances that the endpoint hosts.
"
+ },
+ "InferenceAmiVersion":{
+ "shape":"ProductionVariantInferenceAmiVersion",
+ "documentation":"Specifies an option from a collection of preconfigured Amazon Machine Image (AMI) images. Each image is configured by Amazon Web Services with a set of software and driver versions. Amazon Web Services optimizes these configurations for different machine learning workloads.
By selecting an AMI version, you can ensure that your inference environment is compatible with specific software requirements, such as CUDA driver versions, Linux kernel versions, or Amazon Web Services Neuron driver versions.
"
}
},
"documentation":" Identifies a model that you want to host and the resources chosen to deploy for hosting it. If you are deploying multiple models, tell SageMaker how to distribute traffic among the models by specifying variant weights. For more information on production variants, check Production variants.
"
@@ -30418,6 +30422,10 @@
},
"documentation":"Specifies configuration for a core dump from the model container when the process crashes.
"
},
+ "ProductionVariantInferenceAmiVersion":{
+ "type":"string",
+ "enum":["al2-ami-sagemaker-inference-gpu-2"]
+ },
"ProductionVariantInstanceType":{
"type":"string",
"enum":[
@@ -36858,7 +36866,7 @@
},
"ModelCard":{
"shape":"ModelPackageModelCard",
- "documentation":"The model card associated with the model package. Since ModelPackageModelCard
is tied to a model package, it is a specific usage of a model card and its schema is simplified compared to the schema of ModelCard
. The ModelPackageModelCard
schema does not include model_package_details
, and model_overview
is composed of the model_creator
and model_artifact
properties. For more information about the model card associated with the model package, see View the Details of a Model Version.
"
+ "documentation":"The model card associated with the model package. Since ModelPackageModelCard
is tied to a model package, it is a specific usage of a model card and its schema is simplified compared to the schema of ModelCard
. The ModelPackageModelCard
schema does not include model_package_details
, and model_overview
is composed of the model_creator
and model_artifact
properties. For more information about the model package model card schema, see Model package model card schema. For more information about the model card associated with the model package, see View the Details of a Model Version.
"
}
}
},
@@ -37725,7 +37733,7 @@
"VpcOnlyTrustedAccounts":{
"type":"list",
"member":{"shape":"AccountId"},
- "max":10
+ "max":20
},
"VpcSecurityGroupIds":{
"type":"list",
From 8e0704284cead9f27fddb23db8770d8b31d64591 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Fri, 7 Jun 2024 18:07:11 +0000
Subject: [PATCH 23/30] AWS CodePipeline Update: CodePipeline now supports
overriding S3 Source Object Key during StartPipelineExecution, as part of
Source Overrides.
---
.../feature-AWSCodePipeline-7c75236.json | 6 ++++++
.../main/resources/codegen-resources/service-2.json | 12 +++++++-----
2 files changed, 13 insertions(+), 5 deletions(-)
create mode 100644 .changes/next-release/feature-AWSCodePipeline-7c75236.json
diff --git a/.changes/next-release/feature-AWSCodePipeline-7c75236.json b/.changes/next-release/feature-AWSCodePipeline-7c75236.json
new file mode 100644
index 000000000000..5cf7b8fe72be
--- /dev/null
+++ b/.changes/next-release/feature-AWSCodePipeline-7c75236.json
@@ -0,0 +1,6 @@
+{
+ "type": "feature",
+ "category": "AWS CodePipeline",
+ "contributor": "",
+ "description": "CodePipeline now supports overriding S3 Source Object Key during StartPipelineExecution, as part of Source Overrides."
+}
diff --git a/services/codepipeline/src/main/resources/codegen-resources/service-2.json b/services/codepipeline/src/main/resources/codegen-resources/service-2.json
index 4d63dc9e4267..81a50c716b77 100644
--- a/services/codepipeline/src/main/resources/codegen-resources/service-2.json
+++ b/services/codepipeline/src/main/resources/codegen-resources/service-2.json
@@ -11,7 +11,8 @@
"serviceId":"CodePipeline",
"signatureVersion":"v4",
"targetPrefix":"CodePipeline_20150709",
- "uid":"codepipeline-2015-07-09"
+ "uid":"codepipeline-2015-07-09",
+ "auth":["aws.auth#sigv4"]
},
"operations":{
"AcknowledgeJob":{
@@ -297,7 +298,7 @@
{"shape":"PipelineNotFoundException"},
{"shape":"InvalidNextTokenException"}
],
- "documentation":"Gets a summary of the most recent executions for a pipeline.
"
+ "documentation":"Gets a summary of the most recent executions for a pipeline.
When applying the filter for pipeline executions that have succeeded in the stage, the operation returns all executions in the current pipeline version beginning on February 1, 2024.
"
},
"ListPipelines":{
"name":"ListPipelines",
@@ -2812,7 +2813,7 @@
},
"maxResults":{
"shape":"MaxResults",
- "documentation":"The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned nextToken value. Action execution history is retained for up to 12 months, based on action execution start times. Default value is 100.
Detailed execution history is available for executions run on or after February 21, 2019.
"
+ "documentation":"The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned nextToken value. Action execution history is retained for up to 12 months, based on action execution start times. Default value is 100.
"
},
"nextToken":{
"shape":"NextToken",
@@ -4102,7 +4103,7 @@
"documentation":"The source revision, or version of your source artifact, with the changes that you want to run in the pipeline execution.
"
}
},
- "documentation":"A list that allows you to specify, or override, the source revision for a pipeline execution that's being started. A source revision is the version with all the changes to your application code, or source artifact, for the pipeline execution.
"
+ "documentation":"A list that allows you to specify, or override, the source revision for a pipeline execution that's being started. A source revision is the version with all the changes to your application code, or source artifact, for the pipeline execution.
For the S3_OBJECT_VERSION_ID
and S3_OBJECT_KEY
types of source revisions, either of the types can be used independently, or they can be used together to override the source with a specific ObjectKey and VersionID.
"
},
"SourceRevisionOverrideList":{
"type":"list",
@@ -4115,7 +4116,8 @@
"enum":[
"COMMIT_ID",
"IMAGE_DIGEST",
- "S3_OBJECT_VERSION_ID"
+ "S3_OBJECT_VERSION_ID",
+ "S3_OBJECT_KEY"
]
},
"StageActionDeclarationList":{
From f3d848df1c70de1292686d8148dc4a022188779b Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Fri, 7 Jun 2024 18:07:11 +0000
Subject: [PATCH 24/30] Amazon Verified Permissions Update: This release adds
OpenIdConnect (OIDC) configuration support for IdentitySources, allowing for
external IDPs to be used in authorization requests.
---
...ure-AmazonVerifiedPermissions-5fbd7b1.json | 6 +
.../codegen-resources/service-2.json | 409 +++++++++++++++++-
2 files changed, 403 insertions(+), 12 deletions(-)
create mode 100644 .changes/next-release/feature-AmazonVerifiedPermissions-5fbd7b1.json
diff --git a/.changes/next-release/feature-AmazonVerifiedPermissions-5fbd7b1.json b/.changes/next-release/feature-AmazonVerifiedPermissions-5fbd7b1.json
new file mode 100644
index 000000000000..38114172f2ac
--- /dev/null
+++ b/.changes/next-release/feature-AmazonVerifiedPermissions-5fbd7b1.json
@@ -0,0 +1,6 @@
+{
+ "type": "feature",
+ "category": "Amazon Verified Permissions",
+ "contributor": "",
+ "description": "This release adds OpenIdConnect (OIDC) configuration support for IdentitySources, allowing for external IDPs to be used in authorization requests."
+}
diff --git a/services/verifiedpermissions/src/main/resources/codegen-resources/service-2.json b/services/verifiedpermissions/src/main/resources/codegen-resources/service-2.json
index 0f70e2ca2669..4c63db0d3797 100644
--- a/services/verifiedpermissions/src/main/resources/codegen-resources/service-2.json
+++ b/services/verifiedpermissions/src/main/resources/codegen-resources/service-2.json
@@ -65,7 +65,7 @@
{"shape":"ThrottlingException"},
{"shape":"InternalServerException"}
],
- "documentation":"Creates a reference to an Amazon Cognito user pool as an external identity provider (IdP).
After you create an identity source, you can use the identities provided by the IdP as proxies for the principal in authorization queries that use the IsAuthorizedWithToken operation. These identities take the form of tokens that contain claims about the user, such as IDs, attributes and group memberships. Amazon Cognito provides both identity tokens and access tokens, and Verified Permissions can use either or both. Any combination of identity and access tokens results in the same Cedar principal. Verified Permissions automatically translates the information about the identities into the standard Cedar attributes that can be evaluated by your policies. Because the Amazon Cognito identity and access tokens can contain different information, the tokens you choose to use determine which principal attributes are available to access when evaluating Cedar policies.
If you delete a Amazon Cognito user pool or user, tokens from that deleted pool or that deleted user continue to be usable until they expire.
To reference a user from this identity source in your Cedar policies, use the following syntax.
IdentityType::\"<CognitoUserPoolIdentifier>|<CognitoClientId>
Where IdentityType
is the string that you provide to the PrincipalEntityType
parameter for this operation. The CognitoUserPoolId
and CognitoClientId
are defined by the Amazon Cognito user pool.
Verified Permissions is eventually consistent . It can take a few seconds for a new or changed element to propagate through the service and be visible in the results of other Verified Permissions operations.
",
+ "documentation":"Adds an identity source to a policy store–an Amazon Cognito user pool or OpenID Connect (OIDC) identity provider (IdP).
After you create an identity source, you can use the identities provided by the IdP as proxies for the principal in authorization queries that use the IsAuthorizedWithToken or BatchIsAuthorizedWithToken API operations. These identities take the form of tokens that contain claims about the user, such as IDs, attributes and group memberships. Identity sources provide identity (ID) tokens and access tokens. Verified Permissions derives information about your user and session from token claims. Access tokens provide action context
to your policies, and ID tokens provide principal Attributes
.
Tokens from an identity source user continue to be usable until they expire. Token revocation and resource deletion have no effect on the validity of a token in your policy store
To reference a user from this identity source in your Cedar policies, refer to the following syntax examples.
-
Amazon Cognito user pool: Namespace::[Entity type]::[User pool ID]|[user principal attribute]
, for example MyCorp::User::us-east-1_EXAMPLE|a1b2c3d4-5678-90ab-cdef-EXAMPLE11111
.
-
OpenID Connect (OIDC) provider: Namespace::[Entity type]::[principalIdClaim]|[user principal attribute]
, for example MyCorp::User::MyOIDCProvider|a1b2c3d4-5678-90ab-cdef-EXAMPLE22222
.
Verified Permissions is eventually consistent . It can take a few seconds for a new or changed element to propagate through the service and be visible in the results of other Verified Permissions operations.
",
"idempotent":true
},
"CreatePolicy":{
@@ -318,7 +318,7 @@
{"shape":"ThrottlingException"},
{"shape":"InternalServerException"}
],
- "documentation":"Makes an authorization decision about a service request described in the parameters. The principal in this request comes from an external identity source in the form of an identity token formatted as a JSON web token (JWT). The information in the parameters can also define additional context that Verified Permissions can include in the evaluation. The request is evaluated against all matching policies in the specified policy store. The result of the decision is either Allow
or Deny
, along with a list of the policies that resulted in the decision.
At this time, Verified Permissions accepts tokens from only Amazon Cognito.
Verified Permissions validates each token that is specified in a request by checking its expiration date and its signature.
If you delete a Amazon Cognito user pool or user, tokens from that deleted pool or that deleted user continue to be usable until they expire.
"
+ "documentation":"Makes an authorization decision about a service request described in the parameters. The principal in this request comes from an external identity source in the form of an identity token formatted as a JSON web token (JWT). The information in the parameters can also define additional context that Verified Permissions can include in the evaluation. The request is evaluated against all matching policies in the specified policy store. The result of the decision is either Allow
or Deny
, along with a list of the policies that resulted in the decision.
At this time, Verified Permissions accepts tokens from only Amazon Cognito.
Verified Permissions validates each token that is specified in a request by checking its expiration date and its signature.
Tokens from an identity source user continue to be usable until they expire. Token revocation and resource deletion have no effect on the validity of a token in your policy store
"
},
"ListIdentitySources":{
"name":"ListIdentitySources",
@@ -423,7 +423,7 @@
{"shape":"ThrottlingException"},
{"shape":"InternalServerException"}
],
- "documentation":"Updates the specified identity source to use a new identity provider (IdP) source, or to change the mapping of identities from the IdP to a different principal entity type.
Verified Permissions is eventually consistent . It can take a few seconds for a new or changed element to propagate through the service and be visible in the results of other Verified Permissions operations.
",
+ "documentation":"Updates the specified identity source to use a new identity provider (IdP), or to change the mapping of identities from the IdP to a different principal entity type.
Verified Permissions is eventually consistent . It can take a few seconds for a new or changed element to propagate through the service and be visible in the results of other Verified Permissions operations.
",
"idempotent":true
},
"UpdatePolicy":{
@@ -562,6 +562,17 @@
"documentation":"The value of an attribute.
Contains information about the runtime context for a request for which an authorization decision is made.
This data type is used as a member of the ContextDefinition structure which is uses as a request parameter for the IsAuthorized, BatchIsAuthorized, and IsAuthorizedWithToken operations.
",
"union":true
},
+ "Audience":{
+ "type":"string",
+ "max":255,
+ "min":1
+ },
+ "Audiences":{
+ "type":"list",
+ "member":{"shape":"Audience"},
+ "max":255,
+ "min":1
+ },
"BatchIsAuthorizedInput":{
"type":"structure",
"required":[
@@ -759,6 +770,11 @@
"box":true,
"sensitive":true
},
+ "Claim":{
+ "type":"string",
+ "min":1,
+ "sensitive":true
+ },
"ClientId":{
"type":"string",
"max":255,
@@ -820,7 +836,7 @@
"documentation":"The type of entity that a policy store maps to groups from an Amazon Cognito user pool identity source.
"
}
},
- "documentation":"The configuration for an identity source that represents a connection to an Amazon Cognito user pool used as an identity provider for Verified Permissions.
This data type is used as a field that is part of an Configuration structure that is used as a parameter to CreateIdentitySource.
Example:\"CognitoUserPoolConfiguration\":{\"UserPoolArn\":\"arn:aws:cognito-idp:us-east-1:123456789012:userpool/us-east-1_1a2b3c4d5\",\"ClientIds\": [\"a1b2c3d4e5f6g7h8i9j0kalbmc\"],\"groupConfiguration\": {\"groupEntityType\": \"MyCorp::Group\"}}
"
+ "documentation":"The configuration for an identity source that represents a connection to an Amazon Cognito user pool used as an identity provider for Verified Permissions.
This data type part of a Configuration structure that is used as a parameter to CreateIdentitySource.
Example:\"CognitoUserPoolConfiguration\":{\"UserPoolArn\":\"arn:aws:cognito-idp:us-east-1:123456789012:userpool/us-east-1_1a2b3c4d5\",\"ClientIds\": [\"a1b2c3d4e5f6g7h8i9j0kalbmc\"],\"groupConfiguration\": {\"groupEntityType\": \"MyCorp::Group\"}}
"
},
"CognitoUserPoolConfigurationDetail":{
"type":"structure",
@@ -882,9 +898,13 @@
"cognitoUserPoolConfiguration":{
"shape":"CognitoUserPoolConfiguration",
"documentation":"Contains configuration details of a Amazon Cognito user pool that Verified Permissions can use as a source of authenticated identities as entities. It specifies the Amazon Resource Name (ARN) of a Amazon Cognito user pool and one or more application client IDs.
Example: \"configuration\":{\"cognitoUserPoolConfiguration\":{\"userPoolArn\":\"arn:aws:cognito-idp:us-east-1:123456789012:userpool/us-east-1_1a2b3c4d5\",\"clientIds\": [\"a1b2c3d4e5f6g7h8i9j0kalbmc\"],\"groupConfiguration\": {\"groupEntityType\": \"MyCorp::Group\"}}}
"
+ },
+ "openIdConnectConfiguration":{
+ "shape":"OpenIdConnectConfiguration",
+ "documentation":"Contains configuration details of an OpenID Connect (OIDC) identity provider, or identity source, that Verified Permissions can use to generate entities from authenticated identities. It specifies the issuer URL, token type that you want to use, and policy store entity details.
Example:\"configuration\":{\"openIdConnectConfiguration\":{\"issuer\":\"https://auth.example.com\",\"tokenSelection\":{\"accessTokenOnly\":{\"audiences\":[\"https://myapp.example.com\",\"https://myapp2.example.com\"],\"principalIdClaim\":\"sub\"}},\"entityIdPrefix\":\"MyOIDCProvider\",\"groupConfiguration\":{\"groupClaim\":\"groups\",\"groupEntityType\":\"MyCorp::UserGroup\"}}}
"
}
},
- "documentation":"Contains configuration information used when creating a new identity source.
At this time, the only valid member of this structure is a Amazon Cognito user pool configuration.
Specifies a userPoolArn
, a groupConfiguration
, and a ClientId
.
This data type is used as a request parameter for the CreateIdentitySource operation.
",
+ "documentation":"Contains configuration information used when creating a new identity source.
This data type is used as a request parameter for the CreateIdentitySource operation.
",
"union":true
},
"ConfigurationDetail":{
@@ -893,6 +913,10 @@
"cognitoUserPoolConfiguration":{
"shape":"CognitoUserPoolConfigurationDetail",
"documentation":"Contains configuration details of a Amazon Cognito user pool that Verified Permissions can use as a source of authenticated identities as entities. It specifies the Amazon Resource Name (ARN) of a Amazon Cognito user pool, the policy store entity that you want to assign to user groups, and one or more application client IDs.
Example: \"configuration\":{\"cognitoUserPoolConfiguration\":{\"userPoolArn\":\"arn:aws:cognito-idp:us-east-1:123456789012:userpool/us-east-1_1a2b3c4d5\",\"clientIds\": [\"a1b2c3d4e5f6g7h8i9j0kalbmc\"],\"groupConfiguration\": {\"groupEntityType\": \"MyCorp::Group\"}}}
"
+ },
+ "openIdConnectConfiguration":{
+ "shape":"OpenIdConnectConfigurationDetail",
+ "documentation":"Contains configuration details of an OpenID Connect (OIDC) identity provider, or identity source, that Verified Permissions can use to generate entities from authenticated identities. It specifies the issuer URL, token type that you want to use, and policy store entity details.
Example:\"configuration\":{\"openIdConnectConfiguration\":{\"issuer\":\"https://auth.example.com\",\"tokenSelection\":{\"accessTokenOnly\":{\"audiences\":[\"https://myapp.example.com\",\"https://myapp2.example.com\"],\"principalIdClaim\":\"sub\"}},\"entityIdPrefix\":\"MyOIDCProvider\",\"groupConfiguration\":{\"groupClaim\":\"groups\",\"groupEntityType\":\"MyCorp::UserGroup\"}}}
"
}
},
"documentation":"Contains configuration information about an identity source.
This data type is a response parameter to the GetIdentitySource operation.
",
@@ -904,6 +928,10 @@
"cognitoUserPoolConfiguration":{
"shape":"CognitoUserPoolConfigurationItem",
"documentation":"Contains configuration details of a Amazon Cognito user pool that Verified Permissions can use as a source of authenticated identities as entities. It specifies the Amazon Resource Name (ARN) of a Amazon Cognito user pool, the policy store entity that you want to assign to user groups, and one or more application client IDs.
Example: \"configuration\":{\"cognitoUserPoolConfiguration\":{\"userPoolArn\":\"arn:aws:cognito-idp:us-east-1:123456789012:userpool/us-east-1_1a2b3c4d5\",\"clientIds\": [\"a1b2c3d4e5f6g7h8i9j0kalbmc\"],\"groupConfiguration\": {\"groupEntityType\": \"MyCorp::Group\"}}}
"
+ },
+ "openIdConnectConfiguration":{
+ "shape":"OpenIdConnectConfigurationItem",
+ "documentation":"Contains configuration details of an OpenID Connect (OIDC) identity provider, or identity source, that Verified Permissions can use to generate entities from authenticated identities. It specifies the issuer URL, token type that you want to use, and policy store entity details.
Example:\"configuration\":{\"openIdConnectConfiguration\":{\"issuer\":\"https://auth.example.com\",\"tokenSelection\":{\"accessTokenOnly\":{\"audiences\":[\"https://myapp.example.com\",\"https://myapp2.example.com\"],\"principalIdClaim\":\"sub\"}},\"entityIdPrefix\":\"MyOIDCProvider\",\"groupConfiguration\":{\"groupClaim\":\"groups\",\"groupEntityType\":\"MyCorp::UserGroup\"}}}
"
}
},
"documentation":"Contains configuration information about an identity source.
This data type is a response parameter to the ListIdentitySources operation.
",
@@ -939,7 +967,8 @@
"ContextMap":{
"type":"map",
"key":{"shape":"String"},
- "value":{"shape":"AttributeValue"}
+ "value":{"shape":"AttributeValue"},
+ "sensitive":true
},
"CreateIdentitySourceInput":{
"type":"structure",
@@ -959,7 +988,7 @@
},
"configuration":{
"shape":"Configuration",
- "documentation":"Specifies the details required to communicate with the identity provider (IdP) associated with this identity source.
At this time, the only valid member of this structure is a Amazon Cognito user pool configuration.
You must specify a UserPoolArn
, and optionally, a ClientId
.
"
+ "documentation":"Specifies the details required to communicate with the identity provider (IdP) associated with this identity source.
"
},
"principalEntityType":{
"shape":"PrincipalEntityType",
@@ -1295,6 +1324,12 @@
"pattern":".*",
"sensitive":true
},
+ "EntityIdPrefix":{
+ "type":"string",
+ "max":100,
+ "min":1,
+ "sensitive":true
+ },
"EntityIdentifier":{
"type":"structure",
"required":[
@@ -1327,7 +1362,7 @@
},
"parents":{
"shape":"ParentList",
- "documentation":"The parents in the hierarchy that contains the entity.
"
+ "documentation":"The parent entities in the hierarchy that contains the entity. A principal or resource entity can be defined with at most 99 transitive parents per authorization request.
A transitive parent is an entity in the hierarchy of entities including all direct parents, and parents of parents. For example, a user can be a member of 91 groups if one of those groups is a member of eight groups, for a total of 100: one entity, 91 entity parents, and eight parents of parents.
"
}
},
"documentation":"Contains information about an entity that can be referenced in a Cedar policy.
This data type is used as one of the fields in the EntitiesDefinition structure.
{ \"identifier\": { \"entityType\": \"Photo\", \"entityId\": \"VacationPhoto94.jpg\" }, \"attributes\": {}, \"parents\": [ { \"entityType\": \"Album\", \"entityId\": \"alice_folder\" } ] }
"
@@ -2081,15 +2116,274 @@
"min":1,
"pattern":"[A-Za-z0-9-_=+/\\.]*"
},
+ "OpenIdConnectAccessTokenConfiguration":{
+ "type":"structure",
+ "members":{
+ "principalIdClaim":{
+ "shape":"Claim",
+ "documentation":"The claim that determines the principal in OIDC access tokens. For example, sub
.
"
+ },
+ "audiences":{
+ "shape":"Audiences",
+ "documentation":"The access token aud
claim values that you want to accept in your policy store. For example, https://myapp.example.com, https://myapp2.example.com
.
"
+ }
+ },
+ "documentation":"The configuration of an OpenID Connect (OIDC) identity source for handling access token claims. Contains the claim that you want to identify as the principal in an authorization request, and the values of the aud
claim, or audiences, that you want to accept.
This data type is part of a OpenIdConnectTokenSelection structure, which is a parameter of CreateIdentitySource.
"
+ },
+ "OpenIdConnectAccessTokenConfigurationDetail":{
+ "type":"structure",
+ "members":{
+ "principalIdClaim":{
+ "shape":"Claim",
+ "documentation":"The claim that determines the principal in OIDC access tokens. For example, sub
.
"
+ },
+ "audiences":{
+ "shape":"Audiences",
+ "documentation":"The access token aud
claim values that you want to accept in your policy store. For example, https://myapp.example.com, https://myapp2.example.com
.
"
+ }
+ },
+ "documentation":"The configuration of an OpenID Connect (OIDC) identity source for handling access token claims. Contains the claim that you want to identify as the principal in an authorization request, and the values of the aud
claim, or audiences, that you want to accept.
This data type is part of a OpenIdConnectTokenSelectionDetail structure, which is a parameter of GetIdentitySource.
"
+ },
+ "OpenIdConnectAccessTokenConfigurationItem":{
+ "type":"structure",
+ "members":{
+ "principalIdClaim":{
+ "shape":"Claim",
+ "documentation":"The claim that determines the principal in OIDC access tokens. For example, sub
.
"
+ },
+ "audiences":{
+ "shape":"Audiences",
+ "documentation":"The access token aud
claim values that you want to accept in your policy store. For example, https://myapp.example.com, https://myapp2.example.com
.
"
+ }
+ },
+ "documentation":"The configuration of an OpenID Connect (OIDC) identity source for handling access token claims. Contains the claim that you want to identify as the principal in an authorization request, and the values of the aud
claim, or audiences, that you want to accept.
This data type is part of a OpenIdConnectTokenSelectionItem structure, which is a parameter of ListIdentitySources.
"
+ },
+ "OpenIdConnectConfiguration":{
+ "type":"structure",
+ "required":[
+ "issuer",
+ "tokenSelection"
+ ],
+ "members":{
+ "issuer":{
+ "shape":"Issuer",
+ "documentation":"The issuer URL of an OIDC identity provider. This URL must have an OIDC discovery endpoint at the path .well-known/openid-configuration
.
"
+ },
+ "entityIdPrefix":{
+ "shape":"EntityIdPrefix",
+ "documentation":"A descriptive string that you want to prefix to user entities from your OIDC identity provider. For example, if you set an entityIdPrefix
of MyOIDCProvider
, you can reference principals in your policies in the format MyCorp::User::MyOIDCProvider|Carlos
.
"
+ },
+ "groupConfiguration":{
+ "shape":"OpenIdConnectGroupConfiguration",
+ "documentation":"The claim in OIDC identity provider tokens that indicates a user's group membership, and the entity type that you want to map it to. For example, this object can map the contents of a groups
claim to MyCorp::UserGroup
.
"
+ },
+ "tokenSelection":{
+ "shape":"OpenIdConnectTokenSelection",
+ "documentation":"The token type that you want to process from your OIDC identity provider. Your policy store can process either identity (ID) or access tokens from a given OIDC identity source.
"
+ }
+ },
+ "documentation":"Contains configuration details of an OpenID Connect (OIDC) identity provider, or identity source, that Verified Permissions can use to generate entities from authenticated identities. It specifies the issuer URL, token type that you want to use, and policy store entity details.
This data type is part of a Configuration structure, which is a parameter to CreateIdentitySource.
"
+ },
+ "OpenIdConnectConfigurationDetail":{
+ "type":"structure",
+ "required":[
+ "issuer",
+ "tokenSelection"
+ ],
+ "members":{
+ "issuer":{
+ "shape":"Issuer",
+ "documentation":"The issuer URL of an OIDC identity provider. This URL must have an OIDC discovery endpoint at the path .well-known/openid-configuration
.
"
+ },
+ "entityIdPrefix":{
+ "shape":"EntityIdPrefix",
+ "documentation":"A descriptive string that you want to prefix to user entities from your OIDC identity provider. For example, if you set an entityIdPrefix
of MyOIDCProvider
, you can reference principals in your policies in the format MyCorp::User::MyOIDCProvider|Carlos
.
"
+ },
+ "groupConfiguration":{
+ "shape":"OpenIdConnectGroupConfigurationDetail",
+ "documentation":"The claim in OIDC identity provider tokens that indicates a user's group membership, and the entity type that you want to map it to. For example, this object can map the contents of a groups
claim to MyCorp::UserGroup
.
"
+ },
+ "tokenSelection":{
+ "shape":"OpenIdConnectTokenSelectionDetail",
+ "documentation":"The token type that you want to process from your OIDC identity provider. Your policy store can process either identity (ID) or access tokens from a given OIDC identity source.
"
+ }
+ },
+ "documentation":"Contains configuration details of an OpenID Connect (OIDC) identity provider, or identity source, that Verified Permissions can use to generate entities from authenticated identities. It specifies the issuer URL, token type that you want to use, and policy store entity details.
This data type is part of a ConfigurationDetail structure, which is a parameter to GetIdentitySource.
"
+ },
+ "OpenIdConnectConfigurationItem":{
+ "type":"structure",
+ "required":[
+ "issuer",
+ "tokenSelection"
+ ],
+ "members":{
+ "issuer":{
+ "shape":"Issuer",
+ "documentation":"The issuer URL of an OIDC identity provider. This URL must have an OIDC discovery endpoint at the path .well-known/openid-configuration
.
"
+ },
+ "entityIdPrefix":{
+ "shape":"EntityIdPrefix",
+ "documentation":"A descriptive string that you want to prefix to user entities from your OIDC identity provider. For example, if you set an entityIdPrefix
of MyOIDCProvider
, you can reference principals in your policies in the format MyCorp::User::MyOIDCProvider|Carlos
.
"
+ },
+ "groupConfiguration":{
+ "shape":"OpenIdConnectGroupConfigurationItem",
+ "documentation":"The claim in OIDC identity provider tokens that indicates a user's group membership, and the entity type that you want to map it to. For example, this object can map the contents of a groups
claim to MyCorp::UserGroup
.
"
+ },
+ "tokenSelection":{
+ "shape":"OpenIdConnectTokenSelectionItem",
+ "documentation":"The token type that you want to process from your OIDC identity provider. Your policy store can process either identity (ID) or access tokens from a given OIDC identity source.
"
+ }
+ },
+ "documentation":"Contains configuration details of an OpenID Connect (OIDC) identity provider, or identity source, that Verified Permissions can use to generate entities from authenticated identities. It specifies the issuer URL, token type that you want to use, and policy store entity details.
This data type is part of a ConfigurationItem structure, which is a parameter to ListIdentitySources.
"
+ },
+ "OpenIdConnectGroupConfiguration":{
+ "type":"structure",
+ "required":[
+ "groupClaim",
+ "groupEntityType"
+ ],
+ "members":{
+ "groupClaim":{
+ "shape":"Claim",
+ "documentation":"The token claim that you want Verified Permissions to interpret as group membership. For example, groups
.
"
+ },
+ "groupEntityType":{
+ "shape":"GroupEntityType",
+ "documentation":"The policy store entity type that you want to map your users' group claim to. For example, MyCorp::UserGroup
. A group entity type is an entity that can have a user entity type as a member.
"
+ }
+ },
+ "documentation":"The claim in OIDC identity provider tokens that indicates a user's group membership, and the entity type that you want to map it to. For example, this object can map the contents of a groups
claim to MyCorp::UserGroup
.
This data type is part of a OpenIdConnectConfiguration structure, which is a parameter of CreateIdentitySource.
"
+ },
+ "OpenIdConnectGroupConfigurationDetail":{
+ "type":"structure",
+ "required":[
+ "groupClaim",
+ "groupEntityType"
+ ],
+ "members":{
+ "groupClaim":{
+ "shape":"Claim",
+ "documentation":"The token claim that you want Verified Permissions to interpret as group membership. For example, groups
.
"
+ },
+ "groupEntityType":{
+ "shape":"GroupEntityType",
+ "documentation":"The policy store entity type that you want to map your users' group claim to. For example, MyCorp::UserGroup
. A group entity type is an entity that can have a user entity type as a member.
"
+ }
+ },
+ "documentation":"The claim in OIDC identity provider tokens that indicates a user's group membership, and the entity type that you want to map it to. For example, this object can map the contents of a groups
claim to MyCorp::UserGroup
.
This data type is part of a OpenIdConnectConfigurationDetail structure, which is a parameter of GetIdentitySource.
"
+ },
+ "OpenIdConnectGroupConfigurationItem":{
+ "type":"structure",
+ "required":[
+ "groupClaim",
+ "groupEntityType"
+ ],
+ "members":{
+ "groupClaim":{
+ "shape":"Claim",
+ "documentation":"The token claim that you want Verified Permissions to interpret as group membership. For example, groups
.
"
+ },
+ "groupEntityType":{
+ "shape":"GroupEntityType",
+ "documentation":"The policy store entity type that you want to map your users' group claim to. For example, MyCorp::UserGroup
. A group entity type is an entity that can have a user entity type as a member.
"
+ }
+ },
+ "documentation":"The claim in OIDC identity provider tokens that indicates a user's group membership, and the entity type that you want to map it to. For example, this object can map the contents of a groups
claim to MyCorp::UserGroup
.
This data type is part of a OpenIdConnectConfigurationItem structure, which is a parameter of ListIdentitySourcea.
"
+ },
+ "OpenIdConnectIdentityTokenConfiguration":{
+ "type":"structure",
+ "members":{
+ "principalIdClaim":{
+ "shape":"Claim",
+ "documentation":"The claim that determines the principal in OIDC access tokens. For example, sub
.
"
+ },
+ "clientIds":{
+ "shape":"ClientIds",
+ "documentation":"The ID token audience, or client ID, claim values that you want to accept in your policy store from an OIDC identity provider. For example, 1example23456789, 2example10111213
.
"
+ }
+ },
+ "documentation":"The configuration of an OpenID Connect (OIDC) identity source for handling identity (ID) token claims. Contains the claim that you want to identify as the principal in an authorization request, and the values of the aud
claim, or audiences, that you want to accept.
This data type is part of a OpenIdConnectTokenSelection structure, which is a parameter of CreateIdentitySource.
"
+ },
+ "OpenIdConnectIdentityTokenConfigurationDetail":{
+ "type":"structure",
+ "members":{
+ "principalIdClaim":{
+ "shape":"Claim",
+ "documentation":"The claim that determines the principal in OIDC access tokens. For example, sub
.
"
+ },
+ "clientIds":{
+ "shape":"ClientIds",
+ "documentation":"The ID token audience, or client ID, claim values that you want to accept in your policy store from an OIDC identity provider. For example, 1example23456789, 2example10111213
.
"
+ }
+ },
+ "documentation":"The configuration of an OpenID Connect (OIDC) identity source for handling identity (ID) token claims. Contains the claim that you want to identify as the principal in an authorization request, and the values of the aud
claim, or audiences, that you want to accept.
This data type is part of a OpenIdConnectTokenSelectionDetail structure, which is a parameter of GetIdentitySource.
"
+ },
+ "OpenIdConnectIdentityTokenConfigurationItem":{
+ "type":"structure",
+ "members":{
+ "principalIdClaim":{
+ "shape":"Claim",
+ "documentation":"The claim that determines the principal in OIDC access tokens. For example, sub
.
"
+ },
+ "clientIds":{
+ "shape":"ClientIds",
+ "documentation":"The ID token audience, or client ID, claim values that you want to accept in your policy store from an OIDC identity provider. For example, 1example23456789, 2example10111213
.
"
+ }
+ },
+ "documentation":"The configuration of an OpenID Connect (OIDC) identity source for handling identity (ID) token claims. Contains the claim that you want to identify as the principal in an authorization request, and the values of the aud
claim, or audiences, that you want to accept.
This data type is part of a OpenIdConnectTokenSelectionItem structure, which is a parameter of ListIdentitySources.
"
+ },
+ "OpenIdConnectTokenSelection":{
+ "type":"structure",
+ "members":{
+ "accessTokenOnly":{
+ "shape":"OpenIdConnectAccessTokenConfiguration",
+ "documentation":"The OIDC configuration for processing access tokens. Contains allowed audience claims, for example https://auth.example.com
, and the claim that you want to map to the principal, for example sub
.
"
+ },
+ "identityTokenOnly":{
+ "shape":"OpenIdConnectIdentityTokenConfiguration",
+ "documentation":"The OIDC configuration for processing identity (ID) tokens. Contains allowed client ID claims, for example 1example23456789
, and the claim that you want to map to the principal, for example sub
.
"
+ }
+ },
+ "documentation":"The token type that you want to process from your OIDC identity provider. Your policy store can process either identity (ID) or access tokens from a given OIDC identity source.
This data type is part of a OpenIdConnectConfiguration structure, which is a parameter of CreateIdentitySource.
",
+ "union":true
+ },
+ "OpenIdConnectTokenSelectionDetail":{
+ "type":"structure",
+ "members":{
+ "accessTokenOnly":{
+ "shape":"OpenIdConnectAccessTokenConfigurationDetail",
+ "documentation":"The OIDC configuration for processing access tokens. Contains allowed audience claims, for example https://auth.example.com
, and the claim that you want to map to the principal, for example sub
.
"
+ },
+ "identityTokenOnly":{
+ "shape":"OpenIdConnectIdentityTokenConfigurationDetail",
+ "documentation":"The OIDC configuration for processing identity (ID) tokens. Contains allowed client ID claims, for example 1example23456789
, and the claim that you want to map to the principal, for example sub
.
"
+ }
+ },
+ "documentation":"The token type that you want to process from your OIDC identity provider. Your policy store can process either identity (ID) or access tokens from a given OIDC identity source.
This data type is part of a OpenIdConnectConfigurationDetail structure, which is a parameter of GetIdentitySource.
",
+ "union":true
+ },
+ "OpenIdConnectTokenSelectionItem":{
+ "type":"structure",
+ "members":{
+ "accessTokenOnly":{
+ "shape":"OpenIdConnectAccessTokenConfigurationItem",
+ "documentation":"The OIDC configuration for processing access tokens. Contains allowed audience claims, for example https://auth.example.com
, and the claim that you want to map to the principal, for example sub
.
"
+ },
+ "identityTokenOnly":{
+ "shape":"OpenIdConnectIdentityTokenConfigurationItem",
+ "documentation":"The OIDC configuration for processing identity (ID) tokens. Contains allowed client ID claims, for example 1example23456789
, and the claim that you want to map to the principal, for example sub
.
"
+ }
+ },
+ "documentation":"The token type that you want to process from your OIDC identity provider. Your policy store can process either identity (ID) or access tokens from a given OIDC identity source.
This data type is part of a OpenIdConnectConfigurationItem structure, which is a parameter of ListIdentitySources.
",
+ "union":true
+ },
"OpenIdIssuer":{
"type":"string",
"enum":["COGNITO"]
},
"ParentList":{
"type":"list",
- "member":{"shape":"EntityIdentifier"},
- "max":100,
- "min":0
+ "member":{"shape":"EntityIdentifier"}
},
"PolicyDefinition":{
"type":"structure",
@@ -2674,9 +2968,13 @@
"cognitoUserPoolConfiguration":{
"shape":"UpdateCognitoUserPoolConfiguration",
"documentation":"Contains configuration details of a Amazon Cognito user pool.
"
+ },
+ "openIdConnectConfiguration":{
+ "shape":"UpdateOpenIdConnectConfiguration",
+ "documentation":"Contains configuration details of an OpenID Connect (OIDC) identity provider, or identity source, that Verified Permissions can use to generate entities from authenticated identities. It specifies the issuer URL, token type that you want to use, and policy store entity details.
"
}
},
- "documentation":"Contains an updated configuration to replace the configuration in an existing identity source.
At this time, the only valid member of this structure is a Amazon Cognito user pool configuration.
You must specify a userPoolArn
, and optionally, a ClientId
.
",
+ "documentation":"Contains an update to replace the configuration in an existing identity source.
",
"union":true
},
"UpdateIdentitySourceInput":{
@@ -2732,6 +3030,93 @@
}
}
},
+ "UpdateOpenIdConnectAccessTokenConfiguration":{
+ "type":"structure",
+ "members":{
+ "principalIdClaim":{
+ "shape":"Claim",
+ "documentation":"The claim that determines the principal in OIDC access tokens. For example, sub
.
"
+ },
+ "audiences":{
+ "shape":"Audiences",
+ "documentation":"The access token aud
claim values that you want to accept in your policy store. For example, https://myapp.example.com, https://myapp2.example.com
.
"
+ }
+ },
+ "documentation":"The configuration of an OpenID Connect (OIDC) identity source for handling access token claims. Contains the claim that you want to identify as the principal in an authorization request, and the values of the aud
claim, or audiences, that you want to accept.
This data type is part of a UpdateOpenIdConnectTokenSelection structure, which is a parameter to UpdateIdentitySource.
"
+ },
+ "UpdateOpenIdConnectConfiguration":{
+ "type":"structure",
+ "required":[
+ "issuer",
+ "tokenSelection"
+ ],
+ "members":{
+ "issuer":{
+ "shape":"Issuer",
+ "documentation":"The issuer URL of an OIDC identity provider. This URL must have an OIDC discovery endpoint at the path .well-known/openid-configuration
.
"
+ },
+ "entityIdPrefix":{
+ "shape":"EntityIdPrefix",
+ "documentation":"A descriptive string that you want to prefix to user entities from your OIDC identity provider. For example, if you set an entityIdPrefix
of MyOIDCProvider
, you can reference principals in your policies in the format MyCorp::User::MyOIDCProvider|Carlos
.
"
+ },
+ "groupConfiguration":{
+ "shape":"UpdateOpenIdConnectGroupConfiguration",
+ "documentation":"The claim in OIDC identity provider tokens that indicates a user's group membership, and the entity type that you want to map it to. For example, this object can map the contents of a groups
claim to MyCorp::UserGroup
.
"
+ },
+ "tokenSelection":{
+ "shape":"UpdateOpenIdConnectTokenSelection",
+ "documentation":"The token type that you want to process from your OIDC identity provider. Your policy store can process either identity (ID) or access tokens from a given OIDC identity source.
"
+ }
+ },
+ "documentation":"Contains configuration details of an OpenID Connect (OIDC) identity provider, or identity source, that Verified Permissions can use to generate entities from authenticated identities. It specifies the issuer URL, token type that you want to use, and policy store entity details.
This data type is part of a UpdateConfiguration structure, which is a parameter to UpdateIdentitySource.
"
+ },
+ "UpdateOpenIdConnectGroupConfiguration":{
+ "type":"structure",
+ "required":[
+ "groupClaim",
+ "groupEntityType"
+ ],
+ "members":{
+ "groupClaim":{
+ "shape":"Claim",
+ "documentation":"The token claim that you want Verified Permissions to interpret as group membership. For example, groups
.
"
+ },
+ "groupEntityType":{
+ "shape":"GroupEntityType",
+ "documentation":"The policy store entity type that you want to map your users' group claim to. For example, MyCorp::UserGroup
. A group entity type is an entity that can have a user entity type as a member.
"
+ }
+ },
+ "documentation":"The claim in OIDC identity provider tokens that indicates a user's group membership, and the entity type that you want to map it to. For example, this object can map the contents of a groups
claim to MyCorp::UserGroup
.
This data type is part of a UpdateOpenIdConnectConfiguration structure, which is a parameter to UpdateIdentitySource.
"
+ },
+ "UpdateOpenIdConnectIdentityTokenConfiguration":{
+ "type":"structure",
+ "members":{
+ "principalIdClaim":{
+ "shape":"Claim",
+ "documentation":"The claim that determines the principal in OIDC access tokens. For example, sub
.
"
+ },
+ "clientIds":{
+ "shape":"ClientIds",
+ "documentation":"The ID token audience, or client ID, claim values that you want to accept in your policy store from an OIDC identity provider. For example, 1example23456789, 2example10111213
.
"
+ }
+ },
+ "documentation":"The configuration of an OpenID Connect (OIDC) identity source for handling identity (ID) token claims. Contains the claim that you want to identify as the principal in an authorization request, and the values of the aud
claim, or audiences, that you want to accept.
This data type is part of a UpdateOpenIdConnectTokenSelection structure, which is a parameter to UpdateIdentitySource.
"
+ },
+ "UpdateOpenIdConnectTokenSelection":{
+ "type":"structure",
+ "members":{
+ "accessTokenOnly":{
+ "shape":"UpdateOpenIdConnectAccessTokenConfiguration",
+ "documentation":"The OIDC configuration for processing access tokens. Contains allowed audience claims, for example https://auth.example.com
, and the claim that you want to map to the principal, for example sub
.
"
+ },
+ "identityTokenOnly":{
+ "shape":"UpdateOpenIdConnectIdentityTokenConfiguration",
+ "documentation":"The OIDC configuration for processing identity (ID) tokens. Contains allowed client ID claims, for example 1example23456789
, and the claim that you want to map to the principal, for example sub
.
"
+ }
+ },
+ "documentation":"The token type that you want to process from your OIDC identity provider. Your policy store can process either identity (ID) or access tokens from a given OIDC identity source.
This data type is part of a UpdateOpenIdConnectConfiguration structure, which is a parameter to UpdateIdentitySource.
",
+ "union":true
+ },
"UpdatePolicyDefinition":{
"type":"structure",
"members":{
From 168e94008c4d09909e0c0de4da4c9f3db4d32777 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Fri, 7 Jun 2024 18:07:12 +0000
Subject: [PATCH 25/30] AWS Audit Manager Update: New feature: common controls.
When creating custom controls, you can now use pre-grouped AWS data sources
based on common compliance themes. Also, the awsServices parameter is
deprecated because we now manage services in scope for you. If used, the
input is ignored and an empty list is returned.
---
.../feature-AWSAuditManager-cf022af.json | 6 +
.../codegen-resources/endpoint-rule-set.json | 40 +++---
.../codegen-resources/service-2.json | 121 ++++++++++++------
3 files changed, 110 insertions(+), 57 deletions(-)
create mode 100644 .changes/next-release/feature-AWSAuditManager-cf022af.json
diff --git a/.changes/next-release/feature-AWSAuditManager-cf022af.json b/.changes/next-release/feature-AWSAuditManager-cf022af.json
new file mode 100644
index 000000000000..135670636d07
--- /dev/null
+++ b/.changes/next-release/feature-AWSAuditManager-cf022af.json
@@ -0,0 +1,6 @@
+{
+ "type": "feature",
+ "category": "AWS Audit Manager",
+ "contributor": "",
+ "description": "New feature: common controls. When creating custom controls, you can now use pre-grouped AWS data sources based on common compliance themes. Also, the awsServices parameter is deprecated because we now manage services in scope for you. If used, the input is ignored and an empty list is returned."
+}
diff --git a/services/auditmanager/src/main/resources/codegen-resources/endpoint-rule-set.json b/services/auditmanager/src/main/resources/codegen-resources/endpoint-rule-set.json
index b38eb1c9a64e..3208bdbf6a1f 100644
--- a/services/auditmanager/src/main/resources/codegen-resources/endpoint-rule-set.json
+++ b/services/auditmanager/src/main/resources/codegen-resources/endpoint-rule-set.json
@@ -40,7 +40,6 @@
]
}
],
- "type": "tree",
"rules": [
{
"conditions": [
@@ -83,7 +82,8 @@
},
"type": "endpoint"
}
- ]
+ ],
+ "type": "tree"
},
{
"conditions": [
@@ -96,7 +96,6 @@
]
}
],
- "type": "tree",
"rules": [
{
"conditions": [
@@ -110,7 +109,6 @@
"assign": "PartitionResult"
}
],
- "type": "tree",
"rules": [
{
"conditions": [
@@ -133,7 +131,6 @@
]
}
],
- "type": "tree",
"rules": [
{
"conditions": [
@@ -168,7 +165,6 @@
]
}
],
- "type": "tree",
"rules": [
{
"conditions": [],
@@ -179,14 +175,16 @@
},
"type": "endpoint"
}
- ]
+ ],
+ "type": "tree"
},
{
"conditions": [],
"error": "FIPS and DualStack are enabled, but this partition does not support one or both",
"type": "error"
}
- ]
+ ],
+ "type": "tree"
},
{
"conditions": [
@@ -200,14 +198,12 @@
]
}
],
- "type": "tree",
"rules": [
{
"conditions": [
{
"fn": "booleanEquals",
"argv": [
- true,
{
"fn": "getAttr",
"argv": [
@@ -216,11 +212,11 @@
},
"supportsFIPS"
]
- }
+ },
+ true
]
}
],
- "type": "tree",
"rules": [
{
"conditions": [],
@@ -231,14 +227,16 @@
},
"type": "endpoint"
}
- ]
+ ],
+ "type": "tree"
},
{
"conditions": [],
"error": "FIPS is enabled but this partition does not support FIPS",
"type": "error"
}
- ]
+ ],
+ "type": "tree"
},
{
"conditions": [
@@ -252,7 +250,6 @@
]
}
],
- "type": "tree",
"rules": [
{
"conditions": [
@@ -272,7 +269,6 @@
]
}
],
- "type": "tree",
"rules": [
{
"conditions": [],
@@ -283,14 +279,16 @@
},
"type": "endpoint"
}
- ]
+ ],
+ "type": "tree"
},
{
"conditions": [],
"error": "DualStack is enabled but this partition does not support DualStack",
"type": "error"
}
- ]
+ ],
+ "type": "tree"
},
{
"conditions": [],
@@ -301,9 +299,11 @@
},
"type": "endpoint"
}
- ]
+ ],
+ "type": "tree"
}
- ]
+ ],
+ "type": "tree"
},
{
"conditions": [],
diff --git a/services/auditmanager/src/main/resources/codegen-resources/service-2.json b/services/auditmanager/src/main/resources/codegen-resources/service-2.json
index eb086df6fe6f..4ad7117fab91 100644
--- a/services/auditmanager/src/main/resources/codegen-resources/service-2.json
+++ b/services/auditmanager/src/main/resources/codegen-resources/service-2.json
@@ -122,7 +122,8 @@
{"shape":"ValidationException"},
{"shape":"AccessDeniedException"},
{"shape":"InternalServerException"},
- {"shape":"ServiceQuotaExceededException"}
+ {"shape":"ServiceQuotaExceededException"},
+ {"shape":"ThrottlingException"}
],
"documentation":" Creates an assessment in Audit Manager.
"
},
@@ -567,7 +568,7 @@
{"shape":"ValidationException"},
{"shape":"InternalServerException"}
],
- "documentation":"Gets a list of all of the Amazon Web Services that you can choose to include in your assessment. When you create an assessment, specify which of these services you want to include to narrow the assessment's scope.
"
+ "documentation":"Gets a list of the Amazon Web Services from which Audit Manager can collect evidence.
Audit Manager defines which Amazon Web Services are in scope for an assessment. Audit Manager infers this scope by examining the assessment’s controls and their data sources, and then mapping this information to one or more of the corresponding Amazon Web Services that are in this list.
For information about why it's no longer possible to specify services in scope manually, see I can't edit the services in scope for my assessment in the Troubleshooting section of the Audit Manager user guide.
"
},
"GetSettings":{
"name":"GetSettings",
@@ -673,7 +674,7 @@
{"shape":"InternalServerException"},
{"shape":"ValidationException"}
],
- "documentation":"Lists the latest analytics data for control domains across all of your active assessments.
A control domain is listed only if at least one of the controls within that domain collected evidence on the lastUpdated
date of controlDomainInsights
. If this condition isn’t met, no data is listed for that control domain.
"
+ "documentation":"Lists the latest analytics data for control domains across all of your active assessments.
Audit Manager supports the control domains that are provided by Amazon Web Services Control Catalog. For information about how to find a list of available control domains, see ListDomains
in the Amazon Web Services Control Catalog API Reference.
A control domain is listed only if at least one of the controls within that domain collected evidence on the lastUpdated
date of controlDomainInsights
. If this condition isn’t met, no data is listed for that control domain.
"
},
"ListControlDomainInsightsByAssessment":{
"name":"ListControlDomainInsightsByAssessment",
@@ -689,7 +690,7 @@
{"shape":"AccessDeniedException"},
{"shape":"InternalServerException"}
],
- "documentation":"Lists analytics data for control domains within a specified active assessment.
A control domain is listed only if at least one of the controls within that domain collected evidence on the lastUpdated
date of controlDomainInsights
. If this condition isn’t met, no data is listed for that domain.
"
+ "documentation":"Lists analytics data for control domains within a specified active assessment.
Audit Manager supports the control domains that are provided by Amazon Web Services Control Catalog. For information about how to find a list of available control domains, see ListDomains
in the Amazon Web Services Control Catalog API Reference.
A control domain is listed only if at least one of the controls within that domain collected evidence on the lastUpdated
date of controlDomainInsights
. If this condition isn’t met, no data is listed for that domain.
"
},
"ListControlInsightsByControlDomain":{
"name":"ListControlInsightsByControlDomain",
@@ -735,7 +736,7 @@
{"shape":"ValidationException"},
{"shape":"InternalServerException"}
],
- "documentation":" Returns a list of keywords that are pre-mapped to the specified control data source.
"
+ "documentation":"Returns a list of keywords that are pre-mapped to the specified control data source.
"
},
"ListNotifications":{
"name":"ListNotifications",
@@ -858,7 +859,8 @@
{"shape":"ResourceNotFoundException"},
{"shape":"ValidationException"},
{"shape":"AccessDeniedException"},
- {"shape":"InternalServerException"}
+ {"shape":"InternalServerException"},
+ {"shape":"ThrottlingException"}
],
"documentation":" Edits an Audit Manager assessment.
"
},
@@ -2073,10 +2075,20 @@
"tags":{
"shape":"TagMap",
"documentation":" The tags associated with the control.
"
+ },
+ "state":{
+ "shape":"ControlState",
+ "documentation":"The state of the control. The END_OF_SUPPORT
state is applicable to standard controls only. This state indicates that the standard control can still be used to collect evidence, but Audit Manager is no longer updating or maintaining that control.
"
}
},
"documentation":" A control in Audit Manager.
"
},
+ "ControlCatalogId":{
+ "type":"string",
+ "max":2048,
+ "min":13,
+ "pattern":"^arn:.*:controlcatalog:.*|UNCATEGORIZED"
+ },
"ControlComment":{
"type":"structure",
"members":{
@@ -2108,18 +2120,25 @@
"ControlDescription":{
"type":"string",
"max":1000,
- "pattern":"^[\\w\\W\\s\\S]*$"
+ "pattern":"^[\\w\\W\\s\\S]*$",
+ "sensitive":true
+ },
+ "ControlDomainId":{
+ "type":"string",
+ "max":2048,
+ "min":13,
+ "pattern":"^arn:.*:controlcatalog:.*:.*:domain/.*|UNCATEGORIZED|^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}$"
},
"ControlDomainInsights":{
"type":"structure",
"members":{
"name":{
- "shape":"NonEmptyString",
+ "shape":"String",
"documentation":"The name of the control domain.
"
},
"id":{
- "shape":"UUID",
- "documentation":"The unique identifier for the control domain.
"
+ "shape":"ControlDomainId",
+ "documentation":"The unique identifier for the control domain. Audit Manager supports the control domains that are provided by Amazon Web Services Control Catalog. For information about how to find a list of available control domains, see ListDomains
in the Amazon Web Services Control Catalog API Reference.
"
},
"controlsCountByNoncompliantEvidence":{
"shape":"NullableInteger",
@@ -2156,11 +2175,11 @@
"type":"structure",
"members":{
"name":{
- "shape":"NonEmptyString",
+ "shape":"String",
"documentation":"The name of the assessment control.
"
},
"id":{
- "shape":"UUID",
+ "shape":"ControlDomainId",
"documentation":"The unique identifier for the assessment control.
"
},
"evidenceInsights":{
@@ -2182,11 +2201,11 @@
"type":"structure",
"members":{
"name":{
- "shape":"NonEmptyString",
+ "shape":"String",
"documentation":"The name of the control.
"
},
"id":{
- "shape":"UUID",
+ "shape":"ControlDomainId",
"documentation":"The unique identifier for the control.
"
},
"evidenceInsights":{
@@ -2217,11 +2236,11 @@
},
"sourceSetUpOption":{
"shape":"SourceSetUpOption",
- "documentation":" The setup option for the data source. This option reflects if the evidence collection is automated or manual.
"
+ "documentation":"The setup option for the data source. This option reflects if the evidence collection method is automated or manual. If you don’t provide a value for sourceSetUpOption
, Audit Manager automatically infers and populates the correct value based on the sourceType
that you specify.
"
},
"sourceType":{
"shape":"SourceType",
- "documentation":" Specifies one of the five data source types for evidence collection.
"
+ "documentation":" Specifies which type of data source is used to collect evidence.
-
The source can be an individual data source type, such as AWS_Cloudtrail
, AWS_Config
, AWS_Security_Hub
, AWS_API_Call
, or MANUAL
.
-
The source can also be a managed grouping of data sources, such as a Core_Control
or a Common_Control
.
"
},
"sourceKeyword":{"shape":"SourceKeyword"},
"sourceFrequency":{
@@ -2340,6 +2359,13 @@
"min":1,
"pattern":"^[a-zA-Z_0-9-\\s.,]+$"
},
+ "ControlState":{
+ "type":"string",
+ "enum":[
+ "ACTIVE",
+ "END_OF_SUPPORT"
+ ]
+ },
"ControlStatus":{
"type":"string",
"enum":[
@@ -2352,7 +2378,8 @@
"type":"string",
"enum":[
"Standard",
- "Custom"
+ "Custom",
+ "Core"
]
},
"Controls":{
@@ -2527,11 +2554,11 @@
},
"sourceSetUpOption":{
"shape":"SourceSetUpOption",
- "documentation":" The setup option for the data source, which reflects if the evidence collection is automated or manual.
"
+ "documentation":"The setup option for the data source. This option reflects if the evidence collection method is automated or manual. If you don’t provide a value for sourceSetUpOption
, Audit Manager automatically infers and populates the correct value based on the sourceType
that you specify.
"
},
"sourceType":{
"shape":"SourceType",
- "documentation":" Specifies one of the five types of data sources for evidence collection.
"
+ "documentation":" Specifies which type of data source is used to collect evidence.
-
The source can be an individual data source type, such as AWS_Cloudtrail
, AWS_Config
, AWS_Security_Hub
, AWS_API_Call
, or MANUAL
.
-
The source can also be a managed grouping of data sources, such as a Core_Control
or a Common_Control
.
"
},
"sourceKeyword":{"shape":"SourceKeyword"},
"sourceFrequency":{
@@ -2543,7 +2570,7 @@
"documentation":" The instructions for troubleshooting the control.
"
}
},
- "documentation":" The control mapping fields that represent the source for evidence collection, along with related parameters and metadata. This doesn't contain mappingID
.
"
+ "documentation":"The mapping attributes that determine the evidence source for a given control, along with related parameters and metadata. This doesn't contain mappingID
.
"
},
"CreateControlMappingSources":{
"type":"list",
@@ -2632,6 +2659,16 @@
"pattern":"^[a-zA-Z0-9\\s-_()\\[\\]]+$",
"sensitive":true
},
+ "DataSourceType":{
+ "type":"string",
+ "enum":[
+ "AWS_Cloudtrail",
+ "AWS_Config",
+ "AWS_Security_Hub",
+ "AWS_API_Call",
+ "MANUAL"
+ ]
+ },
"DefaultExportDestination":{
"type":"structure",
"members":{
@@ -3848,7 +3885,7 @@
"type":"string",
"max":100,
"min":1,
- "pattern":"^[a-zA-Z_0-9-\\s().]+$"
+ "pattern":"^[a-zA-Z_0-9-\\s().:\\/]+$"
},
"Keywords":{
"type":"list",
@@ -3875,8 +3912,8 @@
],
"members":{
"controlDomainId":{
- "shape":"UUID",
- "documentation":"The unique identifier for the control domain.
",
+ "shape":"ControlDomainId",
+ "documentation":"The unique identifier for the control domain.
Audit Manager supports the control domains that are provided by Amazon Web Services Control Catalog. For information about how to find a list of available control domains, see ListDomains
in the Amazon Web Services Control Catalog API Reference.
",
"location":"querystring",
"locationName":"controlDomainId"
},
@@ -4129,8 +4166,8 @@
"required":["controlDomainId"],
"members":{
"controlDomainId":{
- "shape":"UUID",
- "documentation":"The unique identifier for the control domain.
",
+ "shape":"ControlDomainId",
+ "documentation":"The unique identifier for the control domain.
Audit Manager supports the control domains that are provided by Amazon Web Services Control Catalog. For information about how to find a list of available control domains, see ListDomains
in the Amazon Web Services Control Catalog API Reference.
",
"location":"querystring",
"locationName":"controlDomainId"
},
@@ -4167,21 +4204,27 @@
"members":{
"controlType":{
"shape":"ControlType",
- "documentation":" The type of control, such as a standard control or a custom control.
",
+ "documentation":"A filter that narrows the list of controls to a specific type.
",
"location":"querystring",
"locationName":"controlType"
},
"nextToken":{
"shape":"Token",
- "documentation":" The pagination token that's used to fetch the next set of results.
",
+ "documentation":"The pagination token that's used to fetch the next set of results.
",
"location":"querystring",
"locationName":"nextToken"
},
"maxResults":{
"shape":"MaxResults",
- "documentation":" Represents the maximum number of results on a page or for an API request call.
",
+ "documentation":"The maximum number of results on a page or for an API request call.
",
"location":"querystring",
"locationName":"maxResults"
+ },
+ "controlCatalogId":{
+ "shape":"ControlCatalogId",
+ "documentation":"A filter that narrows the list of controls to a specific resource from the Amazon Web Services Control Catalog.
To use this parameter, specify the ARN of the Control Catalog resource. You can specify either a control domain, a control objective, or a common control. For information about how to find the ARNs for these resources, see ListDomains
, ListObjectives
, and ListCommonControls
.
You can only filter by one Control Catalog resource at a time. Specifying multiple resource ARNs isn’t currently supported. If you want to filter by more than one ARN, we recommend that you run the ListControls
operation separately for each ARN.
Alternatively, specify UNCATEGORIZED
to list controls that aren't mapped to a Control Catalog resource. For example, this operation might return a list of custom controls that don't belong to any control domain or control objective.
",
+ "location":"querystring",
+ "locationName":"controlCatalogId"
}
}
},
@@ -4194,7 +4237,7 @@
},
"nextToken":{
"shape":"Token",
- "documentation":" The pagination token that's used to fetch the next set of results.
"
+ "documentation":"The pagination token that's used to fetch the next set of results.
"
}
}
},
@@ -4203,8 +4246,8 @@
"required":["source"],
"members":{
"source":{
- "shape":"SourceType",
- "documentation":" The control mapping data source that the keywords apply to.
",
+ "shape":"DataSourceType",
+ "documentation":"The control mapping data source that the keywords apply to.
",
"location":"querystring",
"locationName":"source"
},
@@ -4227,7 +4270,7 @@
"members":{
"keywords":{
"shape":"Keywords",
- "documentation":" The list of keywords for the event mapping source.
"
+ "documentation":"The list of keywords for the control mapping source.
"
},
"nextToken":{
"shape":"Token",
@@ -4540,10 +4583,12 @@
},
"awsServices":{
"shape":"AWSServices",
- "documentation":" The Amazon Web Services services that are included in the scope of the assessment.
"
+ "documentation":" The Amazon Web Services services that are included in the scope of the assessment.
This API parameter is no longer supported. If you use this parameter to specify one or more Amazon Web Services, Audit Manager ignores this input. Instead, the value for awsServices
will show as empty.
",
+ "deprecated":true,
+ "deprecatedMessage":"You can't specify services in scope when creating/updating an assessment. If you use the parameter to specify one or more AWS services, Audit Manager ignores the input. Instead the value of the parameter will show as empty indicating that the services are defined and managed by Audit Manager."
}
},
- "documentation":" The wrapper that contains the Amazon Web Services accounts and services that are in scope for the assessment.
",
+ "documentation":" The wrapper that contains the Amazon Web Services accounts that are in scope for the assessment.
You no longer need to specify which Amazon Web Services are in scope when you create or update an assessment. Audit Manager infers the services in scope by examining your assessment controls and their data sources, and then mapping this information to the relevant Amazon Web Services.
If an underlying data source changes for your assessment, we automatically update the services scope as needed to reflect the correct Amazon Web Services. This ensures that your assessment collects accurate and comprehensive evidence about all of the relevant services in your AWS environment.
",
"sensitive":true
},
"ServiceMetadata":{
@@ -4701,7 +4746,7 @@
},
"SourceName":{
"type":"string",
- "max":100,
+ "max":300,
"min":1
},
"SourceSetUpOption":{
@@ -4718,7 +4763,9 @@
"AWS_Config",
"AWS_Security_Hub",
"AWS_API_Call",
- "MANUAL"
+ "MANUAL",
+ "Common_Control",
+ "Core_Control"
]
},
"StartAssessmentFrameworkShareRequest":{
@@ -4826,7 +4873,7 @@
"message":{"shape":"String"}
},
"documentation":"The request was denied due to request throttling.
",
- "error":{"httpStatusCode":400},
+ "error":{"httpStatusCode":429},
"exception":true
},
"Timestamp":{"type":"timestamp"},
From 076acb838ae0c7e3a946e4767548f33527c11673 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Fri, 7 Jun 2024 18:07:16 +0000
Subject: [PATCH 26/30] AWS B2B Data Interchange Update: Added exceptions to
B2Bi List operations and ConflictException to B2Bi StartTransformerJob
operation. Also made capabilities field explicitly required when creating a
Partnership.
---
...feature-AWSB2BDataInterchange-4c76a40.json | 6 +++++
.../codegen-resources/service-2.json | 24 ++++++++++++++++++-
2 files changed, 29 insertions(+), 1 deletion(-)
create mode 100644 .changes/next-release/feature-AWSB2BDataInterchange-4c76a40.json
diff --git a/.changes/next-release/feature-AWSB2BDataInterchange-4c76a40.json b/.changes/next-release/feature-AWSB2BDataInterchange-4c76a40.json
new file mode 100644
index 000000000000..32588b95b30f
--- /dev/null
+++ b/.changes/next-release/feature-AWSB2BDataInterchange-4c76a40.json
@@ -0,0 +1,6 @@
+{
+ "type": "feature",
+ "category": "AWS B2B Data Interchange",
+ "contributor": "",
+ "description": "Added exceptions to B2Bi List operations and ConflictException to B2Bi StartTransformerJob operation. Also made capabilities field explicitly required when creating a Partnership."
+}
diff --git a/services/b2bi/src/main/resources/codegen-resources/service-2.json b/services/b2bi/src/main/resources/codegen-resources/service-2.json
index 7031d351e95e..85839cbfbaff 100644
--- a/services/b2bi/src/main/resources/codegen-resources/service-2.json
+++ b/services/b2bi/src/main/resources/codegen-resources/service-2.json
@@ -2,9 +2,11 @@
"version":"2.0",
"metadata":{
"apiVersion":"2022-06-23",
+ "auth":["aws.auth#sigv4"],
"endpointPrefix":"b2bi",
"jsonVersion":"1.0",
"protocol":"json",
+ "protocols":["json"],
"serviceAbbreviation":"AWS B2BI",
"serviceFullName":"AWS B2B Data Interchange",
"serviceId":"b2bi",
@@ -259,6 +261,12 @@
},
"input":{"shape":"ListCapabilitiesRequest"},
"output":{"shape":"ListCapabilitiesResponse"},
+ "errors":[
+ {"shape":"AccessDeniedException"},
+ {"shape":"ValidationException"},
+ {"shape":"ThrottlingException"},
+ {"shape":"InternalServerException"}
+ ],
"documentation":"Lists the capabilities associated with your Amazon Web Services account for your current or specified region. A trading capability contains the information required to transform incoming EDI documents into JSON or XML outputs.
"
},
"ListPartnerships":{
@@ -286,6 +294,12 @@
},
"input":{"shape":"ListProfilesRequest"},
"output":{"shape":"ListProfilesResponse"},
+ "errors":[
+ {"shape":"AccessDeniedException"},
+ {"shape":"ValidationException"},
+ {"shape":"ThrottlingException"},
+ {"shape":"InternalServerException"}
+ ],
"documentation":"Lists the profiles associated with your Amazon Web Services account for your current or specified region. A profile is the mechanism used to create the concept of a private network.
"
},
"ListTagsForResource":{
@@ -311,6 +325,12 @@
},
"input":{"shape":"ListTransformersRequest"},
"output":{"shape":"ListTransformersResponse"},
+ "errors":[
+ {"shape":"AccessDeniedException"},
+ {"shape":"ValidationException"},
+ {"shape":"ThrottlingException"},
+ {"shape":"InternalServerException"}
+ ],
"documentation":"Lists the available transformers. A transformer describes how to process the incoming EDI documents and extract the necessary information to the output file.
"
},
"StartTransformerJob":{
@@ -322,6 +342,7 @@
"input":{"shape":"StartTransformerJobRequest"},
"output":{"shape":"StartTransformerJobResponse"},
"errors":[
+ {"shape":"ConflictException"},
{"shape":"AccessDeniedException"},
{"shape":"ValidationException"},
{"shape":"ThrottlingException"},
@@ -655,7 +676,8 @@
"required":[
"profileId",
"name",
- "email"
+ "email",
+ "capabilities"
],
"members":{
"profileId":{
From 15d678fce79a59892e739a32ce024c8e13169708 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Fri, 7 Jun 2024 18:08:28 +0000
Subject: [PATCH 27/30] Updated endpoints.json and partitions.json.
---
.../feature-AWSSDKforJavav2-0443982.json | 6 ++
.../regions/internal/region/endpoints.json | 68 ++++++++++++++++++-
2 files changed, 73 insertions(+), 1 deletion(-)
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 ddc93c85e14f..24ae0282309b 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
@@ -2682,6 +2682,12 @@
},
"hostname" : "bedrock.ap-southeast-2.amazonaws.com"
},
+ "bedrock-ca-central-1" : {
+ "credentialScope" : {
+ "region" : "ca-central-1"
+ },
+ "hostname" : "bedrock.ca-central-1.amazonaws.com"
+ },
"bedrock-eu-central-1" : {
"credentialScope" : {
"region" : "eu-central-1"
@@ -2694,6 +2700,12 @@
},
"hostname" : "bedrock.eu-west-1.amazonaws.com"
},
+ "bedrock-eu-west-2" : {
+ "credentialScope" : {
+ "region" : "eu-west-2"
+ },
+ "hostname" : "bedrock.eu-west-2.amazonaws.com"
+ },
"bedrock-eu-west-3" : {
"credentialScope" : {
"region" : "eu-west-3"
@@ -2736,6 +2748,12 @@
},
"hostname" : "bedrock-runtime.ap-southeast-2.amazonaws.com"
},
+ "bedrock-runtime-ca-central-1" : {
+ "credentialScope" : {
+ "region" : "ca-central-1"
+ },
+ "hostname" : "bedrock-runtime.ca-central-1.amazonaws.com"
+ },
"bedrock-runtime-eu-central-1" : {
"credentialScope" : {
"region" : "eu-central-1"
@@ -2748,6 +2766,12 @@
},
"hostname" : "bedrock-runtime.eu-west-1.amazonaws.com"
},
+ "bedrock-runtime-eu-west-2" : {
+ "credentialScope" : {
+ "region" : "eu-west-2"
+ },
+ "hostname" : "bedrock-runtime.eu-west-2.amazonaws.com"
+ },
"bedrock-runtime-eu-west-3" : {
"credentialScope" : {
"region" : "eu-west-3"
@@ -2766,6 +2790,12 @@
},
"hostname" : "bedrock-runtime-fips.us-west-2.amazonaws.com"
},
+ "bedrock-runtime-sa-east-1" : {
+ "credentialScope" : {
+ "region" : "sa-east-1"
+ },
+ "hostname" : "bedrock-runtime.sa-east-1.amazonaws.com"
+ },
"bedrock-runtime-us-east-1" : {
"credentialScope" : {
"region" : "us-east-1"
@@ -2778,6 +2808,12 @@
},
"hostname" : "bedrock-runtime.us-west-2.amazonaws.com"
},
+ "bedrock-sa-east-1" : {
+ "credentialScope" : {
+ "region" : "sa-east-1"
+ },
+ "hostname" : "bedrock.sa-east-1.amazonaws.com"
+ },
"bedrock-us-east-1" : {
"credentialScope" : {
"region" : "us-east-1"
@@ -2790,9 +2826,12 @@
},
"hostname" : "bedrock.us-west-2.amazonaws.com"
},
+ "ca-central-1" : { },
"eu-central-1" : { },
"eu-west-1" : { },
+ "eu-west-2" : { },
"eu-west-3" : { },
+ "sa-east-1" : { },
"us-east-1" : { },
"us-west-2" : { }
}
@@ -2832,6 +2871,8 @@
},
"cases" : {
"endpoints" : {
+ "ap-northeast-1" : { },
+ "ap-northeast-2" : { },
"ap-southeast-1" : { },
"ap-southeast-2" : { },
"ca-central-1" : { },
@@ -10288,9 +10329,21 @@
"ap-south-1" : { },
"ap-southeast-1" : { },
"ap-southeast-2" : { },
- "ca-central-1" : { },
+ "ca-central-1" : {
+ "variants" : [ {
+ "hostname" : "kendra-fips.ca-central-1.amazonaws.com",
+ "tags" : [ "fips" ]
+ } ]
+ },
"eu-west-1" : { },
"eu-west-2" : { },
+ "fips-ca-central-1" : {
+ "credentialScope" : {
+ "region" : "ca-central-1"
+ },
+ "deprecated" : true,
+ "hostname" : "kendra-fips.ca-central-1.amazonaws.com"
+ },
"fips-us-east-1" : {
"credentialScope" : {
"region" : "us-east-1"
@@ -18624,6 +18677,19 @@
"deprecated" : true,
"hostname" : "storagegateway-fips.ca-central-1.amazonaws.com"
},
+ "ca-west-1" : {
+ "variants" : [ {
+ "hostname" : "storagegateway-fips.ca-west-1.amazonaws.com",
+ "tags" : [ "fips" ]
+ } ]
+ },
+ "ca-west-1-fips" : {
+ "credentialScope" : {
+ "region" : "ca-west-1"
+ },
+ "deprecated" : true,
+ "hostname" : "storagegateway-fips.ca-west-1.amazonaws.com"
+ },
"eu-central-1" : { },
"eu-central-2" : { },
"eu-north-1" : { },
From 92428f7ee79a61ff4409f2d7efae47b48b13981d Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Fri, 7 Jun 2024 18:09:43 +0000
Subject: [PATCH 28/30] Release 2.25.69. Updated CHANGELOG.md, README.md and
all pom.xml.
---
.changes/2.25.69.json | 42 +++++++++++++++++++
.../feature-AWSAuditManager-cf022af.json | 6 ---
...feature-AWSB2BDataInterchange-4c76a40.json | 6 ---
.../feature-AWSCodePipeline-7c75236.json | 6 ---
.../feature-AWSSDKforJavav2-0443982.json | 6 ---
...eature-AmazonSageMakerService-64af295.json | 6 ---
...ure-AmazonVerifiedPermissions-5fbd7b1.json | 6 ---
CHANGELOG.md | 25 +++++++++++
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 +-
.../s3-event-notifications/pom.xml | 2 +-
services-custom/s3-transfer-manager/pom.xml | 2 +-
services/accessanalyzer/pom.xml | 2 +-
services/account/pom.xml | 2 +-
services/acm/pom.xml | 2 +-
services/acmpca/pom.xml | 2 +-
services/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/codeconnections/pom.xml | 2 +-
services/codedeploy/pom.xml | 2 +-
services/codeguruprofiler/pom.xml | 2 +-
services/codegurureviewer/pom.xml | 2 +-
services/codegurusecurity/pom.xml | 2 +-
services/codepipeline/pom.xml | 2 +-
services/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/controlcatalog/pom.xml | 2 +-
services/controltower/pom.xml | 2 +-
services/costandusagereport/pom.xml | 2 +-
services/costexplorer/pom.xml | 2 +-
services/costoptimizationhub/pom.xml | 2 +-
services/customerprofiles/pom.xml | 2 +-
services/databasemigration/pom.xml | 2 +-
services/databrew/pom.xml | 2 +-
services/dataexchange/pom.xml | 2 +-
services/datapipeline/pom.xml | 2 +-
services/datasync/pom.xml | 2 +-
services/datazone/pom.xml | 2 +-
services/dax/pom.xml | 2 +-
services/deadline/pom.xml | 2 +-
services/detective/pom.xml | 2 +-
services/devicefarm/pom.xml | 2 +-
services/devopsguru/pom.xml | 2 +-
services/directconnect/pom.xml | 2 +-
services/directory/pom.xml | 2 +-
services/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/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/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/mailmanager/pom.xml | 2 +-
services/managedblockchain/pom.xml | 2 +-
services/managedblockchainquery/pom.xml | 2 +-
services/marketplaceagreement/pom.xml | 2 +-
services/marketplacecatalog/pom.xml | 2 +-
services/marketplacecommerceanalytics/pom.xml | 2 +-
services/marketplacedeployment/pom.xml | 2 +-
services/marketplaceentitlement/pom.xml | 2 +-
services/marketplacemetering/pom.xml | 2 +-
services/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/route53profiles/pom.xml | 2 +-
services/route53recoverycluster/pom.xml | 2 +-
services/route53recoverycontrolconfig/pom.xml | 2 +-
services/route53recoveryreadiness/pom.xml | 2 +-
services/route53resolver/pom.xml | 2 +-
services/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/taxsettings/pom.xml | 2 +-
services/textract/pom.xml | 2 +-
services/timestreaminfluxdb/pom.xml | 2 +-
services/timestreamquery/pom.xml | 2 +-
services/timestreamwrite/pom.xml | 2 +-
services/tnb/pom.xml | 2 +-
services/transcribe/pom.xml | 2 +-
services/transcribestreaming/pom.xml | 2 +-
services/transfer/pom.xml | 2 +-
services/translate/pom.xml | 2 +-
services/trustedadvisor/pom.xml | 2 +-
services/verifiedpermissions/pom.xml | 2 +-
services/voiceid/pom.xml | 2 +-
services/vpclattice/pom.xml | 2 +-
services/waf/pom.xml | 2 +-
services/wafv2/pom.xml | 2 +-
services/wellarchitected/pom.xml | 2 +-
services/wisdom/pom.xml | 2 +-
services/workdocs/pom.xml | 2 +-
services/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/bundle-shading-tests/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, 533 insertions(+), 502 deletions(-)
create mode 100644 .changes/2.25.69.json
delete mode 100644 .changes/next-release/feature-AWSAuditManager-cf022af.json
delete mode 100644 .changes/next-release/feature-AWSB2BDataInterchange-4c76a40.json
delete mode 100644 .changes/next-release/feature-AWSCodePipeline-7c75236.json
delete mode 100644 .changes/next-release/feature-AWSSDKforJavav2-0443982.json
delete mode 100644 .changes/next-release/feature-AmazonSageMakerService-64af295.json
delete mode 100644 .changes/next-release/feature-AmazonVerifiedPermissions-5fbd7b1.json
diff --git a/.changes/2.25.69.json b/.changes/2.25.69.json
new file mode 100644
index 000000000000..ff9806b9b90d
--- /dev/null
+++ b/.changes/2.25.69.json
@@ -0,0 +1,42 @@
+{
+ "version": "2.25.69",
+ "date": "2024-06-07",
+ "entries": [
+ {
+ "type": "feature",
+ "category": "AWS Audit Manager",
+ "contributor": "",
+ "description": "New feature: common controls. When creating custom controls, you can now use pre-grouped AWS data sources based on common compliance themes. Also, the awsServices parameter is deprecated because we now manage services in scope for you. If used, the input is ignored and an empty list is returned."
+ },
+ {
+ "type": "feature",
+ "category": "AWS B2B Data Interchange",
+ "contributor": "",
+ "description": "Added exceptions to B2Bi List operations and ConflictException to B2Bi StartTransformerJob operation. Also made capabilities field explicitly required when creating a Partnership."
+ },
+ {
+ "type": "feature",
+ "category": "AWS CodePipeline",
+ "contributor": "",
+ "description": "CodePipeline now supports overriding S3 Source Object Key during StartPipelineExecution, as part of Source Overrides."
+ },
+ {
+ "type": "feature",
+ "category": "Amazon SageMaker Service",
+ "contributor": "",
+ "description": "This release introduces a new optional parameter: InferenceAmiVersion, in ProductionVariant."
+ },
+ {
+ "type": "feature",
+ "category": "Amazon Verified Permissions",
+ "contributor": "",
+ "description": "This release adds OpenIdConnect (OIDC) configuration support for IdentitySources, allowing for external IDPs to be used in authorization requests."
+ },
+ {
+ "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/feature-AWSAuditManager-cf022af.json b/.changes/next-release/feature-AWSAuditManager-cf022af.json
deleted file mode 100644
index 135670636d07..000000000000
--- a/.changes/next-release/feature-AWSAuditManager-cf022af.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "feature",
- "category": "AWS Audit Manager",
- "contributor": "",
- "description": "New feature: common controls. When creating custom controls, you can now use pre-grouped AWS data sources based on common compliance themes. Also, the awsServices parameter is deprecated because we now manage services in scope for you. If used, the input is ignored and an empty list is returned."
-}
diff --git a/.changes/next-release/feature-AWSB2BDataInterchange-4c76a40.json b/.changes/next-release/feature-AWSB2BDataInterchange-4c76a40.json
deleted file mode 100644
index 32588b95b30f..000000000000
--- a/.changes/next-release/feature-AWSB2BDataInterchange-4c76a40.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "feature",
- "category": "AWS B2B Data Interchange",
- "contributor": "",
- "description": "Added exceptions to B2Bi List operations and ConflictException to B2Bi StartTransformerJob operation. Also made capabilities field explicitly required when creating a Partnership."
-}
diff --git a/.changes/next-release/feature-AWSCodePipeline-7c75236.json b/.changes/next-release/feature-AWSCodePipeline-7c75236.json
deleted file mode 100644
index 5cf7b8fe72be..000000000000
--- a/.changes/next-release/feature-AWSCodePipeline-7c75236.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "feature",
- "category": "AWS CodePipeline",
- "contributor": "",
- "description": "CodePipeline now supports overriding S3 Source Object Key during StartPipelineExecution, as part of Source Overrides."
-}
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-AmazonSageMakerService-64af295.json b/.changes/next-release/feature-AmazonSageMakerService-64af295.json
deleted file mode 100644
index 768851bf4c52..000000000000
--- a/.changes/next-release/feature-AmazonSageMakerService-64af295.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "feature",
- "category": "Amazon SageMaker Service",
- "contributor": "",
- "description": "This release introduces a new optional parameter: InferenceAmiVersion, in ProductionVariant."
-}
diff --git a/.changes/next-release/feature-AmazonVerifiedPermissions-5fbd7b1.json b/.changes/next-release/feature-AmazonVerifiedPermissions-5fbd7b1.json
deleted file mode 100644
index 38114172f2ac..000000000000
--- a/.changes/next-release/feature-AmazonVerifiedPermissions-5fbd7b1.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "feature",
- "category": "Amazon Verified Permissions",
- "contributor": "",
- "description": "This release adds OpenIdConnect (OIDC) configuration support for IdentitySources, allowing for external IDPs to be used in authorization requests."
-}
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e31d36ea4faf..6d05836ed35d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,29 @@
#### 👋 _Looking for changelogs for older versions? You can find them in the [changelogs](./changelogs) directory._
+# __2.25.69__ __2024-06-07__
+## __AWS Audit Manager__
+ - ### Features
+ - New feature: common controls. When creating custom controls, you can now use pre-grouped AWS data sources based on common compliance themes. Also, the awsServices parameter is deprecated because we now manage services in scope for you. If used, the input is ignored and an empty list is returned.
+
+## __AWS B2B Data Interchange__
+ - ### Features
+ - Added exceptions to B2Bi List operations and ConflictException to B2Bi StartTransformerJob operation. Also made capabilities field explicitly required when creating a Partnership.
+
+## __AWS CodePipeline__
+ - ### Features
+ - CodePipeline now supports overriding S3 Source Object Key during StartPipelineExecution, as part of Source Overrides.
+
+## __AWS SDK for Java v2__
+ - ### Features
+ - Updated endpoint and partition metadata.
+
+## __Amazon SageMaker Service__
+ - ### Features
+ - This release introduces a new optional parameter: InferenceAmiVersion, in ProductionVariant.
+
+## __Amazon Verified Permissions__
+ - ### Features
+ - This release adds OpenIdConnect (OIDC) configuration support for IdentitySources, allowing for external IDPs to be used in authorization requests.
+
# __2.25.68__ __2024-06-06__
## __AWS Account__
- ### Features
diff --git a/README.md b/README.md
index 4efac9b3109f..80ad7d3173a4 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.25.68
+ 2.25.69
pom
import
@@ -86,12 +86,12 @@ Alternatively you can add dependencies for the specific services you use only:
software.amazon.awssdk
ec2
- 2.25.68
+ 2.25.69
software.amazon.awssdk
s3
- 2.25.68
+ 2.25.69
```
@@ -103,7 +103,7 @@ You can import the whole SDK into your project (includes *ALL* services). Please
software.amazon.awssdk
aws-sdk-java
- 2.25.68
+ 2.25.69
```
diff --git a/archetypes/archetype-app-quickstart/pom.xml b/archetypes/archetype-app-quickstart/pom.xml
index 006b357c6f01..4ad1a06e70c1 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.69-SNAPSHOT
+ 2.25.69
4.0.0
diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml
index 00be32b7bdd6..9a12d0b0f56e 100644
--- a/archetypes/archetype-lambda/pom.xml
+++ b/archetypes/archetype-lambda/pom.xml
@@ -20,7 +20,7 @@
archetypes
software.amazon.awssdk
- 2.25.69-SNAPSHOT
+ 2.25.69
4.0.0
archetype-lambda
diff --git a/archetypes/archetype-tools/pom.xml b/archetypes/archetype-tools/pom.xml
index aa27651310bb..7bf839b09eb4 100644
--- a/archetypes/archetype-tools/pom.xml
+++ b/archetypes/archetype-tools/pom.xml
@@ -20,7 +20,7 @@
archetypes
software.amazon.awssdk
- 2.25.69-SNAPSHOT
+ 2.25.69
4.0.0
diff --git a/archetypes/pom.xml b/archetypes/pom.xml
index f327fbaf3ec5..1564b4fc5bed 100644
--- a/archetypes/pom.xml
+++ b/archetypes/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.25.69-SNAPSHOT
+ 2.25.69
4.0.0
archetypes
diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml
index fb6423150db8..8473fb4ae528 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.69-SNAPSHOT
+ 2.25.69
../pom.xml
aws-sdk-java
diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml
index 2c3148602d05..561825ad2566 100644
--- a/bom-internal/pom.xml
+++ b/bom-internal/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.25.69-SNAPSHOT
+ 2.25.69
4.0.0
diff --git a/bom/pom.xml b/bom/pom.xml
index b608bcefb415..c13923c52aaf 100644
--- a/bom/pom.xml
+++ b/bom/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.69-SNAPSHOT
+ 2.25.69
../pom.xml
bom
diff --git a/bundle-logging-bridge/pom.xml b/bundle-logging-bridge/pom.xml
index ea1417d4b831..218c15e9122b 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.69-SNAPSHOT
+ 2.25.69
bundle-logging-bridge
jar
diff --git a/bundle-sdk/pom.xml b/bundle-sdk/pom.xml
index 4b9465226b9b..032c8445a07b 100644
--- a/bundle-sdk/pom.xml
+++ b/bundle-sdk/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.69-SNAPSHOT
+ 2.25.69
bundle-sdk
jar
diff --git a/bundle/pom.xml b/bundle/pom.xml
index b3aa0e3233b5..ace741b5d178 100644
--- a/bundle/pom.xml
+++ b/bundle/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.69-SNAPSHOT
+ 2.25.69
bundle
jar
diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml
index 40c1d5d6fee5..253a946582c5 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.69-SNAPSHOT
+ 2.25.69
../pom.xml
codegen-lite-maven-plugin
diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml
index 66516d381f63..caebb49ecfa5 100644
--- a/codegen-lite/pom.xml
+++ b/codegen-lite/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.69-SNAPSHOT
+ 2.25.69
codegen-lite
AWS Java SDK :: Code Generator Lite
diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml
index e6c33e54692a..1622b679168d 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.69-SNAPSHOT
+ 2.25.69
../pom.xml
codegen-maven-plugin
diff --git a/codegen/pom.xml b/codegen/pom.xml
index 8478301f4096..94c03108eed5 100644
--- a/codegen/pom.xml
+++ b/codegen/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.69-SNAPSHOT
+ 2.25.69
codegen
AWS Java SDK :: Code Generator
diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml
index bd1bb0935e37..7b1bb91ce210 100644
--- a/core/annotations/pom.xml
+++ b/core/annotations/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.25.69-SNAPSHOT
+ 2.25.69
4.0.0
diff --git a/core/arns/pom.xml b/core/arns/pom.xml
index 7d216fcda717..b0878f3c0ffd 100644
--- a/core/arns/pom.xml
+++ b/core/arns/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.25.69-SNAPSHOT
+ 2.25.69
4.0.0
diff --git a/core/auth-crt/pom.xml b/core/auth-crt/pom.xml
index 41e6be522963..21a4f48b8067 100644
--- a/core/auth-crt/pom.xml
+++ b/core/auth-crt/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.25.69-SNAPSHOT
+ 2.25.69
auth-crt
diff --git a/core/auth/pom.xml b/core/auth/pom.xml
index 62a3001f660e..72f496d099f4 100644
--- a/core/auth/pom.xml
+++ b/core/auth/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.25.69-SNAPSHOT
+ 2.25.69
auth
diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml
index 374060832498..41f1941f389d 100644
--- a/core/aws-core/pom.xml
+++ b/core/aws-core/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.25.69-SNAPSHOT
+ 2.25.69
aws-core
diff --git a/core/checksums-spi/pom.xml b/core/checksums-spi/pom.xml
index 1d9ae907202a..a31291a36d62 100644
--- a/core/checksums-spi/pom.xml
+++ b/core/checksums-spi/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.25.69-SNAPSHOT
+ 2.25.69
checksums-spi
diff --git a/core/checksums/pom.xml b/core/checksums/pom.xml
index fc229250b5c5..f15def8c8f50 100644
--- a/core/checksums/pom.xml
+++ b/core/checksums/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.25.69-SNAPSHOT
+ 2.25.69
checksums
diff --git a/core/crt-core/pom.xml b/core/crt-core/pom.xml
index faacdcba0c84..a56cf908834a 100644
--- a/core/crt-core/pom.xml
+++ b/core/crt-core/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
core
- 2.25.69-SNAPSHOT
+ 2.25.69
crt-core
diff --git a/core/endpoints-spi/pom.xml b/core/endpoints-spi/pom.xml
index 86f8f647bda9..4868bb8a91d0 100644
--- a/core/endpoints-spi/pom.xml
+++ b/core/endpoints-spi/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.25.69-SNAPSHOT
+ 2.25.69
4.0.0
diff --git a/core/http-auth-aws-crt/pom.xml b/core/http-auth-aws-crt/pom.xml
index fc5117786e48..48d814e67262 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.69-SNAPSHOT
+ 2.25.69
http-auth-aws-crt
diff --git a/core/http-auth-aws-eventstream/pom.xml b/core/http-auth-aws-eventstream/pom.xml
index 0de554ad9fc3..ed50cee4d48b 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.69-SNAPSHOT
+ 2.25.69
http-auth-aws-eventstream
diff --git a/core/http-auth-aws/pom.xml b/core/http-auth-aws/pom.xml
index ce4c841090c6..0ebd45d8d70d 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.69-SNAPSHOT
+ 2.25.69
http-auth-aws
diff --git a/core/http-auth-spi/pom.xml b/core/http-auth-spi/pom.xml
index 17e798c51c62..ab25e08a505a 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.69-SNAPSHOT
+ 2.25.69
http-auth-spi
diff --git a/core/http-auth/pom.xml b/core/http-auth/pom.xml
index 93b48cd3e0ea..e95dbe9dea40 100644
--- a/core/http-auth/pom.xml
+++ b/core/http-auth/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.25.69-SNAPSHOT
+ 2.25.69
http-auth
diff --git a/core/identity-spi/pom.xml b/core/identity-spi/pom.xml
index c30eae9e3ea4..390e3b2526fc 100644
--- a/core/identity-spi/pom.xml
+++ b/core/identity-spi/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.25.69-SNAPSHOT
+ 2.25.69
identity-spi
diff --git a/core/imds/pom.xml b/core/imds/pom.xml
index e277ccadceef..5be3a670c9e6 100644
--- a/core/imds/pom.xml
+++ b/core/imds/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.25.69-SNAPSHOT
+ 2.25.69
4.0.0
imds
diff --git a/core/json-utils/pom.xml b/core/json-utils/pom.xml
index 74fd35091f11..cfd3bf501dee 100644
--- a/core/json-utils/pom.xml
+++ b/core/json-utils/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.25.69-SNAPSHOT
+ 2.25.69
4.0.0
diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml
index f54830b9dcb0..d02666d038f4 100644
--- a/core/metrics-spi/pom.xml
+++ b/core/metrics-spi/pom.xml
@@ -5,7 +5,7 @@
core
software.amazon.awssdk
- 2.25.69-SNAPSHOT
+ 2.25.69
4.0.0
diff --git a/core/pom.xml b/core/pom.xml
index d4a097645b97..8c1ed76cfc31 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.25.69-SNAPSHOT
+ 2.25.69
core
diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml
index 0fb23d28a903..3313b7c8a782 100644
--- a/core/profiles/pom.xml
+++ b/core/profiles/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.25.69-SNAPSHOT
+ 2.25.69
profiles
diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml
index 9f78a6799798..0328e6a6c12e 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.69-SNAPSHOT
+ 2.25.69
4.0.0
diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml
index 05107e682482..cbb015bd9e2a 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.69-SNAPSHOT
+ 2.25.69
4.0.0
diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml
index d6df281faadf..470071f5f0d6 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.69-SNAPSHOT
+ 2.25.69
4.0.0
diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml
index 1cfa8595750c..806668387028 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.69-SNAPSHOT
+ 2.25.69
4.0.0
diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml
index bad82a15bf24..c5b22efda370 100644
--- a/core/protocols/pom.xml
+++ b/core/protocols/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.25.69-SNAPSHOT
+ 2.25.69
4.0.0
diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml
index 556682d382f3..27d819c25d3a 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.69-SNAPSHOT
+ 2.25.69
4.0.0
diff --git a/core/regions/pom.xml b/core/regions/pom.xml
index 8e0e1ec922c0..a52177880fff 100644
--- a/core/regions/pom.xml
+++ b/core/regions/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.25.69-SNAPSHOT
+ 2.25.69
regions
diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml
index ce61525736fd..e2c356ae203a 100644
--- a/core/sdk-core/pom.xml
+++ b/core/sdk-core/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
core
- 2.25.69-SNAPSHOT
+ 2.25.69
sdk-core
AWS Java SDK :: SDK Core
diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml
index bd132f402913..a758bd54f649 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.69-SNAPSHOT
+ 2.25.69
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 c8833423dec0..4c214278175b 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.69-SNAPSHOT
+ 2.25.69
apache-client
diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml
index 482438f03362..30c00b9ca71a 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.69-SNAPSHOT
+ 2.25.69
4.0.0
diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml
index f79a426aed45..1f6eaa894cd6 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.69-SNAPSHOT
+ 2.25.69
4.0.0
diff --git a/http-clients/pom.xml b/http-clients/pom.xml
index 9f1504fdda41..ea3e584abef3 100644
--- a/http-clients/pom.xml
+++ b/http-clients/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.25.69-SNAPSHOT
+ 2.25.69
4.0.0
diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml
index 225094261d4e..03662cb1dafd 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.69-SNAPSHOT
+ 2.25.69
4.0.0
diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml
index a6bee4028324..eb9d60bb8c43 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.69-SNAPSHOT
+ 2.25.69
cloudwatch-metric-publisher
diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml
index ec8ff6eccd19..18dc6fb7a733 100644
--- a/metric-publishers/pom.xml
+++ b/metric-publishers/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.69-SNAPSHOT
+ 2.25.69
metric-publishers
diff --git a/pom.xml b/pom.xml
index 611aef92d84b..c149acda7ddc 100644
--- a/pom.xml
+++ b/pom.xml
@@ -20,7 +20,7 @@
4.0.0
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.69-SNAPSHOT
+ 2.25.69
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 35f747bc5d31..17111077a816 100644
--- a/release-scripts/pom.xml
+++ b/release-scripts/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.69-SNAPSHOT
+ 2.25.69
../pom.xml
release-scripts
diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml
index fc279957800b..882f8667703b 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.69-SNAPSHOT
+ 2.25.69
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 203d133b6f64..fb786549d3c4 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.69-SNAPSHOT
+ 2.25.69
../../pom.xml
iam-policy-builder
diff --git a/services-custom/pom.xml b/services-custom/pom.xml
index 0b381cf4d1a6..6055bc917c13 100644
--- a/services-custom/pom.xml
+++ b/services-custom/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.69-SNAPSHOT
+ 2.25.69
services-custom
AWS Java SDK :: Custom Services
diff --git a/services-custom/s3-event-notifications/pom.xml b/services-custom/s3-event-notifications/pom.xml
index 5d9c631a3ce2..11bf66d625b3 100644
--- a/services-custom/s3-event-notifications/pom.xml
+++ b/services-custom/s3-event-notifications/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.69-SNAPSHOT
+ 2.25.69
../../pom.xml
s3-event-notifications
diff --git a/services-custom/s3-transfer-manager/pom.xml b/services-custom/s3-transfer-manager/pom.xml
index 422a0b5f6c91..2b4d9834df91 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.69-SNAPSHOT
+ 2.25.69
../../pom.xml
s3-transfer-manager
diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml
index 42a9621d66f4..951adc068e2b 100644
--- a/services/accessanalyzer/pom.xml
+++ b/services/accessanalyzer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
accessanalyzer
AWS Java SDK :: Services :: AccessAnalyzer
diff --git a/services/account/pom.xml b/services/account/pom.xml
index 2794fa72d0f6..b40fb1bef146 100644
--- a/services/account/pom.xml
+++ b/services/account/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
account
AWS Java SDK :: Services :: Account
diff --git a/services/acm/pom.xml b/services/acm/pom.xml
index 5dfa0777093f..11c5b0718e24 100644
--- a/services/acm/pom.xml
+++ b/services/acm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
acm
AWS Java SDK :: Services :: AWS Certificate Manager
diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml
index e7d9089e7bca..ae7d777878c4 100644
--- a/services/acmpca/pom.xml
+++ b/services/acmpca/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
acmpca
AWS Java SDK :: Services :: ACM PCA
diff --git a/services/amp/pom.xml b/services/amp/pom.xml
index b48f11353d43..07e5a6c377d8 100644
--- a/services/amp/pom.xml
+++ b/services/amp/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
amp
AWS Java SDK :: Services :: Amp
diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml
index 8d51fba4285a..b1b24bbd600d 100644
--- a/services/amplify/pom.xml
+++ b/services/amplify/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
amplify
AWS Java SDK :: Services :: Amplify
diff --git a/services/amplifybackend/pom.xml b/services/amplifybackend/pom.xml
index 095dcb6908a7..519eaae2a0f3 100644
--- a/services/amplifybackend/pom.xml
+++ b/services/amplifybackend/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
amplifybackend
AWS Java SDK :: Services :: Amplify Backend
diff --git a/services/amplifyuibuilder/pom.xml b/services/amplifyuibuilder/pom.xml
index fc808c46c4db..381722be0dbd 100644
--- a/services/amplifyuibuilder/pom.xml
+++ b/services/amplifyuibuilder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
amplifyuibuilder
AWS Java SDK :: Services :: Amplify UI Builder
diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml
index e3404a6392b9..68ddbd9a609c 100644
--- a/services/apigateway/pom.xml
+++ b/services/apigateway/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
apigateway
AWS Java SDK :: Services :: Amazon API Gateway
diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml
index 78127836959b..b152b5011c28 100644
--- a/services/apigatewaymanagementapi/pom.xml
+++ b/services/apigatewaymanagementapi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
apigatewaymanagementapi
AWS Java SDK :: Services :: ApiGatewayManagementApi
diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml
index b4653b45e319..bbe760fc3fd9 100644
--- a/services/apigatewayv2/pom.xml
+++ b/services/apigatewayv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
apigatewayv2
AWS Java SDK :: Services :: ApiGatewayV2
diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml
index a861301b015a..5c2129c745e0 100644
--- a/services/appconfig/pom.xml
+++ b/services/appconfig/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
appconfig
AWS Java SDK :: Services :: AppConfig
diff --git a/services/appconfigdata/pom.xml b/services/appconfigdata/pom.xml
index 120b61566185..93c9bc8f79c3 100644
--- a/services/appconfigdata/pom.xml
+++ b/services/appconfigdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
appconfigdata
AWS Java SDK :: Services :: App Config Data
diff --git a/services/appfabric/pom.xml b/services/appfabric/pom.xml
index 24efe0e7df97..a26493363629 100644
--- a/services/appfabric/pom.xml
+++ b/services/appfabric/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
appfabric
AWS Java SDK :: Services :: App Fabric
diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml
index 32ebc9ade50f..7abdbbb5cb08 100644
--- a/services/appflow/pom.xml
+++ b/services/appflow/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
appflow
AWS Java SDK :: Services :: Appflow
diff --git a/services/appintegrations/pom.xml b/services/appintegrations/pom.xml
index 8ee57b725907..3c55f37c650b 100644
--- a/services/appintegrations/pom.xml
+++ b/services/appintegrations/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
appintegrations
AWS Java SDK :: Services :: App Integrations
diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml
index ec69b0a3a629..f0256a50a9b3 100644
--- a/services/applicationautoscaling/pom.xml
+++ b/services/applicationautoscaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
applicationautoscaling
AWS Java SDK :: Services :: AWS Application Auto Scaling
diff --git a/services/applicationcostprofiler/pom.xml b/services/applicationcostprofiler/pom.xml
index 3a7ab3f8836e..e242e34fb53b 100644
--- a/services/applicationcostprofiler/pom.xml
+++ b/services/applicationcostprofiler/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
applicationcostprofiler
AWS Java SDK :: Services :: Application Cost Profiler
diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml
index 1a4cfb49d2e1..c89c04595f23 100644
--- a/services/applicationdiscovery/pom.xml
+++ b/services/applicationdiscovery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
applicationdiscovery
AWS Java SDK :: Services :: AWS Application Discovery Service
diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml
index 63839bdb1c22..46dd57f1f521 100644
--- a/services/applicationinsights/pom.xml
+++ b/services/applicationinsights/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
applicationinsights
AWS Java SDK :: Services :: Application Insights
diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml
index acc37cda439d..41e490f31073 100644
--- a/services/appmesh/pom.xml
+++ b/services/appmesh/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
appmesh
AWS Java SDK :: Services :: App Mesh
diff --git a/services/apprunner/pom.xml b/services/apprunner/pom.xml
index a7017451af90..622404871e22 100644
--- a/services/apprunner/pom.xml
+++ b/services/apprunner/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
apprunner
AWS Java SDK :: Services :: App Runner
diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml
index 154905e670c8..85d364365e75 100644
--- a/services/appstream/pom.xml
+++ b/services/appstream/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
appstream
AWS Java SDK :: Services :: Amazon AppStream
diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml
index 45e2e2c4b86e..e659727d1311 100644
--- a/services/appsync/pom.xml
+++ b/services/appsync/pom.xml
@@ -21,7 +21,7 @@
services
software.amazon.awssdk
- 2.25.69-SNAPSHOT
+ 2.25.69
appsync
diff --git a/services/arczonalshift/pom.xml b/services/arczonalshift/pom.xml
index 5dee39a1c084..b559b76b954a 100644
--- a/services/arczonalshift/pom.xml
+++ b/services/arczonalshift/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
arczonalshift
AWS Java SDK :: Services :: ARC Zonal Shift
diff --git a/services/artifact/pom.xml b/services/artifact/pom.xml
index 8ce7f69a7e30..f06dc7d9b30d 100644
--- a/services/artifact/pom.xml
+++ b/services/artifact/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
artifact
AWS Java SDK :: Services :: Artifact
diff --git a/services/athena/pom.xml b/services/athena/pom.xml
index 7633f8531f6c..7a83640691a6 100644
--- a/services/athena/pom.xml
+++ b/services/athena/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
athena
AWS Java SDK :: Services :: Amazon Athena
diff --git a/services/auditmanager/pom.xml b/services/auditmanager/pom.xml
index ecce70823dc0..9d43ef352562 100644
--- a/services/auditmanager/pom.xml
+++ b/services/auditmanager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
auditmanager
AWS Java SDK :: Services :: Audit Manager
diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml
index cce5f3d45159..42ef3b45c9f8 100644
--- a/services/autoscaling/pom.xml
+++ b/services/autoscaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
autoscaling
AWS Java SDK :: Services :: Auto Scaling
diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml
index 053413537cd5..4e79a19df822 100644
--- a/services/autoscalingplans/pom.xml
+++ b/services/autoscalingplans/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
autoscalingplans
AWS Java SDK :: Services :: Auto Scaling Plans
diff --git a/services/b2bi/pom.xml b/services/b2bi/pom.xml
index f21755535de9..a01dd0261973 100644
--- a/services/b2bi/pom.xml
+++ b/services/b2bi/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
b2bi
AWS Java SDK :: Services :: B2 Bi
diff --git a/services/backup/pom.xml b/services/backup/pom.xml
index ae1ca1235efc..acc578b884f9 100644
--- a/services/backup/pom.xml
+++ b/services/backup/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
backup
AWS Java SDK :: Services :: Backup
diff --git a/services/backupgateway/pom.xml b/services/backupgateway/pom.xml
index 52a89725ee99..9682e737e08b 100644
--- a/services/backupgateway/pom.xml
+++ b/services/backupgateway/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
backupgateway
AWS Java SDK :: Services :: Backup Gateway
diff --git a/services/backupstorage/pom.xml b/services/backupstorage/pom.xml
index 8d19429eb6a6..c79270dfb3db 100644
--- a/services/backupstorage/pom.xml
+++ b/services/backupstorage/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
backupstorage
AWS Java SDK :: Services :: Backup Storage
diff --git a/services/batch/pom.xml b/services/batch/pom.xml
index ee5c7c57d801..0bb1337a2fc6 100644
--- a/services/batch/pom.xml
+++ b/services/batch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
batch
AWS Java SDK :: Services :: AWS Batch
diff --git a/services/bcmdataexports/pom.xml b/services/bcmdataexports/pom.xml
index 24dbacb7353c..074732079694 100644
--- a/services/bcmdataexports/pom.xml
+++ b/services/bcmdataexports/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
bcmdataexports
AWS Java SDK :: Services :: BCM Data Exports
diff --git a/services/bedrock/pom.xml b/services/bedrock/pom.xml
index a06ad01d2be9..0f10ed39775e 100644
--- a/services/bedrock/pom.xml
+++ b/services/bedrock/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
bedrock
AWS Java SDK :: Services :: Bedrock
diff --git a/services/bedrockagent/pom.xml b/services/bedrockagent/pom.xml
index 1805019f59a8..4a28f8e35d38 100644
--- a/services/bedrockagent/pom.xml
+++ b/services/bedrockagent/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
bedrockagent
AWS Java SDK :: Services :: Bedrock Agent
diff --git a/services/bedrockagentruntime/pom.xml b/services/bedrockagentruntime/pom.xml
index 81f36d76d2d1..91a15c4a796a 100644
--- a/services/bedrockagentruntime/pom.xml
+++ b/services/bedrockagentruntime/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
bedrockagentruntime
AWS Java SDK :: Services :: Bedrock Agent Runtime
diff --git a/services/bedrockruntime/pom.xml b/services/bedrockruntime/pom.xml
index cd965bebf344..b04256455c05 100644
--- a/services/bedrockruntime/pom.xml
+++ b/services/bedrockruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
bedrockruntime
AWS Java SDK :: Services :: Bedrock Runtime
diff --git a/services/billingconductor/pom.xml b/services/billingconductor/pom.xml
index 338d7a064a16..fef24ad43818 100644
--- a/services/billingconductor/pom.xml
+++ b/services/billingconductor/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
billingconductor
AWS Java SDK :: Services :: Billingconductor
diff --git a/services/braket/pom.xml b/services/braket/pom.xml
index 6e29eead8f51..5e923cf854ab 100644
--- a/services/braket/pom.xml
+++ b/services/braket/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
braket
AWS Java SDK :: Services :: Braket
diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml
index 0c90e5fd7ba3..460822058dbc 100644
--- a/services/budgets/pom.xml
+++ b/services/budgets/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
budgets
AWS Java SDK :: Services :: AWS Budgets
diff --git a/services/chatbot/pom.xml b/services/chatbot/pom.xml
index f1d0240ef420..1f8219e53add 100644
--- a/services/chatbot/pom.xml
+++ b/services/chatbot/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
chatbot
AWS Java SDK :: Services :: Chatbot
diff --git a/services/chime/pom.xml b/services/chime/pom.xml
index 4d8541afaa1e..df4b829acdef 100644
--- a/services/chime/pom.xml
+++ b/services/chime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
chime
AWS Java SDK :: Services :: Chime
diff --git a/services/chimesdkidentity/pom.xml b/services/chimesdkidentity/pom.xml
index cde9aa8d2d97..be18c5fc397c 100644
--- a/services/chimesdkidentity/pom.xml
+++ b/services/chimesdkidentity/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
chimesdkidentity
AWS Java SDK :: Services :: Chime SDK Identity
diff --git a/services/chimesdkmediapipelines/pom.xml b/services/chimesdkmediapipelines/pom.xml
index eaa13972b8eb..99cc019a48b2 100644
--- a/services/chimesdkmediapipelines/pom.xml
+++ b/services/chimesdkmediapipelines/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
chimesdkmediapipelines
AWS Java SDK :: Services :: Chime SDK Media Pipelines
diff --git a/services/chimesdkmeetings/pom.xml b/services/chimesdkmeetings/pom.xml
index 26b0c6c33a8c..8f529c8a0184 100644
--- a/services/chimesdkmeetings/pom.xml
+++ b/services/chimesdkmeetings/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
chimesdkmeetings
AWS Java SDK :: Services :: Chime SDK Meetings
diff --git a/services/chimesdkmessaging/pom.xml b/services/chimesdkmessaging/pom.xml
index 93632676a26a..4cb466dabce9 100644
--- a/services/chimesdkmessaging/pom.xml
+++ b/services/chimesdkmessaging/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
chimesdkmessaging
AWS Java SDK :: Services :: Chime SDK Messaging
diff --git a/services/chimesdkvoice/pom.xml b/services/chimesdkvoice/pom.xml
index f2ca47c99167..abf0c2a62b22 100644
--- a/services/chimesdkvoice/pom.xml
+++ b/services/chimesdkvoice/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
chimesdkvoice
AWS Java SDK :: Services :: Chime SDK Voice
diff --git a/services/cleanrooms/pom.xml b/services/cleanrooms/pom.xml
index b3e323150448..675e91d5ada7 100644
--- a/services/cleanrooms/pom.xml
+++ b/services/cleanrooms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
cleanrooms
AWS Java SDK :: Services :: Clean Rooms
diff --git a/services/cleanroomsml/pom.xml b/services/cleanroomsml/pom.xml
index 342226323647..0c388ca54dbc 100644
--- a/services/cleanroomsml/pom.xml
+++ b/services/cleanroomsml/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
cleanroomsml
AWS Java SDK :: Services :: Clean Rooms ML
diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml
index 37154cdcb02c..178f806245ea 100644
--- a/services/cloud9/pom.xml
+++ b/services/cloud9/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.69-SNAPSHOT
+ 2.25.69
4.0.0
cloud9
diff --git a/services/cloudcontrol/pom.xml b/services/cloudcontrol/pom.xml
index 16f468c86df1..66225dd98a48 100644
--- a/services/cloudcontrol/pom.xml
+++ b/services/cloudcontrol/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
cloudcontrol
AWS Java SDK :: Services :: Cloud Control
diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml
index a23711b00337..5687bdd69a27 100644
--- a/services/clouddirectory/pom.xml
+++ b/services/clouddirectory/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
clouddirectory
AWS Java SDK :: Services :: Amazon CloudDirectory
diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml
index 01298f5c3afa..865e5f1a9844 100644
--- a/services/cloudformation/pom.xml
+++ b/services/cloudformation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
cloudformation
AWS Java SDK :: Services :: AWS CloudFormation
diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml
index 7ab3e6f4728a..069959aa7e47 100644
--- a/services/cloudfront/pom.xml
+++ b/services/cloudfront/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
cloudfront
AWS Java SDK :: Services :: Amazon CloudFront
diff --git a/services/cloudfrontkeyvaluestore/pom.xml b/services/cloudfrontkeyvaluestore/pom.xml
index b3fba57637f9..eab74a1d9b98 100644
--- a/services/cloudfrontkeyvaluestore/pom.xml
+++ b/services/cloudfrontkeyvaluestore/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
cloudfrontkeyvaluestore
AWS Java SDK :: Services :: Cloud Front Key Value Store
diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml
index 9ce9abf21439..74d38ba1f2f9 100644
--- a/services/cloudhsm/pom.xml
+++ b/services/cloudhsm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
cloudhsm
AWS Java SDK :: Services :: AWS CloudHSM
diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml
index 7b98efba0052..6a9101b59c62 100644
--- a/services/cloudhsmv2/pom.xml
+++ b/services/cloudhsmv2/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.69-SNAPSHOT
+ 2.25.69
4.0.0
cloudhsmv2
diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml
index f458f7c87fb5..3a2e7c7e3ed9 100644
--- a/services/cloudsearch/pom.xml
+++ b/services/cloudsearch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
cloudsearch
AWS Java SDK :: Services :: Amazon CloudSearch
diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml
index 68312b0ad17f..bfcf3105435a 100644
--- a/services/cloudsearchdomain/pom.xml
+++ b/services/cloudsearchdomain/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
cloudsearchdomain
AWS Java SDK :: Services :: Amazon CloudSearch Domain
diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml
index 01452bddc2f3..8f2f1de93252 100644
--- a/services/cloudtrail/pom.xml
+++ b/services/cloudtrail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
cloudtrail
AWS Java SDK :: Services :: AWS CloudTrail
diff --git a/services/cloudtraildata/pom.xml b/services/cloudtraildata/pom.xml
index 7389ecb044bb..c4939f09a195 100644
--- a/services/cloudtraildata/pom.xml
+++ b/services/cloudtraildata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
cloudtraildata
AWS Java SDK :: Services :: Cloud Trail Data
diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml
index a50acc039403..6987b5ab8f3a 100644
--- a/services/cloudwatch/pom.xml
+++ b/services/cloudwatch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
cloudwatch
AWS Java SDK :: Services :: Amazon CloudWatch
diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml
index 705cc08cbdca..e2e8fb1d2ffc 100644
--- a/services/cloudwatchevents/pom.xml
+++ b/services/cloudwatchevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
cloudwatchevents
AWS Java SDK :: Services :: Amazon CloudWatch Events
diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml
index 4fea106215c9..9b441d995bea 100644
--- a/services/cloudwatchlogs/pom.xml
+++ b/services/cloudwatchlogs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
cloudwatchlogs
AWS Java SDK :: Services :: Amazon CloudWatch Logs
diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml
index 0d0304fa6869..2e1cd6f3eb87 100644
--- a/services/codeartifact/pom.xml
+++ b/services/codeartifact/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
codeartifact
AWS Java SDK :: Services :: Codeartifact
diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml
index b54db55ab0e0..22d753d901ae 100644
--- a/services/codebuild/pom.xml
+++ b/services/codebuild/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
codebuild
AWS Java SDK :: Services :: AWS Code Build
diff --git a/services/codecatalyst/pom.xml b/services/codecatalyst/pom.xml
index 1663d63947fc..c5bfb1b9a563 100644
--- a/services/codecatalyst/pom.xml
+++ b/services/codecatalyst/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
codecatalyst
AWS Java SDK :: Services :: Code Catalyst
diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml
index 5c619a16233a..1133dc1d309e 100644
--- a/services/codecommit/pom.xml
+++ b/services/codecommit/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
codecommit
AWS Java SDK :: Services :: AWS CodeCommit
diff --git a/services/codeconnections/pom.xml b/services/codeconnections/pom.xml
index 64f1ab936a7a..861fdcd55f41 100644
--- a/services/codeconnections/pom.xml
+++ b/services/codeconnections/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
codeconnections
AWS Java SDK :: Services :: Code Connections
diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml
index bc9fb5b276a0..6c0c5a10a08f 100644
--- a/services/codedeploy/pom.xml
+++ b/services/codedeploy/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
codedeploy
AWS Java SDK :: Services :: AWS CodeDeploy
diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml
index 8d61f463662b..de9db61f20cf 100644
--- a/services/codeguruprofiler/pom.xml
+++ b/services/codeguruprofiler/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
codeguruprofiler
AWS Java SDK :: Services :: CodeGuruProfiler
diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml
index 056a6b5e29de..01063def6a3b 100644
--- a/services/codegurureviewer/pom.xml
+++ b/services/codegurureviewer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
codegurureviewer
AWS Java SDK :: Services :: CodeGuru Reviewer
diff --git a/services/codegurusecurity/pom.xml b/services/codegurusecurity/pom.xml
index b020c44e9298..cd31690217f7 100644
--- a/services/codegurusecurity/pom.xml
+++ b/services/codegurusecurity/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
codegurusecurity
AWS Java SDK :: Services :: Code Guru Security
diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml
index 022db70ffa85..3239b1e9418a 100644
--- a/services/codepipeline/pom.xml
+++ b/services/codepipeline/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
codepipeline
AWS Java SDK :: Services :: AWS CodePipeline
diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml
index bd6c3b5f331f..ef4d0d1fdd1c 100644
--- a/services/codestar/pom.xml
+++ b/services/codestar/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
codestar
AWS Java SDK :: Services :: AWS CodeStar
diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml
index 68d70df7aec3..52a233580625 100644
--- a/services/codestarconnections/pom.xml
+++ b/services/codestarconnections/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
codestarconnections
AWS Java SDK :: Services :: CodeStar connections
diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml
index 66253678d9be..78811ada10b0 100644
--- a/services/codestarnotifications/pom.xml
+++ b/services/codestarnotifications/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
codestarnotifications
AWS Java SDK :: Services :: Codestar Notifications
diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml
index d495891ecc30..92f83a0a2d46 100644
--- a/services/cognitoidentity/pom.xml
+++ b/services/cognitoidentity/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
cognitoidentity
AWS Java SDK :: Services :: Amazon Cognito Identity
diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml
index 41a26c2d47cb..ba2900558872 100644
--- a/services/cognitoidentityprovider/pom.xml
+++ b/services/cognitoidentityprovider/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
cognitoidentityprovider
AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service
diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml
index 17e0a953e16b..8408af01ed05 100644
--- a/services/cognitosync/pom.xml
+++ b/services/cognitosync/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
cognitosync
AWS Java SDK :: Services :: Amazon Cognito Sync
diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml
index 20e8071f94f7..3e7ae7263bba 100644
--- a/services/comprehend/pom.xml
+++ b/services/comprehend/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.69-SNAPSHOT
+ 2.25.69
4.0.0
comprehend
diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml
index 3c4e663f0ac8..111558f6cae4 100644
--- a/services/comprehendmedical/pom.xml
+++ b/services/comprehendmedical/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
comprehendmedical
AWS Java SDK :: Services :: ComprehendMedical
diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml
index 3b957fba4281..eb6a31ce757f 100644
--- a/services/computeoptimizer/pom.xml
+++ b/services/computeoptimizer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
computeoptimizer
AWS Java SDK :: Services :: Compute Optimizer
diff --git a/services/config/pom.xml b/services/config/pom.xml
index d5d66bf7da28..eb135f3c9b51 100644
--- a/services/config/pom.xml
+++ b/services/config/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
config
AWS Java SDK :: Services :: AWS Config
diff --git a/services/connect/pom.xml b/services/connect/pom.xml
index 1ed9b9074a7d..9d46f25c865d 100644
--- a/services/connect/pom.xml
+++ b/services/connect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
connect
AWS Java SDK :: Services :: Connect
diff --git a/services/connectcampaigns/pom.xml b/services/connectcampaigns/pom.xml
index b8a8d5d6c7ab..3326673b1fb5 100644
--- a/services/connectcampaigns/pom.xml
+++ b/services/connectcampaigns/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
connectcampaigns
AWS Java SDK :: Services :: Connect Campaigns
diff --git a/services/connectcases/pom.xml b/services/connectcases/pom.xml
index 8ef514c531cb..1d25ae9d7a2b 100644
--- a/services/connectcases/pom.xml
+++ b/services/connectcases/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
connectcases
AWS Java SDK :: Services :: Connect Cases
diff --git a/services/connectcontactlens/pom.xml b/services/connectcontactlens/pom.xml
index c6406afdf7c6..3a73023f7d88 100644
--- a/services/connectcontactlens/pom.xml
+++ b/services/connectcontactlens/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
connectcontactlens
AWS Java SDK :: Services :: Connect Contact Lens
diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml
index e78f42489763..447de9801e77 100644
--- a/services/connectparticipant/pom.xml
+++ b/services/connectparticipant/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
connectparticipant
AWS Java SDK :: Services :: ConnectParticipant
diff --git a/services/controlcatalog/pom.xml b/services/controlcatalog/pom.xml
index 1b7944c7f4d9..8aa0893bee7e 100644
--- a/services/controlcatalog/pom.xml
+++ b/services/controlcatalog/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
controlcatalog
AWS Java SDK :: Services :: Control Catalog
diff --git a/services/controltower/pom.xml b/services/controltower/pom.xml
index dbd911490270..ecd821c34937 100644
--- a/services/controltower/pom.xml
+++ b/services/controltower/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
controltower
AWS Java SDK :: Services :: Control Tower
diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml
index 735fc09e14ed..da99c05ad18b 100644
--- a/services/costandusagereport/pom.xml
+++ b/services/costandusagereport/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
costandusagereport
AWS Java SDK :: Services :: AWS Cost and Usage Report
diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml
index 81fa4a0a811c..4560ff03e860 100644
--- a/services/costexplorer/pom.xml
+++ b/services/costexplorer/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.69-SNAPSHOT
+ 2.25.69
4.0.0
costexplorer
diff --git a/services/costoptimizationhub/pom.xml b/services/costoptimizationhub/pom.xml
index b6d3cd467a96..664de14f6bf2 100644
--- a/services/costoptimizationhub/pom.xml
+++ b/services/costoptimizationhub/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
costoptimizationhub
AWS Java SDK :: Services :: Cost Optimization Hub
diff --git a/services/customerprofiles/pom.xml b/services/customerprofiles/pom.xml
index e50580df41ea..1f1c26ba00c8 100644
--- a/services/customerprofiles/pom.xml
+++ b/services/customerprofiles/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
customerprofiles
AWS Java SDK :: Services :: Customer Profiles
diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml
index 30915254ba3a..0be7a89a5c1b 100644
--- a/services/databasemigration/pom.xml
+++ b/services/databasemigration/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
databasemigration
AWS Java SDK :: Services :: AWS Database Migration Service
diff --git a/services/databrew/pom.xml b/services/databrew/pom.xml
index dc6477eb9924..d47b35707487 100644
--- a/services/databrew/pom.xml
+++ b/services/databrew/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
databrew
AWS Java SDK :: Services :: Data Brew
diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml
index 6fde2bac5de0..0ab8e1f9a22c 100644
--- a/services/dataexchange/pom.xml
+++ b/services/dataexchange/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
dataexchange
AWS Java SDK :: Services :: DataExchange
diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml
index d92676caabbb..96572a9d5751 100644
--- a/services/datapipeline/pom.xml
+++ b/services/datapipeline/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
datapipeline
AWS Java SDK :: Services :: AWS Data Pipeline
diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml
index cd1fa8b8ac72..b803702a524d 100644
--- a/services/datasync/pom.xml
+++ b/services/datasync/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
datasync
AWS Java SDK :: Services :: DataSync
diff --git a/services/datazone/pom.xml b/services/datazone/pom.xml
index 7b2e5df082e6..64a01f44ccf1 100644
--- a/services/datazone/pom.xml
+++ b/services/datazone/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
datazone
AWS Java SDK :: Services :: Data Zone
diff --git a/services/dax/pom.xml b/services/dax/pom.xml
index e22543acfc79..94e5818eef0a 100644
--- a/services/dax/pom.xml
+++ b/services/dax/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
dax
AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX)
diff --git a/services/deadline/pom.xml b/services/deadline/pom.xml
index 51a33a6f9b00..e8f914762997 100644
--- a/services/deadline/pom.xml
+++ b/services/deadline/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
deadline
AWS Java SDK :: Services :: Deadline
diff --git a/services/detective/pom.xml b/services/detective/pom.xml
index 6222c086df2d..5b5f76cfb0b7 100644
--- a/services/detective/pom.xml
+++ b/services/detective/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
detective
AWS Java SDK :: Services :: Detective
diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml
index 2979bfe6b59f..4359be67afbc 100644
--- a/services/devicefarm/pom.xml
+++ b/services/devicefarm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
devicefarm
AWS Java SDK :: Services :: AWS Device Farm
diff --git a/services/devopsguru/pom.xml b/services/devopsguru/pom.xml
index 5092f4954278..39a8a587838f 100644
--- a/services/devopsguru/pom.xml
+++ b/services/devopsguru/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
devopsguru
AWS Java SDK :: Services :: Dev Ops Guru
diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml
index a918e2af4236..e67a68600782 100644
--- a/services/directconnect/pom.xml
+++ b/services/directconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
directconnect
AWS Java SDK :: Services :: AWS Direct Connect
diff --git a/services/directory/pom.xml b/services/directory/pom.xml
index 380ecd9b6fdd..4c274c1b4ee6 100644
--- a/services/directory/pom.xml
+++ b/services/directory/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
directory
AWS Java SDK :: Services :: AWS Directory Service
diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml
index 46ee2f063888..fccbaeea3496 100644
--- a/services/dlm/pom.xml
+++ b/services/dlm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
dlm
AWS Java SDK :: Services :: DLM
diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml
index cd6990a73f23..03ade81be9fa 100644
--- a/services/docdb/pom.xml
+++ b/services/docdb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
docdb
AWS Java SDK :: Services :: DocDB
diff --git a/services/docdbelastic/pom.xml b/services/docdbelastic/pom.xml
index 3d4a98fe64ed..7ac88426adda 100644
--- a/services/docdbelastic/pom.xml
+++ b/services/docdbelastic/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
docdbelastic
AWS Java SDK :: Services :: Doc DB Elastic
diff --git a/services/drs/pom.xml b/services/drs/pom.xml
index c7bc1fd83148..14678d678cab 100644
--- a/services/drs/pom.xml
+++ b/services/drs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
drs
AWS Java SDK :: Services :: Drs
diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml
index 416cb446276f..f31682ca7157 100644
--- a/services/dynamodb/pom.xml
+++ b/services/dynamodb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
dynamodb
AWS Java SDK :: Services :: Amazon DynamoDB
diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml
index ceaf90680bae..dc5f48898db5 100644
--- a/services/ebs/pom.xml
+++ b/services/ebs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
ebs
AWS Java SDK :: Services :: EBS
diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml
index 32a318959a14..113413f1360f 100644
--- a/services/ec2/pom.xml
+++ b/services/ec2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
ec2
AWS Java SDK :: Services :: Amazon EC2
diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml
index b78aedf98060..75e1f8405b20 100644
--- a/services/ec2instanceconnect/pom.xml
+++ b/services/ec2instanceconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
ec2instanceconnect
AWS Java SDK :: Services :: EC2 Instance Connect
diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml
index 6a49acc29815..847b6e23531b 100644
--- a/services/ecr/pom.xml
+++ b/services/ecr/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
ecr
AWS Java SDK :: Services :: Amazon EC2 Container Registry
diff --git a/services/ecrpublic/pom.xml b/services/ecrpublic/pom.xml
index aacf30b3c702..5435305b6e12 100644
--- a/services/ecrpublic/pom.xml
+++ b/services/ecrpublic/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
ecrpublic
AWS Java SDK :: Services :: ECR PUBLIC
diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml
index abd7756fa108..3dbdad7ecd93 100644
--- a/services/ecs/pom.xml
+++ b/services/ecs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
ecs
AWS Java SDK :: Services :: Amazon EC2 Container Service
diff --git a/services/efs/pom.xml b/services/efs/pom.xml
index f0dd2d198153..a0f341696962 100644
--- a/services/efs/pom.xml
+++ b/services/efs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
efs
AWS Java SDK :: Services :: Amazon Elastic File System
diff --git a/services/eks/pom.xml b/services/eks/pom.xml
index d7eacfecede5..776d9ba36f97 100644
--- a/services/eks/pom.xml
+++ b/services/eks/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
eks
AWS Java SDK :: Services :: EKS
diff --git a/services/eksauth/pom.xml b/services/eksauth/pom.xml
index f8efa1e7f656..bcd2d143b166 100644
--- a/services/eksauth/pom.xml
+++ b/services/eksauth/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
eksauth
AWS Java SDK :: Services :: EKS Auth
diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml
index 8abb348d3cd5..ae3b1032cd82 100644
--- a/services/elasticache/pom.xml
+++ b/services/elasticache/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
elasticache
AWS Java SDK :: Services :: Amazon ElastiCache
diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml
index 03032cdf2d84..849c145bb7d6 100644
--- a/services/elasticbeanstalk/pom.xml
+++ b/services/elasticbeanstalk/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
elasticbeanstalk
AWS Java SDK :: Services :: AWS Elastic Beanstalk
diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml
index 98014ad7c5ee..004179e54726 100644
--- a/services/elasticinference/pom.xml
+++ b/services/elasticinference/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
elasticinference
AWS Java SDK :: Services :: Elastic Inference
diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml
index 1fc5b92aaea4..e52970b27607 100644
--- a/services/elasticloadbalancing/pom.xml
+++ b/services/elasticloadbalancing/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
elasticloadbalancing
AWS Java SDK :: Services :: Elastic Load Balancing
diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml
index 85940b91d53e..47f10a7d9fb6 100644
--- a/services/elasticloadbalancingv2/pom.xml
+++ b/services/elasticloadbalancingv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
elasticloadbalancingv2
AWS Java SDK :: Services :: Elastic Load Balancing V2
diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml
index ca2162355eb6..015bc06cf649 100644
--- a/services/elasticsearch/pom.xml
+++ b/services/elasticsearch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
elasticsearch
AWS Java SDK :: Services :: Amazon Elasticsearch Service
diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml
index 926e600fbe0a..604545d6e177 100644
--- a/services/elastictranscoder/pom.xml
+++ b/services/elastictranscoder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
elastictranscoder
AWS Java SDK :: Services :: Amazon Elastic Transcoder
diff --git a/services/emr/pom.xml b/services/emr/pom.xml
index 52950e4022b7..567225f59c16 100644
--- a/services/emr/pom.xml
+++ b/services/emr/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
emr
AWS Java SDK :: Services :: Amazon EMR
diff --git a/services/emrcontainers/pom.xml b/services/emrcontainers/pom.xml
index f0f25ddf7b96..5b49a109bf6b 100644
--- a/services/emrcontainers/pom.xml
+++ b/services/emrcontainers/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
emrcontainers
AWS Java SDK :: Services :: EMR Containers
diff --git a/services/emrserverless/pom.xml b/services/emrserverless/pom.xml
index 8aedab8909a2..90aaeb921478 100644
--- a/services/emrserverless/pom.xml
+++ b/services/emrserverless/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
emrserverless
AWS Java SDK :: Services :: EMR Serverless
diff --git a/services/entityresolution/pom.xml b/services/entityresolution/pom.xml
index e19a2d5aeccf..53313879b8b5 100644
--- a/services/entityresolution/pom.xml
+++ b/services/entityresolution/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
entityresolution
AWS Java SDK :: Services :: Entity Resolution
diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml
index eb177fd82f96..a5faed46a243 100644
--- a/services/eventbridge/pom.xml
+++ b/services/eventbridge/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
eventbridge
AWS Java SDK :: Services :: EventBridge
diff --git a/services/evidently/pom.xml b/services/evidently/pom.xml
index eec56c5d18cf..67a081e3b56a 100644
--- a/services/evidently/pom.xml
+++ b/services/evidently/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
evidently
AWS Java SDK :: Services :: Evidently
diff --git a/services/finspace/pom.xml b/services/finspace/pom.xml
index c2f63001eb80..6859f00445d1 100644
--- a/services/finspace/pom.xml
+++ b/services/finspace/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
finspace
AWS Java SDK :: Services :: Finspace
diff --git a/services/finspacedata/pom.xml b/services/finspacedata/pom.xml
index f898581e21c5..963f01f3bf48 100644
--- a/services/finspacedata/pom.xml
+++ b/services/finspacedata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
finspacedata
AWS Java SDK :: Services :: Finspace Data
diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml
index f84d80101ae4..c65a94b399bf 100644
--- a/services/firehose/pom.xml
+++ b/services/firehose/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
firehose
AWS Java SDK :: Services :: Amazon Kinesis Firehose
diff --git a/services/fis/pom.xml b/services/fis/pom.xml
index 032e330fcb08..3c6cc728f800 100644
--- a/services/fis/pom.xml
+++ b/services/fis/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
fis
AWS Java SDK :: Services :: Fis
diff --git a/services/fms/pom.xml b/services/fms/pom.xml
index 8f73ea690713..9724f36187a1 100644
--- a/services/fms/pom.xml
+++ b/services/fms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
fms
AWS Java SDK :: Services :: FMS
diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml
index 7e13b5975723..639647301da5 100644
--- a/services/forecast/pom.xml
+++ b/services/forecast/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
forecast
AWS Java SDK :: Services :: Forecast
diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml
index 155cf601ccc7..02108f85a22e 100644
--- a/services/forecastquery/pom.xml
+++ b/services/forecastquery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
forecastquery
AWS Java SDK :: Services :: Forecastquery
diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml
index be3ec252cf11..3279bfd8bf51 100644
--- a/services/frauddetector/pom.xml
+++ b/services/frauddetector/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
frauddetector
AWS Java SDK :: Services :: FraudDetector
diff --git a/services/freetier/pom.xml b/services/freetier/pom.xml
index 20209264bfa1..e5136303eaa8 100644
--- a/services/freetier/pom.xml
+++ b/services/freetier/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
freetier
AWS Java SDK :: Services :: Free Tier
diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml
index 2107b6b91c90..7ff438f9e224 100644
--- a/services/fsx/pom.xml
+++ b/services/fsx/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
fsx
AWS Java SDK :: Services :: FSx
diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml
index 32708a51fcc9..445c966cccc6 100644
--- a/services/gamelift/pom.xml
+++ b/services/gamelift/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
gamelift
AWS Java SDK :: Services :: AWS GameLift
diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml
index f5ea04196d19..affea6f0535d 100644
--- a/services/glacier/pom.xml
+++ b/services/glacier/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
glacier
AWS Java SDK :: Services :: Amazon Glacier
diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml
index 054469eadf9f..76987c3e9b6d 100644
--- a/services/globalaccelerator/pom.xml
+++ b/services/globalaccelerator/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
globalaccelerator
AWS Java SDK :: Services :: Global Accelerator
diff --git a/services/glue/pom.xml b/services/glue/pom.xml
index 4601cdf050e0..dd3346d2db11 100644
--- a/services/glue/pom.xml
+++ b/services/glue/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.69-SNAPSHOT
+ 2.25.69
4.0.0
glue
diff --git a/services/grafana/pom.xml b/services/grafana/pom.xml
index d89cc31afc28..d89a16c9e4fd 100644
--- a/services/grafana/pom.xml
+++ b/services/grafana/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
grafana
AWS Java SDK :: Services :: Grafana
diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml
index dca89c5fd776..d41272eec578 100644
--- a/services/greengrass/pom.xml
+++ b/services/greengrass/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
greengrass
AWS Java SDK :: Services :: AWS Greengrass
diff --git a/services/greengrassv2/pom.xml b/services/greengrassv2/pom.xml
index b980c9250037..b2cc5c4f8f82 100644
--- a/services/greengrassv2/pom.xml
+++ b/services/greengrassv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
greengrassv2
AWS Java SDK :: Services :: Greengrass V2
diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml
index 09eb67f2af06..e19ef631fc01 100644
--- a/services/groundstation/pom.xml
+++ b/services/groundstation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
groundstation
AWS Java SDK :: Services :: GroundStation
diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml
index ba07a23f5742..f17ad183ca7d 100644
--- a/services/guardduty/pom.xml
+++ b/services/guardduty/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.69-SNAPSHOT
+ 2.25.69
4.0.0
guardduty
diff --git a/services/health/pom.xml b/services/health/pom.xml
index 1deb6f5d3d37..1afcb89ffda5 100644
--- a/services/health/pom.xml
+++ b/services/health/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
health
AWS Java SDK :: Services :: AWS Health APIs and Notifications
diff --git a/services/healthlake/pom.xml b/services/healthlake/pom.xml
index 1b537124c175..cd3367b728df 100644
--- a/services/healthlake/pom.xml
+++ b/services/healthlake/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
healthlake
AWS Java SDK :: Services :: Health Lake
diff --git a/services/iam/pom.xml b/services/iam/pom.xml
index bd6e1b1fce2b..9eb355be9532 100644
--- a/services/iam/pom.xml
+++ b/services/iam/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
iam
AWS Java SDK :: Services :: AWS IAM
diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml
index 2fa40a111a2e..c47938ccd107 100644
--- a/services/identitystore/pom.xml
+++ b/services/identitystore/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
identitystore
AWS Java SDK :: Services :: Identitystore
diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml
index 7dddac392c0d..1514a2484729 100644
--- a/services/imagebuilder/pom.xml
+++ b/services/imagebuilder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
imagebuilder
AWS Java SDK :: Services :: Imagebuilder
diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml
index d5e9a0e0ea8a..66ed14774b9a 100644
--- a/services/inspector/pom.xml
+++ b/services/inspector/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
inspector
AWS Java SDK :: Services :: Amazon Inspector Service
diff --git a/services/inspector2/pom.xml b/services/inspector2/pom.xml
index 519fbc911b78..9e8c1bad1faf 100644
--- a/services/inspector2/pom.xml
+++ b/services/inspector2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
inspector2
AWS Java SDK :: Services :: Inspector2
diff --git a/services/inspectorscan/pom.xml b/services/inspectorscan/pom.xml
index 76ccbbba4a52..b590a5547d60 100644
--- a/services/inspectorscan/pom.xml
+++ b/services/inspectorscan/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
inspectorscan
AWS Java SDK :: Services :: Inspector Scan
diff --git a/services/internetmonitor/pom.xml b/services/internetmonitor/pom.xml
index 7378a1021719..1e9dd098e4d2 100644
--- a/services/internetmonitor/pom.xml
+++ b/services/internetmonitor/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
internetmonitor
AWS Java SDK :: Services :: Internet Monitor
diff --git a/services/iot/pom.xml b/services/iot/pom.xml
index 289c4b3e95de..3e5643ad140e 100644
--- a/services/iot/pom.xml
+++ b/services/iot/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
iot
AWS Java SDK :: Services :: AWS IoT
diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml
index 461298fe241f..7540e1c4857b 100644
--- a/services/iot1clickdevices/pom.xml
+++ b/services/iot1clickdevices/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
iot1clickdevices
AWS Java SDK :: Services :: IoT 1Click Devices Service
diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml
index 2587107753a0..a32c341b978a 100644
--- a/services/iot1clickprojects/pom.xml
+++ b/services/iot1clickprojects/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
iot1clickprojects
AWS Java SDK :: Services :: IoT 1Click Projects
diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml
index 1469c9cadf3b..376c3fc72e68 100644
--- a/services/iotanalytics/pom.xml
+++ b/services/iotanalytics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
iotanalytics
AWS Java SDK :: Services :: IoTAnalytics
diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml
index 184ec8fb09b2..9c3ba919dea3 100644
--- a/services/iotdataplane/pom.xml
+++ b/services/iotdataplane/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
iotdataplane
AWS Java SDK :: Services :: AWS IoT Data Plane
diff --git a/services/iotdeviceadvisor/pom.xml b/services/iotdeviceadvisor/pom.xml
index a9d48757fdde..4a77e6526c2b 100644
--- a/services/iotdeviceadvisor/pom.xml
+++ b/services/iotdeviceadvisor/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
iotdeviceadvisor
AWS Java SDK :: Services :: Iot Device Advisor
diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml
index ed20dd9e73d1..e40e05f59e8b 100644
--- a/services/iotevents/pom.xml
+++ b/services/iotevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
iotevents
AWS Java SDK :: Services :: IoT Events
diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml
index d6e840b37202..7cf08fb93a49 100644
--- a/services/ioteventsdata/pom.xml
+++ b/services/ioteventsdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
ioteventsdata
AWS Java SDK :: Services :: IoT Events Data
diff --git a/services/iotfleethub/pom.xml b/services/iotfleethub/pom.xml
index c03f86701ae5..c1a7c9411261 100644
--- a/services/iotfleethub/pom.xml
+++ b/services/iotfleethub/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
iotfleethub
AWS Java SDK :: Services :: Io T Fleet Hub
diff --git a/services/iotfleetwise/pom.xml b/services/iotfleetwise/pom.xml
index 2a060c2cbbeb..892af73dd1a4 100644
--- a/services/iotfleetwise/pom.xml
+++ b/services/iotfleetwise/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
iotfleetwise
AWS Java SDK :: Services :: Io T Fleet Wise
diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml
index 835f90fd5be5..10991d723ef3 100644
--- a/services/iotjobsdataplane/pom.xml
+++ b/services/iotjobsdataplane/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
iotjobsdataplane
AWS Java SDK :: Services :: IoT Jobs Data Plane
diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml
index eb22187a00a9..807ed5064c96 100644
--- a/services/iotsecuretunneling/pom.xml
+++ b/services/iotsecuretunneling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
iotsecuretunneling
AWS Java SDK :: Services :: IoTSecureTunneling
diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml
index bc6964cf8c97..468151560ed2 100644
--- a/services/iotsitewise/pom.xml
+++ b/services/iotsitewise/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
iotsitewise
AWS Java SDK :: Services :: Io T Site Wise
diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml
index 20ec3e98e7bd..b237223a5d64 100644
--- a/services/iotthingsgraph/pom.xml
+++ b/services/iotthingsgraph/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
iotthingsgraph
AWS Java SDK :: Services :: IoTThingsGraph
diff --git a/services/iottwinmaker/pom.xml b/services/iottwinmaker/pom.xml
index a2a6f2a1dcb0..f825e7326ba8 100644
--- a/services/iottwinmaker/pom.xml
+++ b/services/iottwinmaker/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
iottwinmaker
AWS Java SDK :: Services :: Io T Twin Maker
diff --git a/services/iotwireless/pom.xml b/services/iotwireless/pom.xml
index bf7a81d90996..d18b8f34250a 100644
--- a/services/iotwireless/pom.xml
+++ b/services/iotwireless/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
iotwireless
AWS Java SDK :: Services :: IoT Wireless
diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml
index aaff89404d5d..2926fa4cfd6a 100644
--- a/services/ivs/pom.xml
+++ b/services/ivs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
ivs
AWS Java SDK :: Services :: Ivs
diff --git a/services/ivschat/pom.xml b/services/ivschat/pom.xml
index 872dc73eeebd..6d5c22ec031e 100644
--- a/services/ivschat/pom.xml
+++ b/services/ivschat/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
ivschat
AWS Java SDK :: Services :: Ivschat
diff --git a/services/ivsrealtime/pom.xml b/services/ivsrealtime/pom.xml
index 9e793e125a27..0ae42c66f501 100644
--- a/services/ivsrealtime/pom.xml
+++ b/services/ivsrealtime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
ivsrealtime
AWS Java SDK :: Services :: IVS Real Time
diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml
index a6ad1e73db48..76ce6f4dd7fd 100644
--- a/services/kafka/pom.xml
+++ b/services/kafka/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
kafka
AWS Java SDK :: Services :: Kafka
diff --git a/services/kafkaconnect/pom.xml b/services/kafkaconnect/pom.xml
index b1153f79e423..d711813abefb 100644
--- a/services/kafkaconnect/pom.xml
+++ b/services/kafkaconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
kafkaconnect
AWS Java SDK :: Services :: Kafka Connect
diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml
index 2ca5f70ab89d..5137dbc356f5 100644
--- a/services/kendra/pom.xml
+++ b/services/kendra/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
kendra
AWS Java SDK :: Services :: Kendra
diff --git a/services/kendraranking/pom.xml b/services/kendraranking/pom.xml
index 0395d95eeaef..228dab73b648 100644
--- a/services/kendraranking/pom.xml
+++ b/services/kendraranking/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
kendraranking
AWS Java SDK :: Services :: Kendra Ranking
diff --git a/services/keyspaces/pom.xml b/services/keyspaces/pom.xml
index 92e440c06cbe..e4b41011a633 100644
--- a/services/keyspaces/pom.xml
+++ b/services/keyspaces/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
keyspaces
AWS Java SDK :: Services :: Keyspaces
diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml
index bb34f2fa61b3..3e83e906f111 100644
--- a/services/kinesis/pom.xml
+++ b/services/kinesis/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
kinesis
AWS Java SDK :: Services :: Amazon Kinesis
diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml
index 2cd247097c7e..a8380e454c39 100644
--- a/services/kinesisanalytics/pom.xml
+++ b/services/kinesisanalytics/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
kinesisanalytics
AWS Java SDK :: Services :: Amazon Kinesis Analytics
diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml
index bc2cfd0ee031..49c0fe8e86f2 100644
--- a/services/kinesisanalyticsv2/pom.xml
+++ b/services/kinesisanalyticsv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
kinesisanalyticsv2
AWS Java SDK :: Services :: Kinesis Analytics V2
diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml
index 16de9ef0afab..c2a425b9bd6b 100644
--- a/services/kinesisvideo/pom.xml
+++ b/services/kinesisvideo/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.69-SNAPSHOT
+ 2.25.69
4.0.0
kinesisvideo
diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml
index 5df0fa739ca9..e48fbcbe780c 100644
--- a/services/kinesisvideoarchivedmedia/pom.xml
+++ b/services/kinesisvideoarchivedmedia/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
kinesisvideoarchivedmedia
AWS Java SDK :: Services :: Kinesis Video Archived Media
diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml
index aa678b7ef351..ff6eee7b7103 100644
--- a/services/kinesisvideomedia/pom.xml
+++ b/services/kinesisvideomedia/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
kinesisvideomedia
AWS Java SDK :: Services :: Kinesis Video Media
diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml
index 635d0879f717..a50f0755e1fd 100644
--- a/services/kinesisvideosignaling/pom.xml
+++ b/services/kinesisvideosignaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
kinesisvideosignaling
AWS Java SDK :: Services :: Kinesis Video Signaling
diff --git a/services/kinesisvideowebrtcstorage/pom.xml b/services/kinesisvideowebrtcstorage/pom.xml
index 6d36eac6d179..d068615192c0 100644
--- a/services/kinesisvideowebrtcstorage/pom.xml
+++ b/services/kinesisvideowebrtcstorage/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
kinesisvideowebrtcstorage
AWS Java SDK :: Services :: Kinesis Video Web RTC Storage
diff --git a/services/kms/pom.xml b/services/kms/pom.xml
index 84f0c5430d70..3bf7012007e6 100644
--- a/services/kms/pom.xml
+++ b/services/kms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
kms
AWS Java SDK :: Services :: AWS KMS
diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml
index ae277c8ab7a8..721b7ef9c779 100644
--- a/services/lakeformation/pom.xml
+++ b/services/lakeformation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
lakeformation
AWS Java SDK :: Services :: LakeFormation
diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml
index 613824627068..ef2490824f07 100644
--- a/services/lambda/pom.xml
+++ b/services/lambda/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
lambda
AWS Java SDK :: Services :: AWS Lambda
diff --git a/services/launchwizard/pom.xml b/services/launchwizard/pom.xml
index 199227a07945..f84d49668eca 100644
--- a/services/launchwizard/pom.xml
+++ b/services/launchwizard/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
launchwizard
AWS Java SDK :: Services :: Launch Wizard
diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml
index 70107cf07650..a5b117aa9787 100644
--- a/services/lexmodelbuilding/pom.xml
+++ b/services/lexmodelbuilding/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
lexmodelbuilding
AWS Java SDK :: Services :: Amazon Lex Model Building
diff --git a/services/lexmodelsv2/pom.xml b/services/lexmodelsv2/pom.xml
index de67b8ac9c6c..2bd1122bb422 100644
--- a/services/lexmodelsv2/pom.xml
+++ b/services/lexmodelsv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
lexmodelsv2
AWS Java SDK :: Services :: Lex Models V2
diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml
index bed9af26d544..bee091d15edc 100644
--- a/services/lexruntime/pom.xml
+++ b/services/lexruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
lexruntime
AWS Java SDK :: Services :: Amazon Lex Runtime
diff --git a/services/lexruntimev2/pom.xml b/services/lexruntimev2/pom.xml
index 036df4d4289f..6c2f1e95fca9 100644
--- a/services/lexruntimev2/pom.xml
+++ b/services/lexruntimev2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
lexruntimev2
AWS Java SDK :: Services :: Lex Runtime V2
diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml
index 413d31307f47..7c742badc710 100644
--- a/services/licensemanager/pom.xml
+++ b/services/licensemanager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
licensemanager
AWS Java SDK :: Services :: License Manager
diff --git a/services/licensemanagerlinuxsubscriptions/pom.xml b/services/licensemanagerlinuxsubscriptions/pom.xml
index 1bded51311bd..912ba2a12a44 100644
--- a/services/licensemanagerlinuxsubscriptions/pom.xml
+++ b/services/licensemanagerlinuxsubscriptions/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
licensemanagerlinuxsubscriptions
AWS Java SDK :: Services :: License Manager Linux Subscriptions
diff --git a/services/licensemanagerusersubscriptions/pom.xml b/services/licensemanagerusersubscriptions/pom.xml
index 6b34234bbe3a..bff674fccdf3 100644
--- a/services/licensemanagerusersubscriptions/pom.xml
+++ b/services/licensemanagerusersubscriptions/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
licensemanagerusersubscriptions
AWS Java SDK :: Services :: License Manager User Subscriptions
diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml
index aaa9411765f7..6d79abe890d3 100644
--- a/services/lightsail/pom.xml
+++ b/services/lightsail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
lightsail
AWS Java SDK :: Services :: Amazon Lightsail
diff --git a/services/location/pom.xml b/services/location/pom.xml
index ab35e2ad0dca..fc2ba3a0d107 100644
--- a/services/location/pom.xml
+++ b/services/location/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
location
AWS Java SDK :: Services :: Location
diff --git a/services/lookoutequipment/pom.xml b/services/lookoutequipment/pom.xml
index d2b3bbac5d9d..9bbd78be894a 100644
--- a/services/lookoutequipment/pom.xml
+++ b/services/lookoutequipment/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
lookoutequipment
AWS Java SDK :: Services :: Lookout Equipment
diff --git a/services/lookoutmetrics/pom.xml b/services/lookoutmetrics/pom.xml
index 45da18161e51..fc11b281507a 100644
--- a/services/lookoutmetrics/pom.xml
+++ b/services/lookoutmetrics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
lookoutmetrics
AWS Java SDK :: Services :: Lookout Metrics
diff --git a/services/lookoutvision/pom.xml b/services/lookoutvision/pom.xml
index 0f0ce0a75653..f2d2acfa206f 100644
--- a/services/lookoutvision/pom.xml
+++ b/services/lookoutvision/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
lookoutvision
AWS Java SDK :: Services :: Lookout Vision
diff --git a/services/m2/pom.xml b/services/m2/pom.xml
index eabd0c9bd631..58d26ef551a0 100644
--- a/services/m2/pom.xml
+++ b/services/m2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
m2
AWS Java SDK :: Services :: M2
diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml
index a9b467d76faf..22196356f940 100644
--- a/services/machinelearning/pom.xml
+++ b/services/machinelearning/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
machinelearning
AWS Java SDK :: Services :: Amazon Machine Learning
diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml
index 584949bf77d9..8bcd93b9ad95 100644
--- a/services/macie2/pom.xml
+++ b/services/macie2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
macie2
AWS Java SDK :: Services :: Macie2
diff --git a/services/mailmanager/pom.xml b/services/mailmanager/pom.xml
index 7b7cc3ca9574..2a98014862b1 100644
--- a/services/mailmanager/pom.xml
+++ b/services/mailmanager/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
mailmanager
AWS Java SDK :: Services :: Mail Manager
diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml
index 57a35a7f3bf8..35ca7f4033b6 100644
--- a/services/managedblockchain/pom.xml
+++ b/services/managedblockchain/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
managedblockchain
AWS Java SDK :: Services :: ManagedBlockchain
diff --git a/services/managedblockchainquery/pom.xml b/services/managedblockchainquery/pom.xml
index c0cb46b5243f..7726bbb46385 100644
--- a/services/managedblockchainquery/pom.xml
+++ b/services/managedblockchainquery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
managedblockchainquery
AWS Java SDK :: Services :: Managed Blockchain Query
diff --git a/services/marketplaceagreement/pom.xml b/services/marketplaceagreement/pom.xml
index 26de4b58181f..918b3ada4486 100644
--- a/services/marketplaceagreement/pom.xml
+++ b/services/marketplaceagreement/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
marketplaceagreement
AWS Java SDK :: Services :: Marketplace Agreement
diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml
index 7990aa2382bf..07f5db53c8a0 100644
--- a/services/marketplacecatalog/pom.xml
+++ b/services/marketplacecatalog/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
marketplacecatalog
AWS Java SDK :: Services :: Marketplace Catalog
diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml
index 1523855efe5e..f3ea5dd6fe0d 100644
--- a/services/marketplacecommerceanalytics/pom.xml
+++ b/services/marketplacecommerceanalytics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
marketplacecommerceanalytics
AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics
diff --git a/services/marketplacedeployment/pom.xml b/services/marketplacedeployment/pom.xml
index f6c66558ba5d..28a998fd5c0b 100644
--- a/services/marketplacedeployment/pom.xml
+++ b/services/marketplacedeployment/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
marketplacedeployment
AWS Java SDK :: Services :: Marketplace Deployment
diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml
index 0a06d4016378..0c777639b59b 100644
--- a/services/marketplaceentitlement/pom.xml
+++ b/services/marketplaceentitlement/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
marketplaceentitlement
AWS Java SDK :: Services :: AWS Marketplace Entitlement
diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml
index 8f11a778b6a6..63341c1b1c04 100644
--- a/services/marketplacemetering/pom.xml
+++ b/services/marketplacemetering/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
marketplacemetering
AWS Java SDK :: Services :: AWS Marketplace Metering Service
diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml
index 0a7323903e82..c1b7e7177e95 100644
--- a/services/mediaconnect/pom.xml
+++ b/services/mediaconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
mediaconnect
AWS Java SDK :: Services :: MediaConnect
diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml
index 0394c2616e79..4bc7d9de40ca 100644
--- a/services/mediaconvert/pom.xml
+++ b/services/mediaconvert/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.69-SNAPSHOT
+ 2.25.69
4.0.0
mediaconvert
diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml
index 2588d7369cf8..b6561e1fdb9a 100644
--- a/services/medialive/pom.xml
+++ b/services/medialive/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.69-SNAPSHOT
+ 2.25.69
4.0.0
medialive
diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml
index cf296db5a493..56549da68bc5 100644
--- a/services/mediapackage/pom.xml
+++ b/services/mediapackage/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.69-SNAPSHOT
+ 2.25.69
4.0.0
mediapackage
diff --git a/services/mediapackagev2/pom.xml b/services/mediapackagev2/pom.xml
index f84e63dab530..bd01647cf6da 100644
--- a/services/mediapackagev2/pom.xml
+++ b/services/mediapackagev2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
mediapackagev2
AWS Java SDK :: Services :: Media Package V2
diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml
index 6f31c79d47a9..4831493f5f61 100644
--- a/services/mediapackagevod/pom.xml
+++ b/services/mediapackagevod/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
mediapackagevod
AWS Java SDK :: Services :: MediaPackage Vod
diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml
index fb200a3a679a..038a9f7b22cd 100644
--- a/services/mediastore/pom.xml
+++ b/services/mediastore/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.69-SNAPSHOT
+ 2.25.69
4.0.0
mediastore
diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml
index 26175e31a5ee..18341017556a 100644
--- a/services/mediastoredata/pom.xml
+++ b/services/mediastoredata/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.69-SNAPSHOT
+ 2.25.69
4.0.0
mediastoredata
diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml
index 90ec0ff46440..5ac9a2056c12 100644
--- a/services/mediatailor/pom.xml
+++ b/services/mediatailor/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
mediatailor
AWS Java SDK :: Services :: MediaTailor
diff --git a/services/medicalimaging/pom.xml b/services/medicalimaging/pom.xml
index 6b5db676bd8e..8f30b568c3ca 100644
--- a/services/medicalimaging/pom.xml
+++ b/services/medicalimaging/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
medicalimaging
AWS Java SDK :: Services :: Medical Imaging
diff --git a/services/memorydb/pom.xml b/services/memorydb/pom.xml
index 5c6a9c521fda..5aabfacba207 100644
--- a/services/memorydb/pom.xml
+++ b/services/memorydb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
memorydb
AWS Java SDK :: Services :: Memory DB
diff --git a/services/mgn/pom.xml b/services/mgn/pom.xml
index e05e53e1c47b..d89c427d237e 100644
--- a/services/mgn/pom.xml
+++ b/services/mgn/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
mgn
AWS Java SDK :: Services :: Mgn
diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml
index 4c85813510b4..7d1e71437215 100644
--- a/services/migrationhub/pom.xml
+++ b/services/migrationhub/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.69-SNAPSHOT
+ 2.25.69
4.0.0
migrationhub
diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml
index 55fa8dff2a4a..bc18f1039679 100644
--- a/services/migrationhubconfig/pom.xml
+++ b/services/migrationhubconfig/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
migrationhubconfig
AWS Java SDK :: Services :: MigrationHub Config
diff --git a/services/migrationhuborchestrator/pom.xml b/services/migrationhuborchestrator/pom.xml
index b1bc0c73ae4c..72610313e41c 100644
--- a/services/migrationhuborchestrator/pom.xml
+++ b/services/migrationhuborchestrator/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
migrationhuborchestrator
AWS Java SDK :: Services :: Migration Hub Orchestrator
diff --git a/services/migrationhubrefactorspaces/pom.xml b/services/migrationhubrefactorspaces/pom.xml
index 407fbd26dd6d..6267afc651eb 100644
--- a/services/migrationhubrefactorspaces/pom.xml
+++ b/services/migrationhubrefactorspaces/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
migrationhubrefactorspaces
AWS Java SDK :: Services :: Migration Hub Refactor Spaces
diff --git a/services/migrationhubstrategy/pom.xml b/services/migrationhubstrategy/pom.xml
index b162d3d4491b..ea53b0c7ef7a 100644
--- a/services/migrationhubstrategy/pom.xml
+++ b/services/migrationhubstrategy/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
migrationhubstrategy
AWS Java SDK :: Services :: Migration Hub Strategy
diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml
index 525f9c5481ca..2794d1b915b1 100644
--- a/services/mobile/pom.xml
+++ b/services/mobile/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.69-SNAPSHOT
+ 2.25.69
4.0.0
mobile
diff --git a/services/mq/pom.xml b/services/mq/pom.xml
index f0183a742ef0..19789a8544e8 100644
--- a/services/mq/pom.xml
+++ b/services/mq/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.69-SNAPSHOT
+ 2.25.69
4.0.0
mq
diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml
index 494828023572..41298f7e2b7c 100644
--- a/services/mturk/pom.xml
+++ b/services/mturk/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
mturk
AWS Java SDK :: Services :: Amazon Mechanical Turk Requester
diff --git a/services/mwaa/pom.xml b/services/mwaa/pom.xml
index 4571c7bfd680..824765c2a629 100644
--- a/services/mwaa/pom.xml
+++ b/services/mwaa/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
mwaa
AWS Java SDK :: Services :: MWAA
diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml
index 51434c9c234d..236e35ba4c66 100644
--- a/services/neptune/pom.xml
+++ b/services/neptune/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
neptune
AWS Java SDK :: Services :: Neptune
diff --git a/services/neptunedata/pom.xml b/services/neptunedata/pom.xml
index f62c402f9d4c..2a385de98439 100644
--- a/services/neptunedata/pom.xml
+++ b/services/neptunedata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
neptunedata
AWS Java SDK :: Services :: Neptunedata
diff --git a/services/neptunegraph/pom.xml b/services/neptunegraph/pom.xml
index 5a87f1e587d6..799e31d1bcd8 100644
--- a/services/neptunegraph/pom.xml
+++ b/services/neptunegraph/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
neptunegraph
AWS Java SDK :: Services :: Neptune Graph
diff --git a/services/networkfirewall/pom.xml b/services/networkfirewall/pom.xml
index c85429b3e51e..9649353c9f46 100644
--- a/services/networkfirewall/pom.xml
+++ b/services/networkfirewall/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
networkfirewall
AWS Java SDK :: Services :: Network Firewall
diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml
index 62318768c8cd..c195712f8383 100644
--- a/services/networkmanager/pom.xml
+++ b/services/networkmanager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
networkmanager
AWS Java SDK :: Services :: NetworkManager
diff --git a/services/networkmonitor/pom.xml b/services/networkmonitor/pom.xml
index 02a22e0287d6..66f4ad4bcf8e 100644
--- a/services/networkmonitor/pom.xml
+++ b/services/networkmonitor/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
networkmonitor
AWS Java SDK :: Services :: Network Monitor
diff --git a/services/nimble/pom.xml b/services/nimble/pom.xml
index 5b52e1e3068a..4e0cff74b6f4 100644
--- a/services/nimble/pom.xml
+++ b/services/nimble/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
nimble
AWS Java SDK :: Services :: Nimble
diff --git a/services/oam/pom.xml b/services/oam/pom.xml
index 78aee72bf9a2..48033997a7b6 100644
--- a/services/oam/pom.xml
+++ b/services/oam/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
oam
AWS Java SDK :: Services :: OAM
diff --git a/services/omics/pom.xml b/services/omics/pom.xml
index 70f70d1050e0..4385216708e3 100644
--- a/services/omics/pom.xml
+++ b/services/omics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
omics
AWS Java SDK :: Services :: Omics
diff --git a/services/opensearch/pom.xml b/services/opensearch/pom.xml
index 2b5bd9622d55..c6a0a5c98755 100644
--- a/services/opensearch/pom.xml
+++ b/services/opensearch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
opensearch
AWS Java SDK :: Services :: Open Search
diff --git a/services/opensearchserverless/pom.xml b/services/opensearchserverless/pom.xml
index 0867d5710b0a..0e204e1ce156 100644
--- a/services/opensearchserverless/pom.xml
+++ b/services/opensearchserverless/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
opensearchserverless
AWS Java SDK :: Services :: Open Search Serverless
diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml
index cd827bfab8be..97b23fbcda92 100644
--- a/services/opsworks/pom.xml
+++ b/services/opsworks/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
opsworks
AWS Java SDK :: Services :: AWS OpsWorks
diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml
index b9687e11b99c..3a2ac62e692d 100644
--- a/services/opsworkscm/pom.xml
+++ b/services/opsworkscm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
opsworkscm
AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate
diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml
index 73118bfc07c7..90f77d724e4b 100644
--- a/services/organizations/pom.xml
+++ b/services/organizations/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
organizations
AWS Java SDK :: Services :: AWS Organizations
diff --git a/services/osis/pom.xml b/services/osis/pom.xml
index 17c07652cba4..c4bc743c17dc 100644
--- a/services/osis/pom.xml
+++ b/services/osis/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
osis
AWS Java SDK :: Services :: OSIS
diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml
index 590474198203..8d5723f3bf3a 100644
--- a/services/outposts/pom.xml
+++ b/services/outposts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
outposts
AWS Java SDK :: Services :: Outposts
diff --git a/services/panorama/pom.xml b/services/panorama/pom.xml
index ad0c1e3e6a37..9f198569e8a3 100644
--- a/services/panorama/pom.xml
+++ b/services/panorama/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
panorama
AWS Java SDK :: Services :: Panorama
diff --git a/services/paymentcryptography/pom.xml b/services/paymentcryptography/pom.xml
index b0947387368e..ae2bb7415855 100644
--- a/services/paymentcryptography/pom.xml
+++ b/services/paymentcryptography/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
paymentcryptography
AWS Java SDK :: Services :: Payment Cryptography
diff --git a/services/paymentcryptographydata/pom.xml b/services/paymentcryptographydata/pom.xml
index 51d5b823730b..ea92a678401e 100644
--- a/services/paymentcryptographydata/pom.xml
+++ b/services/paymentcryptographydata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
paymentcryptographydata
AWS Java SDK :: Services :: Payment Cryptography Data
diff --git a/services/pcaconnectorad/pom.xml b/services/pcaconnectorad/pom.xml
index 6cd810f1d456..010415d0e044 100644
--- a/services/pcaconnectorad/pom.xml
+++ b/services/pcaconnectorad/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
pcaconnectorad
AWS Java SDK :: Services :: Pca Connector Ad
diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml
index 8c982f354696..145a0cb9fdd2 100644
--- a/services/personalize/pom.xml
+++ b/services/personalize/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
personalize
AWS Java SDK :: Services :: Personalize
diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml
index 34c75c5f4c53..814bef18178b 100644
--- a/services/personalizeevents/pom.xml
+++ b/services/personalizeevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
personalizeevents
AWS Java SDK :: Services :: Personalize Events
diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml
index 06a8ec610b74..f0710a8cdd9e 100644
--- a/services/personalizeruntime/pom.xml
+++ b/services/personalizeruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
personalizeruntime
AWS Java SDK :: Services :: Personalize Runtime
diff --git a/services/pi/pom.xml b/services/pi/pom.xml
index 84280ff8cf0c..53db8e3ed3c3 100644
--- a/services/pi/pom.xml
+++ b/services/pi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
pi
AWS Java SDK :: Services :: PI
diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml
index cb4afd6ccb92..e66241a45cc0 100644
--- a/services/pinpoint/pom.xml
+++ b/services/pinpoint/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
pinpoint
AWS Java SDK :: Services :: Amazon Pinpoint
diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml
index 83d9aa8aabe3..ee8395cd0c9d 100644
--- a/services/pinpointemail/pom.xml
+++ b/services/pinpointemail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
pinpointemail
AWS Java SDK :: Services :: Pinpoint Email
diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml
index 562e25a1aae3..13a60e7a7d86 100644
--- a/services/pinpointsmsvoice/pom.xml
+++ b/services/pinpointsmsvoice/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
pinpointsmsvoice
AWS Java SDK :: Services :: Pinpoint SMS Voice
diff --git a/services/pinpointsmsvoicev2/pom.xml b/services/pinpointsmsvoicev2/pom.xml
index 5c7fa487fb94..5ef2fc93dbfd 100644
--- a/services/pinpointsmsvoicev2/pom.xml
+++ b/services/pinpointsmsvoicev2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
pinpointsmsvoicev2
AWS Java SDK :: Services :: Pinpoint SMS Voice V2
diff --git a/services/pipes/pom.xml b/services/pipes/pom.xml
index 504bb9ad1142..323cb9bdabbe 100644
--- a/services/pipes/pom.xml
+++ b/services/pipes/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
pipes
AWS Java SDK :: Services :: Pipes
diff --git a/services/polly/pom.xml b/services/polly/pom.xml
index 043f6331b73e..8979a405484b 100644
--- a/services/polly/pom.xml
+++ b/services/polly/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
polly
AWS Java SDK :: Services :: Amazon Polly
diff --git a/services/pom.xml b/services/pom.xml
index b19b113261a2..b918dae076ca 100644
--- a/services/pom.xml
+++ b/services/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.69-SNAPSHOT
+ 2.25.69
services
AWS Java SDK :: Services
diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml
index 80704a39e59c..73abc0e99586 100644
--- a/services/pricing/pom.xml
+++ b/services/pricing/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.69-SNAPSHOT
+ 2.25.69
4.0.0
pricing
diff --git a/services/privatenetworks/pom.xml b/services/privatenetworks/pom.xml
index ee1d80541f9c..7657bce5f7f8 100644
--- a/services/privatenetworks/pom.xml
+++ b/services/privatenetworks/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
privatenetworks
AWS Java SDK :: Services :: Private Networks
diff --git a/services/proton/pom.xml b/services/proton/pom.xml
index 6b5b3176fdfc..c64fedd17280 100644
--- a/services/proton/pom.xml
+++ b/services/proton/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
proton
AWS Java SDK :: Services :: Proton
diff --git a/services/qbusiness/pom.xml b/services/qbusiness/pom.xml
index c8c656e02af6..4dd427e52f61 100644
--- a/services/qbusiness/pom.xml
+++ b/services/qbusiness/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
qbusiness
AWS Java SDK :: Services :: Q Business
diff --git a/services/qconnect/pom.xml b/services/qconnect/pom.xml
index 21def9090a78..f109ecfc6808 100644
--- a/services/qconnect/pom.xml
+++ b/services/qconnect/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
qconnect
AWS Java SDK :: Services :: Q Connect
diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml
index a263349ee0af..22980b617149 100644
--- a/services/qldb/pom.xml
+++ b/services/qldb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
qldb
AWS Java SDK :: Services :: QLDB
diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml
index 35892f70898b..28856b5ddcf0 100644
--- a/services/qldbsession/pom.xml
+++ b/services/qldbsession/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
qldbsession
AWS Java SDK :: Services :: QLDB Session
diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml
index c685525bf6f6..33d36aa2a133 100644
--- a/services/quicksight/pom.xml
+++ b/services/quicksight/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
quicksight
AWS Java SDK :: Services :: QuickSight
diff --git a/services/ram/pom.xml b/services/ram/pom.xml
index e6b667cbbd17..7b276a8bbf42 100644
--- a/services/ram/pom.xml
+++ b/services/ram/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
ram
AWS Java SDK :: Services :: RAM
diff --git a/services/rbin/pom.xml b/services/rbin/pom.xml
index ec806f671221..3a2733ef2bbc 100644
--- a/services/rbin/pom.xml
+++ b/services/rbin/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
rbin
AWS Java SDK :: Services :: Rbin
diff --git a/services/rds/pom.xml b/services/rds/pom.xml
index 11c8e2868abe..455499e289a6 100644
--- a/services/rds/pom.xml
+++ b/services/rds/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
rds
AWS Java SDK :: Services :: Amazon RDS
diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml
index eafdec42ac71..55f9e43b3d44 100644
--- a/services/rdsdata/pom.xml
+++ b/services/rdsdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
rdsdata
AWS Java SDK :: Services :: RDS Data
diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml
index b647bebe271c..2e120da9d51e 100644
--- a/services/redshift/pom.xml
+++ b/services/redshift/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
redshift
AWS Java SDK :: Services :: Amazon Redshift
diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml
index 6935011927f8..579365d4f4a5 100644
--- a/services/redshiftdata/pom.xml
+++ b/services/redshiftdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
redshiftdata
AWS Java SDK :: Services :: Redshift Data
diff --git a/services/redshiftserverless/pom.xml b/services/redshiftserverless/pom.xml
index 09401278e322..07a0be7b0378 100644
--- a/services/redshiftserverless/pom.xml
+++ b/services/redshiftserverless/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
redshiftserverless
AWS Java SDK :: Services :: Redshift Serverless
diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml
index 42c33fe0a393..c9a5d647ff03 100644
--- a/services/rekognition/pom.xml
+++ b/services/rekognition/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
rekognition
AWS Java SDK :: Services :: Amazon Rekognition
diff --git a/services/repostspace/pom.xml b/services/repostspace/pom.xml
index 4b0f40a1e44d..71a22170f95f 100644
--- a/services/repostspace/pom.xml
+++ b/services/repostspace/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
repostspace
AWS Java SDK :: Services :: Repostspace
diff --git a/services/resiliencehub/pom.xml b/services/resiliencehub/pom.xml
index 3c70c854e96f..fbbf03214cff 100644
--- a/services/resiliencehub/pom.xml
+++ b/services/resiliencehub/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
resiliencehub
AWS Java SDK :: Services :: Resiliencehub
diff --git a/services/resourceexplorer2/pom.xml b/services/resourceexplorer2/pom.xml
index e63338d87273..8899b29c760a 100644
--- a/services/resourceexplorer2/pom.xml
+++ b/services/resourceexplorer2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
resourceexplorer2
AWS Java SDK :: Services :: Resource Explorer 2
diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml
index 47cb88b41cb5..a250907a994c 100644
--- a/services/resourcegroups/pom.xml
+++ b/services/resourcegroups/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.69-SNAPSHOT
+ 2.25.69
4.0.0
resourcegroups
diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml
index 0b8b2450b92c..d5fc33bf5d09 100644
--- a/services/resourcegroupstaggingapi/pom.xml
+++ b/services/resourcegroupstaggingapi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
resourcegroupstaggingapi
AWS Java SDK :: Services :: AWS Resource Groups Tagging API
diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml
index d51f322457cd..5cac957de0e2 100644
--- a/services/robomaker/pom.xml
+++ b/services/robomaker/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
robomaker
AWS Java SDK :: Services :: RoboMaker
diff --git a/services/rolesanywhere/pom.xml b/services/rolesanywhere/pom.xml
index 9747ac7dc813..882ce3e5bd83 100644
--- a/services/rolesanywhere/pom.xml
+++ b/services/rolesanywhere/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
rolesanywhere
AWS Java SDK :: Services :: Roles Anywhere
diff --git a/services/route53/pom.xml b/services/route53/pom.xml
index 9084646e0cc6..1760f8563402 100644
--- a/services/route53/pom.xml
+++ b/services/route53/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
route53
AWS Java SDK :: Services :: Amazon Route53
diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml
index f86233d4abcd..50a6e6bd4786 100644
--- a/services/route53domains/pom.xml
+++ b/services/route53domains/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
route53domains
AWS Java SDK :: Services :: Amazon Route53 Domains
diff --git a/services/route53profiles/pom.xml b/services/route53profiles/pom.xml
index 4f9a11bf8d8d..2b4f7bc56239 100644
--- a/services/route53profiles/pom.xml
+++ b/services/route53profiles/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
route53profiles
AWS Java SDK :: Services :: Route53 Profiles
diff --git a/services/route53recoverycluster/pom.xml b/services/route53recoverycluster/pom.xml
index ddb0a3cbe12c..54ebdfe2db05 100644
--- a/services/route53recoverycluster/pom.xml
+++ b/services/route53recoverycluster/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
route53recoverycluster
AWS Java SDK :: Services :: Route53 Recovery Cluster
diff --git a/services/route53recoverycontrolconfig/pom.xml b/services/route53recoverycontrolconfig/pom.xml
index bca0a698a8dc..793e31b86ae8 100644
--- a/services/route53recoverycontrolconfig/pom.xml
+++ b/services/route53recoverycontrolconfig/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
route53recoverycontrolconfig
AWS Java SDK :: Services :: Route53 Recovery Control Config
diff --git a/services/route53recoveryreadiness/pom.xml b/services/route53recoveryreadiness/pom.xml
index f6d16d952fa2..1daeb607d388 100644
--- a/services/route53recoveryreadiness/pom.xml
+++ b/services/route53recoveryreadiness/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
route53recoveryreadiness
AWS Java SDK :: Services :: Route53 Recovery Readiness
diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml
index ea100253c168..8398c01ad6d3 100644
--- a/services/route53resolver/pom.xml
+++ b/services/route53resolver/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
route53resolver
AWS Java SDK :: Services :: Route53Resolver
diff --git a/services/rum/pom.xml b/services/rum/pom.xml
index be7d70f1a423..34c23835cc0e 100644
--- a/services/rum/pom.xml
+++ b/services/rum/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
rum
AWS Java SDK :: Services :: RUM
diff --git a/services/s3/pom.xml b/services/s3/pom.xml
index d98c31a2c904..9ed410cda4f3 100644
--- a/services/s3/pom.xml
+++ b/services/s3/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
s3
AWS Java SDK :: Services :: Amazon S3
diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml
index f614b20c52fd..5a192d768b6a 100644
--- a/services/s3control/pom.xml
+++ b/services/s3control/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
s3control
AWS Java SDK :: Services :: Amazon S3 Control
diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml
index 1de2a5fca2ce..2bcce203cf2f 100644
--- a/services/s3outposts/pom.xml
+++ b/services/s3outposts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
s3outposts
AWS Java SDK :: Services :: S3 Outposts
diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml
index 84162b58ca80..d16014ec1739 100644
--- a/services/sagemaker/pom.xml
+++ b/services/sagemaker/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.69-SNAPSHOT
+ 2.25.69
4.0.0
sagemaker
diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml
index e19c6866df32..cd68e9c421d7 100644
--- a/services/sagemakera2iruntime/pom.xml
+++ b/services/sagemakera2iruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
sagemakera2iruntime
AWS Java SDK :: Services :: SageMaker A2I Runtime
diff --git a/services/sagemakeredge/pom.xml b/services/sagemakeredge/pom.xml
index a120fed39078..f6803775f0b7 100644
--- a/services/sagemakeredge/pom.xml
+++ b/services/sagemakeredge/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
sagemakeredge
AWS Java SDK :: Services :: Sagemaker Edge
diff --git a/services/sagemakerfeaturestoreruntime/pom.xml b/services/sagemakerfeaturestoreruntime/pom.xml
index 671909a38320..27fb7f0146a8 100644
--- a/services/sagemakerfeaturestoreruntime/pom.xml
+++ b/services/sagemakerfeaturestoreruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
sagemakerfeaturestoreruntime
AWS Java SDK :: Services :: Sage Maker Feature Store Runtime
diff --git a/services/sagemakergeospatial/pom.xml b/services/sagemakergeospatial/pom.xml
index 3d96a1721e01..2ee9f4433069 100644
--- a/services/sagemakergeospatial/pom.xml
+++ b/services/sagemakergeospatial/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
sagemakergeospatial
AWS Java SDK :: Services :: Sage Maker Geospatial
diff --git a/services/sagemakermetrics/pom.xml b/services/sagemakermetrics/pom.xml
index ff69632fa799..e75ac0449d4e 100644
--- a/services/sagemakermetrics/pom.xml
+++ b/services/sagemakermetrics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
sagemakermetrics
AWS Java SDK :: Services :: Sage Maker Metrics
diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml
index c979fe93e01f..c1ba6d50dfc7 100644
--- a/services/sagemakerruntime/pom.xml
+++ b/services/sagemakerruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
sagemakerruntime
AWS Java SDK :: Services :: SageMaker Runtime
diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml
index 023900929f7e..10be79ecfe67 100644
--- a/services/savingsplans/pom.xml
+++ b/services/savingsplans/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
savingsplans
AWS Java SDK :: Services :: Savingsplans
diff --git a/services/scheduler/pom.xml b/services/scheduler/pom.xml
index 4b3f331c4972..ea87b0928add 100644
--- a/services/scheduler/pom.xml
+++ b/services/scheduler/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
scheduler
AWS Java SDK :: Services :: Scheduler
diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml
index a610e729ffc8..2427e5f469da 100644
--- a/services/schemas/pom.xml
+++ b/services/schemas/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
schemas
AWS Java SDK :: Services :: Schemas
diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml
index 812951f27088..8b0f87504f82 100644
--- a/services/secretsmanager/pom.xml
+++ b/services/secretsmanager/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
secretsmanager
AWS Java SDK :: Services :: AWS Secrets Manager
diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml
index c77dea4c43b0..acfe644bad13 100644
--- a/services/securityhub/pom.xml
+++ b/services/securityhub/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
securityhub
AWS Java SDK :: Services :: SecurityHub
diff --git a/services/securitylake/pom.xml b/services/securitylake/pom.xml
index 56150065e7be..a5c6a86cfb35 100644
--- a/services/securitylake/pom.xml
+++ b/services/securitylake/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
securitylake
AWS Java SDK :: Services :: Security Lake
diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml
index 2092fadb1d85..aad26ca0ce71 100644
--- a/services/serverlessapplicationrepository/pom.xml
+++ b/services/serverlessapplicationrepository/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.69-SNAPSHOT
+ 2.25.69
4.0.0
serverlessapplicationrepository
diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml
index 87010c8759b8..459739868f84 100644
--- a/services/servicecatalog/pom.xml
+++ b/services/servicecatalog/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
servicecatalog
AWS Java SDK :: Services :: AWS Service Catalog
diff --git a/services/servicecatalogappregistry/pom.xml b/services/servicecatalogappregistry/pom.xml
index 0e26f23c6702..ffdffd0515bf 100644
--- a/services/servicecatalogappregistry/pom.xml
+++ b/services/servicecatalogappregistry/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
servicecatalogappregistry
AWS Java SDK :: Services :: Service Catalog App Registry
diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml
index 229e0f335f53..3f2f1425deb7 100644
--- a/services/servicediscovery/pom.xml
+++ b/services/servicediscovery/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.69-SNAPSHOT
+ 2.25.69
4.0.0
servicediscovery
diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml
index 102a5ce0df08..587a44ce6bd9 100644
--- a/services/servicequotas/pom.xml
+++ b/services/servicequotas/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
servicequotas
AWS Java SDK :: Services :: Service Quotas
diff --git a/services/ses/pom.xml b/services/ses/pom.xml
index 544c912f36e4..dce13e78ef6a 100644
--- a/services/ses/pom.xml
+++ b/services/ses/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
ses
AWS Java SDK :: Services :: Amazon SES
diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml
index 7785cd3eeacd..eb00983e1728 100644
--- a/services/sesv2/pom.xml
+++ b/services/sesv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
sesv2
AWS Java SDK :: Services :: SESv2
diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml
index c067c337a4b3..600ce0376407 100644
--- a/services/sfn/pom.xml
+++ b/services/sfn/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
sfn
AWS Java SDK :: Services :: AWS Step Functions
diff --git a/services/shield/pom.xml b/services/shield/pom.xml
index 95dd6226d79c..492fe3a73e23 100644
--- a/services/shield/pom.xml
+++ b/services/shield/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
shield
AWS Java SDK :: Services :: AWS Shield
diff --git a/services/signer/pom.xml b/services/signer/pom.xml
index 82eab5f6f9a9..83d8973b121f 100644
--- a/services/signer/pom.xml
+++ b/services/signer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
signer
AWS Java SDK :: Services :: Signer
diff --git a/services/simspaceweaver/pom.xml b/services/simspaceweaver/pom.xml
index 0e416cb04237..e9f86a940f15 100644
--- a/services/simspaceweaver/pom.xml
+++ b/services/simspaceweaver/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
simspaceweaver
AWS Java SDK :: Services :: Sim Space Weaver
diff --git a/services/sms/pom.xml b/services/sms/pom.xml
index 31389ade971a..2fa8880abd8b 100644
--- a/services/sms/pom.xml
+++ b/services/sms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
sms
AWS Java SDK :: Services :: AWS Server Migration
diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml
index 38622a04f814..5f309cd009ac 100644
--- a/services/snowball/pom.xml
+++ b/services/snowball/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
snowball
AWS Java SDK :: Services :: Amazon Snowball
diff --git a/services/snowdevicemanagement/pom.xml b/services/snowdevicemanagement/pom.xml
index c921a06cb451..a6141d8edeb5 100644
--- a/services/snowdevicemanagement/pom.xml
+++ b/services/snowdevicemanagement/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
snowdevicemanagement
AWS Java SDK :: Services :: Snow Device Management
diff --git a/services/sns/pom.xml b/services/sns/pom.xml
index 1b2df63c66cd..1e9777894101 100644
--- a/services/sns/pom.xml
+++ b/services/sns/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
sns
AWS Java SDK :: Services :: Amazon SNS
diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml
index c7c03f1987de..5f78dbcbf433 100644
--- a/services/sqs/pom.xml
+++ b/services/sqs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
sqs
AWS Java SDK :: Services :: Amazon SQS
diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml
index ff05e7864c22..3abb7737d2ad 100644
--- a/services/ssm/pom.xml
+++ b/services/ssm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
ssm
AWS Java SDK :: Services :: AWS Simple Systems Management (SSM)
diff --git a/services/ssmcontacts/pom.xml b/services/ssmcontacts/pom.xml
index 5dd84894ddc9..ae8de45e51c7 100644
--- a/services/ssmcontacts/pom.xml
+++ b/services/ssmcontacts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
ssmcontacts
AWS Java SDK :: Services :: SSM Contacts
diff --git a/services/ssmincidents/pom.xml b/services/ssmincidents/pom.xml
index 65a84b411153..07753120fb01 100644
--- a/services/ssmincidents/pom.xml
+++ b/services/ssmincidents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
ssmincidents
AWS Java SDK :: Services :: SSM Incidents
diff --git a/services/ssmsap/pom.xml b/services/ssmsap/pom.xml
index 99d60315ff14..f4878aa28005 100644
--- a/services/ssmsap/pom.xml
+++ b/services/ssmsap/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
ssmsap
AWS Java SDK :: Services :: Ssm Sap
diff --git a/services/sso/pom.xml b/services/sso/pom.xml
index 263e665144c1..e4946ae9b981 100644
--- a/services/sso/pom.xml
+++ b/services/sso/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
sso
AWS Java SDK :: Services :: SSO
diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml
index ef82439e9539..d788de5bd53f 100644
--- a/services/ssoadmin/pom.xml
+++ b/services/ssoadmin/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
ssoadmin
AWS Java SDK :: Services :: SSO Admin
diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml
index c44e62b92231..6e8a2a0d9ad2 100644
--- a/services/ssooidc/pom.xml
+++ b/services/ssooidc/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
ssooidc
AWS Java SDK :: Services :: SSO OIDC
diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml
index 9f8312a1ef30..0ee92ae5c503 100644
--- a/services/storagegateway/pom.xml
+++ b/services/storagegateway/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
storagegateway
AWS Java SDK :: Services :: AWS Storage Gateway
diff --git a/services/sts/pom.xml b/services/sts/pom.xml
index bc606eddec3d..af3adc715955 100644
--- a/services/sts/pom.xml
+++ b/services/sts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
sts
AWS Java SDK :: Services :: AWS STS
diff --git a/services/supplychain/pom.xml b/services/supplychain/pom.xml
index 88632a65522e..e55029807c4a 100644
--- a/services/supplychain/pom.xml
+++ b/services/supplychain/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
supplychain
AWS Java SDK :: Services :: Supply Chain
diff --git a/services/support/pom.xml b/services/support/pom.xml
index e811f22e12f8..427d315f1d4c 100644
--- a/services/support/pom.xml
+++ b/services/support/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
support
AWS Java SDK :: Services :: AWS Support
diff --git a/services/supportapp/pom.xml b/services/supportapp/pom.xml
index 0a94f1fecbef..b280811ac0d0 100644
--- a/services/supportapp/pom.xml
+++ b/services/supportapp/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
supportapp
AWS Java SDK :: Services :: Support App
diff --git a/services/swf/pom.xml b/services/swf/pom.xml
index 279b1a30f10e..2ed73c3cd0c0 100644
--- a/services/swf/pom.xml
+++ b/services/swf/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
swf
AWS Java SDK :: Services :: Amazon SWF
diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml
index ae00e476335a..5bf60ffee587 100644
--- a/services/synthetics/pom.xml
+++ b/services/synthetics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
synthetics
AWS Java SDK :: Services :: Synthetics
diff --git a/services/taxsettings/pom.xml b/services/taxsettings/pom.xml
index 154565ea23e2..2429c76da5b5 100644
--- a/services/taxsettings/pom.xml
+++ b/services/taxsettings/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
taxsettings
AWS Java SDK :: Services :: Tax Settings
diff --git a/services/textract/pom.xml b/services/textract/pom.xml
index 52f0ebb18ac0..44f3c777b0de 100644
--- a/services/textract/pom.xml
+++ b/services/textract/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
textract
AWS Java SDK :: Services :: Textract
diff --git a/services/timestreaminfluxdb/pom.xml b/services/timestreaminfluxdb/pom.xml
index 73da5d252198..5d4b4ad70ad6 100644
--- a/services/timestreaminfluxdb/pom.xml
+++ b/services/timestreaminfluxdb/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
timestreaminfluxdb
AWS Java SDK :: Services :: Timestream Influx DB
diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml
index bed7495b97fc..78e08b433a31 100644
--- a/services/timestreamquery/pom.xml
+++ b/services/timestreamquery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
timestreamquery
AWS Java SDK :: Services :: Timestream Query
diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml
index 0a7bd0eff7c9..4d48373115ec 100644
--- a/services/timestreamwrite/pom.xml
+++ b/services/timestreamwrite/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
timestreamwrite
AWS Java SDK :: Services :: Timestream Write
diff --git a/services/tnb/pom.xml b/services/tnb/pom.xml
index 203ea3a994f8..63002b7e7eb0 100644
--- a/services/tnb/pom.xml
+++ b/services/tnb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
tnb
AWS Java SDK :: Services :: Tnb
diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml
index 2bb225b862cb..7e99c368c984 100644
--- a/services/transcribe/pom.xml
+++ b/services/transcribe/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
transcribe
AWS Java SDK :: Services :: Transcribe
diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml
index 7282d9442103..ed455c727342 100644
--- a/services/transcribestreaming/pom.xml
+++ b/services/transcribestreaming/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
transcribestreaming
AWS Java SDK :: Services :: AWS Transcribe Streaming
diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml
index ace3dc2aebe5..523b2d4209d2 100644
--- a/services/transfer/pom.xml
+++ b/services/transfer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
transfer
AWS Java SDK :: Services :: Transfer
diff --git a/services/translate/pom.xml b/services/translate/pom.xml
index 68ae1b11a8ef..2659530b973e 100644
--- a/services/translate/pom.xml
+++ b/services/translate/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.69-SNAPSHOT
+ 2.25.69
4.0.0
translate
diff --git a/services/trustedadvisor/pom.xml b/services/trustedadvisor/pom.xml
index 35164aa4688f..ff5527dedca8 100644
--- a/services/trustedadvisor/pom.xml
+++ b/services/trustedadvisor/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
trustedadvisor
AWS Java SDK :: Services :: Trusted Advisor
diff --git a/services/verifiedpermissions/pom.xml b/services/verifiedpermissions/pom.xml
index e2000f92bb90..c05989260d93 100644
--- a/services/verifiedpermissions/pom.xml
+++ b/services/verifiedpermissions/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
verifiedpermissions
AWS Java SDK :: Services :: Verified Permissions
diff --git a/services/voiceid/pom.xml b/services/voiceid/pom.xml
index e2051e0426eb..5eb3e2cec182 100644
--- a/services/voiceid/pom.xml
+++ b/services/voiceid/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
voiceid
AWS Java SDK :: Services :: Voice ID
diff --git a/services/vpclattice/pom.xml b/services/vpclattice/pom.xml
index c093d767146e..1f66acfddfcc 100644
--- a/services/vpclattice/pom.xml
+++ b/services/vpclattice/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
vpclattice
AWS Java SDK :: Services :: VPC Lattice
diff --git a/services/waf/pom.xml b/services/waf/pom.xml
index 49d9c41692d9..92b2eb05a842 100644
--- a/services/waf/pom.xml
+++ b/services/waf/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
waf
AWS Java SDK :: Services :: AWS WAF
diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml
index 635c9ac34078..6161c69f08f8 100644
--- a/services/wafv2/pom.xml
+++ b/services/wafv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
wafv2
AWS Java SDK :: Services :: WAFV2
diff --git a/services/wellarchitected/pom.xml b/services/wellarchitected/pom.xml
index cdb717b30beb..9df6dd97ec92 100644
--- a/services/wellarchitected/pom.xml
+++ b/services/wellarchitected/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
wellarchitected
AWS Java SDK :: Services :: Well Architected
diff --git a/services/wisdom/pom.xml b/services/wisdom/pom.xml
index c1a1d41ccb7e..be340717865e 100644
--- a/services/wisdom/pom.xml
+++ b/services/wisdom/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
wisdom
AWS Java SDK :: Services :: Wisdom
diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml
index 1d59825f2de7..2fc3c24d3af2 100644
--- a/services/workdocs/pom.xml
+++ b/services/workdocs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
workdocs
AWS Java SDK :: Services :: Amazon WorkDocs
diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml
index 951982d7fe31..c914a55625e3 100644
--- a/services/worklink/pom.xml
+++ b/services/worklink/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
worklink
AWS Java SDK :: Services :: WorkLink
diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml
index e49d83c78712..b951a7c6366d 100644
--- a/services/workmail/pom.xml
+++ b/services/workmail/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.69-SNAPSHOT
+ 2.25.69
4.0.0
workmail
diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml
index e3059e6945d6..c6de387e7445 100644
--- a/services/workmailmessageflow/pom.xml
+++ b/services/workmailmessageflow/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
workmailmessageflow
AWS Java SDK :: Services :: WorkMailMessageFlow
diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml
index 2ec0ad88b2dd..34dccc08b0a9 100644
--- a/services/workspaces/pom.xml
+++ b/services/workspaces/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
workspaces
AWS Java SDK :: Services :: Amazon WorkSpaces
diff --git a/services/workspacesthinclient/pom.xml b/services/workspacesthinclient/pom.xml
index 16d91478e99a..9070aa1da15c 100644
--- a/services/workspacesthinclient/pom.xml
+++ b/services/workspacesthinclient/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
workspacesthinclient
AWS Java SDK :: Services :: Work Spaces Thin Client
diff --git a/services/workspacesweb/pom.xml b/services/workspacesweb/pom.xml
index 2c39e8dbfd43..1540d4c1d958 100644
--- a/services/workspacesweb/pom.xml
+++ b/services/workspacesweb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
workspacesweb
AWS Java SDK :: Services :: Work Spaces Web
diff --git a/services/xray/pom.xml b/services/xray/pom.xml
index b014ec79931a..3f2c26399a7a 100644
--- a/services/xray/pom.xml
+++ b/services/xray/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69-SNAPSHOT
+ 2.25.69
xray
AWS Java SDK :: Services :: AWS X-Ray
diff --git a/test/auth-tests/pom.xml b/test/auth-tests/pom.xml
index 686b70e7282f..a3b0b2549391 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.69-SNAPSHOT
+ 2.25.69
../../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 9ad8a8fa2641..1c9ab873b5f3 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.69-SNAPSHOT
+ 2.25.69
../../pom.xml
4.0.0
diff --git a/test/bundle-shading-tests/pom.xml b/test/bundle-shading-tests/pom.xml
index e0bd3b8f84b5..594f50e7f127 100644
--- a/test/bundle-shading-tests/pom.xml
+++ b/test/bundle-shading-tests/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.25.69-SNAPSHOT
+ 2.25.69
../../pom.xml
4.0.0
diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml
index 6a2b0c76c690..27bd32647bbe 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.69-SNAPSHOT
+ 2.25.69
../../pom.xml
diff --git a/test/crt-unavailable-tests/pom.xml b/test/crt-unavailable-tests/pom.xml
index 906e29c7c53c..71ddcbac819e 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.69-SNAPSHOT
+ 2.25.69
../../pom.xml
4.0.0
diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml
index f5d023e7f7e2..ec836de001cb 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.69-SNAPSHOT
+ 2.25.69
../../pom.xml
http-client-tests
diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml
index 4372739d417f..b412bb6ad675 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.69-SNAPSHOT
+ 2.25.69
../../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 1f2849ce57ea..fe845b35afa3 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.69-SNAPSHOT
+ 2.25.69
../../pom.xml
diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml
index ab6c30db8bcf..398eaaa7fed8 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.69-SNAPSHOT
+ 2.25.69
../../pom.xml
4.0.0
diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml
index 67c090bb3429..bf102fc80e74 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.69-SNAPSHOT
+ 2.25.69
../../pom.xml
4.0.0
diff --git a/test/region-testing/pom.xml b/test/region-testing/pom.xml
index c293cb684b7b..4e659785c4e7 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.69-SNAPSHOT
+ 2.25.69
../../pom.xml
4.0.0
diff --git a/test/ruleset-testing-core/pom.xml b/test/ruleset-testing-core/pom.xml
index 07175863c6d2..d1f36cd43250 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.69-SNAPSHOT
+ 2.25.69
../../pom.xml
4.0.0
diff --git a/test/s3-benchmarks/pom.xml b/test/s3-benchmarks/pom.xml
index fd35366fb507..13ab4520f719 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.69-SNAPSHOT
+ 2.25.69
../../pom.xml
4.0.0
diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml
index 4f98b48301b3..e183548b86a1 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.69-SNAPSHOT
+ 2.25.69
../../pom.xml
diff --git a/test/sdk-native-image-test/pom.xml b/test/sdk-native-image-test/pom.xml
index 216d4a1dc02a..3e96eb36b442 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.69-SNAPSHOT
+ 2.25.69
../../pom.xml
4.0.0
diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml
index 4d163b088d51..1e189a776e07 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.69-SNAPSHOT
+ 2.25.69
../../pom.xml
service-test-utils
diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml
index 3cf1ab37c987..fcdf15e6894d 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.69-SNAPSHOT
+ 2.25.69
../../pom.xml
4.0.0
diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml
index f1bc38d76977..1b97a728cb38 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.69-SNAPSHOT
+ 2.25.69
../../pom.xml
test-utils
diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml
index 4d289403b0a0..1487c69c1315 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.69-SNAPSHOT
+ 2.25.69
../../pom.xml
4.0.0
diff --git a/third-party/pom.xml b/third-party/pom.xml
index fb1382213478..992f4315089d 100644
--- a/third-party/pom.xml
+++ b/third-party/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.25.69-SNAPSHOT
+ 2.25.69
third-party
diff --git a/third-party/third-party-jackson-core/pom.xml b/third-party/third-party-jackson-core/pom.xml
index 54d3fabce51d..e913ddbac289 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.69-SNAPSHOT
+ 2.25.69
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 4be49c11b0a2..ba72a1fb7a3c 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.69-SNAPSHOT
+ 2.25.69
4.0.0
diff --git a/third-party/third-party-slf4j-api/pom.xml b/third-party/third-party-slf4j-api/pom.xml
index b7a2d9f1e6a0..5cf54f92b1ac 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.69-SNAPSHOT
+ 2.25.69
4.0.0
diff --git a/utils/pom.xml b/utils/pom.xml
index af2ac08b0342..d6e35a9cfa2c 100644
--- a/utils/pom.xml
+++ b/utils/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.25.69-SNAPSHOT
+ 2.25.69
4.0.0
From 212de2573ab848788ff68d4762ccef869d410d87 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Fri, 7 Jun 2024 19:37:47 +0000
Subject: [PATCH 29/30] Update to next snapshot version: 2.25.70-SNAPSHOT
---
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 +-
metric-publishers/cloudwatch-metric-publisher/pom.xml | 2 +-
metric-publishers/pom.xml | 2 +-
pom.xml | 4 ++--
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-event-notifications/pom.xml | 2 +-
services-custom/s3-transfer-manager/pom.xml | 2 +-
services/accessanalyzer/pom.xml | 2 +-
services/account/pom.xml | 2 +-
services/acm/pom.xml | 2 +-
services/acmpca/pom.xml | 2 +-
services/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/codeconnections/pom.xml | 2 +-
services/codedeploy/pom.xml | 2 +-
services/codeguruprofiler/pom.xml | 2 +-
services/codegurureviewer/pom.xml | 2 +-
services/codegurusecurity/pom.xml | 2 +-
services/codepipeline/pom.xml | 2 +-
services/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/controlcatalog/pom.xml | 2 +-
services/controltower/pom.xml | 2 +-
services/costandusagereport/pom.xml | 2 +-
services/costexplorer/pom.xml | 2 +-
services/costoptimizationhub/pom.xml | 2 +-
services/customerprofiles/pom.xml | 2 +-
services/databasemigration/pom.xml | 2 +-
services/databrew/pom.xml | 2 +-
services/dataexchange/pom.xml | 2 +-
services/datapipeline/pom.xml | 2 +-
services/datasync/pom.xml | 2 +-
services/datazone/pom.xml | 2 +-
services/dax/pom.xml | 2 +-
services/deadline/pom.xml | 2 +-
services/detective/pom.xml | 2 +-
services/devicefarm/pom.xml | 2 +-
services/devopsguru/pom.xml | 2 +-
services/directconnect/pom.xml | 2 +-
services/directory/pom.xml | 2 +-
services/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/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/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 +-
services/licensemanagerlinuxsubscriptions/pom.xml | 2 +-
services/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/mailmanager/pom.xml | 2 +-
services/managedblockchain/pom.xml | 2 +-
services/managedblockchainquery/pom.xml | 2 +-
services/marketplaceagreement/pom.xml | 2 +-
services/marketplacecatalog/pom.xml | 2 +-
services/marketplacecommerceanalytics/pom.xml | 2 +-
services/marketplacedeployment/pom.xml | 2 +-
services/marketplaceentitlement/pom.xml | 2 +-
services/marketplacemetering/pom.xml | 2 +-
services/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/route53profiles/pom.xml | 2 +-
services/route53recoverycluster/pom.xml | 2 +-
services/route53recoverycontrolconfig/pom.xml | 2 +-
services/route53recoveryreadiness/pom.xml | 2 +-
services/route53resolver/pom.xml | 2 +-
services/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 +-
services/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/taxsettings/pom.xml | 2 +-
services/textract/pom.xml | 2 +-
services/timestreaminfluxdb/pom.xml | 2 +-
services/timestreamquery/pom.xml | 2 +-
services/timestreamwrite/pom.xml | 2 +-
services/tnb/pom.xml | 2 +-
services/transcribe/pom.xml | 2 +-
services/transcribestreaming/pom.xml | 2 +-
services/transfer/pom.xml | 2 +-
services/translate/pom.xml | 2 +-
services/trustedadvisor/pom.xml | 2 +-
services/verifiedpermissions/pom.xml | 2 +-
services/voiceid/pom.xml | 2 +-
services/vpclattice/pom.xml | 2 +-
services/waf/pom.xml | 2 +-
services/wafv2/pom.xml | 2 +-
services/wellarchitected/pom.xml | 2 +-
services/wisdom/pom.xml | 2 +-
services/workdocs/pom.xml | 2 +-
services/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 +-
test/bundle-logging-bridge-binding-test/pom.xml | 2 +-
test/bundle-shading-tests/pom.xml | 2 +-
test/codegen-generated-classes-test/pom.xml | 2 +-
test/crt-unavailable-tests/pom.xml | 2 +-
test/http-client-tests/pom.xml | 2 +-
test/module-path-tests/pom.xml | 2 +-
test/old-client-version-compatibility-test/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 +-
third-party/third-party-jackson-dataformat-cbor/pom.xml | 2 +-
third-party/third-party-slf4j-api/pom.xml | 2 +-
utils/pom.xml | 2 +-
462 files changed, 463 insertions(+), 463 deletions(-)
diff --git a/archetypes/archetype-app-quickstart/pom.xml b/archetypes/archetype-app-quickstart/pom.xml
index 4ad1a06e70c1..232f502714bb 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.69
+ 2.25.70-SNAPSHOT
4.0.0
diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml
index 9a12d0b0f56e..ad840f05f85e 100644
--- a/archetypes/archetype-lambda/pom.xml
+++ b/archetypes/archetype-lambda/pom.xml
@@ -20,7 +20,7 @@
archetypes
software.amazon.awssdk
- 2.25.69
+ 2.25.70-SNAPSHOT
4.0.0
archetype-lambda
diff --git a/archetypes/archetype-tools/pom.xml b/archetypes/archetype-tools/pom.xml
index 7bf839b09eb4..98938f2cef49 100644
--- a/archetypes/archetype-tools/pom.xml
+++ b/archetypes/archetype-tools/pom.xml
@@ -20,7 +20,7 @@
archetypes
software.amazon.awssdk
- 2.25.69
+ 2.25.70-SNAPSHOT
4.0.0
diff --git a/archetypes/pom.xml b/archetypes/pom.xml
index 1564b4fc5bed..10860f682a1e 100644
--- a/archetypes/pom.xml
+++ b/archetypes/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.25.69
+ 2.25.70-SNAPSHOT
4.0.0
archetypes
diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml
index 8473fb4ae528..c454e3c0d406 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.69
+ 2.25.70-SNAPSHOT
../pom.xml
aws-sdk-java
diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml
index 561825ad2566..69dd1c1cc73a 100644
--- a/bom-internal/pom.xml
+++ b/bom-internal/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.25.69
+ 2.25.70-SNAPSHOT
4.0.0
diff --git a/bom/pom.xml b/bom/pom.xml
index c13923c52aaf..0576260bab9c 100644
--- a/bom/pom.xml
+++ b/bom/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.69
+ 2.25.70-SNAPSHOT
../pom.xml
bom
diff --git a/bundle-logging-bridge/pom.xml b/bundle-logging-bridge/pom.xml
index 218c15e9122b..32988ada6ece 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.69
+ 2.25.70-SNAPSHOT
bundle-logging-bridge
jar
diff --git a/bundle-sdk/pom.xml b/bundle-sdk/pom.xml
index 032c8445a07b..84de858c7e93 100644
--- a/bundle-sdk/pom.xml
+++ b/bundle-sdk/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.69
+ 2.25.70-SNAPSHOT
bundle-sdk
jar
diff --git a/bundle/pom.xml b/bundle/pom.xml
index ace741b5d178..d7944d1db93a 100644
--- a/bundle/pom.xml
+++ b/bundle/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.69
+ 2.25.70-SNAPSHOT
bundle
jar
diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml
index 253a946582c5..05224cd418d5 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.69
+ 2.25.70-SNAPSHOT
../pom.xml
codegen-lite-maven-plugin
diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml
index caebb49ecfa5..47570f1f0c8f 100644
--- a/codegen-lite/pom.xml
+++ b/codegen-lite/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.69
+ 2.25.70-SNAPSHOT
codegen-lite
AWS Java SDK :: Code Generator Lite
diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml
index 1622b679168d..829b74e9c153 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.69
+ 2.25.70-SNAPSHOT
../pom.xml
codegen-maven-plugin
diff --git a/codegen/pom.xml b/codegen/pom.xml
index 94c03108eed5..b1de70e73ecc 100644
--- a/codegen/pom.xml
+++ b/codegen/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.69
+ 2.25.70-SNAPSHOT
codegen
AWS Java SDK :: Code Generator
diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml
index 7b1bb91ce210..61a29e93c604 100644
--- a/core/annotations/pom.xml
+++ b/core/annotations/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.25.69
+ 2.25.70-SNAPSHOT
4.0.0
diff --git a/core/arns/pom.xml b/core/arns/pom.xml
index b0878f3c0ffd..a65134078d9b 100644
--- a/core/arns/pom.xml
+++ b/core/arns/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.25.69
+ 2.25.70-SNAPSHOT
4.0.0
diff --git a/core/auth-crt/pom.xml b/core/auth-crt/pom.xml
index 21a4f48b8067..0aa36601d6d9 100644
--- a/core/auth-crt/pom.xml
+++ b/core/auth-crt/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.25.69
+ 2.25.70-SNAPSHOT
auth-crt
diff --git a/core/auth/pom.xml b/core/auth/pom.xml
index 72f496d099f4..a2631e047da0 100644
--- a/core/auth/pom.xml
+++ b/core/auth/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.25.69
+ 2.25.70-SNAPSHOT
auth
diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml
index 41f1941f389d..a56d46372a4c 100644
--- a/core/aws-core/pom.xml
+++ b/core/aws-core/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.25.69
+ 2.25.70-SNAPSHOT
aws-core
diff --git a/core/checksums-spi/pom.xml b/core/checksums-spi/pom.xml
index a31291a36d62..54694c944952 100644
--- a/core/checksums-spi/pom.xml
+++ b/core/checksums-spi/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.25.69
+ 2.25.70-SNAPSHOT
checksums-spi
diff --git a/core/checksums/pom.xml b/core/checksums/pom.xml
index f15def8c8f50..5e58dc76dfb6 100644
--- a/core/checksums/pom.xml
+++ b/core/checksums/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.25.69
+ 2.25.70-SNAPSHOT
checksums
diff --git a/core/crt-core/pom.xml b/core/crt-core/pom.xml
index a56cf908834a..55ac806f2dad 100644
--- a/core/crt-core/pom.xml
+++ b/core/crt-core/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
core
- 2.25.69
+ 2.25.70-SNAPSHOT
crt-core
diff --git a/core/endpoints-spi/pom.xml b/core/endpoints-spi/pom.xml
index 4868bb8a91d0..9bd21f6e663e 100644
--- a/core/endpoints-spi/pom.xml
+++ b/core/endpoints-spi/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.25.69
+ 2.25.70-SNAPSHOT
4.0.0
diff --git a/core/http-auth-aws-crt/pom.xml b/core/http-auth-aws-crt/pom.xml
index 48d814e67262..00371bb461f7 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.69
+ 2.25.70-SNAPSHOT
http-auth-aws-crt
diff --git a/core/http-auth-aws-eventstream/pom.xml b/core/http-auth-aws-eventstream/pom.xml
index ed50cee4d48b..d775e73bd9b7 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.69
+ 2.25.70-SNAPSHOT
http-auth-aws-eventstream
diff --git a/core/http-auth-aws/pom.xml b/core/http-auth-aws/pom.xml
index 0ebd45d8d70d..41a3dc75cea4 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.69
+ 2.25.70-SNAPSHOT
http-auth-aws
diff --git a/core/http-auth-spi/pom.xml b/core/http-auth-spi/pom.xml
index ab25e08a505a..e0376ea69197 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.69
+ 2.25.70-SNAPSHOT
http-auth-spi
diff --git a/core/http-auth/pom.xml b/core/http-auth/pom.xml
index e95dbe9dea40..b35d97685241 100644
--- a/core/http-auth/pom.xml
+++ b/core/http-auth/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.25.69
+ 2.25.70-SNAPSHOT
http-auth
diff --git a/core/identity-spi/pom.xml b/core/identity-spi/pom.xml
index 390e3b2526fc..5a79e8c84227 100644
--- a/core/identity-spi/pom.xml
+++ b/core/identity-spi/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.25.69
+ 2.25.70-SNAPSHOT
identity-spi
diff --git a/core/imds/pom.xml b/core/imds/pom.xml
index 5be3a670c9e6..5a8aafea101c 100644
--- a/core/imds/pom.xml
+++ b/core/imds/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.25.69
+ 2.25.70-SNAPSHOT
4.0.0
imds
diff --git a/core/json-utils/pom.xml b/core/json-utils/pom.xml
index cfd3bf501dee..78314c97a056 100644
--- a/core/json-utils/pom.xml
+++ b/core/json-utils/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.25.69
+ 2.25.70-SNAPSHOT
4.0.0
diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml
index d02666d038f4..d27f2fc2799c 100644
--- a/core/metrics-spi/pom.xml
+++ b/core/metrics-spi/pom.xml
@@ -5,7 +5,7 @@
core
software.amazon.awssdk
- 2.25.69
+ 2.25.70-SNAPSHOT
4.0.0
diff --git a/core/pom.xml b/core/pom.xml
index 8c1ed76cfc31..bef648b55f49 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.25.69
+ 2.25.70-SNAPSHOT
core
diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml
index 3313b7c8a782..3a8c8bdc88b5 100644
--- a/core/profiles/pom.xml
+++ b/core/profiles/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.25.69
+ 2.25.70-SNAPSHOT
profiles
diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml
index 0328e6a6c12e..0ba93d05c7b1 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.69
+ 2.25.70-SNAPSHOT
4.0.0
diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml
index cbb015bd9e2a..acd66378fd36 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.69
+ 2.25.70-SNAPSHOT
4.0.0
diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml
index 470071f5f0d6..a7db48345a6d 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.69
+ 2.25.70-SNAPSHOT
4.0.0
diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml
index 806668387028..ce1a4124f181 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.69
+ 2.25.70-SNAPSHOT
4.0.0
diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml
index c5b22efda370..99dc60341d63 100644
--- a/core/protocols/pom.xml
+++ b/core/protocols/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.25.69
+ 2.25.70-SNAPSHOT
4.0.0
diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml
index 27d819c25d3a..2eb08c0b5c69 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.69
+ 2.25.70-SNAPSHOT
4.0.0
diff --git a/core/regions/pom.xml b/core/regions/pom.xml
index a52177880fff..9092518449c4 100644
--- a/core/regions/pom.xml
+++ b/core/regions/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.25.69
+ 2.25.70-SNAPSHOT
regions
diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml
index e2c356ae203a..5cef7f333ff1 100644
--- a/core/sdk-core/pom.xml
+++ b/core/sdk-core/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
core
- 2.25.69
+ 2.25.70-SNAPSHOT
sdk-core
AWS Java SDK :: SDK Core
diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml
index a758bd54f649..2b7526cd2dea 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.69
+ 2.25.70-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 4c214278175b..e1e861508649 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.69
+ 2.25.70-SNAPSHOT
apache-client
diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml
index 30c00b9ca71a..05c8a7f9976c 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.69
+ 2.25.70-SNAPSHOT
4.0.0
diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml
index 1f6eaa894cd6..66114ab57c07 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.69
+ 2.25.70-SNAPSHOT
4.0.0
diff --git a/http-clients/pom.xml b/http-clients/pom.xml
index ea3e584abef3..37ac300fa3e9 100644
--- a/http-clients/pom.xml
+++ b/http-clients/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.25.69
+ 2.25.70-SNAPSHOT
4.0.0
diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml
index 03662cb1dafd..ba71c0bbbd72 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.69
+ 2.25.70-SNAPSHOT
4.0.0
diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml
index eb9d60bb8c43..a1030e46cadd 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.69
+ 2.25.70-SNAPSHOT
cloudwatch-metric-publisher
diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml
index 18dc6fb7a733..2a082280295d 100644
--- a/metric-publishers/pom.xml
+++ b/metric-publishers/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.69
+ 2.25.70-SNAPSHOT
metric-publishers
diff --git a/pom.xml b/pom.xml
index c149acda7ddc..4aa39593cca5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -20,7 +20,7 @@
4.0.0
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.69
+ 2.25.70-SNAPSHOT
pom
AWS Java SDK :: Parent
The Amazon Web Services SDK for Java provides Java APIs
@@ -97,7 +97,7 @@
${project.version}
- 2.25.68
+ 2.25.69
2.15.2
2.15.2
2.13.2
diff --git a/release-scripts/pom.xml b/release-scripts/pom.xml
index 17111077a816..5f342309cc34 100644
--- a/release-scripts/pom.xml
+++ b/release-scripts/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.69
+ 2.25.70-SNAPSHOT
../pom.xml
release-scripts
diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml
index 882f8667703b..839015abf7f6 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.69
+ 2.25.70-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 fb786549d3c4..3124f1e5a5bf 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.69
+ 2.25.70-SNAPSHOT
../../pom.xml
iam-policy-builder
diff --git a/services-custom/pom.xml b/services-custom/pom.xml
index 6055bc917c13..1d7d98feb506 100644
--- a/services-custom/pom.xml
+++ b/services-custom/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.69
+ 2.25.70-SNAPSHOT
services-custom
AWS Java SDK :: Custom Services
diff --git a/services-custom/s3-event-notifications/pom.xml b/services-custom/s3-event-notifications/pom.xml
index 11bf66d625b3..0506921baa2b 100644
--- a/services-custom/s3-event-notifications/pom.xml
+++ b/services-custom/s3-event-notifications/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.69
+ 2.25.70-SNAPSHOT
../../pom.xml
s3-event-notifications
diff --git a/services-custom/s3-transfer-manager/pom.xml b/services-custom/s3-transfer-manager/pom.xml
index 2b4d9834df91..a6965b550f49 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.69
+ 2.25.70-SNAPSHOT
../../pom.xml
s3-transfer-manager
diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml
index 951adc068e2b..608151022710 100644
--- a/services/accessanalyzer/pom.xml
+++ b/services/accessanalyzer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
accessanalyzer
AWS Java SDK :: Services :: AccessAnalyzer
diff --git a/services/account/pom.xml b/services/account/pom.xml
index b40fb1bef146..7cb323e890f0 100644
--- a/services/account/pom.xml
+++ b/services/account/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
account
AWS Java SDK :: Services :: Account
diff --git a/services/acm/pom.xml b/services/acm/pom.xml
index 11c5b0718e24..66d1bef58f5c 100644
--- a/services/acm/pom.xml
+++ b/services/acm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
acm
AWS Java SDK :: Services :: AWS Certificate Manager
diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml
index ae7d777878c4..d03cff232846 100644
--- a/services/acmpca/pom.xml
+++ b/services/acmpca/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
acmpca
AWS Java SDK :: Services :: ACM PCA
diff --git a/services/amp/pom.xml b/services/amp/pom.xml
index 07e5a6c377d8..57261b20607f 100644
--- a/services/amp/pom.xml
+++ b/services/amp/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
amp
AWS Java SDK :: Services :: Amp
diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml
index b1b24bbd600d..4cb9422a86a2 100644
--- a/services/amplify/pom.xml
+++ b/services/amplify/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
amplify
AWS Java SDK :: Services :: Amplify
diff --git a/services/amplifybackend/pom.xml b/services/amplifybackend/pom.xml
index 519eaae2a0f3..49923be09ddb 100644
--- a/services/amplifybackend/pom.xml
+++ b/services/amplifybackend/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
amplifybackend
AWS Java SDK :: Services :: Amplify Backend
diff --git a/services/amplifyuibuilder/pom.xml b/services/amplifyuibuilder/pom.xml
index 381722be0dbd..4ac9b010d415 100644
--- a/services/amplifyuibuilder/pom.xml
+++ b/services/amplifyuibuilder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
amplifyuibuilder
AWS Java SDK :: Services :: Amplify UI Builder
diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml
index 68ddbd9a609c..42fd1b5405a7 100644
--- a/services/apigateway/pom.xml
+++ b/services/apigateway/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
apigateway
AWS Java SDK :: Services :: Amazon API Gateway
diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml
index b152b5011c28..52cf523d5c77 100644
--- a/services/apigatewaymanagementapi/pom.xml
+++ b/services/apigatewaymanagementapi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
apigatewaymanagementapi
AWS Java SDK :: Services :: ApiGatewayManagementApi
diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml
index bbe760fc3fd9..00a548539d76 100644
--- a/services/apigatewayv2/pom.xml
+++ b/services/apigatewayv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
apigatewayv2
AWS Java SDK :: Services :: ApiGatewayV2
diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml
index 5c2129c745e0..e9055107bd61 100644
--- a/services/appconfig/pom.xml
+++ b/services/appconfig/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
appconfig
AWS Java SDK :: Services :: AppConfig
diff --git a/services/appconfigdata/pom.xml b/services/appconfigdata/pom.xml
index 93c9bc8f79c3..72808c86f7c6 100644
--- a/services/appconfigdata/pom.xml
+++ b/services/appconfigdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
appconfigdata
AWS Java SDK :: Services :: App Config Data
diff --git a/services/appfabric/pom.xml b/services/appfabric/pom.xml
index a26493363629..ac3628001758 100644
--- a/services/appfabric/pom.xml
+++ b/services/appfabric/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
appfabric
AWS Java SDK :: Services :: App Fabric
diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml
index 7abdbbb5cb08..d5214dab878e 100644
--- a/services/appflow/pom.xml
+++ b/services/appflow/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
appflow
AWS Java SDK :: Services :: Appflow
diff --git a/services/appintegrations/pom.xml b/services/appintegrations/pom.xml
index 3c55f37c650b..10d192038772 100644
--- a/services/appintegrations/pom.xml
+++ b/services/appintegrations/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
appintegrations
AWS Java SDK :: Services :: App Integrations
diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml
index f0256a50a9b3..305730fd1e6d 100644
--- a/services/applicationautoscaling/pom.xml
+++ b/services/applicationautoscaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
applicationautoscaling
AWS Java SDK :: Services :: AWS Application Auto Scaling
diff --git a/services/applicationcostprofiler/pom.xml b/services/applicationcostprofiler/pom.xml
index e242e34fb53b..f2c1438b89f1 100644
--- a/services/applicationcostprofiler/pom.xml
+++ b/services/applicationcostprofiler/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
applicationcostprofiler
AWS Java SDK :: Services :: Application Cost Profiler
diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml
index c89c04595f23..588abacb8dd8 100644
--- a/services/applicationdiscovery/pom.xml
+++ b/services/applicationdiscovery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
applicationdiscovery
AWS Java SDK :: Services :: AWS Application Discovery Service
diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml
index 46dd57f1f521..2f79b8c4273e 100644
--- a/services/applicationinsights/pom.xml
+++ b/services/applicationinsights/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
applicationinsights
AWS Java SDK :: Services :: Application Insights
diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml
index 41e490f31073..0bd806681953 100644
--- a/services/appmesh/pom.xml
+++ b/services/appmesh/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
appmesh
AWS Java SDK :: Services :: App Mesh
diff --git a/services/apprunner/pom.xml b/services/apprunner/pom.xml
index 622404871e22..788c774be0a1 100644
--- a/services/apprunner/pom.xml
+++ b/services/apprunner/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
apprunner
AWS Java SDK :: Services :: App Runner
diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml
index 85d364365e75..7f47a07a452b 100644
--- a/services/appstream/pom.xml
+++ b/services/appstream/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
appstream
AWS Java SDK :: Services :: Amazon AppStream
diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml
index e659727d1311..31aebe29e878 100644
--- a/services/appsync/pom.xml
+++ b/services/appsync/pom.xml
@@ -21,7 +21,7 @@
services
software.amazon.awssdk
- 2.25.69
+ 2.25.70-SNAPSHOT
appsync
diff --git a/services/arczonalshift/pom.xml b/services/arczonalshift/pom.xml
index b559b76b954a..dbe56adef1af 100644
--- a/services/arczonalshift/pom.xml
+++ b/services/arczonalshift/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
arczonalshift
AWS Java SDK :: Services :: ARC Zonal Shift
diff --git a/services/artifact/pom.xml b/services/artifact/pom.xml
index f06dc7d9b30d..1df7e671c39a 100644
--- a/services/artifact/pom.xml
+++ b/services/artifact/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
artifact
AWS Java SDK :: Services :: Artifact
diff --git a/services/athena/pom.xml b/services/athena/pom.xml
index 7a83640691a6..e373b62dca56 100644
--- a/services/athena/pom.xml
+++ b/services/athena/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
athena
AWS Java SDK :: Services :: Amazon Athena
diff --git a/services/auditmanager/pom.xml b/services/auditmanager/pom.xml
index 9d43ef352562..a88fde997601 100644
--- a/services/auditmanager/pom.xml
+++ b/services/auditmanager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
auditmanager
AWS Java SDK :: Services :: Audit Manager
diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml
index 42ef3b45c9f8..10b1f060b879 100644
--- a/services/autoscaling/pom.xml
+++ b/services/autoscaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
autoscaling
AWS Java SDK :: Services :: Auto Scaling
diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml
index 4e79a19df822..8eecfc93f1df 100644
--- a/services/autoscalingplans/pom.xml
+++ b/services/autoscalingplans/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
autoscalingplans
AWS Java SDK :: Services :: Auto Scaling Plans
diff --git a/services/b2bi/pom.xml b/services/b2bi/pom.xml
index a01dd0261973..861dac6fd4e0 100644
--- a/services/b2bi/pom.xml
+++ b/services/b2bi/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
b2bi
AWS Java SDK :: Services :: B2 Bi
diff --git a/services/backup/pom.xml b/services/backup/pom.xml
index acc578b884f9..c9fcde3f0fee 100644
--- a/services/backup/pom.xml
+++ b/services/backup/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
backup
AWS Java SDK :: Services :: Backup
diff --git a/services/backupgateway/pom.xml b/services/backupgateway/pom.xml
index 9682e737e08b..e34e80246b6c 100644
--- a/services/backupgateway/pom.xml
+++ b/services/backupgateway/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
backupgateway
AWS Java SDK :: Services :: Backup Gateway
diff --git a/services/backupstorage/pom.xml b/services/backupstorage/pom.xml
index c79270dfb3db..34337b0375e0 100644
--- a/services/backupstorage/pom.xml
+++ b/services/backupstorage/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
backupstorage
AWS Java SDK :: Services :: Backup Storage
diff --git a/services/batch/pom.xml b/services/batch/pom.xml
index 0bb1337a2fc6..c6e616fe4c11 100644
--- a/services/batch/pom.xml
+++ b/services/batch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
batch
AWS Java SDK :: Services :: AWS Batch
diff --git a/services/bcmdataexports/pom.xml b/services/bcmdataexports/pom.xml
index 074732079694..76656d21fe7c 100644
--- a/services/bcmdataexports/pom.xml
+++ b/services/bcmdataexports/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
bcmdataexports
AWS Java SDK :: Services :: BCM Data Exports
diff --git a/services/bedrock/pom.xml b/services/bedrock/pom.xml
index 0f10ed39775e..b5aa8b05c21f 100644
--- a/services/bedrock/pom.xml
+++ b/services/bedrock/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
bedrock
AWS Java SDK :: Services :: Bedrock
diff --git a/services/bedrockagent/pom.xml b/services/bedrockagent/pom.xml
index 4a28f8e35d38..1b11f9afdd60 100644
--- a/services/bedrockagent/pom.xml
+++ b/services/bedrockagent/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
bedrockagent
AWS Java SDK :: Services :: Bedrock Agent
diff --git a/services/bedrockagentruntime/pom.xml b/services/bedrockagentruntime/pom.xml
index 91a15c4a796a..5e2470d0e99e 100644
--- a/services/bedrockagentruntime/pom.xml
+++ b/services/bedrockagentruntime/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
bedrockagentruntime
AWS Java SDK :: Services :: Bedrock Agent Runtime
diff --git a/services/bedrockruntime/pom.xml b/services/bedrockruntime/pom.xml
index b04256455c05..4556655579d5 100644
--- a/services/bedrockruntime/pom.xml
+++ b/services/bedrockruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
bedrockruntime
AWS Java SDK :: Services :: Bedrock Runtime
diff --git a/services/billingconductor/pom.xml b/services/billingconductor/pom.xml
index fef24ad43818..e99efa5bf64c 100644
--- a/services/billingconductor/pom.xml
+++ b/services/billingconductor/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
billingconductor
AWS Java SDK :: Services :: Billingconductor
diff --git a/services/braket/pom.xml b/services/braket/pom.xml
index 5e923cf854ab..1305369ec3d5 100644
--- a/services/braket/pom.xml
+++ b/services/braket/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
braket
AWS Java SDK :: Services :: Braket
diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml
index 460822058dbc..239fb2058dfa 100644
--- a/services/budgets/pom.xml
+++ b/services/budgets/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
budgets
AWS Java SDK :: Services :: AWS Budgets
diff --git a/services/chatbot/pom.xml b/services/chatbot/pom.xml
index 1f8219e53add..4dcd87ba5d5b 100644
--- a/services/chatbot/pom.xml
+++ b/services/chatbot/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
chatbot
AWS Java SDK :: Services :: Chatbot
diff --git a/services/chime/pom.xml b/services/chime/pom.xml
index df4b829acdef..626d28393a19 100644
--- a/services/chime/pom.xml
+++ b/services/chime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
chime
AWS Java SDK :: Services :: Chime
diff --git a/services/chimesdkidentity/pom.xml b/services/chimesdkidentity/pom.xml
index be18c5fc397c..77346e40efaf 100644
--- a/services/chimesdkidentity/pom.xml
+++ b/services/chimesdkidentity/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
chimesdkidentity
AWS Java SDK :: Services :: Chime SDK Identity
diff --git a/services/chimesdkmediapipelines/pom.xml b/services/chimesdkmediapipelines/pom.xml
index 99cc019a48b2..471b8da93177 100644
--- a/services/chimesdkmediapipelines/pom.xml
+++ b/services/chimesdkmediapipelines/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
chimesdkmediapipelines
AWS Java SDK :: Services :: Chime SDK Media Pipelines
diff --git a/services/chimesdkmeetings/pom.xml b/services/chimesdkmeetings/pom.xml
index 8f529c8a0184..2055b5ab51bb 100644
--- a/services/chimesdkmeetings/pom.xml
+++ b/services/chimesdkmeetings/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
chimesdkmeetings
AWS Java SDK :: Services :: Chime SDK Meetings
diff --git a/services/chimesdkmessaging/pom.xml b/services/chimesdkmessaging/pom.xml
index 4cb466dabce9..9cd6c80d609f 100644
--- a/services/chimesdkmessaging/pom.xml
+++ b/services/chimesdkmessaging/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
chimesdkmessaging
AWS Java SDK :: Services :: Chime SDK Messaging
diff --git a/services/chimesdkvoice/pom.xml b/services/chimesdkvoice/pom.xml
index abf0c2a62b22..e3d2e089c4f0 100644
--- a/services/chimesdkvoice/pom.xml
+++ b/services/chimesdkvoice/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
chimesdkvoice
AWS Java SDK :: Services :: Chime SDK Voice
diff --git a/services/cleanrooms/pom.xml b/services/cleanrooms/pom.xml
index 675e91d5ada7..bae379f9ca7a 100644
--- a/services/cleanrooms/pom.xml
+++ b/services/cleanrooms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
cleanrooms
AWS Java SDK :: Services :: Clean Rooms
diff --git a/services/cleanroomsml/pom.xml b/services/cleanroomsml/pom.xml
index 0c388ca54dbc..accd769f6c4c 100644
--- a/services/cleanroomsml/pom.xml
+++ b/services/cleanroomsml/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
cleanroomsml
AWS Java SDK :: Services :: Clean Rooms ML
diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml
index 178f806245ea..b113c8ce8bfa 100644
--- a/services/cloud9/pom.xml
+++ b/services/cloud9/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.69
+ 2.25.70-SNAPSHOT
4.0.0
cloud9
diff --git a/services/cloudcontrol/pom.xml b/services/cloudcontrol/pom.xml
index 66225dd98a48..e807ce54702d 100644
--- a/services/cloudcontrol/pom.xml
+++ b/services/cloudcontrol/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
cloudcontrol
AWS Java SDK :: Services :: Cloud Control
diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml
index 5687bdd69a27..29ef1e9202a1 100644
--- a/services/clouddirectory/pom.xml
+++ b/services/clouddirectory/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
clouddirectory
AWS Java SDK :: Services :: Amazon CloudDirectory
diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml
index 865e5f1a9844..ea6bdaaf2c4c 100644
--- a/services/cloudformation/pom.xml
+++ b/services/cloudformation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
cloudformation
AWS Java SDK :: Services :: AWS CloudFormation
diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml
index 069959aa7e47..025fa62e78bc 100644
--- a/services/cloudfront/pom.xml
+++ b/services/cloudfront/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
cloudfront
AWS Java SDK :: Services :: Amazon CloudFront
diff --git a/services/cloudfrontkeyvaluestore/pom.xml b/services/cloudfrontkeyvaluestore/pom.xml
index eab74a1d9b98..3b6d729d738a 100644
--- a/services/cloudfrontkeyvaluestore/pom.xml
+++ b/services/cloudfrontkeyvaluestore/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
cloudfrontkeyvaluestore
AWS Java SDK :: Services :: Cloud Front Key Value Store
diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml
index 74d38ba1f2f9..b08cad49fc6e 100644
--- a/services/cloudhsm/pom.xml
+++ b/services/cloudhsm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
cloudhsm
AWS Java SDK :: Services :: AWS CloudHSM
diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml
index 6a9101b59c62..0f386d95737d 100644
--- a/services/cloudhsmv2/pom.xml
+++ b/services/cloudhsmv2/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.69
+ 2.25.70-SNAPSHOT
4.0.0
cloudhsmv2
diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml
index 3a2e7c7e3ed9..dcf0a17f8355 100644
--- a/services/cloudsearch/pom.xml
+++ b/services/cloudsearch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
cloudsearch
AWS Java SDK :: Services :: Amazon CloudSearch
diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml
index bfcf3105435a..f6fba93e98a4 100644
--- a/services/cloudsearchdomain/pom.xml
+++ b/services/cloudsearchdomain/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
cloudsearchdomain
AWS Java SDK :: Services :: Amazon CloudSearch Domain
diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml
index 8f2f1de93252..022b0df6e6d8 100644
--- a/services/cloudtrail/pom.xml
+++ b/services/cloudtrail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
cloudtrail
AWS Java SDK :: Services :: AWS CloudTrail
diff --git a/services/cloudtraildata/pom.xml b/services/cloudtraildata/pom.xml
index c4939f09a195..4e2b213dfae6 100644
--- a/services/cloudtraildata/pom.xml
+++ b/services/cloudtraildata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
cloudtraildata
AWS Java SDK :: Services :: Cloud Trail Data
diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml
index 6987b5ab8f3a..d91dac0f049c 100644
--- a/services/cloudwatch/pom.xml
+++ b/services/cloudwatch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
cloudwatch
AWS Java SDK :: Services :: Amazon CloudWatch
diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml
index e2e8fb1d2ffc..11dd66397d11 100644
--- a/services/cloudwatchevents/pom.xml
+++ b/services/cloudwatchevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
cloudwatchevents
AWS Java SDK :: Services :: Amazon CloudWatch Events
diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml
index 9b441d995bea..6cc34c21f997 100644
--- a/services/cloudwatchlogs/pom.xml
+++ b/services/cloudwatchlogs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
cloudwatchlogs
AWS Java SDK :: Services :: Amazon CloudWatch Logs
diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml
index 2e1cd6f3eb87..03a18280742b 100644
--- a/services/codeartifact/pom.xml
+++ b/services/codeartifact/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
codeartifact
AWS Java SDK :: Services :: Codeartifact
diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml
index 22d753d901ae..0be843cc24a8 100644
--- a/services/codebuild/pom.xml
+++ b/services/codebuild/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
codebuild
AWS Java SDK :: Services :: AWS Code Build
diff --git a/services/codecatalyst/pom.xml b/services/codecatalyst/pom.xml
index c5bfb1b9a563..e58513309fe9 100644
--- a/services/codecatalyst/pom.xml
+++ b/services/codecatalyst/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
codecatalyst
AWS Java SDK :: Services :: Code Catalyst
diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml
index 1133dc1d309e..027e01e9cafa 100644
--- a/services/codecommit/pom.xml
+++ b/services/codecommit/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
codecommit
AWS Java SDK :: Services :: AWS CodeCommit
diff --git a/services/codeconnections/pom.xml b/services/codeconnections/pom.xml
index 861fdcd55f41..177c525ad627 100644
--- a/services/codeconnections/pom.xml
+++ b/services/codeconnections/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
codeconnections
AWS Java SDK :: Services :: Code Connections
diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml
index 6c0c5a10a08f..571e0174c2b2 100644
--- a/services/codedeploy/pom.xml
+++ b/services/codedeploy/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
codedeploy
AWS Java SDK :: Services :: AWS CodeDeploy
diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml
index de9db61f20cf..93f8b57f9f0f 100644
--- a/services/codeguruprofiler/pom.xml
+++ b/services/codeguruprofiler/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
codeguruprofiler
AWS Java SDK :: Services :: CodeGuruProfiler
diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml
index 01063def6a3b..c29c64c6006a 100644
--- a/services/codegurureviewer/pom.xml
+++ b/services/codegurureviewer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
codegurureviewer
AWS Java SDK :: Services :: CodeGuru Reviewer
diff --git a/services/codegurusecurity/pom.xml b/services/codegurusecurity/pom.xml
index cd31690217f7..a6364fbd3bb3 100644
--- a/services/codegurusecurity/pom.xml
+++ b/services/codegurusecurity/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
codegurusecurity
AWS Java SDK :: Services :: Code Guru Security
diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml
index 3239b1e9418a..205842c1cc39 100644
--- a/services/codepipeline/pom.xml
+++ b/services/codepipeline/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
codepipeline
AWS Java SDK :: Services :: AWS CodePipeline
diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml
index ef4d0d1fdd1c..796a8b330372 100644
--- a/services/codestar/pom.xml
+++ b/services/codestar/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
codestar
AWS Java SDK :: Services :: AWS CodeStar
diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml
index 52a233580625..92175e3bfb2a 100644
--- a/services/codestarconnections/pom.xml
+++ b/services/codestarconnections/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
codestarconnections
AWS Java SDK :: Services :: CodeStar connections
diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml
index 78811ada10b0..e8c4c242f319 100644
--- a/services/codestarnotifications/pom.xml
+++ b/services/codestarnotifications/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
codestarnotifications
AWS Java SDK :: Services :: Codestar Notifications
diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml
index 92f83a0a2d46..58f820ad702d 100644
--- a/services/cognitoidentity/pom.xml
+++ b/services/cognitoidentity/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
cognitoidentity
AWS Java SDK :: Services :: Amazon Cognito Identity
diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml
index ba2900558872..f64f94ce64ea 100644
--- a/services/cognitoidentityprovider/pom.xml
+++ b/services/cognitoidentityprovider/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
cognitoidentityprovider
AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service
diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml
index 8408af01ed05..22df5cf1c3e9 100644
--- a/services/cognitosync/pom.xml
+++ b/services/cognitosync/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
cognitosync
AWS Java SDK :: Services :: Amazon Cognito Sync
diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml
index 3e7ae7263bba..eb14b288808b 100644
--- a/services/comprehend/pom.xml
+++ b/services/comprehend/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.69
+ 2.25.70-SNAPSHOT
4.0.0
comprehend
diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml
index 111558f6cae4..98de570b76a5 100644
--- a/services/comprehendmedical/pom.xml
+++ b/services/comprehendmedical/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
comprehendmedical
AWS Java SDK :: Services :: ComprehendMedical
diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml
index eb6a31ce757f..fbbdd194d46d 100644
--- a/services/computeoptimizer/pom.xml
+++ b/services/computeoptimizer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
computeoptimizer
AWS Java SDK :: Services :: Compute Optimizer
diff --git a/services/config/pom.xml b/services/config/pom.xml
index eb135f3c9b51..24dbbde9c157 100644
--- a/services/config/pom.xml
+++ b/services/config/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
config
AWS Java SDK :: Services :: AWS Config
diff --git a/services/connect/pom.xml b/services/connect/pom.xml
index 9d46f25c865d..fc403bd9b560 100644
--- a/services/connect/pom.xml
+++ b/services/connect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
connect
AWS Java SDK :: Services :: Connect
diff --git a/services/connectcampaigns/pom.xml b/services/connectcampaigns/pom.xml
index 3326673b1fb5..fd18101effa4 100644
--- a/services/connectcampaigns/pom.xml
+++ b/services/connectcampaigns/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
connectcampaigns
AWS Java SDK :: Services :: Connect Campaigns
diff --git a/services/connectcases/pom.xml b/services/connectcases/pom.xml
index 1d25ae9d7a2b..5fc17c75dcae 100644
--- a/services/connectcases/pom.xml
+++ b/services/connectcases/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
connectcases
AWS Java SDK :: Services :: Connect Cases
diff --git a/services/connectcontactlens/pom.xml b/services/connectcontactlens/pom.xml
index 3a73023f7d88..6e292d5df656 100644
--- a/services/connectcontactlens/pom.xml
+++ b/services/connectcontactlens/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
connectcontactlens
AWS Java SDK :: Services :: Connect Contact Lens
diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml
index 447de9801e77..2bbf587aa503 100644
--- a/services/connectparticipant/pom.xml
+++ b/services/connectparticipant/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
connectparticipant
AWS Java SDK :: Services :: ConnectParticipant
diff --git a/services/controlcatalog/pom.xml b/services/controlcatalog/pom.xml
index 8aa0893bee7e..4c9fa96ab0cb 100644
--- a/services/controlcatalog/pom.xml
+++ b/services/controlcatalog/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
controlcatalog
AWS Java SDK :: Services :: Control Catalog
diff --git a/services/controltower/pom.xml b/services/controltower/pom.xml
index ecd821c34937..d84a7994481c 100644
--- a/services/controltower/pom.xml
+++ b/services/controltower/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
controltower
AWS Java SDK :: Services :: Control Tower
diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml
index da99c05ad18b..06ed67e97c8d 100644
--- a/services/costandusagereport/pom.xml
+++ b/services/costandusagereport/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
costandusagereport
AWS Java SDK :: Services :: AWS Cost and Usage Report
diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml
index 4560ff03e860..a0f15ff73e1c 100644
--- a/services/costexplorer/pom.xml
+++ b/services/costexplorer/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.69
+ 2.25.70-SNAPSHOT
4.0.0
costexplorer
diff --git a/services/costoptimizationhub/pom.xml b/services/costoptimizationhub/pom.xml
index 664de14f6bf2..7e769bab1bfb 100644
--- a/services/costoptimizationhub/pom.xml
+++ b/services/costoptimizationhub/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
costoptimizationhub
AWS Java SDK :: Services :: Cost Optimization Hub
diff --git a/services/customerprofiles/pom.xml b/services/customerprofiles/pom.xml
index 1f1c26ba00c8..5d9bd45d3e52 100644
--- a/services/customerprofiles/pom.xml
+++ b/services/customerprofiles/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
customerprofiles
AWS Java SDK :: Services :: Customer Profiles
diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml
index 0be7a89a5c1b..35ad38a16d6c 100644
--- a/services/databasemigration/pom.xml
+++ b/services/databasemigration/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
databasemigration
AWS Java SDK :: Services :: AWS Database Migration Service
diff --git a/services/databrew/pom.xml b/services/databrew/pom.xml
index d47b35707487..7056d427b925 100644
--- a/services/databrew/pom.xml
+++ b/services/databrew/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
databrew
AWS Java SDK :: Services :: Data Brew
diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml
index 0ab8e1f9a22c..0af2a9892ceb 100644
--- a/services/dataexchange/pom.xml
+++ b/services/dataexchange/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
dataexchange
AWS Java SDK :: Services :: DataExchange
diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml
index 96572a9d5751..56949baf8042 100644
--- a/services/datapipeline/pom.xml
+++ b/services/datapipeline/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
datapipeline
AWS Java SDK :: Services :: AWS Data Pipeline
diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml
index b803702a524d..352665969719 100644
--- a/services/datasync/pom.xml
+++ b/services/datasync/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
datasync
AWS Java SDK :: Services :: DataSync
diff --git a/services/datazone/pom.xml b/services/datazone/pom.xml
index 64a01f44ccf1..f2b8a4362197 100644
--- a/services/datazone/pom.xml
+++ b/services/datazone/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
datazone
AWS Java SDK :: Services :: Data Zone
diff --git a/services/dax/pom.xml b/services/dax/pom.xml
index 94e5818eef0a..a347a805f186 100644
--- a/services/dax/pom.xml
+++ b/services/dax/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
dax
AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX)
diff --git a/services/deadline/pom.xml b/services/deadline/pom.xml
index e8f914762997..24d21a006cd4 100644
--- a/services/deadline/pom.xml
+++ b/services/deadline/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
deadline
AWS Java SDK :: Services :: Deadline
diff --git a/services/detective/pom.xml b/services/detective/pom.xml
index 5b5f76cfb0b7..352658e8dfa4 100644
--- a/services/detective/pom.xml
+++ b/services/detective/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
detective
AWS Java SDK :: Services :: Detective
diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml
index 4359be67afbc..255dcd7eb467 100644
--- a/services/devicefarm/pom.xml
+++ b/services/devicefarm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
devicefarm
AWS Java SDK :: Services :: AWS Device Farm
diff --git a/services/devopsguru/pom.xml b/services/devopsguru/pom.xml
index 39a8a587838f..bff5c1a682dc 100644
--- a/services/devopsguru/pom.xml
+++ b/services/devopsguru/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
devopsguru
AWS Java SDK :: Services :: Dev Ops Guru
diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml
index e67a68600782..0b641c08ad76 100644
--- a/services/directconnect/pom.xml
+++ b/services/directconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
directconnect
AWS Java SDK :: Services :: AWS Direct Connect
diff --git a/services/directory/pom.xml b/services/directory/pom.xml
index 4c274c1b4ee6..d9ff00e662bc 100644
--- a/services/directory/pom.xml
+++ b/services/directory/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
directory
AWS Java SDK :: Services :: AWS Directory Service
diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml
index fccbaeea3496..ddee4cf9841c 100644
--- a/services/dlm/pom.xml
+++ b/services/dlm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
dlm
AWS Java SDK :: Services :: DLM
diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml
index 03ade81be9fa..3596bce3ba2e 100644
--- a/services/docdb/pom.xml
+++ b/services/docdb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
docdb
AWS Java SDK :: Services :: DocDB
diff --git a/services/docdbelastic/pom.xml b/services/docdbelastic/pom.xml
index 7ac88426adda..dbde65c33c66 100644
--- a/services/docdbelastic/pom.xml
+++ b/services/docdbelastic/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
docdbelastic
AWS Java SDK :: Services :: Doc DB Elastic
diff --git a/services/drs/pom.xml b/services/drs/pom.xml
index 14678d678cab..8a24251de377 100644
--- a/services/drs/pom.xml
+++ b/services/drs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
drs
AWS Java SDK :: Services :: Drs
diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml
index f31682ca7157..d80b48c1a705 100644
--- a/services/dynamodb/pom.xml
+++ b/services/dynamodb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
dynamodb
AWS Java SDK :: Services :: Amazon DynamoDB
diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml
index dc5f48898db5..7975779769a5 100644
--- a/services/ebs/pom.xml
+++ b/services/ebs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
ebs
AWS Java SDK :: Services :: EBS
diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml
index 113413f1360f..c5044eeb965c 100644
--- a/services/ec2/pom.xml
+++ b/services/ec2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
ec2
AWS Java SDK :: Services :: Amazon EC2
diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml
index 75e1f8405b20..4875c6d03670 100644
--- a/services/ec2instanceconnect/pom.xml
+++ b/services/ec2instanceconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
ec2instanceconnect
AWS Java SDK :: Services :: EC2 Instance Connect
diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml
index 847b6e23531b..c638bcf6683f 100644
--- a/services/ecr/pom.xml
+++ b/services/ecr/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
ecr
AWS Java SDK :: Services :: Amazon EC2 Container Registry
diff --git a/services/ecrpublic/pom.xml b/services/ecrpublic/pom.xml
index 5435305b6e12..c3493c4e3593 100644
--- a/services/ecrpublic/pom.xml
+++ b/services/ecrpublic/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
ecrpublic
AWS Java SDK :: Services :: ECR PUBLIC
diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml
index 3dbdad7ecd93..fb7a2adf9426 100644
--- a/services/ecs/pom.xml
+++ b/services/ecs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
ecs
AWS Java SDK :: Services :: Amazon EC2 Container Service
diff --git a/services/efs/pom.xml b/services/efs/pom.xml
index a0f341696962..2e1ac75f5220 100644
--- a/services/efs/pom.xml
+++ b/services/efs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
efs
AWS Java SDK :: Services :: Amazon Elastic File System
diff --git a/services/eks/pom.xml b/services/eks/pom.xml
index 776d9ba36f97..9c143a604809 100644
--- a/services/eks/pom.xml
+++ b/services/eks/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
eks
AWS Java SDK :: Services :: EKS
diff --git a/services/eksauth/pom.xml b/services/eksauth/pom.xml
index bcd2d143b166..3496819745e0 100644
--- a/services/eksauth/pom.xml
+++ b/services/eksauth/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
eksauth
AWS Java SDK :: Services :: EKS Auth
diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml
index ae3b1032cd82..06e0794e79f4 100644
--- a/services/elasticache/pom.xml
+++ b/services/elasticache/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
elasticache
AWS Java SDK :: Services :: Amazon ElastiCache
diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml
index 849c145bb7d6..c355ea641690 100644
--- a/services/elasticbeanstalk/pom.xml
+++ b/services/elasticbeanstalk/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
elasticbeanstalk
AWS Java SDK :: Services :: AWS Elastic Beanstalk
diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml
index 004179e54726..edaa239cd68d 100644
--- a/services/elasticinference/pom.xml
+++ b/services/elasticinference/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
elasticinference
AWS Java SDK :: Services :: Elastic Inference
diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml
index e52970b27607..ecdea5abb1aa 100644
--- a/services/elasticloadbalancing/pom.xml
+++ b/services/elasticloadbalancing/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
elasticloadbalancing
AWS Java SDK :: Services :: Elastic Load Balancing
diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml
index 47f10a7d9fb6..7e774692d072 100644
--- a/services/elasticloadbalancingv2/pom.xml
+++ b/services/elasticloadbalancingv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
elasticloadbalancingv2
AWS Java SDK :: Services :: Elastic Load Balancing V2
diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml
index 015bc06cf649..4b2575944af7 100644
--- a/services/elasticsearch/pom.xml
+++ b/services/elasticsearch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
elasticsearch
AWS Java SDK :: Services :: Amazon Elasticsearch Service
diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml
index 604545d6e177..3387d0871040 100644
--- a/services/elastictranscoder/pom.xml
+++ b/services/elastictranscoder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
elastictranscoder
AWS Java SDK :: Services :: Amazon Elastic Transcoder
diff --git a/services/emr/pom.xml b/services/emr/pom.xml
index 567225f59c16..ffc92b941990 100644
--- a/services/emr/pom.xml
+++ b/services/emr/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
emr
AWS Java SDK :: Services :: Amazon EMR
diff --git a/services/emrcontainers/pom.xml b/services/emrcontainers/pom.xml
index 5b49a109bf6b..2750a01f69f5 100644
--- a/services/emrcontainers/pom.xml
+++ b/services/emrcontainers/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
emrcontainers
AWS Java SDK :: Services :: EMR Containers
diff --git a/services/emrserverless/pom.xml b/services/emrserverless/pom.xml
index 90aaeb921478..0e5f2c2930ad 100644
--- a/services/emrserverless/pom.xml
+++ b/services/emrserverless/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
emrserverless
AWS Java SDK :: Services :: EMR Serverless
diff --git a/services/entityresolution/pom.xml b/services/entityresolution/pom.xml
index 53313879b8b5..a2ce2b90339e 100644
--- a/services/entityresolution/pom.xml
+++ b/services/entityresolution/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
entityresolution
AWS Java SDK :: Services :: Entity Resolution
diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml
index a5faed46a243..a1b3f10b0a6a 100644
--- a/services/eventbridge/pom.xml
+++ b/services/eventbridge/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
eventbridge
AWS Java SDK :: Services :: EventBridge
diff --git a/services/evidently/pom.xml b/services/evidently/pom.xml
index 67a081e3b56a..927cf5033867 100644
--- a/services/evidently/pom.xml
+++ b/services/evidently/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
evidently
AWS Java SDK :: Services :: Evidently
diff --git a/services/finspace/pom.xml b/services/finspace/pom.xml
index 6859f00445d1..af44faa32df9 100644
--- a/services/finspace/pom.xml
+++ b/services/finspace/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
finspace
AWS Java SDK :: Services :: Finspace
diff --git a/services/finspacedata/pom.xml b/services/finspacedata/pom.xml
index 963f01f3bf48..3ad81c175d39 100644
--- a/services/finspacedata/pom.xml
+++ b/services/finspacedata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
finspacedata
AWS Java SDK :: Services :: Finspace Data
diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml
index c65a94b399bf..98594616684e 100644
--- a/services/firehose/pom.xml
+++ b/services/firehose/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
firehose
AWS Java SDK :: Services :: Amazon Kinesis Firehose
diff --git a/services/fis/pom.xml b/services/fis/pom.xml
index 3c6cc728f800..4df041c51383 100644
--- a/services/fis/pom.xml
+++ b/services/fis/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
fis
AWS Java SDK :: Services :: Fis
diff --git a/services/fms/pom.xml b/services/fms/pom.xml
index 9724f36187a1..e0ed630fe551 100644
--- a/services/fms/pom.xml
+++ b/services/fms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
fms
AWS Java SDK :: Services :: FMS
diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml
index 639647301da5..4a68a9f4af6a 100644
--- a/services/forecast/pom.xml
+++ b/services/forecast/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
forecast
AWS Java SDK :: Services :: Forecast
diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml
index 02108f85a22e..2f4f8a458931 100644
--- a/services/forecastquery/pom.xml
+++ b/services/forecastquery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
forecastquery
AWS Java SDK :: Services :: Forecastquery
diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml
index 3279bfd8bf51..643bd874b0b7 100644
--- a/services/frauddetector/pom.xml
+++ b/services/frauddetector/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
frauddetector
AWS Java SDK :: Services :: FraudDetector
diff --git a/services/freetier/pom.xml b/services/freetier/pom.xml
index e5136303eaa8..dd505d837fed 100644
--- a/services/freetier/pom.xml
+++ b/services/freetier/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
freetier
AWS Java SDK :: Services :: Free Tier
diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml
index 7ff438f9e224..8bc234b66094 100644
--- a/services/fsx/pom.xml
+++ b/services/fsx/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
fsx
AWS Java SDK :: Services :: FSx
diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml
index 445c966cccc6..20b9da749fc9 100644
--- a/services/gamelift/pom.xml
+++ b/services/gamelift/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
gamelift
AWS Java SDK :: Services :: AWS GameLift
diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml
index affea6f0535d..0a6ea741ca79 100644
--- a/services/glacier/pom.xml
+++ b/services/glacier/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
glacier
AWS Java SDK :: Services :: Amazon Glacier
diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml
index 76987c3e9b6d..9af2a19a928b 100644
--- a/services/globalaccelerator/pom.xml
+++ b/services/globalaccelerator/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
globalaccelerator
AWS Java SDK :: Services :: Global Accelerator
diff --git a/services/glue/pom.xml b/services/glue/pom.xml
index dd3346d2db11..694a5f5f164f 100644
--- a/services/glue/pom.xml
+++ b/services/glue/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.69
+ 2.25.70-SNAPSHOT
4.0.0
glue
diff --git a/services/grafana/pom.xml b/services/grafana/pom.xml
index d89a16c9e4fd..95924e521628 100644
--- a/services/grafana/pom.xml
+++ b/services/grafana/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
grafana
AWS Java SDK :: Services :: Grafana
diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml
index d41272eec578..9525edf51d0c 100644
--- a/services/greengrass/pom.xml
+++ b/services/greengrass/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
greengrass
AWS Java SDK :: Services :: AWS Greengrass
diff --git a/services/greengrassv2/pom.xml b/services/greengrassv2/pom.xml
index b2cc5c4f8f82..b60db109720e 100644
--- a/services/greengrassv2/pom.xml
+++ b/services/greengrassv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
greengrassv2
AWS Java SDK :: Services :: Greengrass V2
diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml
index e19ef631fc01..6184159c33c9 100644
--- a/services/groundstation/pom.xml
+++ b/services/groundstation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
groundstation
AWS Java SDK :: Services :: GroundStation
diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml
index f17ad183ca7d..57d4b6948d97 100644
--- a/services/guardduty/pom.xml
+++ b/services/guardduty/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.69
+ 2.25.70-SNAPSHOT
4.0.0
guardduty
diff --git a/services/health/pom.xml b/services/health/pom.xml
index 1afcb89ffda5..81cfa7e5ddbf 100644
--- a/services/health/pom.xml
+++ b/services/health/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
health
AWS Java SDK :: Services :: AWS Health APIs and Notifications
diff --git a/services/healthlake/pom.xml b/services/healthlake/pom.xml
index cd3367b728df..83d4f0e2abc6 100644
--- a/services/healthlake/pom.xml
+++ b/services/healthlake/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
healthlake
AWS Java SDK :: Services :: Health Lake
diff --git a/services/iam/pom.xml b/services/iam/pom.xml
index 9eb355be9532..25f20c722088 100644
--- a/services/iam/pom.xml
+++ b/services/iam/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
iam
AWS Java SDK :: Services :: AWS IAM
diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml
index c47938ccd107..4b58a99a36e9 100644
--- a/services/identitystore/pom.xml
+++ b/services/identitystore/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
identitystore
AWS Java SDK :: Services :: Identitystore
diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml
index 1514a2484729..639ac26decd6 100644
--- a/services/imagebuilder/pom.xml
+++ b/services/imagebuilder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
imagebuilder
AWS Java SDK :: Services :: Imagebuilder
diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml
index 66ed14774b9a..49fc12848618 100644
--- a/services/inspector/pom.xml
+++ b/services/inspector/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
inspector
AWS Java SDK :: Services :: Amazon Inspector Service
diff --git a/services/inspector2/pom.xml b/services/inspector2/pom.xml
index 9e8c1bad1faf..3827b0b05ca7 100644
--- a/services/inspector2/pom.xml
+++ b/services/inspector2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
inspector2
AWS Java SDK :: Services :: Inspector2
diff --git a/services/inspectorscan/pom.xml b/services/inspectorscan/pom.xml
index b590a5547d60..ea544cd61d50 100644
--- a/services/inspectorscan/pom.xml
+++ b/services/inspectorscan/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
inspectorscan
AWS Java SDK :: Services :: Inspector Scan
diff --git a/services/internetmonitor/pom.xml b/services/internetmonitor/pom.xml
index 1e9dd098e4d2..aae72e4d05e1 100644
--- a/services/internetmonitor/pom.xml
+++ b/services/internetmonitor/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
internetmonitor
AWS Java SDK :: Services :: Internet Monitor
diff --git a/services/iot/pom.xml b/services/iot/pom.xml
index 3e5643ad140e..b6558f938c97 100644
--- a/services/iot/pom.xml
+++ b/services/iot/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
iot
AWS Java SDK :: Services :: AWS IoT
diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml
index 7540e1c4857b..bcf075b768f0 100644
--- a/services/iot1clickdevices/pom.xml
+++ b/services/iot1clickdevices/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
iot1clickdevices
AWS Java SDK :: Services :: IoT 1Click Devices Service
diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml
index a32c341b978a..b20c20215e85 100644
--- a/services/iot1clickprojects/pom.xml
+++ b/services/iot1clickprojects/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
iot1clickprojects
AWS Java SDK :: Services :: IoT 1Click Projects
diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml
index 376c3fc72e68..0f928cbef278 100644
--- a/services/iotanalytics/pom.xml
+++ b/services/iotanalytics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
iotanalytics
AWS Java SDK :: Services :: IoTAnalytics
diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml
index 9c3ba919dea3..586df83c1be3 100644
--- a/services/iotdataplane/pom.xml
+++ b/services/iotdataplane/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
iotdataplane
AWS Java SDK :: Services :: AWS IoT Data Plane
diff --git a/services/iotdeviceadvisor/pom.xml b/services/iotdeviceadvisor/pom.xml
index 4a77e6526c2b..1f693a8ecf22 100644
--- a/services/iotdeviceadvisor/pom.xml
+++ b/services/iotdeviceadvisor/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
iotdeviceadvisor
AWS Java SDK :: Services :: Iot Device Advisor
diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml
index e40e05f59e8b..6b7efd444c06 100644
--- a/services/iotevents/pom.xml
+++ b/services/iotevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
iotevents
AWS Java SDK :: Services :: IoT Events
diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml
index 7cf08fb93a49..409b1dfd7490 100644
--- a/services/ioteventsdata/pom.xml
+++ b/services/ioteventsdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
ioteventsdata
AWS Java SDK :: Services :: IoT Events Data
diff --git a/services/iotfleethub/pom.xml b/services/iotfleethub/pom.xml
index c1a7c9411261..fdf1bdfc2d8b 100644
--- a/services/iotfleethub/pom.xml
+++ b/services/iotfleethub/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
iotfleethub
AWS Java SDK :: Services :: Io T Fleet Hub
diff --git a/services/iotfleetwise/pom.xml b/services/iotfleetwise/pom.xml
index 892af73dd1a4..1c9cb322bf4d 100644
--- a/services/iotfleetwise/pom.xml
+++ b/services/iotfleetwise/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
iotfleetwise
AWS Java SDK :: Services :: Io T Fleet Wise
diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml
index 10991d723ef3..f4d3cbd85c55 100644
--- a/services/iotjobsdataplane/pom.xml
+++ b/services/iotjobsdataplane/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
iotjobsdataplane
AWS Java SDK :: Services :: IoT Jobs Data Plane
diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml
index 807ed5064c96..598598208246 100644
--- a/services/iotsecuretunneling/pom.xml
+++ b/services/iotsecuretunneling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
iotsecuretunneling
AWS Java SDK :: Services :: IoTSecureTunneling
diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml
index 468151560ed2..30e24f57599b 100644
--- a/services/iotsitewise/pom.xml
+++ b/services/iotsitewise/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
iotsitewise
AWS Java SDK :: Services :: Io T Site Wise
diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml
index b237223a5d64..0e4c62e19ecb 100644
--- a/services/iotthingsgraph/pom.xml
+++ b/services/iotthingsgraph/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
iotthingsgraph
AWS Java SDK :: Services :: IoTThingsGraph
diff --git a/services/iottwinmaker/pom.xml b/services/iottwinmaker/pom.xml
index f825e7326ba8..400812eec3ab 100644
--- a/services/iottwinmaker/pom.xml
+++ b/services/iottwinmaker/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
iottwinmaker
AWS Java SDK :: Services :: Io T Twin Maker
diff --git a/services/iotwireless/pom.xml b/services/iotwireless/pom.xml
index d18b8f34250a..a5fc9872faa1 100644
--- a/services/iotwireless/pom.xml
+++ b/services/iotwireless/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
iotwireless
AWS Java SDK :: Services :: IoT Wireless
diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml
index 2926fa4cfd6a..6d68e33f3fcb 100644
--- a/services/ivs/pom.xml
+++ b/services/ivs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
ivs
AWS Java SDK :: Services :: Ivs
diff --git a/services/ivschat/pom.xml b/services/ivschat/pom.xml
index 6d5c22ec031e..6376c984705d 100644
--- a/services/ivschat/pom.xml
+++ b/services/ivschat/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
ivschat
AWS Java SDK :: Services :: Ivschat
diff --git a/services/ivsrealtime/pom.xml b/services/ivsrealtime/pom.xml
index 0ae42c66f501..d6007499bd2e 100644
--- a/services/ivsrealtime/pom.xml
+++ b/services/ivsrealtime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
ivsrealtime
AWS Java SDK :: Services :: IVS Real Time
diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml
index 76ce6f4dd7fd..a913c744d5a7 100644
--- a/services/kafka/pom.xml
+++ b/services/kafka/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
kafka
AWS Java SDK :: Services :: Kafka
diff --git a/services/kafkaconnect/pom.xml b/services/kafkaconnect/pom.xml
index d711813abefb..f1d0c87eeab3 100644
--- a/services/kafkaconnect/pom.xml
+++ b/services/kafkaconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
kafkaconnect
AWS Java SDK :: Services :: Kafka Connect
diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml
index 5137dbc356f5..3bb28db61afa 100644
--- a/services/kendra/pom.xml
+++ b/services/kendra/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
kendra
AWS Java SDK :: Services :: Kendra
diff --git a/services/kendraranking/pom.xml b/services/kendraranking/pom.xml
index 228dab73b648..7c78b363e942 100644
--- a/services/kendraranking/pom.xml
+++ b/services/kendraranking/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
kendraranking
AWS Java SDK :: Services :: Kendra Ranking
diff --git a/services/keyspaces/pom.xml b/services/keyspaces/pom.xml
index e4b41011a633..884534f733a8 100644
--- a/services/keyspaces/pom.xml
+++ b/services/keyspaces/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
keyspaces
AWS Java SDK :: Services :: Keyspaces
diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml
index 3e83e906f111..6d89caf1d32e 100644
--- a/services/kinesis/pom.xml
+++ b/services/kinesis/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
kinesis
AWS Java SDK :: Services :: Amazon Kinesis
diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml
index a8380e454c39..9ce2343857b0 100644
--- a/services/kinesisanalytics/pom.xml
+++ b/services/kinesisanalytics/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
kinesisanalytics
AWS Java SDK :: Services :: Amazon Kinesis Analytics
diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml
index 49c0fe8e86f2..7f2e013aa00f 100644
--- a/services/kinesisanalyticsv2/pom.xml
+++ b/services/kinesisanalyticsv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
kinesisanalyticsv2
AWS Java SDK :: Services :: Kinesis Analytics V2
diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml
index c2a425b9bd6b..1db4e2288f20 100644
--- a/services/kinesisvideo/pom.xml
+++ b/services/kinesisvideo/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.69
+ 2.25.70-SNAPSHOT
4.0.0
kinesisvideo
diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml
index e48fbcbe780c..8c5826e0c140 100644
--- a/services/kinesisvideoarchivedmedia/pom.xml
+++ b/services/kinesisvideoarchivedmedia/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
kinesisvideoarchivedmedia
AWS Java SDK :: Services :: Kinesis Video Archived Media
diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml
index ff6eee7b7103..637c83d9f56a 100644
--- a/services/kinesisvideomedia/pom.xml
+++ b/services/kinesisvideomedia/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
kinesisvideomedia
AWS Java SDK :: Services :: Kinesis Video Media
diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml
index a50f0755e1fd..e7a7bcc11da7 100644
--- a/services/kinesisvideosignaling/pom.xml
+++ b/services/kinesisvideosignaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
kinesisvideosignaling
AWS Java SDK :: Services :: Kinesis Video Signaling
diff --git a/services/kinesisvideowebrtcstorage/pom.xml b/services/kinesisvideowebrtcstorage/pom.xml
index d068615192c0..020384707e32 100644
--- a/services/kinesisvideowebrtcstorage/pom.xml
+++ b/services/kinesisvideowebrtcstorage/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
kinesisvideowebrtcstorage
AWS Java SDK :: Services :: Kinesis Video Web RTC Storage
diff --git a/services/kms/pom.xml b/services/kms/pom.xml
index 3bf7012007e6..858cfb572ae7 100644
--- a/services/kms/pom.xml
+++ b/services/kms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
kms
AWS Java SDK :: Services :: AWS KMS
diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml
index 721b7ef9c779..5d1559ff9720 100644
--- a/services/lakeformation/pom.xml
+++ b/services/lakeformation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
lakeformation
AWS Java SDK :: Services :: LakeFormation
diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml
index ef2490824f07..67d54a5e528f 100644
--- a/services/lambda/pom.xml
+++ b/services/lambda/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
lambda
AWS Java SDK :: Services :: AWS Lambda
diff --git a/services/launchwizard/pom.xml b/services/launchwizard/pom.xml
index f84d49668eca..c6a347a1c92f 100644
--- a/services/launchwizard/pom.xml
+++ b/services/launchwizard/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
launchwizard
AWS Java SDK :: Services :: Launch Wizard
diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml
index a5b117aa9787..2bf425058d64 100644
--- a/services/lexmodelbuilding/pom.xml
+++ b/services/lexmodelbuilding/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
lexmodelbuilding
AWS Java SDK :: Services :: Amazon Lex Model Building
diff --git a/services/lexmodelsv2/pom.xml b/services/lexmodelsv2/pom.xml
index 2bd1122bb422..779b94a98a0d 100644
--- a/services/lexmodelsv2/pom.xml
+++ b/services/lexmodelsv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
lexmodelsv2
AWS Java SDK :: Services :: Lex Models V2
diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml
index bee091d15edc..cc15ec55676c 100644
--- a/services/lexruntime/pom.xml
+++ b/services/lexruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
lexruntime
AWS Java SDK :: Services :: Amazon Lex Runtime
diff --git a/services/lexruntimev2/pom.xml b/services/lexruntimev2/pom.xml
index 6c2f1e95fca9..22ac60bbe07a 100644
--- a/services/lexruntimev2/pom.xml
+++ b/services/lexruntimev2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
lexruntimev2
AWS Java SDK :: Services :: Lex Runtime V2
diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml
index 7c742badc710..6719ea17fd00 100644
--- a/services/licensemanager/pom.xml
+++ b/services/licensemanager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
licensemanager
AWS Java SDK :: Services :: License Manager
diff --git a/services/licensemanagerlinuxsubscriptions/pom.xml b/services/licensemanagerlinuxsubscriptions/pom.xml
index 912ba2a12a44..304f79da43cc 100644
--- a/services/licensemanagerlinuxsubscriptions/pom.xml
+++ b/services/licensemanagerlinuxsubscriptions/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
licensemanagerlinuxsubscriptions
AWS Java SDK :: Services :: License Manager Linux Subscriptions
diff --git a/services/licensemanagerusersubscriptions/pom.xml b/services/licensemanagerusersubscriptions/pom.xml
index bff674fccdf3..cc8e032373ad 100644
--- a/services/licensemanagerusersubscriptions/pom.xml
+++ b/services/licensemanagerusersubscriptions/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
licensemanagerusersubscriptions
AWS Java SDK :: Services :: License Manager User Subscriptions
diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml
index 6d79abe890d3..3a217f41f77e 100644
--- a/services/lightsail/pom.xml
+++ b/services/lightsail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
lightsail
AWS Java SDK :: Services :: Amazon Lightsail
diff --git a/services/location/pom.xml b/services/location/pom.xml
index fc2ba3a0d107..31b03a8f7f92 100644
--- a/services/location/pom.xml
+++ b/services/location/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
location
AWS Java SDK :: Services :: Location
diff --git a/services/lookoutequipment/pom.xml b/services/lookoutequipment/pom.xml
index 9bbd78be894a..2f7925b53e8e 100644
--- a/services/lookoutequipment/pom.xml
+++ b/services/lookoutequipment/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
lookoutequipment
AWS Java SDK :: Services :: Lookout Equipment
diff --git a/services/lookoutmetrics/pom.xml b/services/lookoutmetrics/pom.xml
index fc11b281507a..4758c8d374e3 100644
--- a/services/lookoutmetrics/pom.xml
+++ b/services/lookoutmetrics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
lookoutmetrics
AWS Java SDK :: Services :: Lookout Metrics
diff --git a/services/lookoutvision/pom.xml b/services/lookoutvision/pom.xml
index f2d2acfa206f..fca59e9ef9be 100644
--- a/services/lookoutvision/pom.xml
+++ b/services/lookoutvision/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
lookoutvision
AWS Java SDK :: Services :: Lookout Vision
diff --git a/services/m2/pom.xml b/services/m2/pom.xml
index 58d26ef551a0..6940c7fa3965 100644
--- a/services/m2/pom.xml
+++ b/services/m2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
m2
AWS Java SDK :: Services :: M2
diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml
index 22196356f940..387da3ff488e 100644
--- a/services/machinelearning/pom.xml
+++ b/services/machinelearning/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
machinelearning
AWS Java SDK :: Services :: Amazon Machine Learning
diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml
index 8bcd93b9ad95..577e1aab37bb 100644
--- a/services/macie2/pom.xml
+++ b/services/macie2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
macie2
AWS Java SDK :: Services :: Macie2
diff --git a/services/mailmanager/pom.xml b/services/mailmanager/pom.xml
index 2a98014862b1..389a098e841d 100644
--- a/services/mailmanager/pom.xml
+++ b/services/mailmanager/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
mailmanager
AWS Java SDK :: Services :: Mail Manager
diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml
index 35ca7f4033b6..637a94c5784f 100644
--- a/services/managedblockchain/pom.xml
+++ b/services/managedblockchain/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
managedblockchain
AWS Java SDK :: Services :: ManagedBlockchain
diff --git a/services/managedblockchainquery/pom.xml b/services/managedblockchainquery/pom.xml
index 7726bbb46385..f2b1192fa49a 100644
--- a/services/managedblockchainquery/pom.xml
+++ b/services/managedblockchainquery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
managedblockchainquery
AWS Java SDK :: Services :: Managed Blockchain Query
diff --git a/services/marketplaceagreement/pom.xml b/services/marketplaceagreement/pom.xml
index 918b3ada4486..90bd494a5850 100644
--- a/services/marketplaceagreement/pom.xml
+++ b/services/marketplaceagreement/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
marketplaceagreement
AWS Java SDK :: Services :: Marketplace Agreement
diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml
index 07f5db53c8a0..8ca3f0b4a8ee 100644
--- a/services/marketplacecatalog/pom.xml
+++ b/services/marketplacecatalog/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
marketplacecatalog
AWS Java SDK :: Services :: Marketplace Catalog
diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml
index f3ea5dd6fe0d..59c654c9495d 100644
--- a/services/marketplacecommerceanalytics/pom.xml
+++ b/services/marketplacecommerceanalytics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
marketplacecommerceanalytics
AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics
diff --git a/services/marketplacedeployment/pom.xml b/services/marketplacedeployment/pom.xml
index 28a998fd5c0b..351adcc47a11 100644
--- a/services/marketplacedeployment/pom.xml
+++ b/services/marketplacedeployment/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
marketplacedeployment
AWS Java SDK :: Services :: Marketplace Deployment
diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml
index 0c777639b59b..fe47f5371e90 100644
--- a/services/marketplaceentitlement/pom.xml
+++ b/services/marketplaceentitlement/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
marketplaceentitlement
AWS Java SDK :: Services :: AWS Marketplace Entitlement
diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml
index 63341c1b1c04..70b0cb6f9800 100644
--- a/services/marketplacemetering/pom.xml
+++ b/services/marketplacemetering/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
marketplacemetering
AWS Java SDK :: Services :: AWS Marketplace Metering Service
diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml
index c1b7e7177e95..3bb2727d952d 100644
--- a/services/mediaconnect/pom.xml
+++ b/services/mediaconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
mediaconnect
AWS Java SDK :: Services :: MediaConnect
diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml
index 4bc7d9de40ca..918fc12b3d10 100644
--- a/services/mediaconvert/pom.xml
+++ b/services/mediaconvert/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.69
+ 2.25.70-SNAPSHOT
4.0.0
mediaconvert
diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml
index b6561e1fdb9a..feb0170a0b75 100644
--- a/services/medialive/pom.xml
+++ b/services/medialive/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.69
+ 2.25.70-SNAPSHOT
4.0.0
medialive
diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml
index 56549da68bc5..e4b97c3e8cf3 100644
--- a/services/mediapackage/pom.xml
+++ b/services/mediapackage/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.69
+ 2.25.70-SNAPSHOT
4.0.0
mediapackage
diff --git a/services/mediapackagev2/pom.xml b/services/mediapackagev2/pom.xml
index bd01647cf6da..831aefec7e3c 100644
--- a/services/mediapackagev2/pom.xml
+++ b/services/mediapackagev2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
mediapackagev2
AWS Java SDK :: Services :: Media Package V2
diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml
index 4831493f5f61..006636ea6734 100644
--- a/services/mediapackagevod/pom.xml
+++ b/services/mediapackagevod/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
mediapackagevod
AWS Java SDK :: Services :: MediaPackage Vod
diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml
index 038a9f7b22cd..126436d22ca9 100644
--- a/services/mediastore/pom.xml
+++ b/services/mediastore/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.69
+ 2.25.70-SNAPSHOT
4.0.0
mediastore
diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml
index 18341017556a..269ff462cc76 100644
--- a/services/mediastoredata/pom.xml
+++ b/services/mediastoredata/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.69
+ 2.25.70-SNAPSHOT
4.0.0
mediastoredata
diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml
index 5ac9a2056c12..d35e3d7c1fc8 100644
--- a/services/mediatailor/pom.xml
+++ b/services/mediatailor/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
mediatailor
AWS Java SDK :: Services :: MediaTailor
diff --git a/services/medicalimaging/pom.xml b/services/medicalimaging/pom.xml
index 8f30b568c3ca..b532088410e4 100644
--- a/services/medicalimaging/pom.xml
+++ b/services/medicalimaging/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
medicalimaging
AWS Java SDK :: Services :: Medical Imaging
diff --git a/services/memorydb/pom.xml b/services/memorydb/pom.xml
index 5aabfacba207..ea0c426a19c9 100644
--- a/services/memorydb/pom.xml
+++ b/services/memorydb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
memorydb
AWS Java SDK :: Services :: Memory DB
diff --git a/services/mgn/pom.xml b/services/mgn/pom.xml
index d89c427d237e..7abe71d3accd 100644
--- a/services/mgn/pom.xml
+++ b/services/mgn/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
mgn
AWS Java SDK :: Services :: Mgn
diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml
index 7d1e71437215..d977a0bab021 100644
--- a/services/migrationhub/pom.xml
+++ b/services/migrationhub/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.69
+ 2.25.70-SNAPSHOT
4.0.0
migrationhub
diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml
index bc18f1039679..e2677b89a65b 100644
--- a/services/migrationhubconfig/pom.xml
+++ b/services/migrationhubconfig/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
migrationhubconfig
AWS Java SDK :: Services :: MigrationHub Config
diff --git a/services/migrationhuborchestrator/pom.xml b/services/migrationhuborchestrator/pom.xml
index 72610313e41c..ee94ddf644d5 100644
--- a/services/migrationhuborchestrator/pom.xml
+++ b/services/migrationhuborchestrator/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
migrationhuborchestrator
AWS Java SDK :: Services :: Migration Hub Orchestrator
diff --git a/services/migrationhubrefactorspaces/pom.xml b/services/migrationhubrefactorspaces/pom.xml
index 6267afc651eb..274d64f688ac 100644
--- a/services/migrationhubrefactorspaces/pom.xml
+++ b/services/migrationhubrefactorspaces/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
migrationhubrefactorspaces
AWS Java SDK :: Services :: Migration Hub Refactor Spaces
diff --git a/services/migrationhubstrategy/pom.xml b/services/migrationhubstrategy/pom.xml
index ea53b0c7ef7a..42b5306ca576 100644
--- a/services/migrationhubstrategy/pom.xml
+++ b/services/migrationhubstrategy/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
migrationhubstrategy
AWS Java SDK :: Services :: Migration Hub Strategy
diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml
index 2794d1b915b1..cd8b2ceaf2fe 100644
--- a/services/mobile/pom.xml
+++ b/services/mobile/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.69
+ 2.25.70-SNAPSHOT
4.0.0
mobile
diff --git a/services/mq/pom.xml b/services/mq/pom.xml
index 19789a8544e8..dca54dc1352c 100644
--- a/services/mq/pom.xml
+++ b/services/mq/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.69
+ 2.25.70-SNAPSHOT
4.0.0
mq
diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml
index 41298f7e2b7c..1226ad7363a8 100644
--- a/services/mturk/pom.xml
+++ b/services/mturk/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
mturk
AWS Java SDK :: Services :: Amazon Mechanical Turk Requester
diff --git a/services/mwaa/pom.xml b/services/mwaa/pom.xml
index 824765c2a629..ad4e8c19ab16 100644
--- a/services/mwaa/pom.xml
+++ b/services/mwaa/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
mwaa
AWS Java SDK :: Services :: MWAA
diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml
index 236e35ba4c66..23e0ca85ef2a 100644
--- a/services/neptune/pom.xml
+++ b/services/neptune/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
neptune
AWS Java SDK :: Services :: Neptune
diff --git a/services/neptunedata/pom.xml b/services/neptunedata/pom.xml
index 2a385de98439..c4f53848903b 100644
--- a/services/neptunedata/pom.xml
+++ b/services/neptunedata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
neptunedata
AWS Java SDK :: Services :: Neptunedata
diff --git a/services/neptunegraph/pom.xml b/services/neptunegraph/pom.xml
index 799e31d1bcd8..c443b0309ec4 100644
--- a/services/neptunegraph/pom.xml
+++ b/services/neptunegraph/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
neptunegraph
AWS Java SDK :: Services :: Neptune Graph
diff --git a/services/networkfirewall/pom.xml b/services/networkfirewall/pom.xml
index 9649353c9f46..49a0fe2c49dd 100644
--- a/services/networkfirewall/pom.xml
+++ b/services/networkfirewall/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
networkfirewall
AWS Java SDK :: Services :: Network Firewall
diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml
index c195712f8383..3dcb5f290e02 100644
--- a/services/networkmanager/pom.xml
+++ b/services/networkmanager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
networkmanager
AWS Java SDK :: Services :: NetworkManager
diff --git a/services/networkmonitor/pom.xml b/services/networkmonitor/pom.xml
index 66f4ad4bcf8e..40851bc4b962 100644
--- a/services/networkmonitor/pom.xml
+++ b/services/networkmonitor/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
networkmonitor
AWS Java SDK :: Services :: Network Monitor
diff --git a/services/nimble/pom.xml b/services/nimble/pom.xml
index 4e0cff74b6f4..9a738c830ef7 100644
--- a/services/nimble/pom.xml
+++ b/services/nimble/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
nimble
AWS Java SDK :: Services :: Nimble
diff --git a/services/oam/pom.xml b/services/oam/pom.xml
index 48033997a7b6..3c515748cec3 100644
--- a/services/oam/pom.xml
+++ b/services/oam/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
oam
AWS Java SDK :: Services :: OAM
diff --git a/services/omics/pom.xml b/services/omics/pom.xml
index 4385216708e3..4098e3ba634d 100644
--- a/services/omics/pom.xml
+++ b/services/omics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
omics
AWS Java SDK :: Services :: Omics
diff --git a/services/opensearch/pom.xml b/services/opensearch/pom.xml
index c6a0a5c98755..a92a867ead07 100644
--- a/services/opensearch/pom.xml
+++ b/services/opensearch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
opensearch
AWS Java SDK :: Services :: Open Search
diff --git a/services/opensearchserverless/pom.xml b/services/opensearchserverless/pom.xml
index 0e204e1ce156..98fcad39dfa3 100644
--- a/services/opensearchserverless/pom.xml
+++ b/services/opensearchserverless/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
opensearchserverless
AWS Java SDK :: Services :: Open Search Serverless
diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml
index 97b23fbcda92..3b5bac89c0bc 100644
--- a/services/opsworks/pom.xml
+++ b/services/opsworks/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
opsworks
AWS Java SDK :: Services :: AWS OpsWorks
diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml
index 3a2ac62e692d..dc5cbf50e3cc 100644
--- a/services/opsworkscm/pom.xml
+++ b/services/opsworkscm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
opsworkscm
AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate
diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml
index 90f77d724e4b..20996b4c056e 100644
--- a/services/organizations/pom.xml
+++ b/services/organizations/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
organizations
AWS Java SDK :: Services :: AWS Organizations
diff --git a/services/osis/pom.xml b/services/osis/pom.xml
index c4bc743c17dc..2c7561a74eca 100644
--- a/services/osis/pom.xml
+++ b/services/osis/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
osis
AWS Java SDK :: Services :: OSIS
diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml
index 8d5723f3bf3a..7ae17f333874 100644
--- a/services/outposts/pom.xml
+++ b/services/outposts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
outposts
AWS Java SDK :: Services :: Outposts
diff --git a/services/panorama/pom.xml b/services/panorama/pom.xml
index 9f198569e8a3..06438b7a96c5 100644
--- a/services/panorama/pom.xml
+++ b/services/panorama/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
panorama
AWS Java SDK :: Services :: Panorama
diff --git a/services/paymentcryptography/pom.xml b/services/paymentcryptography/pom.xml
index ae2bb7415855..8369adfbde4d 100644
--- a/services/paymentcryptography/pom.xml
+++ b/services/paymentcryptography/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
paymentcryptography
AWS Java SDK :: Services :: Payment Cryptography
diff --git a/services/paymentcryptographydata/pom.xml b/services/paymentcryptographydata/pom.xml
index ea92a678401e..b0c81ec7193e 100644
--- a/services/paymentcryptographydata/pom.xml
+++ b/services/paymentcryptographydata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
paymentcryptographydata
AWS Java SDK :: Services :: Payment Cryptography Data
diff --git a/services/pcaconnectorad/pom.xml b/services/pcaconnectorad/pom.xml
index 010415d0e044..53462785ac32 100644
--- a/services/pcaconnectorad/pom.xml
+++ b/services/pcaconnectorad/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
pcaconnectorad
AWS Java SDK :: Services :: Pca Connector Ad
diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml
index 145a0cb9fdd2..b2ab1a957681 100644
--- a/services/personalize/pom.xml
+++ b/services/personalize/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
personalize
AWS Java SDK :: Services :: Personalize
diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml
index 814bef18178b..ff1558f8d711 100644
--- a/services/personalizeevents/pom.xml
+++ b/services/personalizeevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
personalizeevents
AWS Java SDK :: Services :: Personalize Events
diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml
index f0710a8cdd9e..017c4ddcf8d4 100644
--- a/services/personalizeruntime/pom.xml
+++ b/services/personalizeruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
personalizeruntime
AWS Java SDK :: Services :: Personalize Runtime
diff --git a/services/pi/pom.xml b/services/pi/pom.xml
index 53db8e3ed3c3..057769cb3ce2 100644
--- a/services/pi/pom.xml
+++ b/services/pi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
pi
AWS Java SDK :: Services :: PI
diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml
index e66241a45cc0..462a0b1ad9e0 100644
--- a/services/pinpoint/pom.xml
+++ b/services/pinpoint/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
pinpoint
AWS Java SDK :: Services :: Amazon Pinpoint
diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml
index ee8395cd0c9d..1590616f5b99 100644
--- a/services/pinpointemail/pom.xml
+++ b/services/pinpointemail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
pinpointemail
AWS Java SDK :: Services :: Pinpoint Email
diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml
index 13a60e7a7d86..83864b966da9 100644
--- a/services/pinpointsmsvoice/pom.xml
+++ b/services/pinpointsmsvoice/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
pinpointsmsvoice
AWS Java SDK :: Services :: Pinpoint SMS Voice
diff --git a/services/pinpointsmsvoicev2/pom.xml b/services/pinpointsmsvoicev2/pom.xml
index 5ef2fc93dbfd..039f2d1c8dbd 100644
--- a/services/pinpointsmsvoicev2/pom.xml
+++ b/services/pinpointsmsvoicev2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
pinpointsmsvoicev2
AWS Java SDK :: Services :: Pinpoint SMS Voice V2
diff --git a/services/pipes/pom.xml b/services/pipes/pom.xml
index 323cb9bdabbe..6a3a0917288d 100644
--- a/services/pipes/pom.xml
+++ b/services/pipes/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
pipes
AWS Java SDK :: Services :: Pipes
diff --git a/services/polly/pom.xml b/services/polly/pom.xml
index 8979a405484b..90ec1a537863 100644
--- a/services/polly/pom.xml
+++ b/services/polly/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
polly
AWS Java SDK :: Services :: Amazon Polly
diff --git a/services/pom.xml b/services/pom.xml
index b918dae076ca..5f7a926cc540 100644
--- a/services/pom.xml
+++ b/services/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.69
+ 2.25.70-SNAPSHOT
services
AWS Java SDK :: Services
diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml
index 73abc0e99586..7259d23eb65c 100644
--- a/services/pricing/pom.xml
+++ b/services/pricing/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.69
+ 2.25.70-SNAPSHOT
4.0.0
pricing
diff --git a/services/privatenetworks/pom.xml b/services/privatenetworks/pom.xml
index 7657bce5f7f8..dc8a0f637fff 100644
--- a/services/privatenetworks/pom.xml
+++ b/services/privatenetworks/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
privatenetworks
AWS Java SDK :: Services :: Private Networks
diff --git a/services/proton/pom.xml b/services/proton/pom.xml
index c64fedd17280..11517bb47e0d 100644
--- a/services/proton/pom.xml
+++ b/services/proton/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
proton
AWS Java SDK :: Services :: Proton
diff --git a/services/qbusiness/pom.xml b/services/qbusiness/pom.xml
index 4dd427e52f61..53ff5932bc20 100644
--- a/services/qbusiness/pom.xml
+++ b/services/qbusiness/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
qbusiness
AWS Java SDK :: Services :: Q Business
diff --git a/services/qconnect/pom.xml b/services/qconnect/pom.xml
index f109ecfc6808..357d01714223 100644
--- a/services/qconnect/pom.xml
+++ b/services/qconnect/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
qconnect
AWS Java SDK :: Services :: Q Connect
diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml
index 22980b617149..c59626a9b3ad 100644
--- a/services/qldb/pom.xml
+++ b/services/qldb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
qldb
AWS Java SDK :: Services :: QLDB
diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml
index 28856b5ddcf0..b28bca347178 100644
--- a/services/qldbsession/pom.xml
+++ b/services/qldbsession/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
qldbsession
AWS Java SDK :: Services :: QLDB Session
diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml
index 33d36aa2a133..6b96c3613786 100644
--- a/services/quicksight/pom.xml
+++ b/services/quicksight/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
quicksight
AWS Java SDK :: Services :: QuickSight
diff --git a/services/ram/pom.xml b/services/ram/pom.xml
index 7b276a8bbf42..f6f4e37060b6 100644
--- a/services/ram/pom.xml
+++ b/services/ram/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
ram
AWS Java SDK :: Services :: RAM
diff --git a/services/rbin/pom.xml b/services/rbin/pom.xml
index 3a2733ef2bbc..f317b09abf47 100644
--- a/services/rbin/pom.xml
+++ b/services/rbin/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
rbin
AWS Java SDK :: Services :: Rbin
diff --git a/services/rds/pom.xml b/services/rds/pom.xml
index 455499e289a6..1e72bb2f5233 100644
--- a/services/rds/pom.xml
+++ b/services/rds/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
rds
AWS Java SDK :: Services :: Amazon RDS
diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml
index 55f9e43b3d44..5c48efc2f1c6 100644
--- a/services/rdsdata/pom.xml
+++ b/services/rdsdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
rdsdata
AWS Java SDK :: Services :: RDS Data
diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml
index 2e120da9d51e..0e6eeacdcbd2 100644
--- a/services/redshift/pom.xml
+++ b/services/redshift/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
redshift
AWS Java SDK :: Services :: Amazon Redshift
diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml
index 579365d4f4a5..e1c383ad80db 100644
--- a/services/redshiftdata/pom.xml
+++ b/services/redshiftdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
redshiftdata
AWS Java SDK :: Services :: Redshift Data
diff --git a/services/redshiftserverless/pom.xml b/services/redshiftserverless/pom.xml
index 07a0be7b0378..4cd93064b187 100644
--- a/services/redshiftserverless/pom.xml
+++ b/services/redshiftserverless/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
redshiftserverless
AWS Java SDK :: Services :: Redshift Serverless
diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml
index c9a5d647ff03..c3eba80aecd3 100644
--- a/services/rekognition/pom.xml
+++ b/services/rekognition/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
rekognition
AWS Java SDK :: Services :: Amazon Rekognition
diff --git a/services/repostspace/pom.xml b/services/repostspace/pom.xml
index 71a22170f95f..494328365236 100644
--- a/services/repostspace/pom.xml
+++ b/services/repostspace/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
repostspace
AWS Java SDK :: Services :: Repostspace
diff --git a/services/resiliencehub/pom.xml b/services/resiliencehub/pom.xml
index fbbf03214cff..f1f64534e924 100644
--- a/services/resiliencehub/pom.xml
+++ b/services/resiliencehub/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
resiliencehub
AWS Java SDK :: Services :: Resiliencehub
diff --git a/services/resourceexplorer2/pom.xml b/services/resourceexplorer2/pom.xml
index 8899b29c760a..0d4ede408d83 100644
--- a/services/resourceexplorer2/pom.xml
+++ b/services/resourceexplorer2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
resourceexplorer2
AWS Java SDK :: Services :: Resource Explorer 2
diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml
index a250907a994c..a3b3104cca44 100644
--- a/services/resourcegroups/pom.xml
+++ b/services/resourcegroups/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.69
+ 2.25.70-SNAPSHOT
4.0.0
resourcegroups
diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml
index d5fc33bf5d09..2fb715775f65 100644
--- a/services/resourcegroupstaggingapi/pom.xml
+++ b/services/resourcegroupstaggingapi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
resourcegroupstaggingapi
AWS Java SDK :: Services :: AWS Resource Groups Tagging API
diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml
index 5cac957de0e2..0a94566a4512 100644
--- a/services/robomaker/pom.xml
+++ b/services/robomaker/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
robomaker
AWS Java SDK :: Services :: RoboMaker
diff --git a/services/rolesanywhere/pom.xml b/services/rolesanywhere/pom.xml
index 882ce3e5bd83..306e02ac9151 100644
--- a/services/rolesanywhere/pom.xml
+++ b/services/rolesanywhere/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
rolesanywhere
AWS Java SDK :: Services :: Roles Anywhere
diff --git a/services/route53/pom.xml b/services/route53/pom.xml
index 1760f8563402..cccc3272a9f8 100644
--- a/services/route53/pom.xml
+++ b/services/route53/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
route53
AWS Java SDK :: Services :: Amazon Route53
diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml
index 50a6e6bd4786..3abe534dbaaf 100644
--- a/services/route53domains/pom.xml
+++ b/services/route53domains/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
route53domains
AWS Java SDK :: Services :: Amazon Route53 Domains
diff --git a/services/route53profiles/pom.xml b/services/route53profiles/pom.xml
index 2b4f7bc56239..c92dfa3111d9 100644
--- a/services/route53profiles/pom.xml
+++ b/services/route53profiles/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
route53profiles
AWS Java SDK :: Services :: Route53 Profiles
diff --git a/services/route53recoverycluster/pom.xml b/services/route53recoverycluster/pom.xml
index 54ebdfe2db05..0574956545b6 100644
--- a/services/route53recoverycluster/pom.xml
+++ b/services/route53recoverycluster/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
route53recoverycluster
AWS Java SDK :: Services :: Route53 Recovery Cluster
diff --git a/services/route53recoverycontrolconfig/pom.xml b/services/route53recoverycontrolconfig/pom.xml
index 793e31b86ae8..c773307927e6 100644
--- a/services/route53recoverycontrolconfig/pom.xml
+++ b/services/route53recoverycontrolconfig/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
route53recoverycontrolconfig
AWS Java SDK :: Services :: Route53 Recovery Control Config
diff --git a/services/route53recoveryreadiness/pom.xml b/services/route53recoveryreadiness/pom.xml
index 1daeb607d388..721ddc1131e7 100644
--- a/services/route53recoveryreadiness/pom.xml
+++ b/services/route53recoveryreadiness/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
route53recoveryreadiness
AWS Java SDK :: Services :: Route53 Recovery Readiness
diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml
index 8398c01ad6d3..0c0ea948384a 100644
--- a/services/route53resolver/pom.xml
+++ b/services/route53resolver/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
route53resolver
AWS Java SDK :: Services :: Route53Resolver
diff --git a/services/rum/pom.xml b/services/rum/pom.xml
index 34c23835cc0e..6b75a5166318 100644
--- a/services/rum/pom.xml
+++ b/services/rum/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
rum
AWS Java SDK :: Services :: RUM
diff --git a/services/s3/pom.xml b/services/s3/pom.xml
index 9ed410cda4f3..b3119765699b 100644
--- a/services/s3/pom.xml
+++ b/services/s3/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
s3
AWS Java SDK :: Services :: Amazon S3
diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml
index 5a192d768b6a..50669dc76a14 100644
--- a/services/s3control/pom.xml
+++ b/services/s3control/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
s3control
AWS Java SDK :: Services :: Amazon S3 Control
diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml
index 2bcce203cf2f..cb50b799a1e9 100644
--- a/services/s3outposts/pom.xml
+++ b/services/s3outposts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
s3outposts
AWS Java SDK :: Services :: S3 Outposts
diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml
index d16014ec1739..5289bb22ffad 100644
--- a/services/sagemaker/pom.xml
+++ b/services/sagemaker/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.69
+ 2.25.70-SNAPSHOT
4.0.0
sagemaker
diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml
index cd68e9c421d7..6a48515c25cf 100644
--- a/services/sagemakera2iruntime/pom.xml
+++ b/services/sagemakera2iruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
sagemakera2iruntime
AWS Java SDK :: Services :: SageMaker A2I Runtime
diff --git a/services/sagemakeredge/pom.xml b/services/sagemakeredge/pom.xml
index f6803775f0b7..a87b75277653 100644
--- a/services/sagemakeredge/pom.xml
+++ b/services/sagemakeredge/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
sagemakeredge
AWS Java SDK :: Services :: Sagemaker Edge
diff --git a/services/sagemakerfeaturestoreruntime/pom.xml b/services/sagemakerfeaturestoreruntime/pom.xml
index 27fb7f0146a8..8d8083b3987b 100644
--- a/services/sagemakerfeaturestoreruntime/pom.xml
+++ b/services/sagemakerfeaturestoreruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
sagemakerfeaturestoreruntime
AWS Java SDK :: Services :: Sage Maker Feature Store Runtime
diff --git a/services/sagemakergeospatial/pom.xml b/services/sagemakergeospatial/pom.xml
index 2ee9f4433069..7d1be31750b8 100644
--- a/services/sagemakergeospatial/pom.xml
+++ b/services/sagemakergeospatial/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
sagemakergeospatial
AWS Java SDK :: Services :: Sage Maker Geospatial
diff --git a/services/sagemakermetrics/pom.xml b/services/sagemakermetrics/pom.xml
index e75ac0449d4e..04f5376f96cf 100644
--- a/services/sagemakermetrics/pom.xml
+++ b/services/sagemakermetrics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
sagemakermetrics
AWS Java SDK :: Services :: Sage Maker Metrics
diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml
index c1ba6d50dfc7..6e5f4956121b 100644
--- a/services/sagemakerruntime/pom.xml
+++ b/services/sagemakerruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
sagemakerruntime
AWS Java SDK :: Services :: SageMaker Runtime
diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml
index 10be79ecfe67..c54faf82bed2 100644
--- a/services/savingsplans/pom.xml
+++ b/services/savingsplans/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
savingsplans
AWS Java SDK :: Services :: Savingsplans
diff --git a/services/scheduler/pom.xml b/services/scheduler/pom.xml
index ea87b0928add..7d8e103b653e 100644
--- a/services/scheduler/pom.xml
+++ b/services/scheduler/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
scheduler
AWS Java SDK :: Services :: Scheduler
diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml
index 2427e5f469da..c9d2ecd017e3 100644
--- a/services/schemas/pom.xml
+++ b/services/schemas/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
schemas
AWS Java SDK :: Services :: Schemas
diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml
index 8b0f87504f82..3e9913cbe6c4 100644
--- a/services/secretsmanager/pom.xml
+++ b/services/secretsmanager/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
secretsmanager
AWS Java SDK :: Services :: AWS Secrets Manager
diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml
index acfe644bad13..39381d9973c1 100644
--- a/services/securityhub/pom.xml
+++ b/services/securityhub/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
securityhub
AWS Java SDK :: Services :: SecurityHub
diff --git a/services/securitylake/pom.xml b/services/securitylake/pom.xml
index a5c6a86cfb35..ffb1b478623c 100644
--- a/services/securitylake/pom.xml
+++ b/services/securitylake/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
securitylake
AWS Java SDK :: Services :: Security Lake
diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml
index aad26ca0ce71..21d6184efedb 100644
--- a/services/serverlessapplicationrepository/pom.xml
+++ b/services/serverlessapplicationrepository/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.69
+ 2.25.70-SNAPSHOT
4.0.0
serverlessapplicationrepository
diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml
index 459739868f84..67303613906d 100644
--- a/services/servicecatalog/pom.xml
+++ b/services/servicecatalog/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
servicecatalog
AWS Java SDK :: Services :: AWS Service Catalog
diff --git a/services/servicecatalogappregistry/pom.xml b/services/servicecatalogappregistry/pom.xml
index ffdffd0515bf..2b0b6888d21f 100644
--- a/services/servicecatalogappregistry/pom.xml
+++ b/services/servicecatalogappregistry/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
servicecatalogappregistry
AWS Java SDK :: Services :: Service Catalog App Registry
diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml
index 3f2f1425deb7..6682595ca523 100644
--- a/services/servicediscovery/pom.xml
+++ b/services/servicediscovery/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.69
+ 2.25.70-SNAPSHOT
4.0.0
servicediscovery
diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml
index 587a44ce6bd9..29dfdadb7829 100644
--- a/services/servicequotas/pom.xml
+++ b/services/servicequotas/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
servicequotas
AWS Java SDK :: Services :: Service Quotas
diff --git a/services/ses/pom.xml b/services/ses/pom.xml
index dce13e78ef6a..dbe810403868 100644
--- a/services/ses/pom.xml
+++ b/services/ses/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
ses
AWS Java SDK :: Services :: Amazon SES
diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml
index eb00983e1728..3da115b1dbd0 100644
--- a/services/sesv2/pom.xml
+++ b/services/sesv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
sesv2
AWS Java SDK :: Services :: SESv2
diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml
index 600ce0376407..5e945f0dff55 100644
--- a/services/sfn/pom.xml
+++ b/services/sfn/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
sfn
AWS Java SDK :: Services :: AWS Step Functions
diff --git a/services/shield/pom.xml b/services/shield/pom.xml
index 492fe3a73e23..c04e38005874 100644
--- a/services/shield/pom.xml
+++ b/services/shield/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
shield
AWS Java SDK :: Services :: AWS Shield
diff --git a/services/signer/pom.xml b/services/signer/pom.xml
index 83d8973b121f..e0db654060ae 100644
--- a/services/signer/pom.xml
+++ b/services/signer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
signer
AWS Java SDK :: Services :: Signer
diff --git a/services/simspaceweaver/pom.xml b/services/simspaceweaver/pom.xml
index e9f86a940f15..9c1cc4e6d017 100644
--- a/services/simspaceweaver/pom.xml
+++ b/services/simspaceweaver/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
simspaceweaver
AWS Java SDK :: Services :: Sim Space Weaver
diff --git a/services/sms/pom.xml b/services/sms/pom.xml
index 2fa8880abd8b..6194be3cc1fb 100644
--- a/services/sms/pom.xml
+++ b/services/sms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
sms
AWS Java SDK :: Services :: AWS Server Migration
diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml
index 5f309cd009ac..836b3b0aaee9 100644
--- a/services/snowball/pom.xml
+++ b/services/snowball/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
snowball
AWS Java SDK :: Services :: Amazon Snowball
diff --git a/services/snowdevicemanagement/pom.xml b/services/snowdevicemanagement/pom.xml
index a6141d8edeb5..d961f47e45ac 100644
--- a/services/snowdevicemanagement/pom.xml
+++ b/services/snowdevicemanagement/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
snowdevicemanagement
AWS Java SDK :: Services :: Snow Device Management
diff --git a/services/sns/pom.xml b/services/sns/pom.xml
index 1e9777894101..b4791835a8fc 100644
--- a/services/sns/pom.xml
+++ b/services/sns/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
sns
AWS Java SDK :: Services :: Amazon SNS
diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml
index 5f78dbcbf433..4f03deaaf49c 100644
--- a/services/sqs/pom.xml
+++ b/services/sqs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
sqs
AWS Java SDK :: Services :: Amazon SQS
diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml
index 3abb7737d2ad..9d67ce116599 100644
--- a/services/ssm/pom.xml
+++ b/services/ssm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
ssm
AWS Java SDK :: Services :: AWS Simple Systems Management (SSM)
diff --git a/services/ssmcontacts/pom.xml b/services/ssmcontacts/pom.xml
index ae8de45e51c7..a3e78bb6fede 100644
--- a/services/ssmcontacts/pom.xml
+++ b/services/ssmcontacts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
ssmcontacts
AWS Java SDK :: Services :: SSM Contacts
diff --git a/services/ssmincidents/pom.xml b/services/ssmincidents/pom.xml
index 07753120fb01..53d1a461bb15 100644
--- a/services/ssmincidents/pom.xml
+++ b/services/ssmincidents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
ssmincidents
AWS Java SDK :: Services :: SSM Incidents
diff --git a/services/ssmsap/pom.xml b/services/ssmsap/pom.xml
index f4878aa28005..00d154fd9db5 100644
--- a/services/ssmsap/pom.xml
+++ b/services/ssmsap/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
ssmsap
AWS Java SDK :: Services :: Ssm Sap
diff --git a/services/sso/pom.xml b/services/sso/pom.xml
index e4946ae9b981..12827e07e7dc 100644
--- a/services/sso/pom.xml
+++ b/services/sso/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
sso
AWS Java SDK :: Services :: SSO
diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml
index d788de5bd53f..c0679815d048 100644
--- a/services/ssoadmin/pom.xml
+++ b/services/ssoadmin/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
ssoadmin
AWS Java SDK :: Services :: SSO Admin
diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml
index 6e8a2a0d9ad2..685a538ea2d1 100644
--- a/services/ssooidc/pom.xml
+++ b/services/ssooidc/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
ssooidc
AWS Java SDK :: Services :: SSO OIDC
diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml
index 0ee92ae5c503..a092b3abb79f 100644
--- a/services/storagegateway/pom.xml
+++ b/services/storagegateway/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
storagegateway
AWS Java SDK :: Services :: AWS Storage Gateway
diff --git a/services/sts/pom.xml b/services/sts/pom.xml
index af3adc715955..34ef6ceb7ce5 100644
--- a/services/sts/pom.xml
+++ b/services/sts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
sts
AWS Java SDK :: Services :: AWS STS
diff --git a/services/supplychain/pom.xml b/services/supplychain/pom.xml
index e55029807c4a..38ca71f95a6f 100644
--- a/services/supplychain/pom.xml
+++ b/services/supplychain/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
supplychain
AWS Java SDK :: Services :: Supply Chain
diff --git a/services/support/pom.xml b/services/support/pom.xml
index 427d315f1d4c..a08878736456 100644
--- a/services/support/pom.xml
+++ b/services/support/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
support
AWS Java SDK :: Services :: AWS Support
diff --git a/services/supportapp/pom.xml b/services/supportapp/pom.xml
index b280811ac0d0..fdf9fb91736e 100644
--- a/services/supportapp/pom.xml
+++ b/services/supportapp/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
supportapp
AWS Java SDK :: Services :: Support App
diff --git a/services/swf/pom.xml b/services/swf/pom.xml
index 2ed73c3cd0c0..33809c9fa9f8 100644
--- a/services/swf/pom.xml
+++ b/services/swf/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
swf
AWS Java SDK :: Services :: Amazon SWF
diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml
index 5bf60ffee587..922c1ce0a75c 100644
--- a/services/synthetics/pom.xml
+++ b/services/synthetics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
synthetics
AWS Java SDK :: Services :: Synthetics
diff --git a/services/taxsettings/pom.xml b/services/taxsettings/pom.xml
index 2429c76da5b5..e18c9d9ece64 100644
--- a/services/taxsettings/pom.xml
+++ b/services/taxsettings/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
taxsettings
AWS Java SDK :: Services :: Tax Settings
diff --git a/services/textract/pom.xml b/services/textract/pom.xml
index 44f3c777b0de..f60c033c9976 100644
--- a/services/textract/pom.xml
+++ b/services/textract/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
textract
AWS Java SDK :: Services :: Textract
diff --git a/services/timestreaminfluxdb/pom.xml b/services/timestreaminfluxdb/pom.xml
index 5d4b4ad70ad6..8a672faa5b54 100644
--- a/services/timestreaminfluxdb/pom.xml
+++ b/services/timestreaminfluxdb/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
timestreaminfluxdb
AWS Java SDK :: Services :: Timestream Influx DB
diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml
index 78e08b433a31..ce8fb7060d87 100644
--- a/services/timestreamquery/pom.xml
+++ b/services/timestreamquery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
timestreamquery
AWS Java SDK :: Services :: Timestream Query
diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml
index 4d48373115ec..a42c6b77648a 100644
--- a/services/timestreamwrite/pom.xml
+++ b/services/timestreamwrite/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
timestreamwrite
AWS Java SDK :: Services :: Timestream Write
diff --git a/services/tnb/pom.xml b/services/tnb/pom.xml
index 63002b7e7eb0..c58321326b21 100644
--- a/services/tnb/pom.xml
+++ b/services/tnb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
tnb
AWS Java SDK :: Services :: Tnb
diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml
index 7e99c368c984..1469033963fa 100644
--- a/services/transcribe/pom.xml
+++ b/services/transcribe/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
transcribe
AWS Java SDK :: Services :: Transcribe
diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml
index ed455c727342..b3917bb7e0f2 100644
--- a/services/transcribestreaming/pom.xml
+++ b/services/transcribestreaming/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
transcribestreaming
AWS Java SDK :: Services :: AWS Transcribe Streaming
diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml
index 523b2d4209d2..47e9b98cabb5 100644
--- a/services/transfer/pom.xml
+++ b/services/transfer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
transfer
AWS Java SDK :: Services :: Transfer
diff --git a/services/translate/pom.xml b/services/translate/pom.xml
index 2659530b973e..4cf96190fb88 100644
--- a/services/translate/pom.xml
+++ b/services/translate/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.69
+ 2.25.70-SNAPSHOT
4.0.0
translate
diff --git a/services/trustedadvisor/pom.xml b/services/trustedadvisor/pom.xml
index ff5527dedca8..0410c71a1a64 100644
--- a/services/trustedadvisor/pom.xml
+++ b/services/trustedadvisor/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
trustedadvisor
AWS Java SDK :: Services :: Trusted Advisor
diff --git a/services/verifiedpermissions/pom.xml b/services/verifiedpermissions/pom.xml
index c05989260d93..0f041c0c123a 100644
--- a/services/verifiedpermissions/pom.xml
+++ b/services/verifiedpermissions/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
verifiedpermissions
AWS Java SDK :: Services :: Verified Permissions
diff --git a/services/voiceid/pom.xml b/services/voiceid/pom.xml
index 5eb3e2cec182..76d736999882 100644
--- a/services/voiceid/pom.xml
+++ b/services/voiceid/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
voiceid
AWS Java SDK :: Services :: Voice ID
diff --git a/services/vpclattice/pom.xml b/services/vpclattice/pom.xml
index 1f66acfddfcc..41c4c1e478b8 100644
--- a/services/vpclattice/pom.xml
+++ b/services/vpclattice/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
vpclattice
AWS Java SDK :: Services :: VPC Lattice
diff --git a/services/waf/pom.xml b/services/waf/pom.xml
index 92b2eb05a842..e3b98190f205 100644
--- a/services/waf/pom.xml
+++ b/services/waf/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
waf
AWS Java SDK :: Services :: AWS WAF
diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml
index 6161c69f08f8..429543b4cbfc 100644
--- a/services/wafv2/pom.xml
+++ b/services/wafv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
wafv2
AWS Java SDK :: Services :: WAFV2
diff --git a/services/wellarchitected/pom.xml b/services/wellarchitected/pom.xml
index 9df6dd97ec92..5ddcfb891a28 100644
--- a/services/wellarchitected/pom.xml
+++ b/services/wellarchitected/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
wellarchitected
AWS Java SDK :: Services :: Well Architected
diff --git a/services/wisdom/pom.xml b/services/wisdom/pom.xml
index be340717865e..fc2af5eb56d3 100644
--- a/services/wisdom/pom.xml
+++ b/services/wisdom/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
wisdom
AWS Java SDK :: Services :: Wisdom
diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml
index 2fc3c24d3af2..647de3f5bed6 100644
--- a/services/workdocs/pom.xml
+++ b/services/workdocs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
workdocs
AWS Java SDK :: Services :: Amazon WorkDocs
diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml
index c914a55625e3..2d512784c1cb 100644
--- a/services/worklink/pom.xml
+++ b/services/worklink/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
worklink
AWS Java SDK :: Services :: WorkLink
diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml
index b951a7c6366d..3285b1cb1a56 100644
--- a/services/workmail/pom.xml
+++ b/services/workmail/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.69
+ 2.25.70-SNAPSHOT
4.0.0
workmail
diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml
index c6de387e7445..e8ba66695a5e 100644
--- a/services/workmailmessageflow/pom.xml
+++ b/services/workmailmessageflow/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
workmailmessageflow
AWS Java SDK :: Services :: WorkMailMessageFlow
diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml
index 34dccc08b0a9..90572d15eebd 100644
--- a/services/workspaces/pom.xml
+++ b/services/workspaces/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
workspaces
AWS Java SDK :: Services :: Amazon WorkSpaces
diff --git a/services/workspacesthinclient/pom.xml b/services/workspacesthinclient/pom.xml
index 9070aa1da15c..7eb5a0580555 100644
--- a/services/workspacesthinclient/pom.xml
+++ b/services/workspacesthinclient/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
workspacesthinclient
AWS Java SDK :: Services :: Work Spaces Thin Client
diff --git a/services/workspacesweb/pom.xml b/services/workspacesweb/pom.xml
index 1540d4c1d958..633576524efd 100644
--- a/services/workspacesweb/pom.xml
+++ b/services/workspacesweb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
workspacesweb
AWS Java SDK :: Services :: Work Spaces Web
diff --git a/services/xray/pom.xml b/services/xray/pom.xml
index 3f2c26399a7a..28b0557bda78 100644
--- a/services/xray/pom.xml
+++ b/services/xray/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.69
+ 2.25.70-SNAPSHOT
xray
AWS Java SDK :: Services :: AWS X-Ray
diff --git a/test/auth-tests/pom.xml b/test/auth-tests/pom.xml
index a3b0b2549391..733bbf0062c9 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.69
+ 2.25.70-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 1c9ab873b5f3..f2720a2f86c4 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.69
+ 2.25.70-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/bundle-shading-tests/pom.xml b/test/bundle-shading-tests/pom.xml
index 594f50e7f127..69393b003927 100644
--- a/test/bundle-shading-tests/pom.xml
+++ b/test/bundle-shading-tests/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.25.69
+ 2.25.70-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 27bd32647bbe..cee4869b4c79 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.69
+ 2.25.70-SNAPSHOT
../../pom.xml
diff --git a/test/crt-unavailable-tests/pom.xml b/test/crt-unavailable-tests/pom.xml
index 71ddcbac819e..890fb0fbe891 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.69
+ 2.25.70-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml
index ec836de001cb..ff7d065e6352 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.69
+ 2.25.70-SNAPSHOT
../../pom.xml
http-client-tests
diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml
index b412bb6ad675..75c5761a190a 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.69
+ 2.25.70-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 fe845b35afa3..08cd79e72fc5 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.69
+ 2.25.70-SNAPSHOT
../../pom.xml
diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml
index 398eaaa7fed8..68284c7d4667 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.69
+ 2.25.70-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml
index bf102fc80e74..ecef948d5a50 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.69
+ 2.25.70-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/region-testing/pom.xml b/test/region-testing/pom.xml
index 4e659785c4e7..07e004209e5f 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.69
+ 2.25.70-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/ruleset-testing-core/pom.xml b/test/ruleset-testing-core/pom.xml
index d1f36cd43250..bd284f6dd2bd 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.69
+ 2.25.70-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/s3-benchmarks/pom.xml b/test/s3-benchmarks/pom.xml
index 13ab4520f719..941ebd705580 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.69
+ 2.25.70-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml
index e183548b86a1..1ffc9066e4ce 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.69
+ 2.25.70-SNAPSHOT
../../pom.xml
diff --git a/test/sdk-native-image-test/pom.xml b/test/sdk-native-image-test/pom.xml
index 3e96eb36b442..14d05348a156 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.69
+ 2.25.70-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml
index 1e189a776e07..52cc5f60bc66 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.69
+ 2.25.70-SNAPSHOT
../../pom.xml
service-test-utils
diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml
index fcdf15e6894d..6f7f668f1c3f 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.69
+ 2.25.70-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml
index 1b97a728cb38..ee52405d8ed4 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.69
+ 2.25.70-SNAPSHOT
../../pom.xml
test-utils
diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml
index 1487c69c1315..e66e1b82ae30 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.69
+ 2.25.70-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/third-party/pom.xml b/third-party/pom.xml
index 992f4315089d..f203974a4d60 100644
--- a/third-party/pom.xml
+++ b/third-party/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.25.69
+ 2.25.70-SNAPSHOT
third-party
diff --git a/third-party/third-party-jackson-core/pom.xml b/third-party/third-party-jackson-core/pom.xml
index e913ddbac289..7d7f044f4a8f 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.69
+ 2.25.70-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 ba72a1fb7a3c..0de53c87b6d6 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.69
+ 2.25.70-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 5cf54f92b1ac..00d707d99e88 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.69
+ 2.25.70-SNAPSHOT
4.0.0
diff --git a/utils/pom.xml b/utils/pom.xml
index d6e35a9cfa2c..ce5451fcfa21 100644
--- a/utils/pom.xml
+++ b/utils/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.25.69
+ 2.25.70-SNAPSHOT
4.0.0
From 849eae1ab61c53b0093a6d784f0cd22173bb78a4 Mon Sep 17 00:00:00 2001
From: Nikita Manish Sawant <137811156+nikitamsawant@users.noreply.github.com>
Date: Fri, 7 Jun 2024 16:54:25 -0400
Subject: [PATCH 30/30] updated s3 access grants plugin version (#5273)
* updated s3 access grants plugin version
* updated changelog to reflect aws-s3-accessgrants-java-plugin version update
* Update feature-AWSS3-2bfc0aa.json
---------
Co-authored-by: John Viegas <70235430+joviegas@users.noreply.github.com>
---
.changes/next-release/feature-AWSS3-2bfc0aa.json | 6 ++++++
pom.xml | 2 +-
2 files changed, 7 insertions(+), 1 deletion(-)
create mode 100644 .changes/next-release/feature-AWSS3-2bfc0aa.json
diff --git a/.changes/next-release/feature-AWSS3-2bfc0aa.json b/.changes/next-release/feature-AWSS3-2bfc0aa.json
new file mode 100644
index 000000000000..c979bc0ff254
--- /dev/null
+++ b/.changes/next-release/feature-AWSS3-2bfc0aa.json
@@ -0,0 +1,6 @@
+{
+ "type": "feature",
+ "category": "Amazon S3",
+ "contributor": "nikitamsawant",
+ "description": "Updated the version of aws-s3-accessgrants-java-plugin to include changes that support copyObject and deleteObjects."
+}
diff --git a/pom.xml b/pom.xml
index 4aa39593cca5..a16710ea92ed 100644
--- a/pom.xml
+++ b/pom.xml
@@ -180,7 +180,7 @@
1.0.4
- 2.0.1
+ 2.1.0
${skipTests}
${project.basedir}/src/it/java