logEvents = logCaptor.loggedEvents();
+ assertThat(logEvents).hasSize(3);
+ assertThat(logEvents.get(0).getMessage().getFormattedMessage()).contains("AWS4 Canonical Request");
+ assertThat(logEvents.get(1).getMessage().getFormattedMessage()).contains("AWS4 Canonical Request Hash");
+ assertThat(logEvents.get(2).getMessage().getFormattedMessage()).contains("AWS4 String to sign");
+ }
}
}
diff --git a/core/http-auth-aws/src/test/resources/log4j2.properties b/core/http-auth-aws/src/test/resources/log4j2.properties
new file mode 100644
index 000000000000..5cc1706db5bd
--- /dev/null
+++ b/core/http-auth-aws/src/test/resources/log4j2.properties
@@ -0,0 +1,38 @@
+#
+# 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.
+#
+
+status = warn
+
+appender.console.type = Console
+appender.console.name = ConsoleAppender
+appender.console.layout.type = PatternLayout
+appender.console.layout.pattern = %d{HH:mm:ss.SSS} [%t] %-5level %logger{36} - %msg%n%throwable
+
+rootLogger.level = error
+rootLogger.appenderRef.stdout.ref = ConsoleAppender
+
+# Uncomment below to enable more specific logging
+#
+#logger.sdk.name = software.amazon.awssdk
+#logger.sdk.level = debug
+#
+#logger.request.name = software.amazon.awssdk.request
+#logger.request.level = debug
+#
+#logger.apache.name = org.apache.http.wire
+#logger.apache.level = debug
+#
+#logger.netty.name = io.netty.handler.logging
+#logger.netty.level = debug
From d39b95b9ddd270298af1c776497d2e0e70f04c3f Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Mon, 29 Apr 2024 18:08:55 +0000
Subject: [PATCH 04/11] Amazon Connect Cases Update: This feature releases
DeleteField, DeletedLayout, and DeleteTemplate API's
---
.../feature-AmazonConnectCases-06444f9.json | 6 +
.../codegen-resources/service-2.json | 182 +++++++++++++++++-
2 files changed, 187 insertions(+), 1 deletion(-)
create mode 100644 .changes/next-release/feature-AmazonConnectCases-06444f9.json
diff --git a/.changes/next-release/feature-AmazonConnectCases-06444f9.json b/.changes/next-release/feature-AmazonConnectCases-06444f9.json
new file mode 100644
index 000000000000..bb938c3f4b13
--- /dev/null
+++ b/.changes/next-release/feature-AmazonConnectCases-06444f9.json
@@ -0,0 +1,6 @@
+{
+ "type": "feature",
+ "category": "Amazon Connect Cases",
+ "contributor": "",
+ "description": "This feature releases DeleteField, DeletedLayout, and DeleteTemplate API's"
+}
diff --git a/services/connectcases/src/main/resources/codegen-resources/service-2.json b/services/connectcases/src/main/resources/codegen-resources/service-2.json
index e6007f1c20f5..ff1100de287c 100644
--- a/services/connectcases/src/main/resources/codegen-resources/service-2.json
+++ b/services/connectcases/src/main/resources/codegen-resources/service-2.json
@@ -193,6 +193,67 @@
"documentation":"Deletes a Cases domain.
<note> <p>After deleting your domain you must disassociate the deleted domain from your Amazon Connect instance with another API call before being able to use Cases again with this Amazon Connect instance. See <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_DeleteIntegrationAssociation.html">DeleteIntegrationAssociation</a>.</p> </note>
",
"idempotent":true
},
+ "DeleteField":{
+ "name":"DeleteField",
+ "http":{
+ "method":"DELETE",
+ "requestUri":"/domains/{domainId}/fields/{fieldId}",
+ "responseCode":200
+ },
+ "input":{"shape":"DeleteFieldRequest"},
+ "output":{"shape":"DeleteFieldResponse"},
+ "errors":[
+ {"shape":"InternalServerException"},
+ {"shape":"ResourceNotFoundException"},
+ {"shape":"ValidationException"},
+ {"shape":"ThrottlingException"},
+ {"shape":"AccessDeniedException"},
+ {"shape":"ConflictException"},
+ {"shape":"ServiceQuotaExceededException"}
+ ],
+ "documentation":"Deletes a field from a cases template. You can delete up to 100 fields per domain.
After a field is deleted:
-
You can still retrieve the field by calling BatchGetField
.
-
You cannot update a deleted field by calling UpdateField
; it throws a ValidationException
.
-
Deleted fields are not included in the ListFields
response.
-
Calling CreateCase
with a deleted field throws a ValidationException
denoting which field IDs in the request have been deleted.
-
Calling GetCase
with a deleted field ID returns the deleted field's value if one exists.
-
Calling UpdateCase
with a deleted field ID throws a ValidationException
if the case does not already contain a value for the deleted field. Otherwise it succeeds, allowing you to update or remove (using emptyValue: {}
) the field's value from the case.
-
GetTemplate
does not return field IDs for deleted fields.
-
GetLayout
does not return field IDs for deleted fields.
-
Calling SearchCases
with the deleted field ID as a filter returns any cases that have a value for the deleted field that matches the filter criteria.
-
Calling SearchCases
with a searchTerm
value that matches a deleted field's value on a case returns the case in the response.
-
Calling BatchPutFieldOptions
with a deleted field ID throw a ValidationException
.
-
Calling GetCaseEventConfiguration
does not return field IDs for deleted fields.
",
+ "idempotent":true
+ },
+ "DeleteLayout":{
+ "name":"DeleteLayout",
+ "http":{
+ "method":"DELETE",
+ "requestUri":"/domains/{domainId}/layouts/{layoutId}",
+ "responseCode":200
+ },
+ "input":{"shape":"DeleteLayoutRequest"},
+ "output":{"shape":"DeleteLayoutResponse"},
+ "errors":[
+ {"shape":"InternalServerException"},
+ {"shape":"ResourceNotFoundException"},
+ {"shape":"ValidationException"},
+ {"shape":"ThrottlingException"},
+ {"shape":"AccessDeniedException"},
+ {"shape":"ConflictException"}
+ ],
+ "documentation":"Deletes a layout from a cases template. You can delete up to 100 layouts per domain.
<p>After a layout is deleted:</p> <ul> <li> <p>You can still retrieve the layout by calling <code>GetLayout</code>.</p> </li> <li> <p>You cannot update a deleted layout by calling <code>UpdateLayout</code>; it throws a <code>ValidationException</code>.</p> </li> <li> <p>Deleted layouts are not included in the <code>ListLayouts</code> response.</p> </li> </ul>
",
+ "idempotent":true
+ },
+ "DeleteTemplate":{
+ "name":"DeleteTemplate",
+ "http":{
+ "method":"DELETE",
+ "requestUri":"/domains/{domainId}/templates/{templateId}",
+ "responseCode":200
+ },
+ "input":{"shape":"DeleteTemplateRequest"},
+ "output":{"shape":"DeleteTemplateResponse"},
+ "errors":[
+ {"shape":"InternalServerException"},
+ {"shape":"ResourceNotFoundException"},
+ {"shape":"ValidationException"},
+ {"shape":"ThrottlingException"},
+ {"shape":"AccessDeniedException"},
+ {"shape":"ConflictException"}
+ ],
+ "documentation":"Deletes a cases template. You can delete up to 100 templates per domain.
<p>After a cases template is deleted:</p> <ul> <li> <p>You can still retrieve the template by calling <code>GetTemplate</code>.</p> </li> <li> <p>You cannot update the template. </p> </li> <li> <p>You cannot create a case by using the deleted template.</p> </li> <li> <p>Deleted templates are not included in the <code>ListTemplates</code> response.</p> </li> </ul>
",
+ "idempotent":true
+ },
"GetCase":{
"name":"GetCase",
"http":{
@@ -712,7 +773,7 @@
"documentation":"Can be either null, or have a String value type formatted as an ARN. Only one value can be provided.
"
}
},
- "documentation":"Object to store union of Field values.
This data type is a UNION, so only one of the following members can be specified when used or returned.
",
+ "documentation":"Object to store union of Field values.
",
"union":true
},
"AuditEventFieldValueUnionStringValueString":{
@@ -1356,6 +1417,85 @@
"members":{
}
},
+ "DeleteFieldRequest":{
+ "type":"structure",
+ "required":[
+ "domainId",
+ "fieldId"
+ ],
+ "members":{
+ "domainId":{
+ "shape":"DomainId",
+ "documentation":"The unique identifier of the Cases domain.
",
+ "location":"uri",
+ "locationName":"domainId"
+ },
+ "fieldId":{
+ "shape":"FieldId",
+ "documentation":"The unique identifier of a field.
",
+ "location":"uri",
+ "locationName":"fieldId"
+ }
+ }
+ },
+ "DeleteFieldResponse":{
+ "type":"structure",
+ "members":{
+ }
+ },
+ "DeleteLayoutRequest":{
+ "type":"structure",
+ "required":[
+ "domainId",
+ "layoutId"
+ ],
+ "members":{
+ "domainId":{
+ "shape":"DomainId",
+ "documentation":"The unique identifier of the Cases domain.
",
+ "location":"uri",
+ "locationName":"domainId"
+ },
+ "layoutId":{
+ "shape":"LayoutId",
+ "documentation":"The unique identifier of the layout.
",
+ "location":"uri",
+ "locationName":"layoutId"
+ }
+ }
+ },
+ "DeleteLayoutResponse":{
+ "type":"structure",
+ "members":{
+ }
+ },
+ "DeleteTemplateRequest":{
+ "type":"structure",
+ "required":[
+ "domainId",
+ "templateId"
+ ],
+ "members":{
+ "domainId":{
+ "shape":"DomainId",
+ "documentation":"The unique identifier of the Cases domain.
",
+ "location":"uri",
+ "locationName":"domainId"
+ },
+ "templateId":{
+ "shape":"TemplateId",
+ "documentation":"A unique identifier of a template.
",
+ "location":"uri",
+ "locationName":"templateId"
+ }
+ }
+ },
+ "DeleteTemplateResponse":{
+ "type":"structure",
+ "members":{
+ }
+ },
+ "Deleted":{"type":"boolean"},
"DomainArn":{
"type":"string",
"max":500,
@@ -1934,6 +2074,14 @@
"type"
],
"members":{
+ "createdTime":{
+ "shape":"CreatedTime",
+ "documentation":"The timestamp for when the resource was created.
"
+ },
+ "deleted":{
+ "shape":"Deleted",
+ "documentation":"Indicates whether the resource has been deleted.
"
+ },
"description":{
"shape":"FieldDescription",
"documentation":"Description of the field.
"
@@ -1946,6 +2094,10 @@
"shape":"FieldId",
"documentation":"Unique identifier of the field.
"
},
+ "lastModifiedTime":{
+ "shape":"LastModifiedTime",
+ "documentation":"The timestamp for when the resource was created or last modified.
"
+ },
"name":{
"shape":"FieldName",
"documentation":"Name of the field.
"
@@ -1999,6 +2151,18 @@
"shape":"LayoutContent",
"documentation":"Information about which fields will be present in the layout, the order of the fields, and read-only attribute of the field.
"
},
+ "createdTime":{
+ "shape":"CreatedTime",
+ "documentation":"The timestamp for when the resource was created.
"
+ },
+ "deleted":{
+ "shape":"Deleted",
+ "documentation":"Indicates whether the resource has been deleted.
"
+ },
+ "lastModifiedTime":{
+ "shape":"LastModifiedTime",
+ "documentation":"The timestamp for when the resource was created or last modified.
"
+ },
"layoutArn":{
"shape":"LayoutArn",
"documentation":"The Amazon Resource Name (ARN) of the newly created layout.
"
@@ -2047,10 +2211,22 @@
"templateId"
],
"members":{
+ "createdTime":{
+ "shape":"CreatedTime",
+ "documentation":"The timestamp for when the resource was created.
"
+ },
+ "deleted":{
+ "shape":"Deleted",
+ "documentation":"Indicates whether the resource has been deleted.
"
+ },
"description":{
"shape":"TemplateDescription",
"documentation":"A brief description of the template.
"
},
+ "lastModifiedTime":{
+ "shape":"LastModifiedTime",
+ "documentation":"The timestamp for when the resource was created or last modified.
"
+ },
"layoutConfiguration":{
"shape":"LayoutConfiguration",
"documentation":"Configuration of layouts associated to the template.
"
@@ -2108,6 +2284,10 @@
"fault":true,
"retryable":{"throttling":false}
},
+ "LastModifiedTime":{
+ "type":"timestamp",
+ "timestampFormat":"iso8601"
+ },
"LayoutArn":{
"type":"string",
"max":500,
From 15b3ffb8202e9764b11b1bdfe34c4edf84a6e04a Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Mon, 29 Apr 2024 18:08:56 +0000
Subject: [PATCH 05/11] Amazon Timestream Query Update: This change allows
users to update and describe account settings associated with their accounts.
---
...feature-AmazonTimestreamQuery-70d914e.json | 6 ++
.../codegen-resources/service-2.json | 97 ++++++++++++++++++-
2 files changed, 101 insertions(+), 2 deletions(-)
create mode 100644 .changes/next-release/feature-AmazonTimestreamQuery-70d914e.json
diff --git a/.changes/next-release/feature-AmazonTimestreamQuery-70d914e.json b/.changes/next-release/feature-AmazonTimestreamQuery-70d914e.json
new file mode 100644
index 000000000000..999341c602a5
--- /dev/null
+++ b/.changes/next-release/feature-AmazonTimestreamQuery-70d914e.json
@@ -0,0 +1,6 @@
+{
+ "type": "feature",
+ "category": "Amazon Timestream Query",
+ "contributor": "",
+ "description": "This change allows users to update and describe account settings associated with their accounts."
+}
diff --git a/services/timestreamquery/src/main/resources/codegen-resources/service-2.json b/services/timestreamquery/src/main/resources/codegen-resources/service-2.json
index d7d85ddb2f12..51a7a97cdf39 100644
--- a/services/timestreamquery/src/main/resources/codegen-resources/service-2.json
+++ b/services/timestreamquery/src/main/resources/codegen-resources/service-2.json
@@ -5,6 +5,7 @@
"endpointPrefix":"query.timestream",
"jsonVersion":"1.0",
"protocol":"json",
+ "protocols":["json"],
"serviceAbbreviation":"Timestream Query",
"serviceFullName":"Amazon Timestream Query",
"serviceId":"Timestream Query",
@@ -73,6 +74,23 @@
"endpointdiscovery":{"required":true},
"idempotent":true
},
+ "DescribeAccountSettings":{
+ "name":"DescribeAccountSettings",
+ "http":{
+ "method":"POST",
+ "requestUri":"/"
+ },
+ "input":{"shape":"DescribeAccountSettingsRequest"},
+ "output":{"shape":"DescribeAccountSettingsResponse"},
+ "errors":[
+ {"shape":"AccessDeniedException"},
+ {"shape":"InternalServerException"},
+ {"shape":"ThrottlingException"},
+ {"shape":"InvalidEndpointException"}
+ ],
+ "documentation":"Describes the settings for your account that include the query pricing model and the configured maximum TCUs the service can use for your query workload.
You're charged only for the duration of compute units used for your workloads.
",
+ "endpointdiscovery":{"required":true}
+ },
"DescribeEndpoints":{
"name":"DescribeEndpoints",
"http":{
@@ -237,6 +255,25 @@
"documentation":"Removes the association of tags from a Timestream query resource.
",
"endpointdiscovery":{"required":true}
},
+ "UpdateAccountSettings":{
+ "name":"UpdateAccountSettings",
+ "http":{
+ "method":"POST",
+ "requestUri":"/"
+ },
+ "input":{"shape":"UpdateAccountSettingsRequest"},
+ "output":{"shape":"UpdateAccountSettingsResponse"},
+ "errors":[
+ {"shape":"AccessDeniedException"},
+ {"shape":"InternalServerException"},
+ {"shape":"ThrottlingException"},
+ {"shape":"ValidationException"},
+ {"shape":"InvalidEndpointException"}
+ ],
+ "documentation":"Transitions your account to use TCUs for query pricing and modifies the maximum query compute units that you've configured. If you reduce the value of MaxQueryTCU
to a desired configuration, the new value can take up to 24 hours to be effective.
After you've transitioned your account to use TCUs for query pricing, you can't transition to using bytes scanned for query pricing.
",
+ "endpointdiscovery":{"required":true},
+ "idempotent":true
+ },
"UpdateScheduledQuery":{
"name":"UpdateScheduledQuery",
"http":{
@@ -433,6 +470,24 @@
}
}
},
+ "DescribeAccountSettingsRequest":{
+ "type":"structure",
+ "members":{
+ }
+ },
+ "DescribeAccountSettingsResponse":{
+ "type":"structure",
+ "members":{
+ "MaxQueryTCU":{
+ "shape":"MaxQueryCapacity",
+ "documentation":"The maximum number of Timestream compute units (TCUs) the service will use at any point in time to serve your queries.
"
+ },
+ "QueryPricingModel":{
+ "shape":"QueryPricingModel",
+ "documentation":"The pricing model for queries in your account.
"
+ }
+ }
+ },
"DescribeEndpointsRequest":{
"type":"structure",
"members":{
@@ -576,6 +631,10 @@
"shape":"Long",
"documentation":"Bytes metered for a single scheduled query run.
"
},
+ "CumulativeBytesScanned":{
+ "shape":"Long",
+ "documentation":"Bytes scanned for a single scheduled query run.
"
+ },
"RecordsIngested":{
"shape":"Long",
"documentation":"The number of records ingested for a single scheduled query run.
"
@@ -592,7 +651,7 @@
"members":{
"Message":{"shape":"ErrorMessage"}
},
- "documentation":" Timestream was unable to fully process this request because of an internal server error.
",
+ "documentation":" The service was unable to fully process this request because of an internal server error.
",
"exception":true
},
"InvalidEndpointException":{
@@ -663,6 +722,7 @@
}
},
"Long":{"type":"long"},
+ "MaxQueryCapacity":{"type":"integer"},
"MaxQueryResults":{
"type":"integer",
"box":true,
@@ -856,6 +916,13 @@
"min":1,
"pattern":"[a-zA-Z0-9]+"
},
+ "QueryPricingModel":{
+ "type":"string",
+ "enum":[
+ "BYTES_SCANNED",
+ "COMPUTE_UNITS"
+ ]
+ },
"QueryRequest":{
"type":"structure",
"required":["QueryString"],
@@ -1186,7 +1253,7 @@
"type":"string",
"max":64,
"min":1,
- "pattern":"[a-zA-Z0-9_.-]+"
+ "pattern":"[a-zA-Z0-9|!\\-_*'\\(\\)]([a-zA-Z0-9]|[!\\-_*'\\(\\)\\/.])+"
},
"ScheduledQueryRunStatus":{
"type":"string",
@@ -1505,6 +1572,32 @@
"members":{
}
},
+ "UpdateAccountSettingsRequest":{
+ "type":"structure",
+ "members":{
+ "MaxQueryTCU":{
+ "shape":"MaxQueryCapacity",
+ "documentation":"The maximum number of compute units the service will use at any point in time to serve your queries. To run queries, you must set a minimum capacity of 4 TCU. You can set the maximum number of TCU in multiples of 4, for example, 4, 8, 16, 32, and so on.
The maximum value supported for MaxQueryTCU
is 1000. To request an increase to this soft limit, contact Amazon Web Services Support. For information about the default quota for maxQueryTCU, see Default quotas.
"
+ },
+ "QueryPricingModel":{
+ "shape":"QueryPricingModel",
+ "documentation":"The pricing model for queries in an account.
"
+ }
+ }
+ },
+ "UpdateAccountSettingsResponse":{
+ "type":"structure",
+ "members":{
+ "MaxQueryTCU":{
+ "shape":"MaxQueryCapacity",
+ "documentation":"The configured maximum number of compute units the service will use at any point in time to serve your queries.
"
+ },
+ "QueryPricingModel":{
+ "shape":"QueryPricingModel",
+ "documentation":"The pricing model for an account.
"
+ }
+ }
+ },
"UpdateScheduledQueryRequest":{
"type":"structure",
"required":[
From 9b42f8a5c0cb22d2474559900b3a4c31459f03f2 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Mon, 29 Apr 2024 18:08:59 +0000
Subject: [PATCH 06/11] AWS Amplify Update: Updating max results limit for
listing any resources (Job, Artifacts, Branch, BackendResources,
DomainAssociation) to 50 with the exception of list apps that where max
results can be up to 100.
---
.changes/next-release/feature-AWSAmplify-3d98821.json | 6 ++++++
.../src/main/resources/codegen-resources/service-2.json | 8 +++++++-
2 files changed, 13 insertions(+), 1 deletion(-)
create mode 100644 .changes/next-release/feature-AWSAmplify-3d98821.json
diff --git a/.changes/next-release/feature-AWSAmplify-3d98821.json b/.changes/next-release/feature-AWSAmplify-3d98821.json
new file mode 100644
index 000000000000..bf6c171e97dc
--- /dev/null
+++ b/.changes/next-release/feature-AWSAmplify-3d98821.json
@@ -0,0 +1,6 @@
+{
+ "type": "feature",
+ "category": "AWS Amplify",
+ "contributor": "",
+ "description": "Updating max results limit for listing any resources (Job, Artifacts, Branch, BackendResources, DomainAssociation) to 50 with the exception of list apps that where max results can be up to 100."
+}
diff --git a/services/amplify/src/main/resources/codegen-resources/service-2.json b/services/amplify/src/main/resources/codegen-resources/service-2.json
index c1e91ac2d71c..12ae52f822f3 100644
--- a/services/amplify/src/main/resources/codegen-resources/service-2.json
+++ b/services/amplify/src/main/resources/codegen-resources/service-2.json
@@ -5,6 +5,7 @@
"endpointPrefix":"amplify",
"jsonVersion":"1.1",
"protocol":"rest-json",
+ "protocols":["rest-json"],
"serviceAbbreviation":"Amplify",
"serviceFullName":"AWS Amplify",
"serviceId":"Amplify",
@@ -2333,7 +2334,7 @@
"locationName":"nextToken"
},
"maxResults":{
- "shape":"MaxResults",
+ "shape":"MaxResultsForListApps",
"documentation":"The maximum number of records to list in a single response.
",
"location":"querystring",
"locationName":"maxResults"
@@ -2660,6 +2661,11 @@
"pattern":"(?s).*"
},
"MaxResults":{
+ "type":"integer",
+ "max":50,
+ "min":0
+ },
+ "MaxResultsForListApps":{
"type":"integer",
"max":100,
"min":0
From 0d3413e02b414e6ef5913bf33d0199d36fae74ea Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Mon, 29 Apr 2024 18:08:57 +0000
Subject: [PATCH 07/11] TrustedAdvisor Public API Update: This release adds the
BatchUpdateRecommendationResourceExclusion API to support batch updates of
Recommendation Resource exclusion statuses and introduces a new exclusion
status filter to the ListRecommendationResources and
ListOrganizationRecommendationResources APIs.
---
...ature-TrustedAdvisorPublicAPI-1f88369.json | 6 +
.../codegen-resources/service-2.json | 118 +++++++++++++++++-
2 files changed, 123 insertions(+), 1 deletion(-)
create mode 100644 .changes/next-release/feature-TrustedAdvisorPublicAPI-1f88369.json
diff --git a/.changes/next-release/feature-TrustedAdvisorPublicAPI-1f88369.json b/.changes/next-release/feature-TrustedAdvisorPublicAPI-1f88369.json
new file mode 100644
index 000000000000..39e21243fa3c
--- /dev/null
+++ b/.changes/next-release/feature-TrustedAdvisorPublicAPI-1f88369.json
@@ -0,0 +1,6 @@
+{
+ "type": "feature",
+ "category": "TrustedAdvisor Public API",
+ "contributor": "",
+ "description": "This release adds the BatchUpdateRecommendationResourceExclusion API to support batch updates of Recommendation Resource exclusion statuses and introduces a new exclusion status filter to the ListRecommendationResources and ListOrganizationRecommendationResources APIs."
+}
diff --git a/services/trustedadvisor/src/main/resources/codegen-resources/service-2.json b/services/trustedadvisor/src/main/resources/codegen-resources/service-2.json
index 47fc1e4cdde4..5798e0eeb441 100644
--- a/services/trustedadvisor/src/main/resources/codegen-resources/service-2.json
+++ b/services/trustedadvisor/src/main/resources/codegen-resources/service-2.json
@@ -12,6 +12,25 @@
"uid":"trustedadvisor-2022-09-15"
},
"operations":{
+ "BatchUpdateRecommendationResourceExclusion":{
+ "name":"BatchUpdateRecommendationResourceExclusion",
+ "http":{
+ "method":"PUT",
+ "requestUri":"/v1/batch-update-recommendation-resource-exclusion",
+ "responseCode":200
+ },
+ "input":{"shape":"BatchUpdateRecommendationResourceExclusionRequest"},
+ "output":{"shape":"BatchUpdateRecommendationResourceExclusionResponse"},
+ "errors":[
+ {"shape":"AccessDeniedException"},
+ {"shape":"ConflictException"},
+ {"shape":"InternalServerException"},
+ {"shape":"ValidationException"},
+ {"shape":"ThrottlingException"}
+ ],
+ "documentation":"Update one or more exclusion status for a list of recommendation resources
",
+ "idempotent":true
+ },
"GetOrganizationRecommendation":{
"name":"GetOrganizationRecommendation",
"http":{
@@ -169,7 +188,7 @@
{"shape":"ResourceNotFoundException"},
{"shape":"ThrottlingException"}
],
- "documentation":"Update the lifecyle of a Recommendation within an Organization. This API only supports prioritized recommendations.
",
+ "documentation":"Update the lifecycle of a Recommendation within an Organization. This API only supports prioritized recommendations.
",
"idempotent":true
},
"UpdateRecommendationLifecycle":{
@@ -266,6 +285,30 @@
"type":"list",
"member":{"shape":"AccountRecommendationLifecycleSummary"}
},
+ "BatchUpdateRecommendationResourceExclusionRequest":{
+ "type":"structure",
+ "required":["recommendationResourceExclusions"],
+ "members":{
+ "recommendationResourceExclusions":{
+ "shape":"RecommendationResourceExclusionList",
+ "documentation":"A list of recommendation resource ARNs and exclusion status to update
"
+ }
+ }
+ },
+ "BatchUpdateRecommendationResourceExclusionResponse":{
+ "type":"structure",
+ "required":["batchUpdateRecommendationResourceExclusionErrors"],
+ "members":{
+ "batchUpdateRecommendationResourceExclusionErrors":{
+ "shape":"UpdateRecommendationResourceExclusionErrorList",
+ "documentation":"A list of recommendation resource ARNs whose exclusion status failed to update, if any
"
+ }
+ }
+ },
+ "Boolean":{
+ "type":"boolean",
+ "box":true
+ },
"CheckArn":{
"type":"string",
"max":2048,
@@ -347,6 +390,13 @@
"type":"double",
"box":true
},
+ "ExclusionStatus":{
+ "type":"string",
+ "enum":[
+ "excluded",
+ "included"
+ ]
+ },
"GetOrganizationRecommendationRequest":{
"type":"structure",
"required":["organizationRecommendationIdentifier"],
@@ -542,6 +592,12 @@
"location":"querystring",
"locationName":"affectedAccountId"
},
+ "exclusionStatus":{
+ "shape":"ExclusionStatus",
+ "documentation":"The exclusion status of the resource
",
+ "location":"querystring",
+ "locationName":"exclusionStatus"
+ },
"maxResults":{
"shape":"ListOrganizationRecommendationResourcesRequestMaxResultsInteger",
"documentation":"The maximum number of results to return per page.
",
@@ -703,6 +759,12 @@
"type":"structure",
"required":["recommendationIdentifier"],
"members":{
+ "exclusionStatus":{
+ "shape":"ExclusionStatus",
+ "documentation":"The exclusion status of the resource
",
+ "location":"querystring",
+ "locationName":"exclusionStatus"
+ },
"maxResults":{
"shape":"ListRecommendationResourcesRequestMaxResultsInteger",
"documentation":"The maximum number of results to return per page.
",
@@ -1002,6 +1064,10 @@
"shape":"String",
"documentation":"The AWS resource identifier
"
},
+ "exclusionStatus":{
+ "shape":"ExclusionStatus",
+ "documentation":"The exclusion status of the Recommendation Resource
"
+ },
"id":{
"shape":"String",
"documentation":"The ID of the Recommendation Resource
"
@@ -1298,6 +1364,30 @@
"min":20,
"pattern":"^arn:[\\w-]+:trustedadvisor::\\d{12}:recommendation-resource\\/[\\w-]+\\/[\\w-]+$"
},
+ "RecommendationResourceExclusion":{
+ "type":"structure",
+ "required":[
+ "arn",
+ "isExcluded"
+ ],
+ "members":{
+ "arn":{
+ "shape":"RecommendationResourceArn",
+ "documentation":"The ARN of the Recommendation Resource
"
+ },
+ "isExcluded":{
+ "shape":"Boolean",
+ "documentation":"The exclusion status
"
+ }
+ },
+ "documentation":"The request entry for Recommendation Resource exclusion. Each entry is a combination of Recommendation Resource ARN and corresponding exclusion status
"
+ },
+ "RecommendationResourceExclusionList":{
+ "type":"list",
+ "member":{"shape":"RecommendationResourceExclusion"},
+ "max":100,
+ "min":1
+ },
"RecommendationResourceSummary":{
"type":"structure",
"required":[
@@ -1319,6 +1409,10 @@
"shape":"String",
"documentation":"The AWS resource identifier
"
},
+ "exclusionStatus":{
+ "shape":"ExclusionStatus",
+ "documentation":"The exclusion status of the Recommendation Resource
"
+ },
"id":{
"shape":"String",
"documentation":"The ID of the Recommendation Resource
"
@@ -1610,6 +1704,28 @@
"other"
]
},
+ "UpdateRecommendationResourceExclusionError":{
+ "type":"structure",
+ "members":{
+ "arn":{
+ "shape":"RecommendationResourceArn",
+ "documentation":"The ARN of the Recommendation Resource
"
+ },
+ "errorCode":{
+ "shape":"String",
+ "documentation":"The error code
"
+ },
+ "errorMessage":{
+ "shape":"String",
+ "documentation":"The error message
"
+ }
+ },
+ "documentation":"The error entry for Recommendation Resource exclusion. Each entry is a combination of Recommendation Resource ARN, error code and error message
"
+ },
+ "UpdateRecommendationResourceExclusionErrorList":{
+ "type":"list",
+ "member":{"shape":"UpdateRecommendationResourceExclusionError"}
+ },
"ValidationException":{
"type":"structure",
"required":["message"],
From c53d65621bc6bbba7e12bbc68787c32111d43486 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Mon, 29 Apr 2024 18:09:03 +0000
Subject: [PATCH 08/11] Amazon Transcribe Service Update: This update provides
error messaging for generative call summarization in Transcribe Call
Analytics
---
...ature-AmazonTranscribeService-e972354.json | 6 +++
.../codegen-resources/service-2.json | 54 ++++++++++++++++++-
2 files changed, 59 insertions(+), 1 deletion(-)
create mode 100644 .changes/next-release/feature-AmazonTranscribeService-e972354.json
diff --git a/.changes/next-release/feature-AmazonTranscribeService-e972354.json b/.changes/next-release/feature-AmazonTranscribeService-e972354.json
new file mode 100644
index 000000000000..c340e5b75575
--- /dev/null
+++ b/.changes/next-release/feature-AmazonTranscribeService-e972354.json
@@ -0,0 +1,6 @@
+{
+ "type": "feature",
+ "category": "Amazon Transcribe Service",
+ "contributor": "",
+ "description": "This update provides error messaging for generative call summarization in Transcribe Call Analytics"
+}
diff --git a/services/transcribe/src/main/resources/codegen-resources/service-2.json b/services/transcribe/src/main/resources/codegen-resources/service-2.json
index 2959ee4da6e0..85c25d8ab8ba 100644
--- a/services/transcribe/src/main/resources/codegen-resources/service-2.json
+++ b/services/transcribe/src/main/resources/codegen-resources/service-2.json
@@ -5,6 +5,7 @@
"endpointPrefix":"transcribe",
"jsonVersion":"1.1",
"protocol":"json",
+ "protocols":["json"],
"serviceFullName":"Amazon Transcribe Service",
"serviceId":"Transcribe",
"signatureVersion":"v4",
@@ -737,6 +738,10 @@
"ja-JP"
]
},
+ "CallAnalyticsFeature":{
+ "type":"string",
+ "enum":["GENERATIVE_SUMMARIZATION"]
+ },
"CallAnalyticsJob":{
"type":"structure",
"members":{
@@ -748,6 +753,10 @@
"shape":"CallAnalyticsJobStatus",
"documentation":"Provides the status of the specified Call Analytics job.
If the status is COMPLETED
, the job is finished and you can find the results at the location specified in TranscriptFileUri
(or RedactedTranscriptFileUri
, if you requested transcript redaction). If the status is FAILED
, FailureReason
provides details on why your transcription job failed.
"
},
+ "CallAnalyticsJobDetails":{
+ "shape":"CallAnalyticsJobDetails",
+ "documentation":"Provides detailed information about a call analytics job, including information about skipped analytics features.
"
+ },
"LanguageCode":{
"shape":"LanguageCode",
"documentation":"The language code used to create your Call Analytics job. For a list of supported languages and their associated language codes, refer to the Supported languages table.
If you do not know the language spoken in your media file, you can omit this field and let Amazon Transcribe automatically identify the language of your media. To improve the accuracy of language identification, you can include several language codes and Amazon Transcribe chooses the closest match for your transcription.
"
@@ -800,6 +809,16 @@
},
"documentation":"Provides detailed information about a Call Analytics job.
To view the job's status, refer to CallAnalyticsJobStatus
. If the status is COMPLETED
, the job is finished. You can find your completed transcript at the URI specified in TranscriptFileUri
. If the status is FAILED
, FailureReason
provides details on why your transcription job failed.
If you enabled personally identifiable information (PII) redaction, the redacted transcript appears at the location specified in RedactedTranscriptFileUri
.
If you chose to redact the audio in your media file, you can find your redacted media file at the location specified in the RedactedMediaFileUri
field of your response.
"
},
+ "CallAnalyticsJobDetails":{
+ "type":"structure",
+ "members":{
+ "Skipped":{
+ "shape":"CallAnalyticsSkippedFeatureList",
+ "documentation":"Contains information about any skipped analytics features during the analysis of a call analytics job.
This array lists all the analytics features that were skipped, along with their corresponding reason code and message.
"
+ }
+ },
+ "documentation":"Contains details about a call analytics job, including information about skipped analytics features.
"
+ },
"CallAnalyticsJobName":{
"type":"string",
"max":200,
@@ -881,6 +900,10 @@
"shape":"CallAnalyticsJobStatus",
"documentation":"Provides the status of your Call Analytics job.
If the status is COMPLETED
, the job is finished and you can find the results at the location specified in TranscriptFileUri
(or RedactedTranscriptFileUri
, if you requested transcript redaction). If the status is FAILED
, FailureReason
provides details on why your transcription job failed.
"
},
+ "CallAnalyticsJobDetails":{
+ "shape":"CallAnalyticsJobDetails",
+ "documentation":"Provides detailed information about a call analytics job, including information about skipped analytics features.
"
+ },
"FailureReason":{
"shape":"FailureReason",
"documentation":"If CallAnalyticsJobStatus
is FAILED
, FailureReason
contains information about why the Call Analytics job failed. See also: Common Errors.
"
@@ -888,6 +911,35 @@
},
"documentation":"Provides detailed information about a specific Call Analytics job.
"
},
+ "CallAnalyticsSkippedFeature":{
+ "type":"structure",
+ "members":{
+ "Feature":{
+ "shape":"CallAnalyticsFeature",
+ "documentation":"Indicates the type of analytics feature that was skipped during the analysis of a call analytics job.
"
+ },
+ "ReasonCode":{
+ "shape":"CallAnalyticsSkippedReasonCode",
+ "documentation":"Provides a code indicating the reason why a specific analytics feature was skipped during the analysis of a call analytics job.
"
+ },
+ "Message":{
+ "shape":"String",
+ "documentation":"Contains additional information or a message explaining why a specific analytics feature was skipped during the analysis of a call analytics job.
"
+ }
+ },
+ "documentation":"Represents a skipped analytics feature during the analysis of a call analytics job.
The Feature
field indicates the type of analytics feature that was skipped.
The Message
field contains additional information or a message explaining why the analytics feature was skipped.
The ReasonCode
field provides a code indicating the reason why the analytics feature was skipped.
"
+ },
+ "CallAnalyticsSkippedFeatureList":{
+ "type":"list",
+ "member":{"shape":"CallAnalyticsSkippedFeature"}
+ },
+ "CallAnalyticsSkippedReasonCode":{
+ "type":"string",
+ "enum":[
+ "INSUFFICIENT_CONVERSATION_CONTENT",
+ "FAILED_SAFETY_GUIDELINES"
+ ]
+ },
"CategoryName":{
"type":"string",
"max":200,
@@ -2207,7 +2259,7 @@
},
"MaxSpeakers":{
"type":"integer",
- "max":10,
+ "max":30,
"min":2
},
"Media":{
From af172961b8a51e6e85627677dde88070ea446a52 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Mon, 29 Apr 2024 18:08:58 +0000
Subject: [PATCH 09/11] Inspector2 Update: Update Inspector2 to include new
Agentless API parameters.
---
.../feature-Inspector2-2fc52c6.json | 6 ++
.../codegen-resources/service-2.json | 78 ++++++++++++++++++-
2 files changed, 81 insertions(+), 3 deletions(-)
create mode 100644 .changes/next-release/feature-Inspector2-2fc52c6.json
diff --git a/.changes/next-release/feature-Inspector2-2fc52c6.json b/.changes/next-release/feature-Inspector2-2fc52c6.json
new file mode 100644
index 000000000000..6c158d721e50
--- /dev/null
+++ b/.changes/next-release/feature-Inspector2-2fc52c6.json
@@ -0,0 +1,6 @@
+{
+ "type": "feature",
+ "category": "Inspector2",
+ "contributor": "",
+ "description": "Update Inspector2 to include new Agentless API parameters."
+}
diff --git a/services/inspector2/src/main/resources/codegen-resources/service-2.json b/services/inspector2/src/main/resources/codegen-resources/service-2.json
index 57ee20125ae4..0a43d0e7f255 100644
--- a/services/inspector2/src/main/resources/codegen-resources/service-2.json
+++ b/services/inspector2/src/main/resources/codegen-resources/service-2.json
@@ -5,6 +5,7 @@
"endpointPrefix":"inspector2",
"jsonVersion":"1.1",
"protocol":"rest-json",
+ "protocols":["rest-json"],
"serviceAbbreviation":"Inspector2",
"serviceFullName":"Inspector2",
"serviceId":"Inspector2",
@@ -3029,6 +3030,10 @@
"shape":"CoverageStringFilterList",
"documentation":"An array of Amazon Web Services resource types to return coverage statistics for. The values can be AWS_EC2_INSTANCE
, AWS_LAMBDA_FUNCTION
, AWS_ECR_CONTAINER_IMAGE
, AWS_ECR_REPOSITORY
or AWS_ACCOUNT
.
"
},
+ "scanMode":{
+ "shape":"CoverageStringFilterList",
+ "documentation":"The filter to search for Amazon EC2 instance coverage by scan mode. Valid values are EC2_SSM_AGENT_BASED
and EC2_HYBRID
.
"
+ },
"scanStatusCode":{
"shape":"CoverageStringFilterList",
"documentation":"The scan status code to filter on. Valid values are: ValidationException
, InternalServerException
, ResourceNotFoundException
, BadRequestException
, and ThrottlingException
.
"
@@ -3150,6 +3155,10 @@
"shape":"CoverageResourceType",
"documentation":"The type of the covered resource.
"
},
+ "scanMode":{
+ "shape":"ScanMode",
+ "documentation":"The scan method that is applied to the instance.
"
+ },
"scanStatus":{
"shape":"ScanStatus",
"documentation":"The status of the scan covering the resource.
"
@@ -3731,6 +3740,27 @@
"type":"double",
"box":true
},
+ "Ec2Configuration":{
+ "type":"structure",
+ "required":["scanMode"],
+ "members":{
+ "scanMode":{
+ "shape":"Ec2ScanMode",
+ "documentation":"The scan method that is applied to the instance.
"
+ }
+ },
+ "documentation":"Enables agent-based scanning, which scans instances that are not managed by SSM.
"
+ },
+ "Ec2ConfigurationState":{
+ "type":"structure",
+ "members":{
+ "scanModeState":{
+ "shape":"Ec2ScanModeState",
+ "documentation":"An object that contains details about the state of the Amazon EC2 scan mode.
"
+ }
+ },
+ "documentation":"Details about the state of the EC2 scan configuration for your environment.
"
+ },
"Ec2DeepInspectionStatus":{
"type":"string",
"enum":[
@@ -3841,6 +3871,34 @@
"MACOS"
]
},
+ "Ec2ScanMode":{
+ "type":"string",
+ "enum":[
+ "EC2_SSM_AGENT_BASED",
+ "EC2_HYBRID"
+ ]
+ },
+ "Ec2ScanModeState":{
+ "type":"structure",
+ "members":{
+ "scanMode":{
+ "shape":"Ec2ScanMode",
+ "documentation":"The scan method that is applied to the instance.
"
+ },
+ "scanModeStatus":{
+ "shape":"Ec2ScanModeStatus",
+ "documentation":"The status of the Amazon EC2 scan mode setting.
"
+ }
+ },
+ "documentation":"The state of your Amazon EC2 scan mode configuration.
"
+ },
+ "Ec2ScanModeStatus":{
+ "type":"string",
+ "enum":[
+ "SUCCESS",
+ "PENDING"
+ ]
+ },
"EcrConfiguration":{
"type":"structure",
"required":["rescanDuration"],
@@ -4533,7 +4591,7 @@
},
"lastObservedAt":{
"shape":"DateTimeTimestamp",
- "documentation":"The date and time that the finding was last observed.
"
+ "documentation":" The date and time the finding was last observed. This timestamp for this field remains unchanged until a finding is updated.
"
},
"networkReachabilityDetails":{
"shape":"NetworkReachabilityDetails",
@@ -4883,7 +4941,7 @@
},
"url":{
"shape":"String",
- "documentation":" The URL where the CIS scan report PDF can be downloaded.
"
+ "documentation":" The URL where a PDF of the CIS scan report can be downloaded.
"
}
}
},
@@ -4956,6 +5014,10 @@
"GetConfigurationResponse":{
"type":"structure",
"members":{
+ "ec2Configuration":{
+ "shape":"Ec2ConfigurationState",
+ "documentation":"Specifies how the Amazon EC2 automated scan mode is currently configured for your environment.
"
+ },
"ecrConfiguration":{
"shape":"EcrConfigurationState",
"documentation":"Specifies how the ECR automated re-scan duration is currently configured for your environment.
"
@@ -7098,6 +7160,13 @@
"SPDX_2_3"
]
},
+ "ScanMode":{
+ "type":"string",
+ "enum":[
+ "EC2_SSM_AGENT_BASED",
+ "EC2_AGENTLESS"
+ ]
+ },
"ScanStatus":{
"type":"structure",
"required":[
@@ -8026,8 +8095,11 @@
},
"UpdateConfigurationRequest":{
"type":"structure",
- "required":["ecrConfiguration"],
"members":{
+ "ec2Configuration":{
+ "shape":"Ec2Configuration",
+ "documentation":"Specifies how the Amazon EC2 automated scan will be updated for your environment.
"
+ },
"ecrConfiguration":{
"shape":"EcrConfiguration",
"documentation":"Specifies how the ECR automated re-scan will be updated for your environment.
"
From d9e99a75e4cfbf9a3549a3f4717107dfcd0c1411 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Mon, 29 Apr 2024 18:10:13 +0000
Subject: [PATCH 10/11] Updated endpoints.json and partitions.json.
---
.changes/next-release/feature-AWSSDKforJavav2-0443982.json | 6 ++++++
.../amazon/awssdk/regions/internal/region/endpoints.json | 2 +-
2 files changed, 7 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 85d596c563aa..1081e9296cf6 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
@@ -21565,7 +21565,7 @@
"credentialScope" : {
"region" : "cn-northwest-1"
},
- "hostname" : "subscribe.mediaconvert.cn-northwest-1.amazonaws.com.cn"
+ "hostname" : "mediaconvert.cn-northwest-1.amazonaws.com.cn"
}
}
},
From 7565a02a48bb6e44dc555ac5dcbf594899ecb1f7 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Mon, 29 Apr 2024 18:11:23 +0000
Subject: [PATCH 11/11] Release 2.25.41. Updated CHANGELOG.md, README.md and
all pom.xml.
---
.changes/2.25.41.json | 54 +++++++++++++++++++
.../bugfix-AWSSDKforJavav2-66877e6.json | 6 ---
.../feature-AWSAmplify-3d98821.json | 6 ---
.../feature-AWSSDKforJavav2-0443982.json | 6 ---
.../feature-AmazonConnectCases-06444f9.json | 6 ---
...feature-AmazonTimestreamQuery-70d914e.json | 6 ---
...ature-AmazonTranscribeService-e972354.json | 6 ---
.../feature-Inspector2-2fc52c6.json | 6 ---
...ature-TrustedAdvisorPublicAPI-1f88369.json | 6 ---
CHANGELOG.md | 32 +++++++++++
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/alexaforbusiness/pom.xml | 2 +-
services/amp/pom.xml | 2 +-
services/amplify/pom.xml | 2 +-
services/amplifybackend/pom.xml | 2 +-
services/amplifyuibuilder/pom.xml | 2 +-
services/apigateway/pom.xml | 2 +-
services/apigatewaymanagementapi/pom.xml | 2 +-
services/apigatewayv2/pom.xml | 2 +-
services/appconfig/pom.xml | 2 +-
services/appconfigdata/pom.xml | 2 +-
services/appfabric/pom.xml | 2 +-
services/appflow/pom.xml | 2 +-
services/appintegrations/pom.xml | 2 +-
services/applicationautoscaling/pom.xml | 2 +-
services/applicationcostprofiler/pom.xml | 2 +-
services/applicationdiscovery/pom.xml | 2 +-
services/applicationinsights/pom.xml | 2 +-
services/appmesh/pom.xml | 2 +-
services/apprunner/pom.xml | 2 +-
services/appstream/pom.xml | 2 +-
services/appsync/pom.xml | 2 +-
services/arczonalshift/pom.xml | 2 +-
services/artifact/pom.xml | 2 +-
services/athena/pom.xml | 2 +-
services/auditmanager/pom.xml | 2 +-
services/autoscaling/pom.xml | 2 +-
services/autoscalingplans/pom.xml | 2 +-
services/b2bi/pom.xml | 2 +-
services/backup/pom.xml | 2 +-
services/backupgateway/pom.xml | 2 +-
services/backupstorage/pom.xml | 2 +-
services/batch/pom.xml | 2 +-
services/bcmdataexports/pom.xml | 2 +-
services/bedrock/pom.xml | 2 +-
services/bedrockagent/pom.xml | 2 +-
services/bedrockagentruntime/pom.xml | 2 +-
services/bedrockruntime/pom.xml | 2 +-
services/billingconductor/pom.xml | 2 +-
services/braket/pom.xml | 2 +-
services/budgets/pom.xml | 2 +-
services/chatbot/pom.xml | 2 +-
services/chime/pom.xml | 2 +-
services/chimesdkidentity/pom.xml | 2 +-
services/chimesdkmediapipelines/pom.xml | 2 +-
services/chimesdkmeetings/pom.xml | 2 +-
services/chimesdkmessaging/pom.xml | 2 +-
services/chimesdkvoice/pom.xml | 2 +-
services/cleanrooms/pom.xml | 2 +-
services/cleanroomsml/pom.xml | 2 +-
services/cloud9/pom.xml | 2 +-
services/cloudcontrol/pom.xml | 2 +-
services/clouddirectory/pom.xml | 2 +-
services/cloudformation/pom.xml | 2 +-
services/cloudfront/pom.xml | 2 +-
services/cloudfrontkeyvaluestore/pom.xml | 2 +-
services/cloudhsm/pom.xml | 2 +-
services/cloudhsmv2/pom.xml | 2 +-
services/cloudsearch/pom.xml | 2 +-
services/cloudsearchdomain/pom.xml | 2 +-
services/cloudtrail/pom.xml | 2 +-
services/cloudtraildata/pom.xml | 2 +-
services/cloudwatch/pom.xml | 2 +-
services/cloudwatchevents/pom.xml | 2 +-
services/cloudwatchlogs/pom.xml | 2 +-
services/codeartifact/pom.xml | 2 +-
services/codebuild/pom.xml | 2 +-
services/codecatalyst/pom.xml | 2 +-
services/codecommit/pom.xml | 2 +-
services/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/honeycode/pom.xml | 2 +-
services/iam/pom.xml | 2 +-
services/identitystore/pom.xml | 2 +-
services/imagebuilder/pom.xml | 2 +-
services/inspector/pom.xml | 2 +-
services/inspector2/pom.xml | 2 +-
services/inspectorscan/pom.xml | 2 +-
services/internetmonitor/pom.xml | 2 +-
services/iot/pom.xml | 2 +-
services/iot1clickdevices/pom.xml | 2 +-
services/iot1clickprojects/pom.xml | 2 +-
services/iotanalytics/pom.xml | 2 +-
services/iotdataplane/pom.xml | 2 +-
services/iotdeviceadvisor/pom.xml | 2 +-
services/iotevents/pom.xml | 2 +-
services/ioteventsdata/pom.xml | 2 +-
services/iotfleethub/pom.xml | 2 +-
services/iotfleetwise/pom.xml | 2 +-
services/iotjobsdataplane/pom.xml | 2 +-
services/iotsecuretunneling/pom.xml | 2 +-
services/iotsitewise/pom.xml | 2 +-
services/iotthingsgraph/pom.xml | 2 +-
services/iottwinmaker/pom.xml | 2 +-
services/iotwireless/pom.xml | 2 +-
services/ivs/pom.xml | 2 +-
services/ivschat/pom.xml | 2 +-
services/ivsrealtime/pom.xml | 2 +-
services/kafka/pom.xml | 2 +-
services/kafkaconnect/pom.xml | 2 +-
services/kendra/pom.xml | 2 +-
services/kendraranking/pom.xml | 2 +-
services/keyspaces/pom.xml | 2 +-
services/kinesis/pom.xml | 2 +-
services/kinesisanalytics/pom.xml | 2 +-
services/kinesisanalyticsv2/pom.xml | 2 +-
services/kinesisvideo/pom.xml | 2 +-
services/kinesisvideoarchivedmedia/pom.xml | 2 +-
services/kinesisvideomedia/pom.xml | 2 +-
services/kinesisvideosignaling/pom.xml | 2 +-
services/kinesisvideowebrtcstorage/pom.xml | 2 +-
services/kms/pom.xml | 2 +-
services/lakeformation/pom.xml | 2 +-
services/lambda/pom.xml | 2 +-
services/launchwizard/pom.xml | 2 +-
services/lexmodelbuilding/pom.xml | 2 +-
services/lexmodelsv2/pom.xml | 2 +-
services/lexruntime/pom.xml | 2 +-
services/lexruntimev2/pom.xml | 2 +-
services/licensemanager/pom.xml | 2 +-
.../licensemanagerlinuxsubscriptions/pom.xml | 2 +-
.../licensemanagerusersubscriptions/pom.xml | 2 +-
services/lightsail/pom.xml | 2 +-
services/location/pom.xml | 2 +-
services/lookoutequipment/pom.xml | 2 +-
services/lookoutmetrics/pom.xml | 2 +-
services/lookoutvision/pom.xml | 2 +-
services/m2/pom.xml | 2 +-
services/machinelearning/pom.xml | 2 +-
services/macie2/pom.xml | 2 +-
services/managedblockchain/pom.xml | 2 +-
services/managedblockchainquery/pom.xml | 2 +-
services/marketplaceagreement/pom.xml | 2 +-
services/marketplacecatalog/pom.xml | 2 +-
services/marketplacecommerceanalytics/pom.xml | 2 +-
services/marketplacedeployment/pom.xml | 2 +-
services/marketplaceentitlement/pom.xml | 2 +-
services/marketplacemetering/pom.xml | 2 +-
services/mediaconnect/pom.xml | 2 +-
services/mediaconvert/pom.xml | 2 +-
services/medialive/pom.xml | 2 +-
services/mediapackage/pom.xml | 2 +-
services/mediapackagev2/pom.xml | 2 +-
services/mediapackagevod/pom.xml | 2 +-
services/mediastore/pom.xml | 2 +-
services/mediastoredata/pom.xml | 2 +-
services/mediatailor/pom.xml | 2 +-
services/medicalimaging/pom.xml | 2 +-
services/memorydb/pom.xml | 2 +-
services/mgn/pom.xml | 2 +-
services/migrationhub/pom.xml | 2 +-
services/migrationhubconfig/pom.xml | 2 +-
services/migrationhuborchestrator/pom.xml | 2 +-
services/migrationhubrefactorspaces/pom.xml | 2 +-
services/migrationhubstrategy/pom.xml | 2 +-
services/mobile/pom.xml | 2 +-
services/mq/pom.xml | 2 +-
services/mturk/pom.xml | 2 +-
services/mwaa/pom.xml | 2 +-
services/neptune/pom.xml | 2 +-
services/neptunedata/pom.xml | 2 +-
services/neptunegraph/pom.xml | 2 +-
services/networkfirewall/pom.xml | 2 +-
services/networkmanager/pom.xml | 2 +-
services/networkmonitor/pom.xml | 2 +-
services/nimble/pom.xml | 2 +-
services/oam/pom.xml | 2 +-
services/omics/pom.xml | 2 +-
services/opensearch/pom.xml | 2 +-
services/opensearchserverless/pom.xml | 2 +-
services/opsworks/pom.xml | 2 +-
services/opsworkscm/pom.xml | 2 +-
services/organizations/pom.xml | 2 +-
services/osis/pom.xml | 2 +-
services/outposts/pom.xml | 2 +-
services/panorama/pom.xml | 2 +-
services/paymentcryptography/pom.xml | 2 +-
services/paymentcryptographydata/pom.xml | 2 +-
services/pcaconnectorad/pom.xml | 2 +-
services/personalize/pom.xml | 2 +-
services/personalizeevents/pom.xml | 2 +-
services/personalizeruntime/pom.xml | 2 +-
services/pi/pom.xml | 2 +-
services/pinpoint/pom.xml | 2 +-
services/pinpointemail/pom.xml | 2 +-
services/pinpointsmsvoice/pom.xml | 2 +-
services/pinpointsmsvoicev2/pom.xml | 2 +-
services/pipes/pom.xml | 2 +-
services/polly/pom.xml | 2 +-
services/pom.xml | 2 +-
services/pricing/pom.xml | 2 +-
services/privatenetworks/pom.xml | 2 +-
services/proton/pom.xml | 2 +-
services/qbusiness/pom.xml | 2 +-
services/qconnect/pom.xml | 2 +-
services/qldb/pom.xml | 2 +-
services/qldbsession/pom.xml | 2 +-
services/quicksight/pom.xml | 2 +-
services/ram/pom.xml | 2 +-
services/rbin/pom.xml | 2 +-
services/rds/pom.xml | 2 +-
services/rdsdata/pom.xml | 2 +-
services/redshift/pom.xml | 2 +-
services/redshiftdata/pom.xml | 2 +-
services/redshiftserverless/pom.xml | 2 +-
services/rekognition/pom.xml | 2 +-
services/repostspace/pom.xml | 2 +-
services/resiliencehub/pom.xml | 2 +-
services/resourceexplorer2/pom.xml | 2 +-
services/resourcegroups/pom.xml | 2 +-
services/resourcegroupstaggingapi/pom.xml | 2 +-
services/robomaker/pom.xml | 2 +-
services/rolesanywhere/pom.xml | 2 +-
services/route53/pom.xml | 2 +-
services/route53domains/pom.xml | 2 +-
services/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/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/codegen-generated-classes-test/pom.xml | 2 +-
test/crt-unavailable-tests/pom.xml | 2 +-
test/http-client-tests/pom.xml | 2 +-
test/module-path-tests/pom.xml | 2 +-
.../pom.xml | 2 +-
test/protocol-tests-core/pom.xml | 2 +-
test/protocol-tests/pom.xml | 2 +-
test/region-testing/pom.xml | 2 +-
test/ruleset-testing-core/pom.xml | 2 +-
test/s3-benchmarks/pom.xml | 2 +-
test/sdk-benchmarks/pom.xml | 2 +-
test/sdk-native-image-test/pom.xml | 2 +-
test/service-test-utils/pom.xml | 2 +-
test/stability-tests/pom.xml | 2 +-
test/test-utils/pom.xml | 2 +-
test/tests-coverage-reporting/pom.xml | 2 +-
third-party/pom.xml | 2 +-
third-party/third-party-jackson-core/pom.xml | 2 +-
.../pom.xml | 2 +-
third-party/third-party-slf4j-api/pom.xml | 2 +-
utils/pom.xml | 2 +-
472 files changed, 551 insertions(+), 513 deletions(-)
create mode 100644 .changes/2.25.41.json
delete mode 100644 .changes/next-release/bugfix-AWSSDKforJavav2-66877e6.json
delete mode 100644 .changes/next-release/feature-AWSAmplify-3d98821.json
delete mode 100644 .changes/next-release/feature-AWSSDKforJavav2-0443982.json
delete mode 100644 .changes/next-release/feature-AmazonConnectCases-06444f9.json
delete mode 100644 .changes/next-release/feature-AmazonTimestreamQuery-70d914e.json
delete mode 100644 .changes/next-release/feature-AmazonTranscribeService-e972354.json
delete mode 100644 .changes/next-release/feature-Inspector2-2fc52c6.json
delete mode 100644 .changes/next-release/feature-TrustedAdvisorPublicAPI-1f88369.json
diff --git a/.changes/2.25.41.json b/.changes/2.25.41.json
new file mode 100644
index 000000000000..beb5eaae93cc
--- /dev/null
+++ b/.changes/2.25.41.json
@@ -0,0 +1,54 @@
+{
+ "version": "2.25.41",
+ "date": "2024-04-29",
+ "entries": [
+ {
+ "type": "bugfix",
+ "category": "AWS SDK for Java v2",
+ "contributor": "",
+ "description": "Log `AWS4 Canonical Request` in signer if DEBUG level is enabled."
+ },
+ {
+ "type": "feature",
+ "category": "AWS Amplify",
+ "contributor": "",
+ "description": "Updating max results limit for listing any resources (Job, Artifacts, Branch, BackendResources, DomainAssociation) to 50 with the exception of list apps that where max results can be up to 100."
+ },
+ {
+ "type": "feature",
+ "category": "Amazon Connect Cases",
+ "contributor": "",
+ "description": "This feature releases DeleteField, DeletedLayout, and DeleteTemplate API's"
+ },
+ {
+ "type": "feature",
+ "category": "Amazon Timestream Query",
+ "contributor": "",
+ "description": "This change allows users to update and describe account settings associated with their accounts."
+ },
+ {
+ "type": "feature",
+ "category": "Amazon Transcribe Service",
+ "contributor": "",
+ "description": "This update provides error messaging for generative call summarization in Transcribe Call Analytics"
+ },
+ {
+ "type": "feature",
+ "category": "Inspector2",
+ "contributor": "",
+ "description": "Update Inspector2 to include new Agentless API parameters."
+ },
+ {
+ "type": "feature",
+ "category": "TrustedAdvisor Public API",
+ "contributor": "",
+ "description": "This release adds the BatchUpdateRecommendationResourceExclusion API to support batch updates of Recommendation Resource exclusion statuses and introduces a new exclusion status filter to the ListRecommendationResources and ListOrganizationRecommendationResources APIs."
+ },
+ {
+ "type": "feature",
+ "category": "AWS SDK for Java v2",
+ "contributor": "",
+ "description": "Updated endpoint and partition metadata."
+ }
+ ]
+}
\ No newline at end of file
diff --git a/.changes/next-release/bugfix-AWSSDKforJavav2-66877e6.json b/.changes/next-release/bugfix-AWSSDKforJavav2-66877e6.json
deleted file mode 100644
index 4a45e056e13c..000000000000
--- a/.changes/next-release/bugfix-AWSSDKforJavav2-66877e6.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "bugfix",
- "category": "AWS SDK for Java v2",
- "contributor": "",
- "description": "Log `AWS4 Canonical Request` in signer if DEBUG level is enabled."
-}
diff --git a/.changes/next-release/feature-AWSAmplify-3d98821.json b/.changes/next-release/feature-AWSAmplify-3d98821.json
deleted file mode 100644
index bf6c171e97dc..000000000000
--- a/.changes/next-release/feature-AWSAmplify-3d98821.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "feature",
- "category": "AWS Amplify",
- "contributor": "",
- "description": "Updating max results limit for listing any resources (Job, Artifacts, Branch, BackendResources, DomainAssociation) to 50 with the exception of list apps that where max results can be up to 100."
-}
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-AmazonConnectCases-06444f9.json b/.changes/next-release/feature-AmazonConnectCases-06444f9.json
deleted file mode 100644
index bb938c3f4b13..000000000000
--- a/.changes/next-release/feature-AmazonConnectCases-06444f9.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "feature",
- "category": "Amazon Connect Cases",
- "contributor": "",
- "description": "This feature releases DeleteField, DeletedLayout, and DeleteTemplate API's"
-}
diff --git a/.changes/next-release/feature-AmazonTimestreamQuery-70d914e.json b/.changes/next-release/feature-AmazonTimestreamQuery-70d914e.json
deleted file mode 100644
index 999341c602a5..000000000000
--- a/.changes/next-release/feature-AmazonTimestreamQuery-70d914e.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "feature",
- "category": "Amazon Timestream Query",
- "contributor": "",
- "description": "This change allows users to update and describe account settings associated with their accounts."
-}
diff --git a/.changes/next-release/feature-AmazonTranscribeService-e972354.json b/.changes/next-release/feature-AmazonTranscribeService-e972354.json
deleted file mode 100644
index c340e5b75575..000000000000
--- a/.changes/next-release/feature-AmazonTranscribeService-e972354.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "feature",
- "category": "Amazon Transcribe Service",
- "contributor": "",
- "description": "This update provides error messaging for generative call summarization in Transcribe Call Analytics"
-}
diff --git a/.changes/next-release/feature-Inspector2-2fc52c6.json b/.changes/next-release/feature-Inspector2-2fc52c6.json
deleted file mode 100644
index 6c158d721e50..000000000000
--- a/.changes/next-release/feature-Inspector2-2fc52c6.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "feature",
- "category": "Inspector2",
- "contributor": "",
- "description": "Update Inspector2 to include new Agentless API parameters."
-}
diff --git a/.changes/next-release/feature-TrustedAdvisorPublicAPI-1f88369.json b/.changes/next-release/feature-TrustedAdvisorPublicAPI-1f88369.json
deleted file mode 100644
index 39e21243fa3c..000000000000
--- a/.changes/next-release/feature-TrustedAdvisorPublicAPI-1f88369.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "feature",
- "category": "TrustedAdvisor Public API",
- "contributor": "",
- "description": "This release adds the BatchUpdateRecommendationResourceExclusion API to support batch updates of Recommendation Resource exclusion statuses and introduces a new exclusion status filter to the ListRecommendationResources and ListOrganizationRecommendationResources APIs."
-}
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 131168de849b..af00eae063bb 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,36 @@
#### 👋 _Looking for changelogs for older versions? You can find them in the [changelogs](./changelogs) directory._
+# __2.25.41__ __2024-04-29__
+## __AWS Amplify__
+ - ### Features
+ - Updating max results limit for listing any resources (Job, Artifacts, Branch, BackendResources, DomainAssociation) to 50 with the exception of list apps that where max results can be up to 100.
+
+## __AWS SDK for Java v2__
+ - ### Features
+ - Updated endpoint and partition metadata.
+
+ - ### Bugfixes
+ - Log `AWS4 Canonical Request` in signer if DEBUG level is enabled.
+
+## __Amazon Connect Cases__
+ - ### Features
+ - This feature releases DeleteField, DeletedLayout, and DeleteTemplate API's
+
+## __Amazon Timestream Query__
+ - ### Features
+ - This change allows users to update and describe account settings associated with their accounts.
+
+## __Amazon Transcribe Service__
+ - ### Features
+ - This update provides error messaging for generative call summarization in Transcribe Call Analytics
+
+## __Inspector2__
+ - ### Features
+ - Update Inspector2 to include new Agentless API parameters.
+
+## __TrustedAdvisor Public API__
+ - ### Features
+ - This release adds the BatchUpdateRecommendationResourceExclusion API to support batch updates of Recommendation Resource exclusion statuses and introduces a new exclusion status filter to the ListRecommendationResources and ListOrganizationRecommendationResources APIs.
+
# __2.25.40__ __2024-04-26__
## __AWS CodePipeline__
- ### Features
diff --git a/README.md b/README.md
index b9baae99fc93..f5b7c1f98eb9 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.40
+ 2.25.41
pom
import
@@ -86,12 +86,12 @@ Alternatively you can add dependencies for the specific services you use only:
software.amazon.awssdk
ec2
- 2.25.40
+ 2.25.41
software.amazon.awssdk
s3
- 2.25.40
+ 2.25.41
```
@@ -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.40
+ 2.25.41
```
diff --git a/archetypes/archetype-app-quickstart/pom.xml b/archetypes/archetype-app-quickstart/pom.xml
index bb59dbbb7b14..48de331e735c 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.41-SNAPSHOT
+ 2.25.41
4.0.0
diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml
index 252e1c865479..84acfba1a65e 100644
--- a/archetypes/archetype-lambda/pom.xml
+++ b/archetypes/archetype-lambda/pom.xml
@@ -20,7 +20,7 @@
archetypes
software.amazon.awssdk
- 2.25.41-SNAPSHOT
+ 2.25.41
4.0.0
archetype-lambda
diff --git a/archetypes/archetype-tools/pom.xml b/archetypes/archetype-tools/pom.xml
index bf59399d513f..83279e0345b2 100644
--- a/archetypes/archetype-tools/pom.xml
+++ b/archetypes/archetype-tools/pom.xml
@@ -20,7 +20,7 @@
archetypes
software.amazon.awssdk
- 2.25.41-SNAPSHOT
+ 2.25.41
4.0.0
diff --git a/archetypes/pom.xml b/archetypes/pom.xml
index 662a372246c4..7723a2bd7e1c 100644
--- a/archetypes/pom.xml
+++ b/archetypes/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.25.41-SNAPSHOT
+ 2.25.41
4.0.0
archetypes
diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml
index e249a10bc1fe..07e359762b40 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.41-SNAPSHOT
+ 2.25.41
../pom.xml
aws-sdk-java
diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml
index 5ea9f4bbf3d7..252255764f1d 100644
--- a/bom-internal/pom.xml
+++ b/bom-internal/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.25.41-SNAPSHOT
+ 2.25.41
4.0.0
diff --git a/bom/pom.xml b/bom/pom.xml
index 7c5f80dea86a..33d6064c06a4 100644
--- a/bom/pom.xml
+++ b/bom/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.41-SNAPSHOT
+ 2.25.41
../pom.xml
bom
diff --git a/bundle-logging-bridge/pom.xml b/bundle-logging-bridge/pom.xml
index 926c4a43bce3..507a5a10f893 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.41-SNAPSHOT
+ 2.25.41
bundle-logging-bridge
jar
diff --git a/bundle-sdk/pom.xml b/bundle-sdk/pom.xml
index 7bb4e500de0d..a76c7acda004 100644
--- a/bundle-sdk/pom.xml
+++ b/bundle-sdk/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.41-SNAPSHOT
+ 2.25.41
bundle-sdk
jar
diff --git a/bundle/pom.xml b/bundle/pom.xml
index d093c6e3738d..9a42d4e1988b 100644
--- a/bundle/pom.xml
+++ b/bundle/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.41-SNAPSHOT
+ 2.25.41
bundle
jar
diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml
index 65a3563f531e..c17a8d0092a1 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.41-SNAPSHOT
+ 2.25.41
../pom.xml
codegen-lite-maven-plugin
diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml
index e0716f66a57c..635a00cb594d 100644
--- a/codegen-lite/pom.xml
+++ b/codegen-lite/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.41-SNAPSHOT
+ 2.25.41
codegen-lite
AWS Java SDK :: Code Generator Lite
diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml
index eb4c7cccdc02..fc33196218c5 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.41-SNAPSHOT
+ 2.25.41
../pom.xml
codegen-maven-plugin
diff --git a/codegen/pom.xml b/codegen/pom.xml
index 8fb43497cc29..bc522de4f0b5 100644
--- a/codegen/pom.xml
+++ b/codegen/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.41-SNAPSHOT
+ 2.25.41
codegen
AWS Java SDK :: Code Generator
diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml
index d0e4775f05b9..9aadb4ac7098 100644
--- a/core/annotations/pom.xml
+++ b/core/annotations/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.25.41-SNAPSHOT
+ 2.25.41
4.0.0
diff --git a/core/arns/pom.xml b/core/arns/pom.xml
index 3073407f098c..848a3e6dccb0 100644
--- a/core/arns/pom.xml
+++ b/core/arns/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.25.41-SNAPSHOT
+ 2.25.41
4.0.0
diff --git a/core/auth-crt/pom.xml b/core/auth-crt/pom.xml
index a215c810dc2d..04cd9709a0f3 100644
--- a/core/auth-crt/pom.xml
+++ b/core/auth-crt/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.25.41-SNAPSHOT
+ 2.25.41
auth-crt
diff --git a/core/auth/pom.xml b/core/auth/pom.xml
index 126cd8de40e8..5a99e5720055 100644
--- a/core/auth/pom.xml
+++ b/core/auth/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.25.41-SNAPSHOT
+ 2.25.41
auth
diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml
index 73ecb7f94a87..0307ce465738 100644
--- a/core/aws-core/pom.xml
+++ b/core/aws-core/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.25.41-SNAPSHOT
+ 2.25.41
aws-core
diff --git a/core/checksums-spi/pom.xml b/core/checksums-spi/pom.xml
index 25f0e4cfdd18..c7a97703e6d0 100644
--- a/core/checksums-spi/pom.xml
+++ b/core/checksums-spi/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.25.41-SNAPSHOT
+ 2.25.41
checksums-spi
diff --git a/core/checksums/pom.xml b/core/checksums/pom.xml
index 784e4dab0935..76d9a3bb624e 100644
--- a/core/checksums/pom.xml
+++ b/core/checksums/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.25.41-SNAPSHOT
+ 2.25.41
checksums
diff --git a/core/crt-core/pom.xml b/core/crt-core/pom.xml
index d16e8f2a0335..867919d46b63 100644
--- a/core/crt-core/pom.xml
+++ b/core/crt-core/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
core
- 2.25.41-SNAPSHOT
+ 2.25.41
crt-core
diff --git a/core/endpoints-spi/pom.xml b/core/endpoints-spi/pom.xml
index b9bcb787cb89..8bd94656362f 100644
--- a/core/endpoints-spi/pom.xml
+++ b/core/endpoints-spi/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.25.41-SNAPSHOT
+ 2.25.41
4.0.0
diff --git a/core/http-auth-aws-crt/pom.xml b/core/http-auth-aws-crt/pom.xml
index 4bdad8b557fb..0a9e7dc1ec8b 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.41-SNAPSHOT
+ 2.25.41
http-auth-aws-crt
diff --git a/core/http-auth-aws-eventstream/pom.xml b/core/http-auth-aws-eventstream/pom.xml
index 9ba6476d48fe..91641a8f7746 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.41-SNAPSHOT
+ 2.25.41
http-auth-aws-eventstream
diff --git a/core/http-auth-aws/pom.xml b/core/http-auth-aws/pom.xml
index 1656df0234c7..1e02f5beac5e 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.41-SNAPSHOT
+ 2.25.41
http-auth-aws
diff --git a/core/http-auth-spi/pom.xml b/core/http-auth-spi/pom.xml
index 5270735da396..fe67819ebf03 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.41-SNAPSHOT
+ 2.25.41
http-auth-spi
diff --git a/core/http-auth/pom.xml b/core/http-auth/pom.xml
index fd8a08ec9591..488a192c29fa 100644
--- a/core/http-auth/pom.xml
+++ b/core/http-auth/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.25.41-SNAPSHOT
+ 2.25.41
http-auth
diff --git a/core/identity-spi/pom.xml b/core/identity-spi/pom.xml
index ed5604382a9d..8d5a9704fe34 100644
--- a/core/identity-spi/pom.xml
+++ b/core/identity-spi/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.25.41-SNAPSHOT
+ 2.25.41
identity-spi
diff --git a/core/imds/pom.xml b/core/imds/pom.xml
index e09ce7ee6107..06ff14140f6f 100644
--- a/core/imds/pom.xml
+++ b/core/imds/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.25.41-SNAPSHOT
+ 2.25.41
4.0.0
imds
diff --git a/core/json-utils/pom.xml b/core/json-utils/pom.xml
index 29e8225d7d62..fa45fc7fb24b 100644
--- a/core/json-utils/pom.xml
+++ b/core/json-utils/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.25.41-SNAPSHOT
+ 2.25.41
4.0.0
diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml
index 3c0e75380f63..455a902e4faf 100644
--- a/core/metrics-spi/pom.xml
+++ b/core/metrics-spi/pom.xml
@@ -5,7 +5,7 @@
core
software.amazon.awssdk
- 2.25.41-SNAPSHOT
+ 2.25.41
4.0.0
diff --git a/core/pom.xml b/core/pom.xml
index 73541a099673..13ef28b8799d 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.25.41-SNAPSHOT
+ 2.25.41
core
diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml
index 12993883c9e2..10de53e62383 100644
--- a/core/profiles/pom.xml
+++ b/core/profiles/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.25.41-SNAPSHOT
+ 2.25.41
profiles
diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml
index ba9516ffffd0..9087a94cba58 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.41-SNAPSHOT
+ 2.25.41
4.0.0
diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml
index 3409f1ce907d..861f511b4809 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.41-SNAPSHOT
+ 2.25.41
4.0.0
diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml
index 7487f62f1b16..f1d186dc721b 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.41-SNAPSHOT
+ 2.25.41
4.0.0
diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml
index cdd1e4a085d2..315b78b32755 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.41-SNAPSHOT
+ 2.25.41
4.0.0
diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml
index 8eec13498784..86556cb462a8 100644
--- a/core/protocols/pom.xml
+++ b/core/protocols/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.25.41-SNAPSHOT
+ 2.25.41
4.0.0
diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml
index a8d8939fec0c..6f8fb3b3453b 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.41-SNAPSHOT
+ 2.25.41
4.0.0
diff --git a/core/regions/pom.xml b/core/regions/pom.xml
index 0e4bd5444ee9..1c1d3e950f18 100644
--- a/core/regions/pom.xml
+++ b/core/regions/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.25.41-SNAPSHOT
+ 2.25.41
regions
diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml
index 5e481a9afd0a..81f6ecc17249 100644
--- a/core/sdk-core/pom.xml
+++ b/core/sdk-core/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
core
- 2.25.41-SNAPSHOT
+ 2.25.41
sdk-core
AWS Java SDK :: SDK Core
diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml
index de6069718e28..4cf41c1a5059 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.41-SNAPSHOT
+ 2.25.41
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 89df7fc6185c..4028103bd2e8 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.41-SNAPSHOT
+ 2.25.41
apache-client
diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml
index 38f46524d79a..9ef342aad81a 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.41-SNAPSHOT
+ 2.25.41
4.0.0
diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml
index addd48771f40..0cf02e7526e2 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.41-SNAPSHOT
+ 2.25.41
4.0.0
diff --git a/http-clients/pom.xml b/http-clients/pom.xml
index a22c25c1aa2c..ffe4252bb51e 100644
--- a/http-clients/pom.xml
+++ b/http-clients/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.25.41-SNAPSHOT
+ 2.25.41
4.0.0
diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml
index 0b367bcbbc9d..171b8a482a2c 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.41-SNAPSHOT
+ 2.25.41
4.0.0
diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml
index 45e2cebdfc91..3bcd65adba0a 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.41-SNAPSHOT
+ 2.25.41
cloudwatch-metric-publisher
diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml
index e12a6a9700d0..96fcccc38c60 100644
--- a/metric-publishers/pom.xml
+++ b/metric-publishers/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.41-SNAPSHOT
+ 2.25.41
metric-publishers
diff --git a/pom.xml b/pom.xml
index 9537772fe033..b6d6762c0ec5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -20,7 +20,7 @@
4.0.0
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.41-SNAPSHOT
+ 2.25.41
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 f3406c1d29f0..f891709fd3c8 100644
--- a/release-scripts/pom.xml
+++ b/release-scripts/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.41-SNAPSHOT
+ 2.25.41
../pom.xml
release-scripts
diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml
index b25cfb23842e..3fb6dd6c1147 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.41-SNAPSHOT
+ 2.25.41
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 797dd41270c8..b8c412170f57 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.41-SNAPSHOT
+ 2.25.41
../../pom.xml
iam-policy-builder
diff --git a/services-custom/pom.xml b/services-custom/pom.xml
index 8cfb8b3ca8d7..db2f84b75f8a 100644
--- a/services-custom/pom.xml
+++ b/services-custom/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.41-SNAPSHOT
+ 2.25.41
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 b2a791cf505f..4696830aad5c 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.41-SNAPSHOT
+ 2.25.41
../../pom.xml
s3-event-notifications
diff --git a/services-custom/s3-transfer-manager/pom.xml b/services-custom/s3-transfer-manager/pom.xml
index c0cf2c301d8b..02db3f78ab8a 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.41-SNAPSHOT
+ 2.25.41
../../pom.xml
s3-transfer-manager
diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml
index 59bfab9fc464..41edba03502f 100644
--- a/services/accessanalyzer/pom.xml
+++ b/services/accessanalyzer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
accessanalyzer
AWS Java SDK :: Services :: AccessAnalyzer
diff --git a/services/account/pom.xml b/services/account/pom.xml
index 384456cb4f5b..c7e1198838f1 100644
--- a/services/account/pom.xml
+++ b/services/account/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
account
AWS Java SDK :: Services :: Account
diff --git a/services/acm/pom.xml b/services/acm/pom.xml
index 53a54c1f1b0b..1e03538b76d3 100644
--- a/services/acm/pom.xml
+++ b/services/acm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
acm
AWS Java SDK :: Services :: AWS Certificate Manager
diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml
index 8e8f5c8f7d65..aae834c3198c 100644
--- a/services/acmpca/pom.xml
+++ b/services/acmpca/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
acmpca
AWS Java SDK :: Services :: ACM PCA
diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml
index 78e9ad989121..a973c4c0d7ed 100644
--- a/services/alexaforbusiness/pom.xml
+++ b/services/alexaforbusiness/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.41-SNAPSHOT
+ 2.25.41
4.0.0
alexaforbusiness
diff --git a/services/amp/pom.xml b/services/amp/pom.xml
index 2cc7f69c30d5..ce7d2aaf0a04 100644
--- a/services/amp/pom.xml
+++ b/services/amp/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
amp
AWS Java SDK :: Services :: Amp
diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml
index fd2123b44bfe..a2e4df42242f 100644
--- a/services/amplify/pom.xml
+++ b/services/amplify/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
amplify
AWS Java SDK :: Services :: Amplify
diff --git a/services/amplifybackend/pom.xml b/services/amplifybackend/pom.xml
index 87a0a884802a..f38da376097f 100644
--- a/services/amplifybackend/pom.xml
+++ b/services/amplifybackend/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
amplifybackend
AWS Java SDK :: Services :: Amplify Backend
diff --git a/services/amplifyuibuilder/pom.xml b/services/amplifyuibuilder/pom.xml
index b43633697a6f..76b950e325f1 100644
--- a/services/amplifyuibuilder/pom.xml
+++ b/services/amplifyuibuilder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
amplifyuibuilder
AWS Java SDK :: Services :: Amplify UI Builder
diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml
index 4da6329e6309..dd59031d9c96 100644
--- a/services/apigateway/pom.xml
+++ b/services/apigateway/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
apigateway
AWS Java SDK :: Services :: Amazon API Gateway
diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml
index 771827cf4e51..cf212cfcf220 100644
--- a/services/apigatewaymanagementapi/pom.xml
+++ b/services/apigatewaymanagementapi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
apigatewaymanagementapi
AWS Java SDK :: Services :: ApiGatewayManagementApi
diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml
index f6ce6fdc22be..dfd28911cd28 100644
--- a/services/apigatewayv2/pom.xml
+++ b/services/apigatewayv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
apigatewayv2
AWS Java SDK :: Services :: ApiGatewayV2
diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml
index c5bb2fb221ee..34a10c37a39e 100644
--- a/services/appconfig/pom.xml
+++ b/services/appconfig/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
appconfig
AWS Java SDK :: Services :: AppConfig
diff --git a/services/appconfigdata/pom.xml b/services/appconfigdata/pom.xml
index 7981b5ab91b9..e1d6daeb9ede 100644
--- a/services/appconfigdata/pom.xml
+++ b/services/appconfigdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
appconfigdata
AWS Java SDK :: Services :: App Config Data
diff --git a/services/appfabric/pom.xml b/services/appfabric/pom.xml
index df097ec957aa..40bde5ce702f 100644
--- a/services/appfabric/pom.xml
+++ b/services/appfabric/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
appfabric
AWS Java SDK :: Services :: App Fabric
diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml
index 083e4e496627..d3021c674e0e 100644
--- a/services/appflow/pom.xml
+++ b/services/appflow/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
appflow
AWS Java SDK :: Services :: Appflow
diff --git a/services/appintegrations/pom.xml b/services/appintegrations/pom.xml
index 07f48f2e8f08..f2807e20a8e3 100644
--- a/services/appintegrations/pom.xml
+++ b/services/appintegrations/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
appintegrations
AWS Java SDK :: Services :: App Integrations
diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml
index 19508d66ada4..9bddba4fcc36 100644
--- a/services/applicationautoscaling/pom.xml
+++ b/services/applicationautoscaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
applicationautoscaling
AWS Java SDK :: Services :: AWS Application Auto Scaling
diff --git a/services/applicationcostprofiler/pom.xml b/services/applicationcostprofiler/pom.xml
index d27a03e5969e..3d2c8908ddb4 100644
--- a/services/applicationcostprofiler/pom.xml
+++ b/services/applicationcostprofiler/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
applicationcostprofiler
AWS Java SDK :: Services :: Application Cost Profiler
diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml
index 81326c00ff52..2d9b07b82ccb 100644
--- a/services/applicationdiscovery/pom.xml
+++ b/services/applicationdiscovery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
applicationdiscovery
AWS Java SDK :: Services :: AWS Application Discovery Service
diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml
index a806b4da3913..ad5ae74c0d7e 100644
--- a/services/applicationinsights/pom.xml
+++ b/services/applicationinsights/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
applicationinsights
AWS Java SDK :: Services :: Application Insights
diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml
index aa21e9c9389d..cd388d7faf1a 100644
--- a/services/appmesh/pom.xml
+++ b/services/appmesh/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
appmesh
AWS Java SDK :: Services :: App Mesh
diff --git a/services/apprunner/pom.xml b/services/apprunner/pom.xml
index 55768d2c176e..b9c9e2b6e337 100644
--- a/services/apprunner/pom.xml
+++ b/services/apprunner/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
apprunner
AWS Java SDK :: Services :: App Runner
diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml
index 92db5744258b..4962a21896b1 100644
--- a/services/appstream/pom.xml
+++ b/services/appstream/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
appstream
AWS Java SDK :: Services :: Amazon AppStream
diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml
index d27e3fae1ec9..4309de3b2061 100644
--- a/services/appsync/pom.xml
+++ b/services/appsync/pom.xml
@@ -21,7 +21,7 @@
services
software.amazon.awssdk
- 2.25.41-SNAPSHOT
+ 2.25.41
appsync
diff --git a/services/arczonalshift/pom.xml b/services/arczonalshift/pom.xml
index e5f11cb974fb..d393da4e7ef1 100644
--- a/services/arczonalshift/pom.xml
+++ b/services/arczonalshift/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
arczonalshift
AWS Java SDK :: Services :: ARC Zonal Shift
diff --git a/services/artifact/pom.xml b/services/artifact/pom.xml
index 5bbda53344a1..48342d574b7c 100644
--- a/services/artifact/pom.xml
+++ b/services/artifact/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
artifact
AWS Java SDK :: Services :: Artifact
diff --git a/services/athena/pom.xml b/services/athena/pom.xml
index f8ec193309b4..d643fde41047 100644
--- a/services/athena/pom.xml
+++ b/services/athena/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
athena
AWS Java SDK :: Services :: Amazon Athena
diff --git a/services/auditmanager/pom.xml b/services/auditmanager/pom.xml
index 7413af96262a..b633bc1675f4 100644
--- a/services/auditmanager/pom.xml
+++ b/services/auditmanager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
auditmanager
AWS Java SDK :: Services :: Audit Manager
diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml
index d7e6221dcdaf..7bb22cc990c8 100644
--- a/services/autoscaling/pom.xml
+++ b/services/autoscaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
autoscaling
AWS Java SDK :: Services :: Auto Scaling
diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml
index 5a8cea7643a4..fc6cbcdd1aa9 100644
--- a/services/autoscalingplans/pom.xml
+++ b/services/autoscalingplans/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
autoscalingplans
AWS Java SDK :: Services :: Auto Scaling Plans
diff --git a/services/b2bi/pom.xml b/services/b2bi/pom.xml
index 837b83253c55..9ad814b9fe3a 100644
--- a/services/b2bi/pom.xml
+++ b/services/b2bi/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
b2bi
AWS Java SDK :: Services :: B2 Bi
diff --git a/services/backup/pom.xml b/services/backup/pom.xml
index 92fab75f67e8..c59949c18846 100644
--- a/services/backup/pom.xml
+++ b/services/backup/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
backup
AWS Java SDK :: Services :: Backup
diff --git a/services/backupgateway/pom.xml b/services/backupgateway/pom.xml
index 4e952807d620..7e304c1e1984 100644
--- a/services/backupgateway/pom.xml
+++ b/services/backupgateway/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
backupgateway
AWS Java SDK :: Services :: Backup Gateway
diff --git a/services/backupstorage/pom.xml b/services/backupstorage/pom.xml
index 3eb0500ab8ac..2c950d2c552f 100644
--- a/services/backupstorage/pom.xml
+++ b/services/backupstorage/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
backupstorage
AWS Java SDK :: Services :: Backup Storage
diff --git a/services/batch/pom.xml b/services/batch/pom.xml
index 1a70b11927be..450bb0716df8 100644
--- a/services/batch/pom.xml
+++ b/services/batch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
batch
AWS Java SDK :: Services :: AWS Batch
diff --git a/services/bcmdataexports/pom.xml b/services/bcmdataexports/pom.xml
index 94184654a64c..25abb0e475b2 100644
--- a/services/bcmdataexports/pom.xml
+++ b/services/bcmdataexports/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
bcmdataexports
AWS Java SDK :: Services :: BCM Data Exports
diff --git a/services/bedrock/pom.xml b/services/bedrock/pom.xml
index b1450d7640e1..659434060c18 100644
--- a/services/bedrock/pom.xml
+++ b/services/bedrock/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
bedrock
AWS Java SDK :: Services :: Bedrock
diff --git a/services/bedrockagent/pom.xml b/services/bedrockagent/pom.xml
index 2d9a70839829..ab910e6680cf 100644
--- a/services/bedrockagent/pom.xml
+++ b/services/bedrockagent/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
bedrockagent
AWS Java SDK :: Services :: Bedrock Agent
diff --git a/services/bedrockagentruntime/pom.xml b/services/bedrockagentruntime/pom.xml
index 1879dd41c713..0636e82c71e8 100644
--- a/services/bedrockagentruntime/pom.xml
+++ b/services/bedrockagentruntime/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
bedrockagentruntime
AWS Java SDK :: Services :: Bedrock Agent Runtime
diff --git a/services/bedrockruntime/pom.xml b/services/bedrockruntime/pom.xml
index ca5fe4b0572b..32d70c075121 100644
--- a/services/bedrockruntime/pom.xml
+++ b/services/bedrockruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
bedrockruntime
AWS Java SDK :: Services :: Bedrock Runtime
diff --git a/services/billingconductor/pom.xml b/services/billingconductor/pom.xml
index 26e23d386947..dd81b3e8992e 100644
--- a/services/billingconductor/pom.xml
+++ b/services/billingconductor/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
billingconductor
AWS Java SDK :: Services :: Billingconductor
diff --git a/services/braket/pom.xml b/services/braket/pom.xml
index 55414f359dac..3f0a111e76ea 100644
--- a/services/braket/pom.xml
+++ b/services/braket/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
braket
AWS Java SDK :: Services :: Braket
diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml
index adf19bac1ed0..0b577dab535e 100644
--- a/services/budgets/pom.xml
+++ b/services/budgets/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
budgets
AWS Java SDK :: Services :: AWS Budgets
diff --git a/services/chatbot/pom.xml b/services/chatbot/pom.xml
index c70e5fde91b2..f5744e8fc981 100644
--- a/services/chatbot/pom.xml
+++ b/services/chatbot/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
chatbot
AWS Java SDK :: Services :: Chatbot
diff --git a/services/chime/pom.xml b/services/chime/pom.xml
index 9f26c6732b43..f694a2ec80fc 100644
--- a/services/chime/pom.xml
+++ b/services/chime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
chime
AWS Java SDK :: Services :: Chime
diff --git a/services/chimesdkidentity/pom.xml b/services/chimesdkidentity/pom.xml
index 7a01f6b15eae..cc9dda5c53fa 100644
--- a/services/chimesdkidentity/pom.xml
+++ b/services/chimesdkidentity/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
chimesdkidentity
AWS Java SDK :: Services :: Chime SDK Identity
diff --git a/services/chimesdkmediapipelines/pom.xml b/services/chimesdkmediapipelines/pom.xml
index f03c4be71023..c758d86cae13 100644
--- a/services/chimesdkmediapipelines/pom.xml
+++ b/services/chimesdkmediapipelines/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
chimesdkmediapipelines
AWS Java SDK :: Services :: Chime SDK Media Pipelines
diff --git a/services/chimesdkmeetings/pom.xml b/services/chimesdkmeetings/pom.xml
index e3b38018d57b..1b2caf2cfbca 100644
--- a/services/chimesdkmeetings/pom.xml
+++ b/services/chimesdkmeetings/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
chimesdkmeetings
AWS Java SDK :: Services :: Chime SDK Meetings
diff --git a/services/chimesdkmessaging/pom.xml b/services/chimesdkmessaging/pom.xml
index c01b99678695..a6510b43c979 100644
--- a/services/chimesdkmessaging/pom.xml
+++ b/services/chimesdkmessaging/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
chimesdkmessaging
AWS Java SDK :: Services :: Chime SDK Messaging
diff --git a/services/chimesdkvoice/pom.xml b/services/chimesdkvoice/pom.xml
index ace8c98c8d0e..1695716aa988 100644
--- a/services/chimesdkvoice/pom.xml
+++ b/services/chimesdkvoice/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
chimesdkvoice
AWS Java SDK :: Services :: Chime SDK Voice
diff --git a/services/cleanrooms/pom.xml b/services/cleanrooms/pom.xml
index 1f8188a2b31f..47b5cdf97a70 100644
--- a/services/cleanrooms/pom.xml
+++ b/services/cleanrooms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
cleanrooms
AWS Java SDK :: Services :: Clean Rooms
diff --git a/services/cleanroomsml/pom.xml b/services/cleanroomsml/pom.xml
index 931905c97ba6..ee1d1c0e5e65 100644
--- a/services/cleanroomsml/pom.xml
+++ b/services/cleanroomsml/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
cleanroomsml
AWS Java SDK :: Services :: Clean Rooms ML
diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml
index 81a656a6ff4f..36c9568d8145 100644
--- a/services/cloud9/pom.xml
+++ b/services/cloud9/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.41-SNAPSHOT
+ 2.25.41
4.0.0
cloud9
diff --git a/services/cloudcontrol/pom.xml b/services/cloudcontrol/pom.xml
index 32eb9c4e16a5..ab1fe9981145 100644
--- a/services/cloudcontrol/pom.xml
+++ b/services/cloudcontrol/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
cloudcontrol
AWS Java SDK :: Services :: Cloud Control
diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml
index 73fdb73760b1..926e1c4c8371 100644
--- a/services/clouddirectory/pom.xml
+++ b/services/clouddirectory/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
clouddirectory
AWS Java SDK :: Services :: Amazon CloudDirectory
diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml
index aa5a92acfd37..db4d5933901d 100644
--- a/services/cloudformation/pom.xml
+++ b/services/cloudformation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
cloudformation
AWS Java SDK :: Services :: AWS CloudFormation
diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml
index 835b608d94c5..bc745ce35f5d 100644
--- a/services/cloudfront/pom.xml
+++ b/services/cloudfront/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
cloudfront
AWS Java SDK :: Services :: Amazon CloudFront
diff --git a/services/cloudfrontkeyvaluestore/pom.xml b/services/cloudfrontkeyvaluestore/pom.xml
index a363a72b8aa5..0be9d90f5df5 100644
--- a/services/cloudfrontkeyvaluestore/pom.xml
+++ b/services/cloudfrontkeyvaluestore/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
cloudfrontkeyvaluestore
AWS Java SDK :: Services :: Cloud Front Key Value Store
diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml
index 52eb07497ac2..a53c8f639c1f 100644
--- a/services/cloudhsm/pom.xml
+++ b/services/cloudhsm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
cloudhsm
AWS Java SDK :: Services :: AWS CloudHSM
diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml
index 7b1aafe01710..2e992e29b0ce 100644
--- a/services/cloudhsmv2/pom.xml
+++ b/services/cloudhsmv2/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.41-SNAPSHOT
+ 2.25.41
4.0.0
cloudhsmv2
diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml
index 0ad5a912439b..29ec3d4cafd9 100644
--- a/services/cloudsearch/pom.xml
+++ b/services/cloudsearch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
cloudsearch
AWS Java SDK :: Services :: Amazon CloudSearch
diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml
index c683c4e64868..d54ca08d4908 100644
--- a/services/cloudsearchdomain/pom.xml
+++ b/services/cloudsearchdomain/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
cloudsearchdomain
AWS Java SDK :: Services :: Amazon CloudSearch Domain
diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml
index c8f01ce486b6..c730b9d72aa1 100644
--- a/services/cloudtrail/pom.xml
+++ b/services/cloudtrail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
cloudtrail
AWS Java SDK :: Services :: AWS CloudTrail
diff --git a/services/cloudtraildata/pom.xml b/services/cloudtraildata/pom.xml
index 091650666e78..d31ad113a8de 100644
--- a/services/cloudtraildata/pom.xml
+++ b/services/cloudtraildata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
cloudtraildata
AWS Java SDK :: Services :: Cloud Trail Data
diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml
index a8dca9dd35e1..7cf13ffe880f 100644
--- a/services/cloudwatch/pom.xml
+++ b/services/cloudwatch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
cloudwatch
AWS Java SDK :: Services :: Amazon CloudWatch
diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml
index 0e22138693ca..68b2a7963874 100644
--- a/services/cloudwatchevents/pom.xml
+++ b/services/cloudwatchevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
cloudwatchevents
AWS Java SDK :: Services :: Amazon CloudWatch Events
diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml
index 7a01b6a594e7..6522a8e576e3 100644
--- a/services/cloudwatchlogs/pom.xml
+++ b/services/cloudwatchlogs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
cloudwatchlogs
AWS Java SDK :: Services :: Amazon CloudWatch Logs
diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml
index 3831de21f88a..5054111b6b01 100644
--- a/services/codeartifact/pom.xml
+++ b/services/codeartifact/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
codeartifact
AWS Java SDK :: Services :: Codeartifact
diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml
index 4c06c779581d..7ca6c316b4da 100644
--- a/services/codebuild/pom.xml
+++ b/services/codebuild/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
codebuild
AWS Java SDK :: Services :: AWS Code Build
diff --git a/services/codecatalyst/pom.xml b/services/codecatalyst/pom.xml
index 15f107ae616e..589104a24061 100644
--- a/services/codecatalyst/pom.xml
+++ b/services/codecatalyst/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
codecatalyst
AWS Java SDK :: Services :: Code Catalyst
diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml
index 0bfd12171c7e..668e2b5500a9 100644
--- a/services/codecommit/pom.xml
+++ b/services/codecommit/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
codecommit
AWS Java SDK :: Services :: AWS CodeCommit
diff --git a/services/codeconnections/pom.xml b/services/codeconnections/pom.xml
index 62a53a90dfca..ebe8af63895e 100644
--- a/services/codeconnections/pom.xml
+++ b/services/codeconnections/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
codeconnections
AWS Java SDK :: Services :: Code Connections
diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml
index 076b1c427ff5..aacd0020a6d3 100644
--- a/services/codedeploy/pom.xml
+++ b/services/codedeploy/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
codedeploy
AWS Java SDK :: Services :: AWS CodeDeploy
diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml
index 44dd1fa0ccb0..239e547b1d74 100644
--- a/services/codeguruprofiler/pom.xml
+++ b/services/codeguruprofiler/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
codeguruprofiler
AWS Java SDK :: Services :: CodeGuruProfiler
diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml
index 24244309d041..6a3f8524bcc4 100644
--- a/services/codegurureviewer/pom.xml
+++ b/services/codegurureviewer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
codegurureviewer
AWS Java SDK :: Services :: CodeGuru Reviewer
diff --git a/services/codegurusecurity/pom.xml b/services/codegurusecurity/pom.xml
index 4c92770e9701..2923b1491689 100644
--- a/services/codegurusecurity/pom.xml
+++ b/services/codegurusecurity/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
codegurusecurity
AWS Java SDK :: Services :: Code Guru Security
diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml
index 92bf8bf87654..e5ab479c7116 100644
--- a/services/codepipeline/pom.xml
+++ b/services/codepipeline/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
codepipeline
AWS Java SDK :: Services :: AWS CodePipeline
diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml
index 729669b4f806..8644c8895ea4 100644
--- a/services/codestar/pom.xml
+++ b/services/codestar/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
codestar
AWS Java SDK :: Services :: AWS CodeStar
diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml
index 68827f0857bd..69225c506f29 100644
--- a/services/codestarconnections/pom.xml
+++ b/services/codestarconnections/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
codestarconnections
AWS Java SDK :: Services :: CodeStar connections
diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml
index 44d3d2437130..4ac76f441831 100644
--- a/services/codestarnotifications/pom.xml
+++ b/services/codestarnotifications/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
codestarnotifications
AWS Java SDK :: Services :: Codestar Notifications
diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml
index e4462d7c3ea3..e3c56cbfaed0 100644
--- a/services/cognitoidentity/pom.xml
+++ b/services/cognitoidentity/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
cognitoidentity
AWS Java SDK :: Services :: Amazon Cognito Identity
diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml
index bc346654e456..1a4c40364541 100644
--- a/services/cognitoidentityprovider/pom.xml
+++ b/services/cognitoidentityprovider/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
cognitoidentityprovider
AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service
diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml
index a5717adfb442..db56daccae0a 100644
--- a/services/cognitosync/pom.xml
+++ b/services/cognitosync/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
cognitosync
AWS Java SDK :: Services :: Amazon Cognito Sync
diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml
index 230735421201..0b0c2c3d39de 100644
--- a/services/comprehend/pom.xml
+++ b/services/comprehend/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.41-SNAPSHOT
+ 2.25.41
4.0.0
comprehend
diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml
index e17ce427729b..8a6d0f0dec91 100644
--- a/services/comprehendmedical/pom.xml
+++ b/services/comprehendmedical/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
comprehendmedical
AWS Java SDK :: Services :: ComprehendMedical
diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml
index 5dd228cf4df4..dd166f54f4f3 100644
--- a/services/computeoptimizer/pom.xml
+++ b/services/computeoptimizer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
computeoptimizer
AWS Java SDK :: Services :: Compute Optimizer
diff --git a/services/config/pom.xml b/services/config/pom.xml
index 070059b8825c..26149913448e 100644
--- a/services/config/pom.xml
+++ b/services/config/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
config
AWS Java SDK :: Services :: AWS Config
diff --git a/services/connect/pom.xml b/services/connect/pom.xml
index 21022e36b9be..e83c2cabdc4c 100644
--- a/services/connect/pom.xml
+++ b/services/connect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
connect
AWS Java SDK :: Services :: Connect
diff --git a/services/connectcampaigns/pom.xml b/services/connectcampaigns/pom.xml
index d4865ee0597f..b179da40514e 100644
--- a/services/connectcampaigns/pom.xml
+++ b/services/connectcampaigns/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
connectcampaigns
AWS Java SDK :: Services :: Connect Campaigns
diff --git a/services/connectcases/pom.xml b/services/connectcases/pom.xml
index 77251bdcdc6c..f9cbf30bd7ef 100644
--- a/services/connectcases/pom.xml
+++ b/services/connectcases/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
connectcases
AWS Java SDK :: Services :: Connect Cases
diff --git a/services/connectcontactlens/pom.xml b/services/connectcontactlens/pom.xml
index 8bd64dadf2f8..3a9aeaff6990 100644
--- a/services/connectcontactlens/pom.xml
+++ b/services/connectcontactlens/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
connectcontactlens
AWS Java SDK :: Services :: Connect Contact Lens
diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml
index 9fb83e15aa58..67b5365fd123 100644
--- a/services/connectparticipant/pom.xml
+++ b/services/connectparticipant/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
connectparticipant
AWS Java SDK :: Services :: ConnectParticipant
diff --git a/services/controlcatalog/pom.xml b/services/controlcatalog/pom.xml
index a052ca95d9b8..93991c6867a8 100644
--- a/services/controlcatalog/pom.xml
+++ b/services/controlcatalog/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
controlcatalog
AWS Java SDK :: Services :: Control Catalog
diff --git a/services/controltower/pom.xml b/services/controltower/pom.xml
index 073817739188..9dfbf518ace2 100644
--- a/services/controltower/pom.xml
+++ b/services/controltower/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
controltower
AWS Java SDK :: Services :: Control Tower
diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml
index 0dbf05ba472d..f2c0db82bb60 100644
--- a/services/costandusagereport/pom.xml
+++ b/services/costandusagereport/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
costandusagereport
AWS Java SDK :: Services :: AWS Cost and Usage Report
diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml
index 20bfb0835d66..b89ec8581e72 100644
--- a/services/costexplorer/pom.xml
+++ b/services/costexplorer/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.41-SNAPSHOT
+ 2.25.41
4.0.0
costexplorer
diff --git a/services/costoptimizationhub/pom.xml b/services/costoptimizationhub/pom.xml
index 332af7638d0b..3dca3ca4ecdf 100644
--- a/services/costoptimizationhub/pom.xml
+++ b/services/costoptimizationhub/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
costoptimizationhub
AWS Java SDK :: Services :: Cost Optimization Hub
diff --git a/services/customerprofiles/pom.xml b/services/customerprofiles/pom.xml
index 98263adbcf0e..4cb4a83723ca 100644
--- a/services/customerprofiles/pom.xml
+++ b/services/customerprofiles/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
customerprofiles
AWS Java SDK :: Services :: Customer Profiles
diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml
index 5f835d1fd9b2..6b12994ad3eb 100644
--- a/services/databasemigration/pom.xml
+++ b/services/databasemigration/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
databasemigration
AWS Java SDK :: Services :: AWS Database Migration Service
diff --git a/services/databrew/pom.xml b/services/databrew/pom.xml
index 9c5c580ee346..03295e0bda0b 100644
--- a/services/databrew/pom.xml
+++ b/services/databrew/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
databrew
AWS Java SDK :: Services :: Data Brew
diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml
index d944e0566ab3..0765594945b7 100644
--- a/services/dataexchange/pom.xml
+++ b/services/dataexchange/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
dataexchange
AWS Java SDK :: Services :: DataExchange
diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml
index 95dbdcc3f966..34495269e88b 100644
--- a/services/datapipeline/pom.xml
+++ b/services/datapipeline/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
datapipeline
AWS Java SDK :: Services :: AWS Data Pipeline
diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml
index 8419720cf7b5..8d9431b12402 100644
--- a/services/datasync/pom.xml
+++ b/services/datasync/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
datasync
AWS Java SDK :: Services :: DataSync
diff --git a/services/datazone/pom.xml b/services/datazone/pom.xml
index 04d873537204..9d2554b79b78 100644
--- a/services/datazone/pom.xml
+++ b/services/datazone/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
datazone
AWS Java SDK :: Services :: Data Zone
diff --git a/services/dax/pom.xml b/services/dax/pom.xml
index b9739671908f..d8a45b653312 100644
--- a/services/dax/pom.xml
+++ b/services/dax/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
dax
AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX)
diff --git a/services/deadline/pom.xml b/services/deadline/pom.xml
index e9db5db6a62a..c0db161f6dd9 100644
--- a/services/deadline/pom.xml
+++ b/services/deadline/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
deadline
AWS Java SDK :: Services :: Deadline
diff --git a/services/detective/pom.xml b/services/detective/pom.xml
index 483de66cf3f9..9eccd9d08d59 100644
--- a/services/detective/pom.xml
+++ b/services/detective/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
detective
AWS Java SDK :: Services :: Detective
diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml
index 82e05feb5fe5..bed28ddb6c3e 100644
--- a/services/devicefarm/pom.xml
+++ b/services/devicefarm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
devicefarm
AWS Java SDK :: Services :: AWS Device Farm
diff --git a/services/devopsguru/pom.xml b/services/devopsguru/pom.xml
index 4cfb63e80abe..80ff99705086 100644
--- a/services/devopsguru/pom.xml
+++ b/services/devopsguru/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
devopsguru
AWS Java SDK :: Services :: Dev Ops Guru
diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml
index b5b66a13baef..cb7bdf39279b 100644
--- a/services/directconnect/pom.xml
+++ b/services/directconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
directconnect
AWS Java SDK :: Services :: AWS Direct Connect
diff --git a/services/directory/pom.xml b/services/directory/pom.xml
index 3d92d4943241..c3b87518c7d2 100644
--- a/services/directory/pom.xml
+++ b/services/directory/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
directory
AWS Java SDK :: Services :: AWS Directory Service
diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml
index bd29433e86cc..1184656ad948 100644
--- a/services/dlm/pom.xml
+++ b/services/dlm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
dlm
AWS Java SDK :: Services :: DLM
diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml
index 6eae7422d796..e70a5cd40ec0 100644
--- a/services/docdb/pom.xml
+++ b/services/docdb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
docdb
AWS Java SDK :: Services :: DocDB
diff --git a/services/docdbelastic/pom.xml b/services/docdbelastic/pom.xml
index 7234093dd9ed..fd6164a5d447 100644
--- a/services/docdbelastic/pom.xml
+++ b/services/docdbelastic/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
docdbelastic
AWS Java SDK :: Services :: Doc DB Elastic
diff --git a/services/drs/pom.xml b/services/drs/pom.xml
index 5a58749ddc4e..337439f2c86d 100644
--- a/services/drs/pom.xml
+++ b/services/drs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
drs
AWS Java SDK :: Services :: Drs
diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml
index 9a02524c69c0..8673312c794c 100644
--- a/services/dynamodb/pom.xml
+++ b/services/dynamodb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
dynamodb
AWS Java SDK :: Services :: Amazon DynamoDB
diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml
index 35f496e237cd..b5069da2208c 100644
--- a/services/ebs/pom.xml
+++ b/services/ebs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
ebs
AWS Java SDK :: Services :: EBS
diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml
index 7b025be21cd3..fe04b907342e 100644
--- a/services/ec2/pom.xml
+++ b/services/ec2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
ec2
AWS Java SDK :: Services :: Amazon EC2
diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml
index 146ee0d4df0d..ec539bf0db84 100644
--- a/services/ec2instanceconnect/pom.xml
+++ b/services/ec2instanceconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
ec2instanceconnect
AWS Java SDK :: Services :: EC2 Instance Connect
diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml
index 5d7d7f14067a..8afccf7998f3 100644
--- a/services/ecr/pom.xml
+++ b/services/ecr/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
ecr
AWS Java SDK :: Services :: Amazon EC2 Container Registry
diff --git a/services/ecrpublic/pom.xml b/services/ecrpublic/pom.xml
index eaa0fb1d6f6e..364469a2dd2b 100644
--- a/services/ecrpublic/pom.xml
+++ b/services/ecrpublic/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
ecrpublic
AWS Java SDK :: Services :: ECR PUBLIC
diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml
index 250242cb6362..736364cfc01a 100644
--- a/services/ecs/pom.xml
+++ b/services/ecs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
ecs
AWS Java SDK :: Services :: Amazon EC2 Container Service
diff --git a/services/efs/pom.xml b/services/efs/pom.xml
index a6422ee6764c..5bbe2999e4d2 100644
--- a/services/efs/pom.xml
+++ b/services/efs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
efs
AWS Java SDK :: Services :: Amazon Elastic File System
diff --git a/services/eks/pom.xml b/services/eks/pom.xml
index 2c219a9be251..f62386f838e1 100644
--- a/services/eks/pom.xml
+++ b/services/eks/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
eks
AWS Java SDK :: Services :: EKS
diff --git a/services/eksauth/pom.xml b/services/eksauth/pom.xml
index f99dd1b1e452..89db4e37bf53 100644
--- a/services/eksauth/pom.xml
+++ b/services/eksauth/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
eksauth
AWS Java SDK :: Services :: EKS Auth
diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml
index d2c303cbe638..7416c9c8a270 100644
--- a/services/elasticache/pom.xml
+++ b/services/elasticache/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
elasticache
AWS Java SDK :: Services :: Amazon ElastiCache
diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml
index 39b4d9e8b8ac..d8976bc75bee 100644
--- a/services/elasticbeanstalk/pom.xml
+++ b/services/elasticbeanstalk/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
elasticbeanstalk
AWS Java SDK :: Services :: AWS Elastic Beanstalk
diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml
index 2ff8e64249bd..100fb67e7a2e 100644
--- a/services/elasticinference/pom.xml
+++ b/services/elasticinference/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
elasticinference
AWS Java SDK :: Services :: Elastic Inference
diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml
index 680276cb10df..b81dd80ea4ac 100644
--- a/services/elasticloadbalancing/pom.xml
+++ b/services/elasticloadbalancing/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
elasticloadbalancing
AWS Java SDK :: Services :: Elastic Load Balancing
diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml
index f2e31214e177..cb36ce9207e3 100644
--- a/services/elasticloadbalancingv2/pom.xml
+++ b/services/elasticloadbalancingv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
elasticloadbalancingv2
AWS Java SDK :: Services :: Elastic Load Balancing V2
diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml
index cb87ef85055c..d439013c48d9 100644
--- a/services/elasticsearch/pom.xml
+++ b/services/elasticsearch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
elasticsearch
AWS Java SDK :: Services :: Amazon Elasticsearch Service
diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml
index 2e0f4dc8849a..76c7f5da7720 100644
--- a/services/elastictranscoder/pom.xml
+++ b/services/elastictranscoder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
elastictranscoder
AWS Java SDK :: Services :: Amazon Elastic Transcoder
diff --git a/services/emr/pom.xml b/services/emr/pom.xml
index 5e6de304d17c..68e2d1da1249 100644
--- a/services/emr/pom.xml
+++ b/services/emr/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
emr
AWS Java SDK :: Services :: Amazon EMR
diff --git a/services/emrcontainers/pom.xml b/services/emrcontainers/pom.xml
index 4bef532cfed8..ed04393082af 100644
--- a/services/emrcontainers/pom.xml
+++ b/services/emrcontainers/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
emrcontainers
AWS Java SDK :: Services :: EMR Containers
diff --git a/services/emrserverless/pom.xml b/services/emrserverless/pom.xml
index 362ff0b28790..e329c252f217 100644
--- a/services/emrserverless/pom.xml
+++ b/services/emrserverless/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
emrserverless
AWS Java SDK :: Services :: EMR Serverless
diff --git a/services/entityresolution/pom.xml b/services/entityresolution/pom.xml
index 93fc09de06b7..acebc493f922 100644
--- a/services/entityresolution/pom.xml
+++ b/services/entityresolution/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
entityresolution
AWS Java SDK :: Services :: Entity Resolution
diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml
index 8e219fce0ced..d747136eacf7 100644
--- a/services/eventbridge/pom.xml
+++ b/services/eventbridge/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
eventbridge
AWS Java SDK :: Services :: EventBridge
diff --git a/services/evidently/pom.xml b/services/evidently/pom.xml
index 80820bef5da8..a5e79db7020b 100644
--- a/services/evidently/pom.xml
+++ b/services/evidently/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
evidently
AWS Java SDK :: Services :: Evidently
diff --git a/services/finspace/pom.xml b/services/finspace/pom.xml
index eb882cf8b2b4..c48a50b1c909 100644
--- a/services/finspace/pom.xml
+++ b/services/finspace/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
finspace
AWS Java SDK :: Services :: Finspace
diff --git a/services/finspacedata/pom.xml b/services/finspacedata/pom.xml
index 9c06dfba95aa..c3e549377a16 100644
--- a/services/finspacedata/pom.xml
+++ b/services/finspacedata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
finspacedata
AWS Java SDK :: Services :: Finspace Data
diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml
index c8cda00b748d..b7a3e70fb3a8 100644
--- a/services/firehose/pom.xml
+++ b/services/firehose/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
firehose
AWS Java SDK :: Services :: Amazon Kinesis Firehose
diff --git a/services/fis/pom.xml b/services/fis/pom.xml
index facdbfae97b0..e76efc968689 100644
--- a/services/fis/pom.xml
+++ b/services/fis/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
fis
AWS Java SDK :: Services :: Fis
diff --git a/services/fms/pom.xml b/services/fms/pom.xml
index 2987b18b157d..67d7e60c13b9 100644
--- a/services/fms/pom.xml
+++ b/services/fms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
fms
AWS Java SDK :: Services :: FMS
diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml
index 1606ac4d7134..3ab46957c518 100644
--- a/services/forecast/pom.xml
+++ b/services/forecast/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
forecast
AWS Java SDK :: Services :: Forecast
diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml
index 6b1f4c6c3a7d..f0153b03b1c6 100644
--- a/services/forecastquery/pom.xml
+++ b/services/forecastquery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
forecastquery
AWS Java SDK :: Services :: Forecastquery
diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml
index 3536591d7184..5a58cd8cd230 100644
--- a/services/frauddetector/pom.xml
+++ b/services/frauddetector/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
frauddetector
AWS Java SDK :: Services :: FraudDetector
diff --git a/services/freetier/pom.xml b/services/freetier/pom.xml
index 78ec6c2509c7..8a6a44737b6f 100644
--- a/services/freetier/pom.xml
+++ b/services/freetier/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
freetier
AWS Java SDK :: Services :: Free Tier
diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml
index 2452454bfeeb..3c958b2e91d3 100644
--- a/services/fsx/pom.xml
+++ b/services/fsx/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
fsx
AWS Java SDK :: Services :: FSx
diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml
index 6cccc6b78272..70d6d2788ef8 100644
--- a/services/gamelift/pom.xml
+++ b/services/gamelift/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
gamelift
AWS Java SDK :: Services :: AWS GameLift
diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml
index 6b25fda2b1e1..a28343623298 100644
--- a/services/glacier/pom.xml
+++ b/services/glacier/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
glacier
AWS Java SDK :: Services :: Amazon Glacier
diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml
index 03270ca74583..6c244f040230 100644
--- a/services/globalaccelerator/pom.xml
+++ b/services/globalaccelerator/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
globalaccelerator
AWS Java SDK :: Services :: Global Accelerator
diff --git a/services/glue/pom.xml b/services/glue/pom.xml
index 9606db3c15b1..4ce18225d6b8 100644
--- a/services/glue/pom.xml
+++ b/services/glue/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.41-SNAPSHOT
+ 2.25.41
4.0.0
glue
diff --git a/services/grafana/pom.xml b/services/grafana/pom.xml
index 5e6ad2b58806..ec4b38d9799d 100644
--- a/services/grafana/pom.xml
+++ b/services/grafana/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
grafana
AWS Java SDK :: Services :: Grafana
diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml
index a80f558f813a..46daef3f295e 100644
--- a/services/greengrass/pom.xml
+++ b/services/greengrass/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
greengrass
AWS Java SDK :: Services :: AWS Greengrass
diff --git a/services/greengrassv2/pom.xml b/services/greengrassv2/pom.xml
index 4fa98d19ea1a..9c8a3c76600e 100644
--- a/services/greengrassv2/pom.xml
+++ b/services/greengrassv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
greengrassv2
AWS Java SDK :: Services :: Greengrass V2
diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml
index 895eb383ef2d..b005b4bc13ba 100644
--- a/services/groundstation/pom.xml
+++ b/services/groundstation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
groundstation
AWS Java SDK :: Services :: GroundStation
diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml
index 19cb2fd46775..5f06b0259786 100644
--- a/services/guardduty/pom.xml
+++ b/services/guardduty/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.41-SNAPSHOT
+ 2.25.41
4.0.0
guardduty
diff --git a/services/health/pom.xml b/services/health/pom.xml
index 0a02cb8bd66d..bc1ed813de67 100644
--- a/services/health/pom.xml
+++ b/services/health/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
health
AWS Java SDK :: Services :: AWS Health APIs and Notifications
diff --git a/services/healthlake/pom.xml b/services/healthlake/pom.xml
index 06a552ed9501..0320851a825d 100644
--- a/services/healthlake/pom.xml
+++ b/services/healthlake/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
healthlake
AWS Java SDK :: Services :: Health Lake
diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml
index 4e323415bca3..71fd5f9567cd 100644
--- a/services/honeycode/pom.xml
+++ b/services/honeycode/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
honeycode
AWS Java SDK :: Services :: Honeycode
diff --git a/services/iam/pom.xml b/services/iam/pom.xml
index 69ae101198f5..57b9a2c909c1 100644
--- a/services/iam/pom.xml
+++ b/services/iam/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
iam
AWS Java SDK :: Services :: AWS IAM
diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml
index ee86cf890d32..f50a5c3238ca 100644
--- a/services/identitystore/pom.xml
+++ b/services/identitystore/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
identitystore
AWS Java SDK :: Services :: Identitystore
diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml
index aeef2f6d1d39..fd8bf8dfa769 100644
--- a/services/imagebuilder/pom.xml
+++ b/services/imagebuilder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
imagebuilder
AWS Java SDK :: Services :: Imagebuilder
diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml
index 9cd0f70a96a2..64c0b45370ae 100644
--- a/services/inspector/pom.xml
+++ b/services/inspector/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
inspector
AWS Java SDK :: Services :: Amazon Inspector Service
diff --git a/services/inspector2/pom.xml b/services/inspector2/pom.xml
index 0c02171593ca..f158274ecac2 100644
--- a/services/inspector2/pom.xml
+++ b/services/inspector2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
inspector2
AWS Java SDK :: Services :: Inspector2
diff --git a/services/inspectorscan/pom.xml b/services/inspectorscan/pom.xml
index f0da325bc7ec..184965de0fa0 100644
--- a/services/inspectorscan/pom.xml
+++ b/services/inspectorscan/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
inspectorscan
AWS Java SDK :: Services :: Inspector Scan
diff --git a/services/internetmonitor/pom.xml b/services/internetmonitor/pom.xml
index 8ea37f4540f7..1d5bee2295af 100644
--- a/services/internetmonitor/pom.xml
+++ b/services/internetmonitor/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
internetmonitor
AWS Java SDK :: Services :: Internet Monitor
diff --git a/services/iot/pom.xml b/services/iot/pom.xml
index 3db8b7f7d55b..b4d93c79739a 100644
--- a/services/iot/pom.xml
+++ b/services/iot/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
iot
AWS Java SDK :: Services :: AWS IoT
diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml
index cd5f212fd6bf..ed1484638267 100644
--- a/services/iot1clickdevices/pom.xml
+++ b/services/iot1clickdevices/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
iot1clickdevices
AWS Java SDK :: Services :: IoT 1Click Devices Service
diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml
index b509a03faa77..3abb9ac555c0 100644
--- a/services/iot1clickprojects/pom.xml
+++ b/services/iot1clickprojects/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
iot1clickprojects
AWS Java SDK :: Services :: IoT 1Click Projects
diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml
index b23d74c36fb6..dab415b54a9b 100644
--- a/services/iotanalytics/pom.xml
+++ b/services/iotanalytics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
iotanalytics
AWS Java SDK :: Services :: IoTAnalytics
diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml
index cd959c2152dc..9196962062c0 100644
--- a/services/iotdataplane/pom.xml
+++ b/services/iotdataplane/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
iotdataplane
AWS Java SDK :: Services :: AWS IoT Data Plane
diff --git a/services/iotdeviceadvisor/pom.xml b/services/iotdeviceadvisor/pom.xml
index 5af417c69859..c1e8e68af706 100644
--- a/services/iotdeviceadvisor/pom.xml
+++ b/services/iotdeviceadvisor/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
iotdeviceadvisor
AWS Java SDK :: Services :: Iot Device Advisor
diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml
index 24deabe137c1..627189c4d0da 100644
--- a/services/iotevents/pom.xml
+++ b/services/iotevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
iotevents
AWS Java SDK :: Services :: IoT Events
diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml
index c7a4d969a935..55f14bd69567 100644
--- a/services/ioteventsdata/pom.xml
+++ b/services/ioteventsdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
ioteventsdata
AWS Java SDK :: Services :: IoT Events Data
diff --git a/services/iotfleethub/pom.xml b/services/iotfleethub/pom.xml
index e1409db8b0e5..ffec27a979d5 100644
--- a/services/iotfleethub/pom.xml
+++ b/services/iotfleethub/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
iotfleethub
AWS Java SDK :: Services :: Io T Fleet Hub
diff --git a/services/iotfleetwise/pom.xml b/services/iotfleetwise/pom.xml
index ef17f42f8bc3..e1aa71d981d9 100644
--- a/services/iotfleetwise/pom.xml
+++ b/services/iotfleetwise/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
iotfleetwise
AWS Java SDK :: Services :: Io T Fleet Wise
diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml
index d9a9506e4d5b..2e66823f9866 100644
--- a/services/iotjobsdataplane/pom.xml
+++ b/services/iotjobsdataplane/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
iotjobsdataplane
AWS Java SDK :: Services :: IoT Jobs Data Plane
diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml
index 560f93b00e13..ef026d1d3c71 100644
--- a/services/iotsecuretunneling/pom.xml
+++ b/services/iotsecuretunneling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
iotsecuretunneling
AWS Java SDK :: Services :: IoTSecureTunneling
diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml
index ec3d63f4308c..a4aea0d469da 100644
--- a/services/iotsitewise/pom.xml
+++ b/services/iotsitewise/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
iotsitewise
AWS Java SDK :: Services :: Io T Site Wise
diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml
index 29abc3d7cdfa..b15ea51e366c 100644
--- a/services/iotthingsgraph/pom.xml
+++ b/services/iotthingsgraph/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
iotthingsgraph
AWS Java SDK :: Services :: IoTThingsGraph
diff --git a/services/iottwinmaker/pom.xml b/services/iottwinmaker/pom.xml
index 0ec1a75eee1b..6af080cf6621 100644
--- a/services/iottwinmaker/pom.xml
+++ b/services/iottwinmaker/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
iottwinmaker
AWS Java SDK :: Services :: Io T Twin Maker
diff --git a/services/iotwireless/pom.xml b/services/iotwireless/pom.xml
index e06ec17a3f38..a9f88e924aaf 100644
--- a/services/iotwireless/pom.xml
+++ b/services/iotwireless/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
iotwireless
AWS Java SDK :: Services :: IoT Wireless
diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml
index 6c72d136eaa5..5e50ee81db8c 100644
--- a/services/ivs/pom.xml
+++ b/services/ivs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
ivs
AWS Java SDK :: Services :: Ivs
diff --git a/services/ivschat/pom.xml b/services/ivschat/pom.xml
index ee0541547a19..80bc45e67fc7 100644
--- a/services/ivschat/pom.xml
+++ b/services/ivschat/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
ivschat
AWS Java SDK :: Services :: Ivschat
diff --git a/services/ivsrealtime/pom.xml b/services/ivsrealtime/pom.xml
index 9b812b320128..fa8edd35b328 100644
--- a/services/ivsrealtime/pom.xml
+++ b/services/ivsrealtime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
ivsrealtime
AWS Java SDK :: Services :: IVS Real Time
diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml
index 02dd599bc0ab..0096d2703ebf 100644
--- a/services/kafka/pom.xml
+++ b/services/kafka/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
kafka
AWS Java SDK :: Services :: Kafka
diff --git a/services/kafkaconnect/pom.xml b/services/kafkaconnect/pom.xml
index b377c0f268ce..0d3c9b58d619 100644
--- a/services/kafkaconnect/pom.xml
+++ b/services/kafkaconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
kafkaconnect
AWS Java SDK :: Services :: Kafka Connect
diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml
index 965b6430218c..b2a3d48033f3 100644
--- a/services/kendra/pom.xml
+++ b/services/kendra/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
kendra
AWS Java SDK :: Services :: Kendra
diff --git a/services/kendraranking/pom.xml b/services/kendraranking/pom.xml
index 708b3439cf0b..cd042a1bcfce 100644
--- a/services/kendraranking/pom.xml
+++ b/services/kendraranking/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
kendraranking
AWS Java SDK :: Services :: Kendra Ranking
diff --git a/services/keyspaces/pom.xml b/services/keyspaces/pom.xml
index dd0b279b3fdd..b88f8cb48f50 100644
--- a/services/keyspaces/pom.xml
+++ b/services/keyspaces/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
keyspaces
AWS Java SDK :: Services :: Keyspaces
diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml
index 1c7648606083..8b0b05819ece 100644
--- a/services/kinesis/pom.xml
+++ b/services/kinesis/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
kinesis
AWS Java SDK :: Services :: Amazon Kinesis
diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml
index dfd59d0f03df..227f340d19f1 100644
--- a/services/kinesisanalytics/pom.xml
+++ b/services/kinesisanalytics/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
kinesisanalytics
AWS Java SDK :: Services :: Amazon Kinesis Analytics
diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml
index b8a2bc26f26a..5dcd50607773 100644
--- a/services/kinesisanalyticsv2/pom.xml
+++ b/services/kinesisanalyticsv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
kinesisanalyticsv2
AWS Java SDK :: Services :: Kinesis Analytics V2
diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml
index 9cca4a38b9a7..d86eb821a8f3 100644
--- a/services/kinesisvideo/pom.xml
+++ b/services/kinesisvideo/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.41-SNAPSHOT
+ 2.25.41
4.0.0
kinesisvideo
diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml
index 3bdc8d1d52c0..5d6a436a32da 100644
--- a/services/kinesisvideoarchivedmedia/pom.xml
+++ b/services/kinesisvideoarchivedmedia/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
kinesisvideoarchivedmedia
AWS Java SDK :: Services :: Kinesis Video Archived Media
diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml
index 0e360e8d6ca1..53085af176d6 100644
--- a/services/kinesisvideomedia/pom.xml
+++ b/services/kinesisvideomedia/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
kinesisvideomedia
AWS Java SDK :: Services :: Kinesis Video Media
diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml
index ca765087ab83..cce01cebc620 100644
--- a/services/kinesisvideosignaling/pom.xml
+++ b/services/kinesisvideosignaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
kinesisvideosignaling
AWS Java SDK :: Services :: Kinesis Video Signaling
diff --git a/services/kinesisvideowebrtcstorage/pom.xml b/services/kinesisvideowebrtcstorage/pom.xml
index e3c09bc9f301..e4aa3615c076 100644
--- a/services/kinesisvideowebrtcstorage/pom.xml
+++ b/services/kinesisvideowebrtcstorage/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
kinesisvideowebrtcstorage
AWS Java SDK :: Services :: Kinesis Video Web RTC Storage
diff --git a/services/kms/pom.xml b/services/kms/pom.xml
index 9952078aed0f..5d810a864156 100644
--- a/services/kms/pom.xml
+++ b/services/kms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
kms
AWS Java SDK :: Services :: AWS KMS
diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml
index 9a20ff820b4d..0c3f2cc413e0 100644
--- a/services/lakeformation/pom.xml
+++ b/services/lakeformation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
lakeformation
AWS Java SDK :: Services :: LakeFormation
diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml
index b544bf673840..ca3d62a9d6b5 100644
--- a/services/lambda/pom.xml
+++ b/services/lambda/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
lambda
AWS Java SDK :: Services :: AWS Lambda
diff --git a/services/launchwizard/pom.xml b/services/launchwizard/pom.xml
index 73b48a305ab2..92419a7bbd98 100644
--- a/services/launchwizard/pom.xml
+++ b/services/launchwizard/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
launchwizard
AWS Java SDK :: Services :: Launch Wizard
diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml
index 4e0c8e1067d9..f2c9cdd56a1b 100644
--- a/services/lexmodelbuilding/pom.xml
+++ b/services/lexmodelbuilding/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
lexmodelbuilding
AWS Java SDK :: Services :: Amazon Lex Model Building
diff --git a/services/lexmodelsv2/pom.xml b/services/lexmodelsv2/pom.xml
index 1a6272051931..852d2861c16b 100644
--- a/services/lexmodelsv2/pom.xml
+++ b/services/lexmodelsv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
lexmodelsv2
AWS Java SDK :: Services :: Lex Models V2
diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml
index a23f28a9cb04..7c719ddeb9c6 100644
--- a/services/lexruntime/pom.xml
+++ b/services/lexruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
lexruntime
AWS Java SDK :: Services :: Amazon Lex Runtime
diff --git a/services/lexruntimev2/pom.xml b/services/lexruntimev2/pom.xml
index 38fd042e5b21..7b632d3090ef 100644
--- a/services/lexruntimev2/pom.xml
+++ b/services/lexruntimev2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
lexruntimev2
AWS Java SDK :: Services :: Lex Runtime V2
diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml
index a48ec84840c4..6780cbc907c0 100644
--- a/services/licensemanager/pom.xml
+++ b/services/licensemanager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
licensemanager
AWS Java SDK :: Services :: License Manager
diff --git a/services/licensemanagerlinuxsubscriptions/pom.xml b/services/licensemanagerlinuxsubscriptions/pom.xml
index 0ae1a0b20d54..250efc515ca8 100644
--- a/services/licensemanagerlinuxsubscriptions/pom.xml
+++ b/services/licensemanagerlinuxsubscriptions/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
licensemanagerlinuxsubscriptions
AWS Java SDK :: Services :: License Manager Linux Subscriptions
diff --git a/services/licensemanagerusersubscriptions/pom.xml b/services/licensemanagerusersubscriptions/pom.xml
index e07f959a7a1b..c1716825735a 100644
--- a/services/licensemanagerusersubscriptions/pom.xml
+++ b/services/licensemanagerusersubscriptions/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
licensemanagerusersubscriptions
AWS Java SDK :: Services :: License Manager User Subscriptions
diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml
index fb574338fff7..50ed5191d540 100644
--- a/services/lightsail/pom.xml
+++ b/services/lightsail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
lightsail
AWS Java SDK :: Services :: Amazon Lightsail
diff --git a/services/location/pom.xml b/services/location/pom.xml
index 91554e1e21ee..470d99662089 100644
--- a/services/location/pom.xml
+++ b/services/location/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
location
AWS Java SDK :: Services :: Location
diff --git a/services/lookoutequipment/pom.xml b/services/lookoutequipment/pom.xml
index 86bda1d956e5..4b6c379cf863 100644
--- a/services/lookoutequipment/pom.xml
+++ b/services/lookoutequipment/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
lookoutequipment
AWS Java SDK :: Services :: Lookout Equipment
diff --git a/services/lookoutmetrics/pom.xml b/services/lookoutmetrics/pom.xml
index 14dfa0903107..70f9b3ab6e5d 100644
--- a/services/lookoutmetrics/pom.xml
+++ b/services/lookoutmetrics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
lookoutmetrics
AWS Java SDK :: Services :: Lookout Metrics
diff --git a/services/lookoutvision/pom.xml b/services/lookoutvision/pom.xml
index ac750c3d7fe7..5b227b4b37a1 100644
--- a/services/lookoutvision/pom.xml
+++ b/services/lookoutvision/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
lookoutvision
AWS Java SDK :: Services :: Lookout Vision
diff --git a/services/m2/pom.xml b/services/m2/pom.xml
index 0c24adfce80f..c3a86925b996 100644
--- a/services/m2/pom.xml
+++ b/services/m2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
m2
AWS Java SDK :: Services :: M2
diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml
index ca7bf147750b..208ad0d22680 100644
--- a/services/machinelearning/pom.xml
+++ b/services/machinelearning/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
machinelearning
AWS Java SDK :: Services :: Amazon Machine Learning
diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml
index de9d7ed3084c..38d381cd1389 100644
--- a/services/macie2/pom.xml
+++ b/services/macie2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
macie2
AWS Java SDK :: Services :: Macie2
diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml
index 8b8da97186c6..068e62aca76c 100644
--- a/services/managedblockchain/pom.xml
+++ b/services/managedblockchain/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
managedblockchain
AWS Java SDK :: Services :: ManagedBlockchain
diff --git a/services/managedblockchainquery/pom.xml b/services/managedblockchainquery/pom.xml
index 2f16e07b18bf..5b4143d8164c 100644
--- a/services/managedblockchainquery/pom.xml
+++ b/services/managedblockchainquery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
managedblockchainquery
AWS Java SDK :: Services :: Managed Blockchain Query
diff --git a/services/marketplaceagreement/pom.xml b/services/marketplaceagreement/pom.xml
index d5d02d0e4e9d..de747840a103 100644
--- a/services/marketplaceagreement/pom.xml
+++ b/services/marketplaceagreement/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
marketplaceagreement
AWS Java SDK :: Services :: Marketplace Agreement
diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml
index 8010f2d01cff..7a6f3e01133a 100644
--- a/services/marketplacecatalog/pom.xml
+++ b/services/marketplacecatalog/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
marketplacecatalog
AWS Java SDK :: Services :: Marketplace Catalog
diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml
index 54b39310691d..ea086bb7b0a5 100644
--- a/services/marketplacecommerceanalytics/pom.xml
+++ b/services/marketplacecommerceanalytics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
marketplacecommerceanalytics
AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics
diff --git a/services/marketplacedeployment/pom.xml b/services/marketplacedeployment/pom.xml
index 9effa4bf7434..4386546e743f 100644
--- a/services/marketplacedeployment/pom.xml
+++ b/services/marketplacedeployment/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
marketplacedeployment
AWS Java SDK :: Services :: Marketplace Deployment
diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml
index 50e81bc247b7..597c64954782 100644
--- a/services/marketplaceentitlement/pom.xml
+++ b/services/marketplaceentitlement/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
marketplaceentitlement
AWS Java SDK :: Services :: AWS Marketplace Entitlement
diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml
index e9bcd2618590..5d51870f3b35 100644
--- a/services/marketplacemetering/pom.xml
+++ b/services/marketplacemetering/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
marketplacemetering
AWS Java SDK :: Services :: AWS Marketplace Metering Service
diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml
index dacd018244ac..f38d5fdd320a 100644
--- a/services/mediaconnect/pom.xml
+++ b/services/mediaconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
mediaconnect
AWS Java SDK :: Services :: MediaConnect
diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml
index 4ae8ff6e1dfc..88a87e1f53b2 100644
--- a/services/mediaconvert/pom.xml
+++ b/services/mediaconvert/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.41-SNAPSHOT
+ 2.25.41
4.0.0
mediaconvert
diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml
index 07edc55e4ca4..15759d452787 100644
--- a/services/medialive/pom.xml
+++ b/services/medialive/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.41-SNAPSHOT
+ 2.25.41
4.0.0
medialive
diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml
index 7dc0000cd3ec..eaeda7d8fb99 100644
--- a/services/mediapackage/pom.xml
+++ b/services/mediapackage/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.41-SNAPSHOT
+ 2.25.41
4.0.0
mediapackage
diff --git a/services/mediapackagev2/pom.xml b/services/mediapackagev2/pom.xml
index 3e2492622bfe..0a26d950c96f 100644
--- a/services/mediapackagev2/pom.xml
+++ b/services/mediapackagev2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
mediapackagev2
AWS Java SDK :: Services :: Media Package V2
diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml
index 1f09f22b34e7..ae30c4b2abf4 100644
--- a/services/mediapackagevod/pom.xml
+++ b/services/mediapackagevod/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
mediapackagevod
AWS Java SDK :: Services :: MediaPackage Vod
diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml
index 3efad603234c..e1a458613bf5 100644
--- a/services/mediastore/pom.xml
+++ b/services/mediastore/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.41-SNAPSHOT
+ 2.25.41
4.0.0
mediastore
diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml
index 37e2818abe41..34b50bfe22cb 100644
--- a/services/mediastoredata/pom.xml
+++ b/services/mediastoredata/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.41-SNAPSHOT
+ 2.25.41
4.0.0
mediastoredata
diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml
index 477373366c08..772277975f50 100644
--- a/services/mediatailor/pom.xml
+++ b/services/mediatailor/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
mediatailor
AWS Java SDK :: Services :: MediaTailor
diff --git a/services/medicalimaging/pom.xml b/services/medicalimaging/pom.xml
index 3de34ecc6db5..1b34b48117ce 100644
--- a/services/medicalimaging/pom.xml
+++ b/services/medicalimaging/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
medicalimaging
AWS Java SDK :: Services :: Medical Imaging
diff --git a/services/memorydb/pom.xml b/services/memorydb/pom.xml
index 59cc69087049..9d28c82f8b21 100644
--- a/services/memorydb/pom.xml
+++ b/services/memorydb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
memorydb
AWS Java SDK :: Services :: Memory DB
diff --git a/services/mgn/pom.xml b/services/mgn/pom.xml
index ad0ec0588dbb..54226ba4861a 100644
--- a/services/mgn/pom.xml
+++ b/services/mgn/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
mgn
AWS Java SDK :: Services :: Mgn
diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml
index d05e227e1695..5373d42830cf 100644
--- a/services/migrationhub/pom.xml
+++ b/services/migrationhub/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.41-SNAPSHOT
+ 2.25.41
4.0.0
migrationhub
diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml
index bca329baf045..7dbcff39d5d0 100644
--- a/services/migrationhubconfig/pom.xml
+++ b/services/migrationhubconfig/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
migrationhubconfig
AWS Java SDK :: Services :: MigrationHub Config
diff --git a/services/migrationhuborchestrator/pom.xml b/services/migrationhuborchestrator/pom.xml
index 28e0b76bb39d..400632b746a1 100644
--- a/services/migrationhuborchestrator/pom.xml
+++ b/services/migrationhuborchestrator/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
migrationhuborchestrator
AWS Java SDK :: Services :: Migration Hub Orchestrator
diff --git a/services/migrationhubrefactorspaces/pom.xml b/services/migrationhubrefactorspaces/pom.xml
index 1c0e23ce1009..060439df639e 100644
--- a/services/migrationhubrefactorspaces/pom.xml
+++ b/services/migrationhubrefactorspaces/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
migrationhubrefactorspaces
AWS Java SDK :: Services :: Migration Hub Refactor Spaces
diff --git a/services/migrationhubstrategy/pom.xml b/services/migrationhubstrategy/pom.xml
index 1826538a2a0d..c5eef3572b36 100644
--- a/services/migrationhubstrategy/pom.xml
+++ b/services/migrationhubstrategy/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
migrationhubstrategy
AWS Java SDK :: Services :: Migration Hub Strategy
diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml
index f36baed4cc44..2548dc5a535e 100644
--- a/services/mobile/pom.xml
+++ b/services/mobile/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.41-SNAPSHOT
+ 2.25.41
4.0.0
mobile
diff --git a/services/mq/pom.xml b/services/mq/pom.xml
index b788e8355d1d..5aabf37bd5ee 100644
--- a/services/mq/pom.xml
+++ b/services/mq/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.41-SNAPSHOT
+ 2.25.41
4.0.0
mq
diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml
index ed88bbb17dd0..ad83b06d42d8 100644
--- a/services/mturk/pom.xml
+++ b/services/mturk/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
mturk
AWS Java SDK :: Services :: Amazon Mechanical Turk Requester
diff --git a/services/mwaa/pom.xml b/services/mwaa/pom.xml
index 2b1441d1137f..a647bcaa9fe7 100644
--- a/services/mwaa/pom.xml
+++ b/services/mwaa/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
mwaa
AWS Java SDK :: Services :: MWAA
diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml
index c8f47fbb18cc..7d594d7d0f8e 100644
--- a/services/neptune/pom.xml
+++ b/services/neptune/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
neptune
AWS Java SDK :: Services :: Neptune
diff --git a/services/neptunedata/pom.xml b/services/neptunedata/pom.xml
index b19799a39eff..52f27369aff3 100644
--- a/services/neptunedata/pom.xml
+++ b/services/neptunedata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
neptunedata
AWS Java SDK :: Services :: Neptunedata
diff --git a/services/neptunegraph/pom.xml b/services/neptunegraph/pom.xml
index 97977bbddbad..9b1a87fdab48 100644
--- a/services/neptunegraph/pom.xml
+++ b/services/neptunegraph/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
neptunegraph
AWS Java SDK :: Services :: Neptune Graph
diff --git a/services/networkfirewall/pom.xml b/services/networkfirewall/pom.xml
index 34b338a7bf3d..df4cd886df02 100644
--- a/services/networkfirewall/pom.xml
+++ b/services/networkfirewall/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
networkfirewall
AWS Java SDK :: Services :: Network Firewall
diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml
index e8061e1664ff..838c73747d85 100644
--- a/services/networkmanager/pom.xml
+++ b/services/networkmanager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
networkmanager
AWS Java SDK :: Services :: NetworkManager
diff --git a/services/networkmonitor/pom.xml b/services/networkmonitor/pom.xml
index 62be3a12ad36..ef4e633e0916 100644
--- a/services/networkmonitor/pom.xml
+++ b/services/networkmonitor/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
networkmonitor
AWS Java SDK :: Services :: Network Monitor
diff --git a/services/nimble/pom.xml b/services/nimble/pom.xml
index b239952024d3..0d6b7e20115a 100644
--- a/services/nimble/pom.xml
+++ b/services/nimble/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
nimble
AWS Java SDK :: Services :: Nimble
diff --git a/services/oam/pom.xml b/services/oam/pom.xml
index 7583372c3647..8cb3387859a8 100644
--- a/services/oam/pom.xml
+++ b/services/oam/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
oam
AWS Java SDK :: Services :: OAM
diff --git a/services/omics/pom.xml b/services/omics/pom.xml
index 59c0da4c6043..d79d4e31cbf7 100644
--- a/services/omics/pom.xml
+++ b/services/omics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
omics
AWS Java SDK :: Services :: Omics
diff --git a/services/opensearch/pom.xml b/services/opensearch/pom.xml
index 5c428a803962..451eff02f2f1 100644
--- a/services/opensearch/pom.xml
+++ b/services/opensearch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
opensearch
AWS Java SDK :: Services :: Open Search
diff --git a/services/opensearchserverless/pom.xml b/services/opensearchserverless/pom.xml
index 23f406a5fb0c..bfc3eab421ae 100644
--- a/services/opensearchserverless/pom.xml
+++ b/services/opensearchserverless/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
opensearchserverless
AWS Java SDK :: Services :: Open Search Serverless
diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml
index 09492c1f57b0..5e11786dfda1 100644
--- a/services/opsworks/pom.xml
+++ b/services/opsworks/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
opsworks
AWS Java SDK :: Services :: AWS OpsWorks
diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml
index b1cae7176dc3..0289a536c025 100644
--- a/services/opsworkscm/pom.xml
+++ b/services/opsworkscm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
opsworkscm
AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate
diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml
index 7c266e755b18..c61345e86368 100644
--- a/services/organizations/pom.xml
+++ b/services/organizations/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
organizations
AWS Java SDK :: Services :: AWS Organizations
diff --git a/services/osis/pom.xml b/services/osis/pom.xml
index 0bf27b4e56a6..6523c4bddb9f 100644
--- a/services/osis/pom.xml
+++ b/services/osis/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
osis
AWS Java SDK :: Services :: OSIS
diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml
index 0982a9905b24..eac8be9de1f4 100644
--- a/services/outposts/pom.xml
+++ b/services/outposts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
outposts
AWS Java SDK :: Services :: Outposts
diff --git a/services/panorama/pom.xml b/services/panorama/pom.xml
index 8018b34dd156..eea0f34744a9 100644
--- a/services/panorama/pom.xml
+++ b/services/panorama/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
panorama
AWS Java SDK :: Services :: Panorama
diff --git a/services/paymentcryptography/pom.xml b/services/paymentcryptography/pom.xml
index 2855e859237c..2ed5cab417c7 100644
--- a/services/paymentcryptography/pom.xml
+++ b/services/paymentcryptography/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
paymentcryptography
AWS Java SDK :: Services :: Payment Cryptography
diff --git a/services/paymentcryptographydata/pom.xml b/services/paymentcryptographydata/pom.xml
index 65b6b5b0bafe..67dacf6040ed 100644
--- a/services/paymentcryptographydata/pom.xml
+++ b/services/paymentcryptographydata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
paymentcryptographydata
AWS Java SDK :: Services :: Payment Cryptography Data
diff --git a/services/pcaconnectorad/pom.xml b/services/pcaconnectorad/pom.xml
index 2ca74f8e8dd8..ee6c47523dbe 100644
--- a/services/pcaconnectorad/pom.xml
+++ b/services/pcaconnectorad/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
pcaconnectorad
AWS Java SDK :: Services :: Pca Connector Ad
diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml
index 59a130ea2a8a..1d4d099701cc 100644
--- a/services/personalize/pom.xml
+++ b/services/personalize/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
personalize
AWS Java SDK :: Services :: Personalize
diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml
index 8ace50f5fd39..6f3b0f6885ac 100644
--- a/services/personalizeevents/pom.xml
+++ b/services/personalizeevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
personalizeevents
AWS Java SDK :: Services :: Personalize Events
diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml
index 58b24e43d8ce..f0968fd79f13 100644
--- a/services/personalizeruntime/pom.xml
+++ b/services/personalizeruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
personalizeruntime
AWS Java SDK :: Services :: Personalize Runtime
diff --git a/services/pi/pom.xml b/services/pi/pom.xml
index b825f6dd2e5d..d214ba85f423 100644
--- a/services/pi/pom.xml
+++ b/services/pi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
pi
AWS Java SDK :: Services :: PI
diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml
index 292ede5e376f..6d74c8f949f2 100644
--- a/services/pinpoint/pom.xml
+++ b/services/pinpoint/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
pinpoint
AWS Java SDK :: Services :: Amazon Pinpoint
diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml
index 5db0f9b4d42e..00a70811bd4f 100644
--- a/services/pinpointemail/pom.xml
+++ b/services/pinpointemail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
pinpointemail
AWS Java SDK :: Services :: Pinpoint Email
diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml
index 5eb0eec61cc4..30b7eb9e5aeb 100644
--- a/services/pinpointsmsvoice/pom.xml
+++ b/services/pinpointsmsvoice/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
pinpointsmsvoice
AWS Java SDK :: Services :: Pinpoint SMS Voice
diff --git a/services/pinpointsmsvoicev2/pom.xml b/services/pinpointsmsvoicev2/pom.xml
index 5378815c94e0..be549b3c52fe 100644
--- a/services/pinpointsmsvoicev2/pom.xml
+++ b/services/pinpointsmsvoicev2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
pinpointsmsvoicev2
AWS Java SDK :: Services :: Pinpoint SMS Voice V2
diff --git a/services/pipes/pom.xml b/services/pipes/pom.xml
index 90c823ca67a7..161a410e42db 100644
--- a/services/pipes/pom.xml
+++ b/services/pipes/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
pipes
AWS Java SDK :: Services :: Pipes
diff --git a/services/polly/pom.xml b/services/polly/pom.xml
index ebbdc13ad33d..e8d8020f06c8 100644
--- a/services/polly/pom.xml
+++ b/services/polly/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
polly
AWS Java SDK :: Services :: Amazon Polly
diff --git a/services/pom.xml b/services/pom.xml
index 221e1b7bedd1..668785471f9b 100644
--- a/services/pom.xml
+++ b/services/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.25.41-SNAPSHOT
+ 2.25.41
services
AWS Java SDK :: Services
diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml
index 6641f925fd72..a78774e78493 100644
--- a/services/pricing/pom.xml
+++ b/services/pricing/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.41-SNAPSHOT
+ 2.25.41
4.0.0
pricing
diff --git a/services/privatenetworks/pom.xml b/services/privatenetworks/pom.xml
index ef507cfbade5..eec8b6a2769c 100644
--- a/services/privatenetworks/pom.xml
+++ b/services/privatenetworks/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
privatenetworks
AWS Java SDK :: Services :: Private Networks
diff --git a/services/proton/pom.xml b/services/proton/pom.xml
index cc87450322c2..5315198e9955 100644
--- a/services/proton/pom.xml
+++ b/services/proton/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
proton
AWS Java SDK :: Services :: Proton
diff --git a/services/qbusiness/pom.xml b/services/qbusiness/pom.xml
index d9135047f474..073e46e22f23 100644
--- a/services/qbusiness/pom.xml
+++ b/services/qbusiness/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
qbusiness
AWS Java SDK :: Services :: Q Business
diff --git a/services/qconnect/pom.xml b/services/qconnect/pom.xml
index 556bafa74685..1395720eaedf 100644
--- a/services/qconnect/pom.xml
+++ b/services/qconnect/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
qconnect
AWS Java SDK :: Services :: Q Connect
diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml
index a24820b56172..096fafe0cb0b 100644
--- a/services/qldb/pom.xml
+++ b/services/qldb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
qldb
AWS Java SDK :: Services :: QLDB
diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml
index 17d1c8169866..9785f5c42287 100644
--- a/services/qldbsession/pom.xml
+++ b/services/qldbsession/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
qldbsession
AWS Java SDK :: Services :: QLDB Session
diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml
index a152f4e0922c..96d41376fd2c 100644
--- a/services/quicksight/pom.xml
+++ b/services/quicksight/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
quicksight
AWS Java SDK :: Services :: QuickSight
diff --git a/services/ram/pom.xml b/services/ram/pom.xml
index a9602cc3b03c..ac76987301bf 100644
--- a/services/ram/pom.xml
+++ b/services/ram/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
ram
AWS Java SDK :: Services :: RAM
diff --git a/services/rbin/pom.xml b/services/rbin/pom.xml
index 6f351933b1ca..117c65e74298 100644
--- a/services/rbin/pom.xml
+++ b/services/rbin/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
rbin
AWS Java SDK :: Services :: Rbin
diff --git a/services/rds/pom.xml b/services/rds/pom.xml
index 49bcb64a2557..694e62177d36 100644
--- a/services/rds/pom.xml
+++ b/services/rds/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
rds
AWS Java SDK :: Services :: Amazon RDS
diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml
index 6d8eb7e39e83..70a8382d365c 100644
--- a/services/rdsdata/pom.xml
+++ b/services/rdsdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
rdsdata
AWS Java SDK :: Services :: RDS Data
diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml
index 2bca4fccda38..89b2d5a41ecd 100644
--- a/services/redshift/pom.xml
+++ b/services/redshift/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
redshift
AWS Java SDK :: Services :: Amazon Redshift
diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml
index 48a3dc9beab9..2238b7885553 100644
--- a/services/redshiftdata/pom.xml
+++ b/services/redshiftdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
redshiftdata
AWS Java SDK :: Services :: Redshift Data
diff --git a/services/redshiftserverless/pom.xml b/services/redshiftserverless/pom.xml
index 57540193484a..05956081a4c6 100644
--- a/services/redshiftserverless/pom.xml
+++ b/services/redshiftserverless/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
redshiftserverless
AWS Java SDK :: Services :: Redshift Serverless
diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml
index 07f7ed1a9f18..61f1bd6bada0 100644
--- a/services/rekognition/pom.xml
+++ b/services/rekognition/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
rekognition
AWS Java SDK :: Services :: Amazon Rekognition
diff --git a/services/repostspace/pom.xml b/services/repostspace/pom.xml
index 15c37fc44ca7..62d4b327553f 100644
--- a/services/repostspace/pom.xml
+++ b/services/repostspace/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
repostspace
AWS Java SDK :: Services :: Repostspace
diff --git a/services/resiliencehub/pom.xml b/services/resiliencehub/pom.xml
index 40076ba3f802..b18852638427 100644
--- a/services/resiliencehub/pom.xml
+++ b/services/resiliencehub/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
resiliencehub
AWS Java SDK :: Services :: Resiliencehub
diff --git a/services/resourceexplorer2/pom.xml b/services/resourceexplorer2/pom.xml
index 7aad172b1e43..b6242f1250e4 100644
--- a/services/resourceexplorer2/pom.xml
+++ b/services/resourceexplorer2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
resourceexplorer2
AWS Java SDK :: Services :: Resource Explorer 2
diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml
index 3cf291c0d070..f78ff741a7ab 100644
--- a/services/resourcegroups/pom.xml
+++ b/services/resourcegroups/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.41-SNAPSHOT
+ 2.25.41
4.0.0
resourcegroups
diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml
index a43fc34248c1..7cca84b9ca07 100644
--- a/services/resourcegroupstaggingapi/pom.xml
+++ b/services/resourcegroupstaggingapi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
resourcegroupstaggingapi
AWS Java SDK :: Services :: AWS Resource Groups Tagging API
diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml
index 6c25e1a6dd2b..383c0b7992b7 100644
--- a/services/robomaker/pom.xml
+++ b/services/robomaker/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
robomaker
AWS Java SDK :: Services :: RoboMaker
diff --git a/services/rolesanywhere/pom.xml b/services/rolesanywhere/pom.xml
index 17f4c2639018..69bdebcaf39e 100644
--- a/services/rolesanywhere/pom.xml
+++ b/services/rolesanywhere/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
rolesanywhere
AWS Java SDK :: Services :: Roles Anywhere
diff --git a/services/route53/pom.xml b/services/route53/pom.xml
index cf89520b8eaa..92e83436e378 100644
--- a/services/route53/pom.xml
+++ b/services/route53/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
route53
AWS Java SDK :: Services :: Amazon Route53
diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml
index 3e81da6b2fa3..f9892c3ac2ac 100644
--- a/services/route53domains/pom.xml
+++ b/services/route53domains/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
route53domains
AWS Java SDK :: Services :: Amazon Route53 Domains
diff --git a/services/route53profiles/pom.xml b/services/route53profiles/pom.xml
index 23313fa5bfe9..babc197a20a1 100644
--- a/services/route53profiles/pom.xml
+++ b/services/route53profiles/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
route53profiles
AWS Java SDK :: Services :: Route53 Profiles
diff --git a/services/route53recoverycluster/pom.xml b/services/route53recoverycluster/pom.xml
index c3f773e1b678..a98f4ef8e24b 100644
--- a/services/route53recoverycluster/pom.xml
+++ b/services/route53recoverycluster/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
route53recoverycluster
AWS Java SDK :: Services :: Route53 Recovery Cluster
diff --git a/services/route53recoverycontrolconfig/pom.xml b/services/route53recoverycontrolconfig/pom.xml
index 2f3cf541c058..f25e13f9fdec 100644
--- a/services/route53recoverycontrolconfig/pom.xml
+++ b/services/route53recoverycontrolconfig/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
route53recoverycontrolconfig
AWS Java SDK :: Services :: Route53 Recovery Control Config
diff --git a/services/route53recoveryreadiness/pom.xml b/services/route53recoveryreadiness/pom.xml
index c23b93bac79c..6e7e6b06630e 100644
--- a/services/route53recoveryreadiness/pom.xml
+++ b/services/route53recoveryreadiness/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
route53recoveryreadiness
AWS Java SDK :: Services :: Route53 Recovery Readiness
diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml
index 4121dae2b45a..36c9fc759848 100644
--- a/services/route53resolver/pom.xml
+++ b/services/route53resolver/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
route53resolver
AWS Java SDK :: Services :: Route53Resolver
diff --git a/services/rum/pom.xml b/services/rum/pom.xml
index f00cc9666a9b..7b9b15506816 100644
--- a/services/rum/pom.xml
+++ b/services/rum/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
rum
AWS Java SDK :: Services :: RUM
diff --git a/services/s3/pom.xml b/services/s3/pom.xml
index ece413654870..f5dc81115933 100644
--- a/services/s3/pom.xml
+++ b/services/s3/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
s3
AWS Java SDK :: Services :: Amazon S3
diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml
index a4e4ddd92b56..53f3f0968d3f 100644
--- a/services/s3control/pom.xml
+++ b/services/s3control/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
s3control
AWS Java SDK :: Services :: Amazon S3 Control
diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml
index f28c3eacfc32..ebda33955ca5 100644
--- a/services/s3outposts/pom.xml
+++ b/services/s3outposts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
s3outposts
AWS Java SDK :: Services :: S3 Outposts
diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml
index adf42d75a02c..3e515a66a398 100644
--- a/services/sagemaker/pom.xml
+++ b/services/sagemaker/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.41-SNAPSHOT
+ 2.25.41
4.0.0
sagemaker
diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml
index ba95d8632014..4af11071ae69 100644
--- a/services/sagemakera2iruntime/pom.xml
+++ b/services/sagemakera2iruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
sagemakera2iruntime
AWS Java SDK :: Services :: SageMaker A2I Runtime
diff --git a/services/sagemakeredge/pom.xml b/services/sagemakeredge/pom.xml
index b525cab5b586..2b8181c13de0 100644
--- a/services/sagemakeredge/pom.xml
+++ b/services/sagemakeredge/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
sagemakeredge
AWS Java SDK :: Services :: Sagemaker Edge
diff --git a/services/sagemakerfeaturestoreruntime/pom.xml b/services/sagemakerfeaturestoreruntime/pom.xml
index 122cc9ee5c25..d29e7060d73f 100644
--- a/services/sagemakerfeaturestoreruntime/pom.xml
+++ b/services/sagemakerfeaturestoreruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
sagemakerfeaturestoreruntime
AWS Java SDK :: Services :: Sage Maker Feature Store Runtime
diff --git a/services/sagemakergeospatial/pom.xml b/services/sagemakergeospatial/pom.xml
index ace60fafb7a1..cb7ce8be7537 100644
--- a/services/sagemakergeospatial/pom.xml
+++ b/services/sagemakergeospatial/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
sagemakergeospatial
AWS Java SDK :: Services :: Sage Maker Geospatial
diff --git a/services/sagemakermetrics/pom.xml b/services/sagemakermetrics/pom.xml
index b50bf4ae778e..2f9eb7f1068c 100644
--- a/services/sagemakermetrics/pom.xml
+++ b/services/sagemakermetrics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
sagemakermetrics
AWS Java SDK :: Services :: Sage Maker Metrics
diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml
index aa1ef4eae2e2..aa92ddf2ebda 100644
--- a/services/sagemakerruntime/pom.xml
+++ b/services/sagemakerruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
sagemakerruntime
AWS Java SDK :: Services :: SageMaker Runtime
diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml
index 927937541bac..9e8b0d6200b1 100644
--- a/services/savingsplans/pom.xml
+++ b/services/savingsplans/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
savingsplans
AWS Java SDK :: Services :: Savingsplans
diff --git a/services/scheduler/pom.xml b/services/scheduler/pom.xml
index 7675bc2aa3cd..df6ccaa446dc 100644
--- a/services/scheduler/pom.xml
+++ b/services/scheduler/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
scheduler
AWS Java SDK :: Services :: Scheduler
diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml
index 23c1636a698f..3ff85ab7f9fb 100644
--- a/services/schemas/pom.xml
+++ b/services/schemas/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
schemas
AWS Java SDK :: Services :: Schemas
diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml
index 96f2849193fa..8bd55f4642f2 100644
--- a/services/secretsmanager/pom.xml
+++ b/services/secretsmanager/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
secretsmanager
AWS Java SDK :: Services :: AWS Secrets Manager
diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml
index 9e6b74b43365..13b002fab363 100644
--- a/services/securityhub/pom.xml
+++ b/services/securityhub/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
securityhub
AWS Java SDK :: Services :: SecurityHub
diff --git a/services/securitylake/pom.xml b/services/securitylake/pom.xml
index e7d8d1bade4c..02a086676829 100644
--- a/services/securitylake/pom.xml
+++ b/services/securitylake/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
securitylake
AWS Java SDK :: Services :: Security Lake
diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml
index 51d986615ceb..62e2917b1e52 100644
--- a/services/serverlessapplicationrepository/pom.xml
+++ b/services/serverlessapplicationrepository/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.41-SNAPSHOT
+ 2.25.41
4.0.0
serverlessapplicationrepository
diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml
index 29c365d1eed4..aaf5f36ed5af 100644
--- a/services/servicecatalog/pom.xml
+++ b/services/servicecatalog/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
servicecatalog
AWS Java SDK :: Services :: AWS Service Catalog
diff --git a/services/servicecatalogappregistry/pom.xml b/services/servicecatalogappregistry/pom.xml
index 8fd57bcad155..86e045b1e321 100644
--- a/services/servicecatalogappregistry/pom.xml
+++ b/services/servicecatalogappregistry/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
servicecatalogappregistry
AWS Java SDK :: Services :: Service Catalog App Registry
diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml
index b34101ede789..692f44fc5743 100644
--- a/services/servicediscovery/pom.xml
+++ b/services/servicediscovery/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.41-SNAPSHOT
+ 2.25.41
4.0.0
servicediscovery
diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml
index bcd702bdcda0..34f38829f165 100644
--- a/services/servicequotas/pom.xml
+++ b/services/servicequotas/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
servicequotas
AWS Java SDK :: Services :: Service Quotas
diff --git a/services/ses/pom.xml b/services/ses/pom.xml
index a36e10cb15f2..cc6f22c2f3f7 100644
--- a/services/ses/pom.xml
+++ b/services/ses/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
ses
AWS Java SDK :: Services :: Amazon SES
diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml
index d0c8623d9554..4e051b2feb31 100644
--- a/services/sesv2/pom.xml
+++ b/services/sesv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
sesv2
AWS Java SDK :: Services :: SESv2
diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml
index 3244550ac1a4..e0fa8a6c7007 100644
--- a/services/sfn/pom.xml
+++ b/services/sfn/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
sfn
AWS Java SDK :: Services :: AWS Step Functions
diff --git a/services/shield/pom.xml b/services/shield/pom.xml
index 22309bf7159a..ddd2dd7aaecd 100644
--- a/services/shield/pom.xml
+++ b/services/shield/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
shield
AWS Java SDK :: Services :: AWS Shield
diff --git a/services/signer/pom.xml b/services/signer/pom.xml
index b2cbeff0733f..95c33cf8472b 100644
--- a/services/signer/pom.xml
+++ b/services/signer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
signer
AWS Java SDK :: Services :: Signer
diff --git a/services/simspaceweaver/pom.xml b/services/simspaceweaver/pom.xml
index 20b7c453d0fa..7fbafc7313a5 100644
--- a/services/simspaceweaver/pom.xml
+++ b/services/simspaceweaver/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
simspaceweaver
AWS Java SDK :: Services :: Sim Space Weaver
diff --git a/services/sms/pom.xml b/services/sms/pom.xml
index feae2accadf5..519e705455f4 100644
--- a/services/sms/pom.xml
+++ b/services/sms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
sms
AWS Java SDK :: Services :: AWS Server Migration
diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml
index 0a8eda11f0b1..9051c3ee17fa 100644
--- a/services/snowball/pom.xml
+++ b/services/snowball/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
snowball
AWS Java SDK :: Services :: Amazon Snowball
diff --git a/services/snowdevicemanagement/pom.xml b/services/snowdevicemanagement/pom.xml
index 325cb8caae86..2f70008b7f5b 100644
--- a/services/snowdevicemanagement/pom.xml
+++ b/services/snowdevicemanagement/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
snowdevicemanagement
AWS Java SDK :: Services :: Snow Device Management
diff --git a/services/sns/pom.xml b/services/sns/pom.xml
index 69757a61c34a..a692b6497d1e 100644
--- a/services/sns/pom.xml
+++ b/services/sns/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
sns
AWS Java SDK :: Services :: Amazon SNS
diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml
index d9c916b64453..60b9eacb871f 100644
--- a/services/sqs/pom.xml
+++ b/services/sqs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
sqs
AWS Java SDK :: Services :: Amazon SQS
diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml
index 60aeb1d8cb9b..8c41ea2d8520 100644
--- a/services/ssm/pom.xml
+++ b/services/ssm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
ssm
AWS Java SDK :: Services :: AWS Simple Systems Management (SSM)
diff --git a/services/ssmcontacts/pom.xml b/services/ssmcontacts/pom.xml
index dadc4369f96f..6a8161d1e378 100644
--- a/services/ssmcontacts/pom.xml
+++ b/services/ssmcontacts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
ssmcontacts
AWS Java SDK :: Services :: SSM Contacts
diff --git a/services/ssmincidents/pom.xml b/services/ssmincidents/pom.xml
index f71b9c05f80b..b36991f97be8 100644
--- a/services/ssmincidents/pom.xml
+++ b/services/ssmincidents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
ssmincidents
AWS Java SDK :: Services :: SSM Incidents
diff --git a/services/ssmsap/pom.xml b/services/ssmsap/pom.xml
index e9c09ac6fb28..1e35c514e713 100644
--- a/services/ssmsap/pom.xml
+++ b/services/ssmsap/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
ssmsap
AWS Java SDK :: Services :: Ssm Sap
diff --git a/services/sso/pom.xml b/services/sso/pom.xml
index 441efb7a4a34..09e48a29360f 100644
--- a/services/sso/pom.xml
+++ b/services/sso/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
sso
AWS Java SDK :: Services :: SSO
diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml
index 8d67c778d7c1..af3dd3727639 100644
--- a/services/ssoadmin/pom.xml
+++ b/services/ssoadmin/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
ssoadmin
AWS Java SDK :: Services :: SSO Admin
diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml
index b15ff30c2ece..15b40717167f 100644
--- a/services/ssooidc/pom.xml
+++ b/services/ssooidc/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
ssooidc
AWS Java SDK :: Services :: SSO OIDC
diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml
index df045ff23aa2..ef29d423a63b 100644
--- a/services/storagegateway/pom.xml
+++ b/services/storagegateway/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
storagegateway
AWS Java SDK :: Services :: AWS Storage Gateway
diff --git a/services/sts/pom.xml b/services/sts/pom.xml
index 8beda5b98394..854f4c926a96 100644
--- a/services/sts/pom.xml
+++ b/services/sts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
sts
AWS Java SDK :: Services :: AWS STS
diff --git a/services/supplychain/pom.xml b/services/supplychain/pom.xml
index 1f7c7c8a9372..0f3d63af071e 100644
--- a/services/supplychain/pom.xml
+++ b/services/supplychain/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
supplychain
AWS Java SDK :: Services :: Supply Chain
diff --git a/services/support/pom.xml b/services/support/pom.xml
index 6c45610852bf..0dbb58f7a6a2 100644
--- a/services/support/pom.xml
+++ b/services/support/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
support
AWS Java SDK :: Services :: AWS Support
diff --git a/services/supportapp/pom.xml b/services/supportapp/pom.xml
index e0476e105f1b..84f6fb1653cc 100644
--- a/services/supportapp/pom.xml
+++ b/services/supportapp/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
supportapp
AWS Java SDK :: Services :: Support App
diff --git a/services/swf/pom.xml b/services/swf/pom.xml
index 5c05c7ea3e7a..e61aa56e0d82 100644
--- a/services/swf/pom.xml
+++ b/services/swf/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
swf
AWS Java SDK :: Services :: Amazon SWF
diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml
index 7b4bb2034535..749c02f1c601 100644
--- a/services/synthetics/pom.xml
+++ b/services/synthetics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
synthetics
AWS Java SDK :: Services :: Synthetics
diff --git a/services/textract/pom.xml b/services/textract/pom.xml
index 37d661b0d865..059a947507f0 100644
--- a/services/textract/pom.xml
+++ b/services/textract/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
textract
AWS Java SDK :: Services :: Textract
diff --git a/services/timestreaminfluxdb/pom.xml b/services/timestreaminfluxdb/pom.xml
index 8ddf1cf27e4c..2c7d1257beae 100644
--- a/services/timestreaminfluxdb/pom.xml
+++ b/services/timestreaminfluxdb/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
timestreaminfluxdb
AWS Java SDK :: Services :: Timestream Influx DB
diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml
index ec6ce69a417e..5a29555e0029 100644
--- a/services/timestreamquery/pom.xml
+++ b/services/timestreamquery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
timestreamquery
AWS Java SDK :: Services :: Timestream Query
diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml
index cdc67f1dd721..4c900d9ac42d 100644
--- a/services/timestreamwrite/pom.xml
+++ b/services/timestreamwrite/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
timestreamwrite
AWS Java SDK :: Services :: Timestream Write
diff --git a/services/tnb/pom.xml b/services/tnb/pom.xml
index 8eccde5b1745..16e10a733c4c 100644
--- a/services/tnb/pom.xml
+++ b/services/tnb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
tnb
AWS Java SDK :: Services :: Tnb
diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml
index c2c2324f1719..5670ff38b224 100644
--- a/services/transcribe/pom.xml
+++ b/services/transcribe/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
transcribe
AWS Java SDK :: Services :: Transcribe
diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml
index 66bd93146460..edba994f4d06 100644
--- a/services/transcribestreaming/pom.xml
+++ b/services/transcribestreaming/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
transcribestreaming
AWS Java SDK :: Services :: AWS Transcribe Streaming
diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml
index cf9287501c8b..178f82c91cdd 100644
--- a/services/transfer/pom.xml
+++ b/services/transfer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
transfer
AWS Java SDK :: Services :: Transfer
diff --git a/services/translate/pom.xml b/services/translate/pom.xml
index 347ed0f25a45..17993f1347a7 100644
--- a/services/translate/pom.xml
+++ b/services/translate/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.41-SNAPSHOT
+ 2.25.41
4.0.0
translate
diff --git a/services/trustedadvisor/pom.xml b/services/trustedadvisor/pom.xml
index 145f5a39db5d..c3a78f466de3 100644
--- a/services/trustedadvisor/pom.xml
+++ b/services/trustedadvisor/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
trustedadvisor
AWS Java SDK :: Services :: Trusted Advisor
diff --git a/services/verifiedpermissions/pom.xml b/services/verifiedpermissions/pom.xml
index d5e63b7d8802..abb20b3ed7fa 100644
--- a/services/verifiedpermissions/pom.xml
+++ b/services/verifiedpermissions/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
verifiedpermissions
AWS Java SDK :: Services :: Verified Permissions
diff --git a/services/voiceid/pom.xml b/services/voiceid/pom.xml
index 2811f6263d3a..5c3933c9158b 100644
--- a/services/voiceid/pom.xml
+++ b/services/voiceid/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
voiceid
AWS Java SDK :: Services :: Voice ID
diff --git a/services/vpclattice/pom.xml b/services/vpclattice/pom.xml
index 8491c5e4e5f0..dc34840f041c 100644
--- a/services/vpclattice/pom.xml
+++ b/services/vpclattice/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
vpclattice
AWS Java SDK :: Services :: VPC Lattice
diff --git a/services/waf/pom.xml b/services/waf/pom.xml
index 4c987adac798..02ea039e81ef 100644
--- a/services/waf/pom.xml
+++ b/services/waf/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
waf
AWS Java SDK :: Services :: AWS WAF
diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml
index 8fd5b55d472c..efb11f5b1ad8 100644
--- a/services/wafv2/pom.xml
+++ b/services/wafv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
wafv2
AWS Java SDK :: Services :: WAFV2
diff --git a/services/wellarchitected/pom.xml b/services/wellarchitected/pom.xml
index 169b42af009a..dfba7d70a9a1 100644
--- a/services/wellarchitected/pom.xml
+++ b/services/wellarchitected/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
wellarchitected
AWS Java SDK :: Services :: Well Architected
diff --git a/services/wisdom/pom.xml b/services/wisdom/pom.xml
index 2c6e2d33dc8a..726370d6dbd1 100644
--- a/services/wisdom/pom.xml
+++ b/services/wisdom/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
wisdom
AWS Java SDK :: Services :: Wisdom
diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml
index 2319f3a55bbc..d5d155eb869e 100644
--- a/services/workdocs/pom.xml
+++ b/services/workdocs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
workdocs
AWS Java SDK :: Services :: Amazon WorkDocs
diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml
index d98412269231..2934a35623c4 100644
--- a/services/worklink/pom.xml
+++ b/services/worklink/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
worklink
AWS Java SDK :: Services :: WorkLink
diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml
index e9fbd08219ef..2daa07984eb7 100644
--- a/services/workmail/pom.xml
+++ b/services/workmail/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.25.41-SNAPSHOT
+ 2.25.41
4.0.0
workmail
diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml
index e4027df08fa0..e1309d8e6bac 100644
--- a/services/workmailmessageflow/pom.xml
+++ b/services/workmailmessageflow/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
workmailmessageflow
AWS Java SDK :: Services :: WorkMailMessageFlow
diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml
index 6fafdd7fb88a..e3fd7ee32611 100644
--- a/services/workspaces/pom.xml
+++ b/services/workspaces/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
workspaces
AWS Java SDK :: Services :: Amazon WorkSpaces
diff --git a/services/workspacesthinclient/pom.xml b/services/workspacesthinclient/pom.xml
index c46a89ffac01..c4cc755711dd 100644
--- a/services/workspacesthinclient/pom.xml
+++ b/services/workspacesthinclient/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
workspacesthinclient
AWS Java SDK :: Services :: Work Spaces Thin Client
diff --git a/services/workspacesweb/pom.xml b/services/workspacesweb/pom.xml
index 586512d7bc30..f2fde6405cb5 100644
--- a/services/workspacesweb/pom.xml
+++ b/services/workspacesweb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
workspacesweb
AWS Java SDK :: Services :: Work Spaces Web
diff --git a/services/xray/pom.xml b/services/xray/pom.xml
index c811d70d95b3..c3523918f6e4 100644
--- a/services/xray/pom.xml
+++ b/services/xray/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.25.41-SNAPSHOT
+ 2.25.41
xray
AWS Java SDK :: Services :: AWS X-Ray
diff --git a/test/auth-tests/pom.xml b/test/auth-tests/pom.xml
index 34e5ddabfc31..3c3b849e8523 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.41-SNAPSHOT
+ 2.25.41
../../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 3377ba86e6f1..1c4755506e04 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.41-SNAPSHOT
+ 2.25.41
../../pom.xml
4.0.0
diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml
index 2391c34d0a70..bdfc74ec6513 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.41-SNAPSHOT
+ 2.25.41
../../pom.xml
diff --git a/test/crt-unavailable-tests/pom.xml b/test/crt-unavailable-tests/pom.xml
index 2d3dd2c21a41..acaa90e0a721 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.41-SNAPSHOT
+ 2.25.41
../../pom.xml
4.0.0
diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml
index bd83df7f6316..68215b176103 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.41-SNAPSHOT
+ 2.25.41
../../pom.xml
http-client-tests
diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml
index 404382c00b2b..05f0071b566a 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.41-SNAPSHOT
+ 2.25.41
../../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 f2152b94068c..931a82464b95 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.41-SNAPSHOT
+ 2.25.41
../../pom.xml
diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml
index 624c833d6741..01382fbad71c 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.41-SNAPSHOT
+ 2.25.41
../../pom.xml
4.0.0
diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml
index 8c23c643e683..8ab8e0b5d7f9 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.41-SNAPSHOT
+ 2.25.41
../../pom.xml
4.0.0
diff --git a/test/region-testing/pom.xml b/test/region-testing/pom.xml
index f551da1f6a3a..5630b4eddbbc 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.41-SNAPSHOT
+ 2.25.41
../../pom.xml
4.0.0
diff --git a/test/ruleset-testing-core/pom.xml b/test/ruleset-testing-core/pom.xml
index 36c28e4b671a..4f2a1869f186 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.41-SNAPSHOT
+ 2.25.41
../../pom.xml
4.0.0
diff --git a/test/s3-benchmarks/pom.xml b/test/s3-benchmarks/pom.xml
index 2b7178f3b000..e1676de0cc5e 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.41-SNAPSHOT
+ 2.25.41
../../pom.xml
4.0.0
diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml
index 852811c5ab88..e2d8c26857ed 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.41-SNAPSHOT
+ 2.25.41
../../pom.xml
diff --git a/test/sdk-native-image-test/pom.xml b/test/sdk-native-image-test/pom.xml
index 45c62d4c3f07..3737e4849501 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.41-SNAPSHOT
+ 2.25.41
../../pom.xml
4.0.0
diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml
index 32a900ed8bf8..7e0906935830 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.41-SNAPSHOT
+ 2.25.41
../../pom.xml
service-test-utils
diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml
index 6def3a16e845..597981244ec1 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.41-SNAPSHOT
+ 2.25.41
../../pom.xml
4.0.0
diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml
index ad648c872afb..bf303e031f4f 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.41-SNAPSHOT
+ 2.25.41
../../pom.xml
test-utils
diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml
index 0798706ce946..7b4609c2ae6a 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.41-SNAPSHOT
+ 2.25.41
../../pom.xml
4.0.0
diff --git a/third-party/pom.xml b/third-party/pom.xml
index cb93271cf5a9..035dc1720dd6 100644
--- a/third-party/pom.xml
+++ b/third-party/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.25.41-SNAPSHOT
+ 2.25.41
third-party
diff --git a/third-party/third-party-jackson-core/pom.xml b/third-party/third-party-jackson-core/pom.xml
index bd10b29cefe8..7683db5e524c 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.41-SNAPSHOT
+ 2.25.41
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 2dc23118ab13..a0bf5d848bd6 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.41-SNAPSHOT
+ 2.25.41
4.0.0
diff --git a/third-party/third-party-slf4j-api/pom.xml b/third-party/third-party-slf4j-api/pom.xml
index 698544f8c063..e3fa586050a0 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.41-SNAPSHOT
+ 2.25.41
4.0.0
diff --git a/utils/pom.xml b/utils/pom.xml
index 1da90c27939b..c11b9db3bef1 100644
--- a/utils/pom.xml
+++ b/utils/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.25.41-SNAPSHOT
+ 2.25.41
4.0.0