> uriParams = SdkHttpUtils.uriParams(uri);
+ assertThat(uriParams).containsKey("novaluekey");
+ assertThat(uriParams.get("novaluekey"))
+ .hasSize(1)
+ .containsNull();
+ }
+
@Test
void parseSingleNonProxyHost(){
String singleHostName = "singleHost" ;
From d3790045ef38e4458151b7457e80a5853c72ba3a Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Fri, 31 Jan 2025 19:05:57 +0000
Subject: [PATCH 04/10] Amazon Prometheus Service Update: Add support for
sending metrics to cross account and CMCK AMP workspaces through
RoleConfiguration on Create/Update Scraper.
---
...ature-AmazonPrometheusService-18fc7b1.json | 6 ++++
.../codegen-resources/service-2.json | 31 +++++++++++++++++--
2 files changed, 34 insertions(+), 3 deletions(-)
create mode 100644 .changes/next-release/feature-AmazonPrometheusService-18fc7b1.json
diff --git a/.changes/next-release/feature-AmazonPrometheusService-18fc7b1.json b/.changes/next-release/feature-AmazonPrometheusService-18fc7b1.json
new file mode 100644
index 00000000000..a0f0381f876
--- /dev/null
+++ b/.changes/next-release/feature-AmazonPrometheusService-18fc7b1.json
@@ -0,0 +1,6 @@
+{
+ "type": "feature",
+ "category": "Amazon Prometheus Service",
+ "contributor": "",
+ "description": "Add support for sending metrics to cross account and CMCK AMP workspaces through RoleConfiguration on Create/Update Scraper."
+}
diff --git a/services/amp/src/main/resources/codegen-resources/service-2.json b/services/amp/src/main/resources/codegen-resources/service-2.json
index 2ba81375e79..beb8e97f39c 100644
--- a/services/amp/src/main/resources/codegen-resources/service-2.json
+++ b/services/amp/src/main/resources/codegen-resources/service-2.json
@@ -800,6 +800,10 @@
"shape":"Destination",
"documentation":"The Amazon Managed Service for Prometheus workspace to send metrics to.
"
},
+ "roleConfiguration":{
+ "shape":"RoleConfiguration",
+ "documentation":"The scraper role configuration for the workspace.
"
+ },
"scrapeConfiguration":{
"shape":"ScrapeConfiguration",
"documentation":"The configuration file to use in the new scraper. For more information, see Scraper configuration in the Amazon Managed Service for Prometheus User Guide.
"
@@ -1223,7 +1227,8 @@
},
"IamRoleArn":{
"type":"string",
- "documentation":"An ARN identifying an IAM role used by the scraper.
"
+ "documentation":"An ARN identifying an IAM role used by the scraper.
",
+ "pattern":"^arn:aws[-a-z]*:iam::[0-9]{12}:role/.+$"
},
"IdempotencyToken":{
"type":"string",
@@ -1262,7 +1267,7 @@
"documentation":"A KMS Key ARN.
",
"max":2048,
"min":20,
- "pattern":"^arn:aws:kms:[a-z0-9\\-]+:\\d+:key/[a-f0-9\\-]+$"
+ "pattern":"^arn:aws[-a-z]*:kms:[-a-z0-9]+:[0-9]{12}:key/[-a-f0-9]+$"
},
"ListRuleGroupsNamespacesRequest":{
"type":"structure",
@@ -1428,7 +1433,7 @@
},
"LogGroupArn":{
"type":"string",
- "pattern":"^arn:aws[a-z0-9-]*:logs:[a-z0-9-]+:\\d{12}:log-group:[A-Za-z0-9\\.\\-\\_\\#/]{1,512}\\:\\*$"
+ "pattern":"^arn:aws[-a-z]*:logs:[-a-z0-9]+:[0-9]{12}:log-group:[A-Za-z0-9\\.\\-\\_\\#/]{1,512}\\:\\*$"
},
"LoggingConfigurationMetadata":{
"type":"structure",
@@ -1619,6 +1624,20 @@
},
"exception":true
},
+ "RoleConfiguration":{
+ "type":"structure",
+ "members":{
+ "sourceRoleArn":{
+ "shape":"IamRoleArn",
+ "documentation":"A ARN identifying the source role configuration.
"
+ },
+ "targetRoleArn":{
+ "shape":"IamRoleArn",
+ "documentation":"A ARN identifying the target role configuration.
"
+ }
+ },
+ "documentation":"To configure roles that allows users to write to an Amazon Managed Service for Prometheus workspace in a different account.
"
+ },
"RuleGroupsNamespaceArn":{
"type":"string",
"documentation":"An ARN identifying a rule groups namespace.
"
@@ -1805,6 +1824,7 @@
"shape":"IamRoleArn",
"documentation":"The Amazon Resource Name (ARN) of the IAM role that provides permissions for the scraper to discover and collect metrics on your behalf.
For example, arn:aws:iam::123456789012:role/service-role/AmazonGrafanaServiceRole-12example
.
"
},
+ "roleConfiguration":{"shape":"RoleConfiguration"},
"scrapeConfiguration":{
"shape":"ScrapeConfiguration",
"documentation":"The configuration in use by the scraper.
"
@@ -1914,6 +1934,7 @@
"shape":"IamRoleArn",
"documentation":"The Amazon Resource Name (ARN) of the IAM role that provides permissions for the scraper to discover and collect metrics on your behalf.
"
},
+ "roleConfiguration":{"shape":"RoleConfiguration"},
"scraperId":{
"shape":"ScraperId",
"documentation":"The ID of the scraper.
"
@@ -2191,6 +2212,10 @@
"shape":"Destination",
"documentation":"The new Amazon Managed Service for Prometheus workspace to send metrics to.
"
},
+ "roleConfiguration":{
+ "shape":"RoleConfiguration",
+ "documentation":"The scraper role configuration for the workspace.
"
+ },
"scrapeConfiguration":{
"shape":"ScrapeConfiguration",
"documentation":"Contains the base-64 encoded YAML configuration for the scraper.
For more information about configuring a scraper, see Using an Amazon Web Services managed collector in the Amazon Managed Service for Prometheus User Guide.
"
From d9fc089dc2d37428f7eb61ad6f27e025175db044 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Fri, 31 Jan 2025 19:06:00 +0000
Subject: [PATCH 05/10] Amazon SageMaker Service Update: This release
introduces a new valid value in InstanceType parameter: p5en.48xlarge, in
ProductionVariant.
---
.../feature-AmazonSageMakerService-871d146.json | 6 ++++++
.../src/main/resources/codegen-resources/service-2.json | 5 +++--
2 files changed, 9 insertions(+), 2 deletions(-)
create mode 100644 .changes/next-release/feature-AmazonSageMakerService-871d146.json
diff --git a/.changes/next-release/feature-AmazonSageMakerService-871d146.json b/.changes/next-release/feature-AmazonSageMakerService-871d146.json
new file mode 100644
index 00000000000..1c275d362cd
--- /dev/null
+++ b/.changes/next-release/feature-AmazonSageMakerService-871d146.json
@@ -0,0 +1,6 @@
+{
+ "type": "feature",
+ "category": "Amazon SageMaker Service",
+ "contributor": "",
+ "description": "This release introduces a new valid value in InstanceType parameter: p5en.48xlarge, in ProductionVariant."
+}
diff --git a/services/sagemaker/src/main/resources/codegen-resources/service-2.json b/services/sagemaker/src/main/resources/codegen-resources/service-2.json
index fe6a4020853..957900e4983 100644
--- a/services/sagemaker/src/main/resources/codegen-resources/service-2.json
+++ b/services/sagemaker/src/main/resources/codegen-resources/service-2.json
@@ -33824,6 +33824,7 @@
"ml.inf2.48xlarge",
"ml.p5.48xlarge",
"ml.p5e.48xlarge",
+ "ml.p5en.48xlarge",
"ml.m7i.large",
"ml.m7i.xlarge",
"ml.m7i.2xlarge",
@@ -35652,7 +35653,7 @@
},
"SageMakerImageVersionArn":{
"shape":"ImageVersionArn",
- "documentation":"The ARN of the image version created on the instance.
"
+ "documentation":"The ARN of the image version created on the instance. To clear the value set for SageMakerImageVersionArn
, pass None
as the value.
"
},
"SageMakerImageVersionAlias":{
"shape":"ImageVersionAlias",
@@ -35667,7 +35668,7 @@
"documentation":" The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource.
"
}
},
- "documentation":"Specifies the ARN's of a SageMaker AI image and SageMaker AI image version, and the instance type that the version runs on.
"
+ "documentation":"Specifies the ARN's of a SageMaker AI image and SageMaker AI image version, and the instance type that the version runs on.
When both SageMakerImageVersionArn
and SageMakerImageArn
are passed, SageMakerImageVersionArn
is used. Any updates to SageMakerImageArn
will not take effect if SageMakerImageVersionArn
already exists in the ResourceSpec
because SageMakerImageVersionArn
always takes precedence. To clear the value set for SageMakerImageVersionArn
, pass None
as the value.
"
},
"ResourceType":{
"type":"string",
From 0eca117287881ffb79529c6595a754c1cb78c736 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Fri, 31 Jan 2025 19:06:01 +0000
Subject: [PATCH 06/10] Agents for Amazon Bedrock Runtime Update: This change
is to deprecate the existing citation field under RetrieveAndGenerateStream
API response in lieu of GeneratedResponsePart and RetrievedReferences
---
...eature-AgentsforAmazonBedrockRuntime-e40f49a.json | 6 ++++++
.../main/resources/codegen-resources/service-2.json | 12 +++++++++++-
2 files changed, 17 insertions(+), 1 deletion(-)
create mode 100644 .changes/next-release/feature-AgentsforAmazonBedrockRuntime-e40f49a.json
diff --git a/.changes/next-release/feature-AgentsforAmazonBedrockRuntime-e40f49a.json b/.changes/next-release/feature-AgentsforAmazonBedrockRuntime-e40f49a.json
new file mode 100644
index 00000000000..974725f5e50
--- /dev/null
+++ b/.changes/next-release/feature-AgentsforAmazonBedrockRuntime-e40f49a.json
@@ -0,0 +1,6 @@
+{
+ "type": "feature",
+ "category": "Agents for Amazon Bedrock Runtime",
+ "contributor": "",
+ "description": "This change is to deprecate the existing citation field under RetrieveAndGenerateStream API response in lieu of GeneratedResponsePart and RetrievedReferences"
+}
diff --git a/services/bedrockagentruntime/src/main/resources/codegen-resources/service-2.json b/services/bedrockagentruntime/src/main/resources/codegen-resources/service-2.json
index 01a18416703..3e00d62b0c6 100644
--- a/services/bedrockagentruntime/src/main/resources/codegen-resources/service-2.json
+++ b/services/bedrockagentruntime/src/main/resources/codegen-resources/service-2.json
@@ -840,7 +840,17 @@
"members":{
"citation":{
"shape":"Citation",
- "documentation":"The citation.
"
+ "documentation":"The citation.
",
+ "deprecated":true,
+ "deprecatedMessage":"Citation is deprecated. Please use GeneratedResponsePart and RetrievedReferences for citation event."
+ },
+ "generatedResponsePart":{
+ "shape":"GeneratedResponsePart",
+ "documentation":"The generated response to the citation event.
"
+ },
+ "retrievedReferences":{
+ "shape":"RetrievedReferences",
+ "documentation":"The retrieved references of the citation event.
"
}
},
"documentation":"A citation event.
",
From 5ea50e145362050a608ac9df5a0887c26fc5f675 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Fri, 31 Jan 2025 19:06:08 +0000
Subject: [PATCH 07/10] Amazon Location Service Routes V2 Update: The
OptimizeWaypoints API now supports 50 waypoints per request (20 with
constraints like AccessHours or AppointmentTime). It adds waypoint clustering
via Clustering and ClusteringIndex for better optimization. Also, total
distance validation is removed for greater flexibility.
---
...AmazonLocationServiceRoutesV2-ebad606.json | 6 +
.../codegen-resources/service-2.json | 154 ++++++++++++------
2 files changed, 107 insertions(+), 53 deletions(-)
create mode 100644 .changes/next-release/feature-AmazonLocationServiceRoutesV2-ebad606.json
diff --git a/.changes/next-release/feature-AmazonLocationServiceRoutesV2-ebad606.json b/.changes/next-release/feature-AmazonLocationServiceRoutesV2-ebad606.json
new file mode 100644
index 00000000000..d3630dd6ac0
--- /dev/null
+++ b/.changes/next-release/feature-AmazonLocationServiceRoutesV2-ebad606.json
@@ -0,0 +1,6 @@
+{
+ "type": "feature",
+ "category": "Amazon Location Service Routes V2",
+ "contributor": "",
+ "description": "The OptimizeWaypoints API now supports 50 waypoints per request (20 with constraints like AccessHours or AppointmentTime). It adds waypoint clustering via Clustering and ClusteringIndex for better optimization. Also, total distance validation is removed for greater flexibility."
+}
diff --git a/services/georoutes/src/main/resources/codegen-resources/service-2.json b/services/georoutes/src/main/resources/codegen-resources/service-2.json
index d1e82788424..26c62610e1e 100644
--- a/services/georoutes/src/main/resources/codegen-resources/service-2.json
+++ b/services/georoutes/src/main/resources/codegen-resources/service-2.json
@@ -45,7 +45,7 @@
{"shape":"ValidationException"},
{"shape":"ThrottlingException"}
],
- "documentation":"Calculates route matrix containing the results for all pairs of Origins to Destinations. Each row corresponds to one entry in Origins. Each entry in the row corresponds to the route from that entry in Origins to an entry in Destinations positions.
"
+ "documentation":" Use CalculateRouteMatrix
to compute results for all pairs of Origins to Destinations. Each row corresponds to one entry in Origins. Each entry in the row corresponds to the route from that entry in Origins to an entry in Destinations positions.
"
},
"CalculateRoutes":{
"name":"CalculateRoutes",
@@ -62,7 +62,7 @@
{"shape":"ValidationException"},
{"shape":"ThrottlingException"}
],
- "documentation":"Calculates a route given the following required parameters: Origin
and Destination
.
"
+ "documentation":" CalculateRoutes
computes routes given the following required parameters: Origin
and Destination
.
"
},
"OptimizeWaypoints":{
"name":"OptimizeWaypoints",
@@ -79,7 +79,7 @@
{"shape":"ValidationException"},
{"shape":"ThrottlingException"}
],
- "documentation":"Calculates the optimal order to travel between a set of waypoints to minimize either the travel time or the distance travelled during the journey, based on road network restrictions and the traffic pattern data.
"
+ "documentation":" OptimizeWaypoints
calculates the optimal order to travel between a set of waypoints to minimize either the travel time or the distance travelled during the journey, based on road network restrictions and the traffic pattern data.
"
},
"SnapToRoads":{
"name":"SnapToRoads",
@@ -96,7 +96,7 @@
{"shape":"ValidationException"},
{"shape":"ThrottlingException"}
],
- "documentation":"The SnapToRoads action matches GPS trace to roads most likely traveled on.
"
+ "documentation":" SnapToRoads
matches GPS trace to roads most likely traveled on.
"
}
},
"shapes":{
@@ -143,7 +143,7 @@
"members":{
"Allow":{
"shape":"IsolineAllowOptions",
- "documentation":"Features that are allowed while calculating. a route
"
+ "documentation":"Features that are allowed while calculating an isoline.
"
},
"ArrivalTime":{
"shape":"TimestampWithTimezoneOffset",
@@ -175,7 +175,7 @@
},
"IsolineGranularity":{
"shape":"IsolineGranularityOptions",
- "documentation":"Defines the granularity of the returned Isoline
"
+ "documentation":"Defines the granularity of the returned Isoline.
"
},
"Key":{
"shape":"ApiKey",
@@ -201,7 +201,7 @@
},
"Thresholds":{
"shape":"IsolineThresholds",
- "documentation":"Threshold to be used for the isoline calculation. Up to 3 thresholds per provided type can be requested.
"
+ "documentation":"Threshold to be used for the isoline calculation. Up to 3 thresholds per provided type can be requested.
You incur a calculation charge for each threshold. Using a large amount of thresholds in a request can lead you to incur unexpected charges. See Amazon Location's pricing page for more information.
"
},
"Traffic":{
"shape":"IsolineTrafficOptions",
@@ -267,7 +267,7 @@
"members":{
"Allow":{
"shape":"RouteMatrixAllowOptions",
- "documentation":"Features that are allowed while calculating. a route
"
+ "documentation":"Features that are allowed while calculating a route.
"
},
"Avoid":{
"shape":"RouteMatrixAvoidanceOptions",
@@ -283,7 +283,7 @@
},
"Destinations":{
"shape":"CalculateRouteMatrixRequestDestinationsList",
- "documentation":"List of destinations for the route.
"
+ "documentation":"List of destinations for the route.
Route calculations are billed for each origin and destination pair. If you use a large matrix of origins and destinations, your costs will increase accordingly. See Amazon Location's pricing page for more information.
"
},
"Exclude":{
"shape":"RouteMatrixExclusionOptions",
@@ -301,7 +301,7 @@
},
"Origins":{
"shape":"CalculateRouteMatrixRequestOriginsList",
- "documentation":"The position in longitude and latitude for the origin.
"
+ "documentation":"The position in longitude and latitude for the origin.
Route calculations are billed for each origin and destination pair. Using a large amount of Origins in a request can lead you to incur unexpected charges. See Amazon Location's pricing page for more information.
"
},
"RoutingBoundary":{
"shape":"RouteMatrixBoundary",
@@ -374,7 +374,7 @@
"members":{
"Allow":{
"shape":"RouteAllowOptions",
- "documentation":"Features that are allowed while calculating. a route
"
+ "documentation":"Features that are allowed while calculating a route.
"
},
"ArrivalTime":{
"shape":"TimestampWithTimezoneOffset",
@@ -468,7 +468,7 @@
},
"TravelStepType":{
"shape":"RouteTravelStepType",
- "documentation":"Type of step returned by the response. Default provides basic steps intended for web based applications. TurnByTurn provides detailed instructions with more granularity intended for a turn based naviagtion system.
"
+ "documentation":"Type of step returned by the response. Default provides basic steps intended for web based applications. TurnByTurn provides detailed instructions with more granularity intended for a turn based navigation system.
"
},
"Waypoints":{
"shape":"RouteWaypointList",
@@ -536,6 +536,11 @@
"documentation":"Geometry defined as a circle. When request routing boundary was set as AutoCircle
, the response routing boundary will return Circle
derived from the AutoCircle
settings.
",
"sensitive":true
},
+ "ClusterIndex":{
+ "type":"integer",
+ "box":true,
+ "min":0
+ },
"Corridor":{
"type":"structure",
"required":[
@@ -687,14 +692,14 @@
"members":{
"Hot":{
"shape":"Boolean",
- "documentation":"Allow Hot (High Occupancy Toll) lanes while calculating the route.
"
+ "documentation":"Allow Hot (High Occupancy Toll) lanes while calculating an isoline.
Default value: false
"
},
"Hov":{
"shape":"Boolean",
- "documentation":"Allow Hov (High Occupancy vehicle) lanes while calculating the route.
"
+ "documentation":"Allow Hov (High Occupancy vehicle) lanes while calculating an isoline.
Default value: false
"
}
},
- "documentation":"Features that are allowed while calculating. a route
"
+ "documentation":"Features that are allowed while calculating an isoline.
"
},
"IsolineAvoidanceArea":{
"type":"structure",
@@ -702,7 +707,7 @@
"members":{
"Except":{
"shape":"IsolineAvoidanceAreaGeometryList",
- "documentation":"Exceptions to the provided avoidance geometry, to be included while calculating the route.
"
+ "documentation":"Exceptions to the provided avoidance geometry, to be included while calculating an isoline.
"
},
"Geometry":{
"shape":"IsolineAvoidanceAreaGeometry",
@@ -735,7 +740,7 @@
"documentation":"A list of PolylinePolygon's that are excluded for calculating isolines, the list can only contain 1 polygon. For more information on polyline encoding, see https://github.com/heremaps/flexiblepolyline/blob/master/README.md.
"
}
},
- "documentation":"The avoidance geometry, to be included while calculating the route.
"
+ "documentation":"The avoidance geometry, to be included while calculating an isoline.
"
},
"IsolineAvoidanceAreaGeometryList":{
"type":"list",
@@ -766,23 +771,23 @@
},
"CarShuttleTrains":{
"shape":"Boolean",
- "documentation":"Avoid car-shuttle-trains while calculating the route.
"
+ "documentation":"Avoid car-shuttle-trains while calculating an isoline.
"
},
"ControlledAccessHighways":{
"shape":"Boolean",
- "documentation":"Avoid controlled access highways while calculating the route.
"
+ "documentation":"Avoid controlled access highways while calculating an isoline.
"
},
"DirtRoads":{
"shape":"Boolean",
- "documentation":"Avoid dirt roads while calculating the route.
"
+ "documentation":"Avoid dirt roads while calculating an isoline.
"
},
"Ferries":{
"shape":"Boolean",
- "documentation":"Avoid ferries while calculating the route.
"
+ "documentation":"Avoid ferries while calculating an isoline.
"
},
"SeasonalClosure":{
"shape":"Boolean",
- "documentation":"Avoid roads that have seasonal closure while calculating the route.
"
+ "documentation":"Avoid roads that have seasonal closure while calculating an isoline.
"
},
"TollRoads":{
"shape":"Boolean",
@@ -798,7 +803,7 @@
},
"Tunnels":{
"shape":"Boolean",
- "documentation":"Avoid tunnels while calculating the route.
"
+ "documentation":"Avoid tunnels while calculating an isoline.
"
},
"UTurns":{
"shape":"Boolean",
@@ -809,7 +814,7 @@
"documentation":"Zone categories to be avoided.
"
}
},
- "documentation":"Features that are avoided while calculating a route. Avoidance is on a best-case basis. If an avoidance can't be satisfied for a particular case, it violates the avoidance and the returned response produces a notice for the violation.
"
+ "documentation":"Features that are avoided while calculating isolines. Avoidance is on a best-case basis. If an avoidance can't be satisfied for a particular case, it violates the avoidance and the returned response produces a notice for the violation.
"
},
"IsolineAvoidanceZoneCategory":{
"type":"structure",
@@ -848,7 +853,7 @@
"documentation":"The number of occupants in the vehicle.
Default Value: 1
"
}
},
- "documentation":"Options for vehicles.
"
+ "documentation":"Travel mode options when the provided travel mode is Car
.
"
},
"IsolineCarOptionsMaxSpeedDouble":{
"type":"double",
@@ -900,7 +905,7 @@
"documentation":"An ordered list of positions used to plot a route on a map in a lossy compression format.
LineString and Polyline are mutually exclusive properties.
"
}
},
- "documentation":"Geometry of the connection between different Isoline components.
"
+ "documentation":"Geometry of the connection between different isoline components.
"
},
"IsolineConnectionList":{
"type":"list",
@@ -950,7 +955,7 @@
},
"MaxResolution":{
"shape":"DistanceMeters",
- "documentation":"Maximum resolution of the returned isoline.
Unit: centimeters
"
+ "documentation":"Maximum resolution of the returned isoline.
Unit: meters
"
}
},
"documentation":"Isoline granularity related options.
"
@@ -1038,7 +1043,7 @@
"documentation":"Options to configure matching the provided position to a side of the street.
"
}
},
- "documentation":"Options for the property.
"
+ "documentation":"Origin related options.
"
},
"IsolineScooterOptions":{
"type":"structure",
@@ -1061,7 +1066,7 @@
"documentation":"The number of occupants in the vehicle.
Default Value: 1
"
}
},
- "documentation":"Options for the property.
"
+ "documentation":"Travel mode options when the provided travel mode is Scooter
"
},
"IsolineScooterOptionsMaxSpeedDouble":{
"type":"double",
@@ -1118,7 +1123,7 @@
"documentation":"Time to be used for the isoline calculation.
"
}
},
- "documentation":"Threshold to be used for the isoline calculation. Up to 3 thresholds per provided type can be requested.
"
+ "documentation":"Threshold to be used for the isoline calculation. Up to 5 thresholds per provided type can be requested.
"
},
"IsolineTrafficOptions":{
"type":"structure",
@@ -1177,7 +1182,7 @@
},
"Scooter":{
"shape":"IsolineScooterOptions",
- "documentation":"Travel mode options when the provided travel mode is \"Scooter\"
"
+ "documentation":"Travel mode options when the provided travel mode is Scooter
When travel mode is set to Scooter
, then the avoidance option ControlledAccessHighways
defaults to true
.
"
},
"Truck":{
"shape":"IsolineTruckOptions",
@@ -1401,7 +1406,11 @@
"members":{
"Avoid":{
"shape":"WaypointOptimizationAvoidanceOptions",
- "documentation":"Features that are avoided while calculating a route. Avoidance is on a best-case basis. If an avoidance can't be satisfied for a particular case, this setting is ignored.
"
+ "documentation":"Features that are avoided. Avoidance is on a best-case basis. If an avoidance can't be satisfied for a particular case, this setting is ignored.
"
+ },
+ "Clustering":{
+ "shape":"WaypointOptimizationClusteringOptions",
+ "documentation":"Clustering allows you to specify how nearby waypoints can be clustered to improve the optimized sequence.
"
},
"DepartureTime":{
"shape":"TimestampWithTimezoneOffset",
@@ -1804,14 +1813,14 @@
"members":{
"Hot":{
"shape":"Boolean",
- "documentation":"Allow Hot (High Occupancy Toll) lanes while calculating the route.
"
+ "documentation":"Allow Hot (High Occupancy Toll) lanes while calculating the route.
Default value: false
"
},
"Hov":{
"shape":"Boolean",
- "documentation":"Allow Hov (High Occupancy vehicle) lanes while calculating the route.
"
+ "documentation":"Allow Hov (High Occupancy vehicle) lanes while calculating the route.
Default value: false
"
}
},
- "documentation":"Features that are allowed while calculating. a route
"
+ "documentation":"Features that are allowed while calculating a route.
"
},
"RouteAvoidanceArea":{
"type":"structure",
@@ -1923,7 +1932,7 @@
"documentation":"Zone categories to be avoided.
"
}
},
- "documentation":"Options related to areas to be avoided.
"
+ "documentation":"Specifies options for areas to avoid when calculating the route. This is a best-effort avoidance setting, meaning the router will try to honor the avoidance preferences but may still include restricted areas if no feasible alternative route exists. If avoidance options are not followed, the response will indicate that the avoidance criteria were violated.
"
},
"RouteAvoidanceZoneCategory":{
"type":"structure",
@@ -1963,7 +1972,7 @@
"documentation":"The number of occupants in the vehicle.
Default Value: 1
"
}
},
- "documentation":"Travel mode options when the provided travel mode is \"Car\"
"
+ "documentation":"Travel mode options when the provided travel mode is Car
.
"
},
"RouteCarOptionsMaxSpeedDouble":{
"type":"double",
@@ -2139,7 +2148,7 @@
"documentation":"List of countries to be avoided defined by two-letter or three-letter country codes.
"
}
},
- "documentation":"Exclusion options for the route.
"
+ "documentation":"Specifies strict exclusion options for the route calculation. This setting mandates that the router will avoid any routes that include the specified options, rather than merely attempting to minimize them.
"
},
"RouteExitStepDetails":{
"type":"structure",
@@ -2342,7 +2351,8 @@
"NoSchedule",
"Other",
"ViolatedAvoidFerry",
- "ViolatedAvoidRailFerry"
+ "ViolatedAvoidRailFerry",
+ "SeasonalClosure"
]
},
"RouteFerryNoticeList":{
@@ -2404,7 +2414,7 @@
},
"Distance":{
"shape":"DistanceMeters",
- "documentation":"Distance of the computed span. This feature doesn't split a span, but is always computed on a span split by other properties.
"
+ "documentation":"Distance of the computed span. This feature doesn't split a span, but is always computed on a span split by other properties.
Unit: meters
"
},
"Duration":{
"shape":"DurationSeconds",
@@ -2640,7 +2650,8 @@
"Ferry",
"Pedestrian",
"Scooter",
- "Truck"
+ "Truck",
+ "CarShuttleTrain"
]
},
"RouteLegType":{
@@ -2712,11 +2723,11 @@
"members":{
"Hot":{
"shape":"Boolean",
- "documentation":"Allow Hot (High Occupancy Toll) lanes while calculating the route.
"
+ "documentation":"Allow Hot (High Occupancy Toll) lanes while calculating the route.
Default value: false
"
},
"Hov":{
"shape":"Boolean",
- "documentation":"Allow Hov (High Occupancy vehicle) lanes while calculating the route.
"
+ "documentation":"Allow Hov (High Occupancy vehicle) lanes while calculating the route.
Default value: false
"
}
},
"documentation":"Allow Options related to the route matrix.
"
@@ -2834,7 +2845,7 @@
"documentation":"Zone categories to be avoided.
"
}
},
- "documentation":"Options related to the route matrix.
"
+ "documentation":"Specifies options for areas to avoid when calculating the route. This is a best-effort avoidance setting, meaning the router will try to honor the avoidance preferences but may still include restricted areas if no feasible alternative route exists. If avoidance options are not followed, the response will indicate that the avoidance criteria were violated.
"
},
"RouteMatrixAvoidanceOptionsAreasList":{
"type":"list",
@@ -2917,7 +2928,7 @@
"documentation":"The number of occupants in the vehicle.
Default Value: 1
"
}
},
- "documentation":"Options related to the car.
"
+ "documentation":"Travel mode options when the provided travel mode is Car
.
"
},
"RouteMatrixCarOptionsMaxSpeedDouble":{
"type":"double",
@@ -3015,7 +3026,7 @@
"documentation":"List of countries to be avoided defined by two-letter or three-letter country codes.
"
}
},
- "documentation":"Exclusion options.
"
+ "documentation":"Specifies strict exclusion options for the route calculation. This setting mandates that the router will avoid any routes that include the specified options, rather than merely attempting to minimize them.
"
},
"RouteMatrixHazardousCargoType":{
"type":"string",
@@ -3127,7 +3138,7 @@
"documentation":"The number of occupants in the vehicle.
Default Value: 1
"
}
},
- "documentation":"Travel mode options when the provided travel mode is \"Scooter\"
"
+ "documentation":"Travel mode options when the provided travel mode is Scooter
"
},
"RouteMatrixScooterOptionsMaxSpeedDouble":{
"type":"double",
@@ -3202,7 +3213,7 @@
},
"Scooter":{
"shape":"RouteMatrixScooterOptions",
- "documentation":"Travel mode options when the provided travel mode is \"Scooter\"
"
+ "documentation":"Travel mode options when the provided travel mode is Scooter
When travel mode is set to Scooter
, then the avoidance option ControlledAccessHighways
defaults to true
.
"
},
"Truck":{
"shape":"RouteMatrixTruckOptions",
@@ -4030,7 +4041,7 @@
"documentation":"The number of occupants in the vehicle.
Default Value: 1
"
}
},
- "documentation":"Travel mode options when the provided travel mode is \"Scooter\"
"
+ "documentation":"Travel mode options when the provided travel mode is Scooter
"
},
"RouteScooterOptionsMaxSpeedDouble":{
"type":"double",
@@ -4702,7 +4713,7 @@
},
"Scooter":{
"shape":"RouteScooterOptions",
- "documentation":"Travel mode options when the provided travel mode is \"Scooter\"
"
+ "documentation":"Travel mode options when the provided travel mode is Scooter
When travel mode is set to Scooter
, then the avoidance option ControlledAccessHighways
defaults to true
.
"
},
"Truck":{
"shape":"RouteTruckOptions",
@@ -5988,7 +5999,7 @@
"documentation":"Avoid U-turns for calculation on highways and motorways.
"
}
},
- "documentation":"Options for WaypointOptimizationAvoidance.
"
+ "documentation":"Specifies options for areas to avoid. This is a best-effort avoidance setting, meaning the router will try to honor the avoidance preferences but may still include restricted areas if no feasible alternative route exists. If avoidance options are not followed, the response will indicate that the avoidance criteria were violated.
"
},
"WaypointOptimizationAvoidanceOptionsAreasList":{
"type":"list",
@@ -5996,6 +6007,28 @@
"max":20,
"min":0
},
+ "WaypointOptimizationClusteringAlgorithm":{
+ "type":"string",
+ "enum":[
+ "DrivingDistance",
+ "TopologySegment"
+ ]
+ },
+ "WaypointOptimizationClusteringOptions":{
+ "type":"structure",
+ "required":["Algorithm"],
+ "members":{
+ "Algorithm":{
+ "shape":"WaypointOptimizationClusteringAlgorithm",
+ "documentation":"The algorithm to be used. DrivingDistance
assigns all the waypoints that are within driving distance of each other into a single cluster. TopologySegment
assigns all the waypoints that are within the same topology segment into a single cluster. A Topology segment is a linear stretch of road between two junctions.
"
+ },
+ "DrivingDistanceOptions":{
+ "shape":"WaypointOptimizationDrivingDistanceOptions",
+ "documentation":"Driving distance options to be used when the clustering algorithm is DrivingDistance.
"
+ }
+ },
+ "documentation":"Options for WaypointOptimizationClustering.
"
+ },
"WaypointOptimizationConnection":{
"type":"structure",
"required":[
@@ -6097,6 +6130,17 @@
},
"documentation":"Driver related options.
"
},
+ "WaypointOptimizationDrivingDistanceOptions":{
+ "type":"structure",
+ "required":["DrivingDistance"],
+ "members":{
+ "DrivingDistance":{
+ "shape":"DistanceMeters",
+ "documentation":"DrivingDistance assigns all the waypoints that are within driving distance of each other into a single cluster.
"
+ }
+ },
+ "documentation":"Driving distance related options.
"
+ },
"WaypointOptimizationExclusionOptions":{
"type":"structure",
"required":["Countries"],
@@ -6106,7 +6150,7 @@
"documentation":"List of countries to be avoided defined by two-letter or three-letter country codes.
"
}
},
- "documentation":"Exclusion options.
"
+ "documentation":"Specifies strict exclusion options for the route calculation. This setting mandates that the router will avoid any routes that include the specified options, rather than merely attempting to minimize them.
"
},
"WaypointOptimizationFailedConstraint":{
"type":"structure",
@@ -6185,6 +6229,10 @@
"shape":"TimestampWithTimezoneOffset",
"documentation":"Estimated time of arrival at the destination.
Time format:YYYY-MM-DDThh:mm:ss.sssZ | YYYY-MM-DDThh:mm:ss.sss+hh:mm
Examples:
2020-04-22T17:57:24Z
2020-04-22T17:57:24+02:00
"
},
+ "ClusterIndex":{
+ "shape":"ClusterIndex",
+ "documentation":"Index of the cluster the waypoint is associated with. The index is included in the response only if clustering was performed while processing the request.
"
+ },
"DepartureTime":{
"shape":"TimestampWithTimezoneOffset",
"documentation":"Estimated time of departure from thr origin.
Time format:YYYY-MM-DDThh:mm:ss.sssZ | YYYY-MM-DDThh:mm:ss.sss+hh:mm
Examples:
2020-04-22T17:57:24Z
2020-04-22T17:57:24+02:00
"
@@ -6212,7 +6260,7 @@
"documentation":"The Origin Id.
"
}
},
- "documentation":"Options related to the origin.
"
+ "documentation":"Origin related options.
"
},
"WaypointOptimizationPedestrianOptions":{
"type":"structure",
From a2ed9d782f214d6cdb428b5a997e2d626eb6a36a Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Fri, 31 Jan 2025 19:06:10 +0000
Subject: [PATCH 08/10] Amazon Relational Database Service Update: Updates to
Aurora MySQL and Aurora PostgreSQL API pages with instance log type in the
create and modify DB Cluster.
---
...-AmazonRelationalDatabaseService-7fa8dec.json | 6 ++++++
.../resources/codegen-resources/service-2.json | 16 ++++++++--------
2 files changed, 14 insertions(+), 8 deletions(-)
create mode 100644 .changes/next-release/feature-AmazonRelationalDatabaseService-7fa8dec.json
diff --git a/.changes/next-release/feature-AmazonRelationalDatabaseService-7fa8dec.json b/.changes/next-release/feature-AmazonRelationalDatabaseService-7fa8dec.json
new file mode 100644
index 00000000000..b6a256f83c2
--- /dev/null
+++ b/.changes/next-release/feature-AmazonRelationalDatabaseService-7fa8dec.json
@@ -0,0 +1,6 @@
+{
+ "type": "feature",
+ "category": "Amazon Relational Database Service",
+ "contributor": "",
+ "description": "Updates to Aurora MySQL and Aurora PostgreSQL API pages with instance log type in the create and modify DB Cluster."
+}
diff --git a/services/rds/src/main/resources/codegen-resources/service-2.json b/services/rds/src/main/resources/codegen-resources/service-2.json
index f9b93f2fae6..3b5e379f819 100644
--- a/services/rds/src/main/resources/codegen-resources/service-2.json
+++ b/services/rds/src/main/resources/codegen-resources/service-2.json
@@ -2965,7 +2965,7 @@
{"shape":"SnapshotQuotaExceededFault"},
{"shape":"InvalidDBClusterStateFault"}
],
- "documentation":"Stops an Amazon RDS DB instance. When you stop a DB instance, Amazon RDS retains the DB instance's metadata, including its endpoint, DB parameter group, and option group membership. Amazon RDS also retains the transaction logs so you can do a point-in-time restore if necessary.
For more information, see Stopping an Amazon RDS DB Instance Temporarily in the Amazon RDS User Guide.
This command doesn't apply to RDS Custom, Aurora MySQL, and Aurora PostgreSQL. For Aurora clusters, use StopDBCluster
instead.
"
+ "documentation":"Stops an Amazon RDS DB instance temporarily. When you stop a DB instance, Amazon RDS retains the DB instance's metadata, including its endpoint, DB parameter group, and option group membership. Amazon RDS also retains the transaction logs so you can do a point-in-time restore if necessary. The instance restarts automatically after 7 days.
For more information, see Stopping an Amazon RDS DB Instance Temporarily in the Amazon RDS User Guide.
This command doesn't apply to RDS Custom, Aurora MySQL, and Aurora PostgreSQL. For Aurora clusters, use StopDBCluster
instead.
"
},
"StopDBInstanceAutomatedBackupsReplication":{
"name":"StopDBInstanceAutomatedBackupsReplication",
@@ -4234,7 +4234,7 @@
},
"EnableCloudwatchLogsExports":{
"shape":"LogTypeList",
- "documentation":"The list of log types that need to be enabled for exporting to CloudWatch Logs.
Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
The following values are valid for each DB engine:
-
Aurora MySQL - audit | error | general | slowquery
-
Aurora PostgreSQL - postgresql
-
RDS for MySQL - error | general | slowquery
-
RDS for PostgreSQL - postgresql | upgrade
For more information about exporting CloudWatch Logs for Amazon RDS, see Publishing Database Logs to Amazon CloudWatch Logs in the Amazon RDS User Guide.
For more information about exporting CloudWatch Logs for Amazon Aurora, see Publishing Database Logs to Amazon CloudWatch Logs in the Amazon Aurora User Guide.
"
+ "documentation":"The list of log types that need to be enabled for exporting to CloudWatch Logs.
Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
The following values are valid for each DB engine:
-
Aurora MySQL - audit | error | general | instance | slowquery
-
Aurora PostgreSQL - instance | postgresql
-
RDS for MySQL - error | general | slowquery
-
RDS for PostgreSQL - postgresql | upgrade
For more information about exporting CloudWatch Logs for Amazon RDS, see Publishing Database Logs to Amazon CloudWatch Logs in the Amazon RDS User Guide.
For more information about exporting CloudWatch Logs for Amazon Aurora, see Publishing Database Logs to Amazon CloudWatch Logs in the Amazon Aurora User Guide.
"
},
"EngineMode":{
"shape":"String",
@@ -4665,7 +4665,7 @@
},
"StorageThroughput":{
"shape":"IntegerOptional",
- "documentation":"The storage throughput value for the DB instance.
This setting applies only to the gp3
storage type.
This setting doesn't apply to Amazon Aurora or RDS Custom DB instances.
"
+ "documentation":"The storage throughput value, in mebibyte per second (MiBps), for the DB instance.
This setting applies only to the gp3
storage type.
This setting doesn't apply to Amazon Aurora or RDS Custom DB instances.
"
},
"ManageMasterUserPassword":{
"shape":"BooleanOptional",
@@ -5596,7 +5596,7 @@
},
"CloneGroupId":{
"shape":"String",
- "documentation":"The ID of the clone group with which the DB cluster is associated.
"
+ "documentation":"The ID of the clone group with which the DB cluster is associated. For newly created clusters, the ID is typically null.
If you clone a DB cluster when the ID is null, the operation populates the ID value for the source cluster and the clone because both clusters become part of the same clone group. Even if you delete the clone cluster, the clone group ID remains for the lifetime of the source cluster to show that it was used in a cloning operation.
For PITR, the clone group ID is inherited from the source cluster. For snapshot restore operations, the clone group ID isn't inherited from the source cluster.
"
},
"ClusterCreateTime":{
"shape":"TStamp",
@@ -12335,7 +12335,7 @@
},
"CloudwatchLogsExportConfiguration":{
"shape":"CloudwatchLogsExportConfiguration",
- "documentation":"The configuration setting for the log types to be enabled for export to CloudWatch Logs for a specific DB cluster.
Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
The following values are valid for each DB engine:
-
Aurora MySQL - audit | error | general | slowquery
-
Aurora PostgreSQL - postgresql
-
RDS for MySQL - error | general | slowquery
-
RDS for PostgreSQL - postgresql | upgrade
For more information about exporting CloudWatch Logs for Amazon RDS, see Publishing Database Logs to Amazon CloudWatch Logs in the Amazon RDS User Guide.
For more information about exporting CloudWatch Logs for Amazon Aurora, see Publishing Database Logs to Amazon CloudWatch Logs in the Amazon Aurora User Guide.
"
+ "documentation":"The configuration setting for the log types to be enabled for export to CloudWatch Logs for a specific DB cluster.
Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
The following values are valid for each DB engine:
-
Aurora MySQL - audit | error | general | instance | slowquery
-
Aurora PostgreSQL - instance | postgresql
-
RDS for MySQL - error | general | slowquery
-
RDS for PostgreSQL - postgresql | upgrade
For more information about exporting CloudWatch Logs for Amazon RDS, see Publishing Database Logs to Amazon CloudWatch Logs in the Amazon RDS User Guide.
For more information about exporting CloudWatch Logs for Amazon Aurora, see Publishing Database Logs to Amazon CloudWatch Logs in the Amazon Aurora User Guide.
"
},
"EngineVersion":{
"shape":"String",
@@ -14971,7 +14971,7 @@
},
"EnableCloudwatchLogsExports":{
"shape":"LogTypeList",
- "documentation":"The list of logs that the restored DB cluster is to export to CloudWatch Logs. The values in the list depend on the DB engine being used.
Aurora MySQL
Possible values are audit
, error
, general
, and slowquery
.
For more information about exporting CloudWatch Logs for Amazon Aurora, see Publishing Database Logs to Amazon CloudWatch Logs in the Amazon Aurora User Guide.
"
+ "documentation":"The list of logs that the restored DB cluster is to export to CloudWatch Logs. The values in the list depend on the DB engine being used.
Aurora MySQL
Possible values are audit
, error
, general
, instance
, and slowquery
.
Aurora PostgreSQL
Possible value are instance
and postgresql
.
For more information about exporting CloudWatch Logs for Amazon RDS, see Publishing Database Logs to Amazon CloudWatch Logs in the Amazon RDS User Guide.
For more information about exporting CloudWatch Logs for Amazon Aurora, see Publishing Database Logs to Amazon CloudWatch Logs in the Amazon Aurora User Guide.
"
},
"DeletionProtection":{
"shape":"BooleanOptional",
@@ -15084,7 +15084,7 @@
},
"EnableCloudwatchLogsExports":{
"shape":"LogTypeList",
- "documentation":"The list of logs that the restored DB cluster is to export to Amazon CloudWatch Logs. The values in the list depend on the DB engine being used.
RDS for MySQL
Possible values are error
, general
, and slowquery
.
RDS for PostgreSQL
Possible values are postgresql
and upgrade
.
Aurora MySQL
Possible values are audit
, error
, general
, and slowquery
.
Aurora PostgreSQL
Possible value is postgresql
.
For more information about exporting CloudWatch Logs for Amazon RDS, see Publishing Database Logs to Amazon CloudWatch Logs in the Amazon RDS User Guide.
For more information about exporting CloudWatch Logs for Amazon Aurora, see Publishing Database Logs to Amazon CloudWatch Logs in the Amazon Aurora User Guide.
Valid for: Aurora DB clusters and Multi-AZ DB clusters
"
+ "documentation":"The list of logs that the restored DB cluster is to export to Amazon CloudWatch Logs. The values in the list depend on the DB engine being used.
RDS for MySQL
Possible values are error
, general
, and slowquery
.
RDS for PostgreSQL
Possible values are postgresql
and upgrade
.
Aurora MySQL
Possible values are audit
, error
, general
, instance
, and slowquery
.
Aurora PostgreSQL
Possible value are instance
and postgresql
.
For more information about exporting CloudWatch Logs for Amazon RDS, see Publishing Database Logs to Amazon CloudWatch Logs in the Amazon RDS User Guide.
For more information about exporting CloudWatch Logs for Amazon Aurora, see Publishing Database Logs to Amazon CloudWatch Logs in the Amazon Aurora User Guide.
Valid for: Aurora DB clusters and Multi-AZ DB clusters
"
},
"EngineMode":{
"shape":"String",
@@ -15227,7 +15227,7 @@
},
"EnableCloudwatchLogsExports":{
"shape":"LogTypeList",
- "documentation":"The list of logs that the restored DB cluster is to export to CloudWatch Logs. The values in the list depend on the DB engine being used.
RDS for MySQL
Possible values are error
, general
, and slowquery
.
RDS for PostgreSQL
Possible values are postgresql
and upgrade
.
Aurora MySQL
Possible values are audit
, error
, general
, and slowquery
.
Aurora PostgreSQL
Possible value is postgresql
.
For more information about exporting CloudWatch Logs for Amazon RDS, see Publishing Database Logs to Amazon CloudWatch Logs in the Amazon RDS User Guide.
For more information about exporting CloudWatch Logs for Amazon Aurora, see Publishing Database Logs to Amazon CloudWatch Logs in the Amazon Aurora User Guide.
Valid for: Aurora DB clusters and Multi-AZ DB clusters
"
+ "documentation":"The list of logs that the restored DB cluster is to export to CloudWatch Logs. The values in the list depend on the DB engine being used.
RDS for MySQL
Possible values are error
, general
, and slowquery
.
RDS for PostgreSQL
Possible values are postgresql
and upgrade
.
Aurora MySQL
Possible values are audit
, error
, general
, instance
, and slowquery
.
Aurora PostgreSQL
Possible value are instance
and postgresql
.
For more information about exporting CloudWatch Logs for Amazon RDS, see Publishing Database Logs to Amazon CloudWatch Logs in the Amazon RDS User Guide.
For more information about exporting CloudWatch Logs for Amazon Aurora, see Publishing Database Logs to Amazon CloudWatch Logs in the Amazon Aurora User Guide.
Valid for: Aurora DB clusters and Multi-AZ DB clusters
"
},
"DBClusterParameterGroupName":{
"shape":"String",
From 0a4817c9b98d9cf9dc99f108e46b7e1faa1ba5bd Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Fri, 31 Jan 2025 19:06:14 +0000
Subject: [PATCH 09/10] AWS CodeBuild Update: Added support for CodeBuild
self-hosted Buildkite runner builds
---
.changes/next-release/feature-AWSCodeBuild-4886656.json | 6 ++++++
.../src/main/resources/codegen-resources/service-2.json | 7 ++++---
2 files changed, 10 insertions(+), 3 deletions(-)
create mode 100644 .changes/next-release/feature-AWSCodeBuild-4886656.json
diff --git a/.changes/next-release/feature-AWSCodeBuild-4886656.json b/.changes/next-release/feature-AWSCodeBuild-4886656.json
new file mode 100644
index 00000000000..93c9c3b7e88
--- /dev/null
+++ b/.changes/next-release/feature-AWSCodeBuild-4886656.json
@@ -0,0 +1,6 @@
+{
+ "type": "feature",
+ "category": "AWS CodeBuild",
+ "contributor": "",
+ "description": "Added support for CodeBuild self-hosted Buildkite runner builds"
+}
diff --git a/services/codebuild/src/main/resources/codegen-resources/service-2.json b/services/codebuild/src/main/resources/codegen-resources/service-2.json
index 5f031e8d55a..e56692c3e7e 100644
--- a/services/codebuild/src/main/resources/codegen-resources/service-2.json
+++ b/services/codebuild/src/main/resources/codegen-resources/service-2.json
@@ -5004,7 +5004,8 @@
"type":"string",
"enum":[
"BUILD",
- "BUILD_BATCH"
+ "BUILD_BATCH",
+ "RUNNER_BUILDKITE_BUILD"
]
},
"WebhookFilter":{
@@ -5016,7 +5017,7 @@
"members":{
"type":{
"shape":"WebhookFilterType",
- "documentation":" The type of webhook filter. There are nine webhook filter types: EVENT
, ACTOR_ACCOUNT_ID
, HEAD_REF
, BASE_REF
, FILE_PATH
, COMMIT_MESSAGE
, TAG_NAME
, RELEASE_NAME
, and WORKFLOW_NAME
.
-
EVENT
-
A webhook event triggers a build when the provided pattern
matches one of nine event types: PUSH
, PULL_REQUEST_CREATED
, PULL_REQUEST_UPDATED
, PULL_REQUEST_CLOSED
, PULL_REQUEST_REOPENED
, PULL_REQUEST_MERGED
, RELEASED
, PRERELEASED
, and WORKFLOW_JOB_QUEUED
. The EVENT
patterns are specified as a comma-separated string. For example, PUSH, PULL_REQUEST_CREATED, PULL_REQUEST_UPDATED
filters all push, pull request created, and pull request updated events.
Types PULL_REQUEST_REOPENED
and WORKFLOW_JOB_QUEUED
work with GitHub and GitHub Enterprise only. Types RELEASED
and PRERELEASED
work with GitHub only.
-
ACTOR_ACCOUNT_ID
-
HEAD_REF
-
BASE_REF
-
FILE_PATH
-
COMMIT_MESSAGE
-
TAG_NAME
-
RELEASE_NAME
-
REPOSITORY_NAME
-
WORKFLOW_NAME
"
+ "documentation":" The type of webhook filter. There are nine webhook filter types: EVENT
, ACTOR_ACCOUNT_ID
, HEAD_REF
, BASE_REF
, FILE_PATH
, COMMIT_MESSAGE
, TAG_NAME
, RELEASE_NAME
, and WORKFLOW_NAME
.
-
EVENT
-
A webhook event triggers a build when the provided pattern
matches one of nine event types: PUSH
, PULL_REQUEST_CREATED
, PULL_REQUEST_UPDATED
, PULL_REQUEST_CLOSED
, PULL_REQUEST_REOPENED
, PULL_REQUEST_MERGED
, RELEASED
, PRERELEASED
, and WORKFLOW_JOB_QUEUED
. The EVENT
patterns are specified as a comma-separated string. For example, PUSH, PULL_REQUEST_CREATED, PULL_REQUEST_UPDATED
filters all push, pull request created, and pull request updated events.
Types PULL_REQUEST_REOPENED
and WORKFLOW_JOB_QUEUED
work with GitHub and GitHub Enterprise only. Types RELEASED
and PRERELEASED
work with GitHub only.
-
ACTOR_ACCOUNT_ID
-
HEAD_REF
-
BASE_REF
-
FILE_PATH
-
COMMIT_MESSAGE
-
TAG_NAME
-
RELEASE_NAME
-
REPOSITORY_NAME
-
WORKFLOW_NAME
"
},
"pattern":{
"shape":"String",
@@ -5027,7 +5028,7 @@
"documentation":" Used to indicate that the pattern
determines which webhook events do not trigger a build. If true, then a webhook event that does not match the pattern
triggers a build. If false, then a webhook event that matches the pattern
triggers a build.
"
}
},
- "documentation":" A filter used to determine which webhooks trigger a build.
"
+ "documentation":"A filter used to determine which webhooks trigger a build.
"
},
"WebhookFilterType":{
"type":"string",
From 5530693b08153b8a739d7fd0a4b5bbe3c22ed121 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Fri, 31 Jan 2025 19:08:44 +0000
Subject: [PATCH 10/10] Release 2.30.11. Updated CHANGELOG.md, README.md and
all pom.xml.
---
.changes/2.30.11.json | 54 +++++++++++++++++++
.../bugfix-AWSSDKforJavav2-466bf4c.json | 6 ---
.../next-release/bugfix-AmazonS3-6b41d5e.json | 6 ---
.../feature-AWSCodeBuild-4886656.json | 6 ---
...AgentsforAmazonBedrockRuntime-e40f49a.json | 6 ---
...AmazonLocationServiceRoutesV2-ebad606.json | 6 ---
...ature-AmazonPrometheusService-18fc7b1.json | 6 ---
...azonRelationalDatabaseService-7fa8dec.json | 6 ---
...eature-AmazonSageMakerService-871d146.json | 6 ---
CHANGELOG.md | 33 ++++++++++++
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/protocols/smithy-rpcv2-protocol/pom.xml | 2 +-
core/regions/pom.xml | 2 +-
core/retries-spi/pom.xml | 2 +-
core/retries/pom.xml | 2 +-
core/sdk-core/pom.xml | 2 +-
http-client-spi/pom.xml | 2 +-
http-clients/apache-client/pom.xml | 2 +-
http-clients/aws-crt-client/pom.xml | 2 +-
http-clients/netty-nio-client/pom.xml | 2 +-
http-clients/pom.xml | 2 +-
http-clients/url-connection-client/pom.xml | 2 +-
.../cloudwatch-metric-publisher/pom.xml | 2 +-
.../emf-metric-logging-publisher/pom.xml | 2 +-
metric-publishers/pom.xml | 2 +-
pom.xml | 2 +-
release-scripts/pom.xml | 2 +-
services-custom/dynamodb-enhanced/pom.xml | 2 +-
services-custom/iam-policy-builder/pom.xml | 2 +-
services-custom/pom.xml | 2 +-
.../s3-event-notifications/pom.xml | 2 +-
services-custom/s3-transfer-manager/pom.xml | 2 +-
services/accessanalyzer/pom.xml | 2 +-
services/account/pom.xml | 2 +-
services/acm/pom.xml | 2 +-
services/acmpca/pom.xml | 2 +-
services/amp/pom.xml | 2 +-
services/amplify/pom.xml | 2 +-
services/amplifybackend/pom.xml | 2 +-
services/amplifyuibuilder/pom.xml | 2 +-
services/apigateway/pom.xml | 2 +-
services/apigatewaymanagementapi/pom.xml | 2 +-
services/apigatewayv2/pom.xml | 2 +-
services/appconfig/pom.xml | 2 +-
services/appconfigdata/pom.xml | 2 +-
services/appfabric/pom.xml | 2 +-
services/appflow/pom.xml | 2 +-
services/appintegrations/pom.xml | 2 +-
services/applicationautoscaling/pom.xml | 2 +-
services/applicationcostprofiler/pom.xml | 2 +-
services/applicationdiscovery/pom.xml | 2 +-
services/applicationinsights/pom.xml | 2 +-
services/applicationsignals/pom.xml | 2 +-
services/appmesh/pom.xml | 2 +-
services/apprunner/pom.xml | 2 +-
services/appstream/pom.xml | 2 +-
services/appsync/pom.xml | 2 +-
services/apptest/pom.xml | 2 +-
services/arczonalshift/pom.xml | 2 +-
services/artifact/pom.xml | 2 +-
services/athena/pom.xml | 2 +-
services/auditmanager/pom.xml | 2 +-
services/autoscaling/pom.xml | 2 +-
services/autoscalingplans/pom.xml | 2 +-
services/b2bi/pom.xml | 2 +-
services/backup/pom.xml | 2 +-
services/backupgateway/pom.xml | 2 +-
services/backupsearch/pom.xml | 2 +-
services/batch/pom.xml | 2 +-
services/bcmdataexports/pom.xml | 2 +-
services/bcmpricingcalculator/pom.xml | 2 +-
services/bedrock/pom.xml | 2 +-
services/bedrockagent/pom.xml | 2 +-
services/bedrockagentruntime/pom.xml | 2 +-
services/bedrockdataautomation/pom.xml | 2 +-
services/bedrockdataautomationruntime/pom.xml | 2 +-
services/bedrockruntime/pom.xml | 2 +-
services/billing/pom.xml | 2 +-
services/billingconductor/pom.xml | 2 +-
services/braket/pom.xml | 2 +-
services/budgets/pom.xml | 2 +-
services/chatbot/pom.xml | 2 +-
services/chime/pom.xml | 2 +-
services/chimesdkidentity/pom.xml | 2 +-
services/chimesdkmediapipelines/pom.xml | 2 +-
services/chimesdkmeetings/pom.xml | 2 +-
services/chimesdkmessaging/pom.xml | 2 +-
services/chimesdkvoice/pom.xml | 2 +-
services/cleanrooms/pom.xml | 2 +-
services/cleanroomsml/pom.xml | 2 +-
services/cloud9/pom.xml | 2 +-
services/cloudcontrol/pom.xml | 2 +-
services/clouddirectory/pom.xml | 2 +-
services/cloudformation/pom.xml | 2 +-
services/cloudfront/pom.xml | 2 +-
services/cloudfrontkeyvaluestore/pom.xml | 2 +-
services/cloudhsm/pom.xml | 2 +-
services/cloudhsmv2/pom.xml | 2 +-
services/cloudsearch/pom.xml | 2 +-
services/cloudsearchdomain/pom.xml | 2 +-
services/cloudtrail/pom.xml | 2 +-
services/cloudtraildata/pom.xml | 2 +-
services/cloudwatch/pom.xml | 2 +-
services/cloudwatchevents/pom.xml | 2 +-
services/cloudwatchlogs/pom.xml | 2 +-
services/codeartifact/pom.xml | 2 +-
services/codebuild/pom.xml | 2 +-
services/codecatalyst/pom.xml | 2 +-
services/codecommit/pom.xml | 2 +-
services/codeconnections/pom.xml | 2 +-
services/codedeploy/pom.xml | 2 +-
services/codeguruprofiler/pom.xml | 2 +-
services/codegurureviewer/pom.xml | 2 +-
services/codegurusecurity/pom.xml | 2 +-
services/codepipeline/pom.xml | 2 +-
services/codestarconnections/pom.xml | 2 +-
services/codestarnotifications/pom.xml | 2 +-
services/cognitoidentity/pom.xml | 2 +-
services/cognitoidentityprovider/pom.xml | 2 +-
services/cognitosync/pom.xml | 2 +-
services/comprehend/pom.xml | 2 +-
services/comprehendmedical/pom.xml | 2 +-
services/computeoptimizer/pom.xml | 2 +-
services/config/pom.xml | 2 +-
services/connect/pom.xml | 2 +-
services/connectcampaigns/pom.xml | 2 +-
services/connectcampaignsv2/pom.xml | 2 +-
services/connectcases/pom.xml | 2 +-
services/connectcontactlens/pom.xml | 2 +-
services/connectparticipant/pom.xml | 2 +-
services/controlcatalog/pom.xml | 2 +-
services/controltower/pom.xml | 2 +-
services/costandusagereport/pom.xml | 2 +-
services/costexplorer/pom.xml | 2 +-
services/costoptimizationhub/pom.xml | 2 +-
services/customerprofiles/pom.xml | 2 +-
services/databasemigration/pom.xml | 2 +-
services/databrew/pom.xml | 2 +-
services/dataexchange/pom.xml | 2 +-
services/datapipeline/pom.xml | 2 +-
services/datasync/pom.xml | 2 +-
services/datazone/pom.xml | 2 +-
services/dax/pom.xml | 2 +-
services/deadline/pom.xml | 2 +-
services/detective/pom.xml | 2 +-
services/devicefarm/pom.xml | 2 +-
services/devopsguru/pom.xml | 2 +-
services/directconnect/pom.xml | 2 +-
services/directory/pom.xml | 2 +-
services/directoryservicedata/pom.xml | 2 +-
services/dlm/pom.xml | 2 +-
services/docdb/pom.xml | 2 +-
services/docdbelastic/pom.xml | 2 +-
services/drs/pom.xml | 2 +-
services/dsql/pom.xml | 2 +-
services/dynamodb/pom.xml | 2 +-
services/ebs/pom.xml | 2 +-
services/ec2/pom.xml | 2 +-
services/ec2instanceconnect/pom.xml | 2 +-
services/ecr/pom.xml | 2 +-
services/ecrpublic/pom.xml | 2 +-
services/ecs/pom.xml | 2 +-
services/efs/pom.xml | 2 +-
services/eks/pom.xml | 2 +-
services/eksauth/pom.xml | 2 +-
services/elasticache/pom.xml | 2 +-
services/elasticbeanstalk/pom.xml | 2 +-
services/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/geomaps/pom.xml | 2 +-
services/geoplaces/pom.xml | 2 +-
services/georoutes/pom.xml | 2 +-
services/glacier/pom.xml | 2 +-
services/globalaccelerator/pom.xml | 2 +-
services/glue/pom.xml | 2 +-
services/grafana/pom.xml | 2 +-
services/greengrass/pom.xml | 2 +-
services/greengrassv2/pom.xml | 2 +-
services/groundstation/pom.xml | 2 +-
services/guardduty/pom.xml | 2 +-
services/health/pom.xml | 2 +-
services/healthlake/pom.xml | 2 +-
services/iam/pom.xml | 2 +-
services/identitystore/pom.xml | 2 +-
services/imagebuilder/pom.xml | 2 +-
services/inspector/pom.xml | 2 +-
services/inspector2/pom.xml | 2 +-
services/inspectorscan/pom.xml | 2 +-
services/internetmonitor/pom.xml | 2 +-
services/invoicing/pom.xml | 2 +-
services/iot/pom.xml | 2 +-
services/iotanalytics/pom.xml | 2 +-
services/iotdataplane/pom.xml | 2 +-
services/iotdeviceadvisor/pom.xml | 2 +-
services/iotevents/pom.xml | 2 +-
services/ioteventsdata/pom.xml | 2 +-
services/iotfleethub/pom.xml | 2 +-
services/iotfleetwise/pom.xml | 2 +-
services/iotjobsdataplane/pom.xml | 2 +-
services/iotsecuretunneling/pom.xml | 2 +-
services/iotsitewise/pom.xml | 2 +-
services/iotthingsgraph/pom.xml | 2 +-
services/iottwinmaker/pom.xml | 2 +-
services/iotwireless/pom.xml | 2 +-
services/ivs/pom.xml | 2 +-
services/ivschat/pom.xml | 2 +-
services/ivsrealtime/pom.xml | 2 +-
services/kafka/pom.xml | 2 +-
services/kafkaconnect/pom.xml | 2 +-
services/kendra/pom.xml | 2 +-
services/kendraranking/pom.xml | 2 +-
services/keyspaces/pom.xml | 2 +-
services/kinesis/pom.xml | 2 +-
services/kinesisanalytics/pom.xml | 2 +-
services/kinesisanalyticsv2/pom.xml | 2 +-
services/kinesisvideo/pom.xml | 2 +-
services/kinesisvideoarchivedmedia/pom.xml | 2 +-
services/kinesisvideomedia/pom.xml | 2 +-
services/kinesisvideosignaling/pom.xml | 2 +-
services/kinesisvideowebrtcstorage/pom.xml | 2 +-
services/kms/pom.xml | 2 +-
services/lakeformation/pom.xml | 2 +-
services/lambda/pom.xml | 2 +-
services/launchwizard/pom.xml | 2 +-
services/lexmodelbuilding/pom.xml | 2 +-
services/lexmodelsv2/pom.xml | 2 +-
services/lexruntime/pom.xml | 2 +-
services/lexruntimev2/pom.xml | 2 +-
services/licensemanager/pom.xml | 2 +-
.../licensemanagerlinuxsubscriptions/pom.xml | 2 +-
.../licensemanagerusersubscriptions/pom.xml | 2 +-
services/lightsail/pom.xml | 2 +-
services/location/pom.xml | 2 +-
services/lookoutequipment/pom.xml | 2 +-
services/lookoutmetrics/pom.xml | 2 +-
services/lookoutvision/pom.xml | 2 +-
services/m2/pom.xml | 2 +-
services/machinelearning/pom.xml | 2 +-
services/macie2/pom.xml | 2 +-
services/mailmanager/pom.xml | 2 +-
services/managedblockchain/pom.xml | 2 +-
services/managedblockchainquery/pom.xml | 2 +-
services/marketplaceagreement/pom.xml | 2 +-
services/marketplacecatalog/pom.xml | 2 +-
services/marketplacecommerceanalytics/pom.xml | 2 +-
services/marketplacedeployment/pom.xml | 2 +-
services/marketplaceentitlement/pom.xml | 2 +-
services/marketplacemetering/pom.xml | 2 +-
services/marketplacereporting/pom.xml | 2 +-
services/mediaconnect/pom.xml | 2 +-
services/mediaconvert/pom.xml | 2 +-
services/medialive/pom.xml | 2 +-
services/mediapackage/pom.xml | 2 +-
services/mediapackagev2/pom.xml | 2 +-
services/mediapackagevod/pom.xml | 2 +-
services/mediastore/pom.xml | 2 +-
services/mediastoredata/pom.xml | 2 +-
services/mediatailor/pom.xml | 2 +-
services/medicalimaging/pom.xml | 2 +-
services/memorydb/pom.xml | 2 +-
services/mgn/pom.xml | 2 +-
services/migrationhub/pom.xml | 2 +-
services/migrationhubconfig/pom.xml | 2 +-
services/migrationhuborchestrator/pom.xml | 2 +-
services/migrationhubrefactorspaces/pom.xml | 2 +-
services/migrationhubstrategy/pom.xml | 2 +-
services/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/networkflowmonitor/pom.xml | 2 +-
services/networkmanager/pom.xml | 2 +-
services/networkmonitor/pom.xml | 2 +-
services/notifications/pom.xml | 2 +-
services/notificationscontacts/pom.xml | 2 +-
services/oam/pom.xml | 2 +-
services/observabilityadmin/pom.xml | 2 +-
services/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/partnercentralselling/pom.xml | 2 +-
services/paymentcryptography/pom.xml | 2 +-
services/paymentcryptographydata/pom.xml | 2 +-
services/pcaconnectorad/pom.xml | 2 +-
services/pcaconnectorscep/pom.xml | 2 +-
services/pcs/pom.xml | 2 +-
services/personalize/pom.xml | 2 +-
services/personalizeevents/pom.xml | 2 +-
services/personalizeruntime/pom.xml | 2 +-
services/pi/pom.xml | 2 +-
services/pinpoint/pom.xml | 2 +-
services/pinpointemail/pom.xml | 2 +-
services/pinpointsmsvoice/pom.xml | 2 +-
services/pinpointsmsvoicev2/pom.xml | 2 +-
services/pipes/pom.xml | 2 +-
services/polly/pom.xml | 2 +-
services/pom.xml | 2 +-
services/pricing/pom.xml | 2 +-
services/privatenetworks/pom.xml | 2 +-
services/proton/pom.xml | 2 +-
services/qapps/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/s3tables/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/securityir/pom.xml | 2 +-
services/securitylake/pom.xml | 2 +-
.../serverlessapplicationrepository/pom.xml | 2 +-
services/servicecatalog/pom.xml | 2 +-
services/servicecatalogappregistry/pom.xml | 2 +-
services/servicediscovery/pom.xml | 2 +-
services/servicequotas/pom.xml | 2 +-
services/ses/pom.xml | 2 +-
services/sesv2/pom.xml | 2 +-
services/sfn/pom.xml | 2 +-
services/shield/pom.xml | 2 +-
services/signer/pom.xml | 2 +-
services/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/socialmessaging/pom.xml | 2 +-
services/sqs/pom.xml | 2 +-
services/ssm/pom.xml | 2 +-
services/ssmcontacts/pom.xml | 2 +-
services/ssmincidents/pom.xml | 2 +-
services/ssmquicksetup/pom.xml | 2 +-
services/ssmsap/pom.xml | 2 +-
services/sso/pom.xml | 2 +-
services/ssoadmin/pom.xml | 2 +-
services/ssooidc/pom.xml | 2 +-
services/storagegateway/pom.xml | 2 +-
services/sts/pom.xml | 2 +-
services/supplychain/pom.xml | 2 +-
services/support/pom.xml | 2 +-
services/supportapp/pom.xml | 2 +-
services/swf/pom.xml | 2 +-
services/synthetics/pom.xml | 2 +-
services/taxsettings/pom.xml | 2 +-
services/textract/pom.xml | 2 +-
services/timestreaminfluxdb/pom.xml | 2 +-
services/timestreamquery/pom.xml | 2 +-
services/timestreamwrite/pom.xml | 2 +-
services/tnb/pom.xml | 2 +-
services/transcribe/pom.xml | 2 +-
services/transcribestreaming/pom.xml | 2 +-
services/transfer/pom.xml | 2 +-
services/translate/pom.xml | 2 +-
services/trustedadvisor/pom.xml | 2 +-
services/verifiedpermissions/pom.xml | 2 +-
services/voiceid/pom.xml | 2 +-
services/vpclattice/pom.xml | 2 +-
services/waf/pom.xml | 2 +-
services/wafv2/pom.xml | 2 +-
services/wellarchitected/pom.xml | 2 +-
services/wisdom/pom.xml | 2 +-
services/workdocs/pom.xml | 2 +-
services/workmail/pom.xml | 2 +-
services/workmailmessageflow/pom.xml | 2 +-
services/workspaces/pom.xml | 2 +-
services/workspacesthinclient/pom.xml | 2 +-
services/workspacesweb/pom.xml | 2 +-
services/xray/pom.xml | 2 +-
test/architecture-tests/pom.xml | 2 +-
test/auth-tests/pom.xml | 2 +-
.../pom.xml | 2 +-
test/bundle-shading-tests/pom.xml | 2 +-
test/codegen-generated-classes-test/pom.xml | 2 +-
test/crt-unavailable-tests/pom.xml | 2 +-
test/http-client-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 +-
test/v2-migration-tests/pom.xml | 2 +-
third-party/pom.xml | 2 +-
third-party/third-party-jackson-core/pom.xml | 2 +-
.../pom.xml | 2 +-
third-party/third-party-slf4j-api/pom.xml | 2 +-
utils/pom.xml | 2 +-
v2-migration/pom.xml | 2 +-
500 files changed, 580 insertions(+), 541 deletions(-)
create mode 100644 .changes/2.30.11.json
delete mode 100644 .changes/next-release/bugfix-AWSSDKforJavav2-466bf4c.json
delete mode 100644 .changes/next-release/bugfix-AmazonS3-6b41d5e.json
delete mode 100644 .changes/next-release/feature-AWSCodeBuild-4886656.json
delete mode 100644 .changes/next-release/feature-AgentsforAmazonBedrockRuntime-e40f49a.json
delete mode 100644 .changes/next-release/feature-AmazonLocationServiceRoutesV2-ebad606.json
delete mode 100644 .changes/next-release/feature-AmazonPrometheusService-18fc7b1.json
delete mode 100644 .changes/next-release/feature-AmazonRelationalDatabaseService-7fa8dec.json
delete mode 100644 .changes/next-release/feature-AmazonSageMakerService-871d146.json
diff --git a/.changes/2.30.11.json b/.changes/2.30.11.json
new file mode 100644
index 00000000000..8ad870d0e4a
--- /dev/null
+++ b/.changes/2.30.11.json
@@ -0,0 +1,54 @@
+{
+ "version": "2.30.11",
+ "date": "2025-01-31",
+ "entries": [
+ {
+ "type": "bugfix",
+ "category": "AWS SDK for Java v2",
+ "contributor": "",
+ "description": "Fixed an issue in SdkHttpUtils used in SdkHttpFullRequest where constructing with a query string consisting of a single \"=\" would throw an ArrayIndexOutOfBoundsException."
+ },
+ {
+ "type": "bugfix",
+ "category": "Amazon S3",
+ "contributor": "",
+ "description": "Stopped populating SessionMode by default for the SDK-created S3 express sessions. This value already matched the service-side default, and was already not sent by most SDK languages."
+ },
+ {
+ "type": "feature",
+ "category": "AWS CodeBuild",
+ "contributor": "",
+ "description": "Added support for CodeBuild self-hosted Buildkite runner builds"
+ },
+ {
+ "type": "feature",
+ "category": "Agents for Amazon Bedrock Runtime",
+ "contributor": "",
+ "description": "This change is to deprecate the existing citation field under RetrieveAndGenerateStream API response in lieu of GeneratedResponsePart and RetrievedReferences"
+ },
+ {
+ "type": "feature",
+ "category": "Amazon Location Service Routes V2",
+ "contributor": "",
+ "description": "The OptimizeWaypoints API now supports 50 waypoints per request (20 with constraints like AccessHours or AppointmentTime). It adds waypoint clustering via Clustering and ClusteringIndex for better optimization. Also, total distance validation is removed for greater flexibility."
+ },
+ {
+ "type": "feature",
+ "category": "Amazon Prometheus Service",
+ "contributor": "",
+ "description": "Add support for sending metrics to cross account and CMCK AMP workspaces through RoleConfiguration on Create/Update Scraper."
+ },
+ {
+ "type": "feature",
+ "category": "Amazon Relational Database Service",
+ "contributor": "",
+ "description": "Updates to Aurora MySQL and Aurora PostgreSQL API pages with instance log type in the create and modify DB Cluster."
+ },
+ {
+ "type": "feature",
+ "category": "Amazon SageMaker Service",
+ "contributor": "",
+ "description": "This release introduces a new valid value in InstanceType parameter: p5en.48xlarge, in ProductionVariant."
+ }
+ ]
+}
\ No newline at end of file
diff --git a/.changes/next-release/bugfix-AWSSDKforJavav2-466bf4c.json b/.changes/next-release/bugfix-AWSSDKforJavav2-466bf4c.json
deleted file mode 100644
index 955d13a1637..00000000000
--- a/.changes/next-release/bugfix-AWSSDKforJavav2-466bf4c.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "bugfix",
- "category": "AWS SDK for Java v2",
- "contributor": "",
- "description": "Fixed an issue in SdkHttpUtils used in SdkHttpFullRequest where constructing with a query string consisting of a single \"=\" would throw an ArrayIndexOutOfBoundsException."
-}
\ No newline at end of file
diff --git a/.changes/next-release/bugfix-AmazonS3-6b41d5e.json b/.changes/next-release/bugfix-AmazonS3-6b41d5e.json
deleted file mode 100644
index 40730068a81..00000000000
--- a/.changes/next-release/bugfix-AmazonS3-6b41d5e.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "bugfix",
- "category": "Amazon S3",
- "contributor": "",
- "description": "Stopped populating SessionMode by default for the SDK-created S3 express sessions. This value already matched the service-side default, and was already not sent by most SDK languages."
-}
diff --git a/.changes/next-release/feature-AWSCodeBuild-4886656.json b/.changes/next-release/feature-AWSCodeBuild-4886656.json
deleted file mode 100644
index 93c9c3b7e88..00000000000
--- a/.changes/next-release/feature-AWSCodeBuild-4886656.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "feature",
- "category": "AWS CodeBuild",
- "contributor": "",
- "description": "Added support for CodeBuild self-hosted Buildkite runner builds"
-}
diff --git a/.changes/next-release/feature-AgentsforAmazonBedrockRuntime-e40f49a.json b/.changes/next-release/feature-AgentsforAmazonBedrockRuntime-e40f49a.json
deleted file mode 100644
index 974725f5e50..00000000000
--- a/.changes/next-release/feature-AgentsforAmazonBedrockRuntime-e40f49a.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "feature",
- "category": "Agents for Amazon Bedrock Runtime",
- "contributor": "",
- "description": "This change is to deprecate the existing citation field under RetrieveAndGenerateStream API response in lieu of GeneratedResponsePart and RetrievedReferences"
-}
diff --git a/.changes/next-release/feature-AmazonLocationServiceRoutesV2-ebad606.json b/.changes/next-release/feature-AmazonLocationServiceRoutesV2-ebad606.json
deleted file mode 100644
index d3630dd6ac0..00000000000
--- a/.changes/next-release/feature-AmazonLocationServiceRoutesV2-ebad606.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "feature",
- "category": "Amazon Location Service Routes V2",
- "contributor": "",
- "description": "The OptimizeWaypoints API now supports 50 waypoints per request (20 with constraints like AccessHours or AppointmentTime). It adds waypoint clustering via Clustering and ClusteringIndex for better optimization. Also, total distance validation is removed for greater flexibility."
-}
diff --git a/.changes/next-release/feature-AmazonPrometheusService-18fc7b1.json b/.changes/next-release/feature-AmazonPrometheusService-18fc7b1.json
deleted file mode 100644
index a0f0381f876..00000000000
--- a/.changes/next-release/feature-AmazonPrometheusService-18fc7b1.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "feature",
- "category": "Amazon Prometheus Service",
- "contributor": "",
- "description": "Add support for sending metrics to cross account and CMCK AMP workspaces through RoleConfiguration on Create/Update Scraper."
-}
diff --git a/.changes/next-release/feature-AmazonRelationalDatabaseService-7fa8dec.json b/.changes/next-release/feature-AmazonRelationalDatabaseService-7fa8dec.json
deleted file mode 100644
index b6a256f83c2..00000000000
--- a/.changes/next-release/feature-AmazonRelationalDatabaseService-7fa8dec.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "feature",
- "category": "Amazon Relational Database Service",
- "contributor": "",
- "description": "Updates to Aurora MySQL and Aurora PostgreSQL API pages with instance log type in the create and modify DB Cluster."
-}
diff --git a/.changes/next-release/feature-AmazonSageMakerService-871d146.json b/.changes/next-release/feature-AmazonSageMakerService-871d146.json
deleted file mode 100644
index 1c275d362cd..00000000000
--- a/.changes/next-release/feature-AmazonSageMakerService-871d146.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "feature",
- "category": "Amazon SageMaker Service",
- "contributor": "",
- "description": "This release introduces a new valid value in InstanceType parameter: p5en.48xlarge, in ProductionVariant."
-}
diff --git a/CHANGELOG.md b/CHANGELOG.md
index b40e668c4b3..daeb2523e7e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,37 @@
#### 👋 _Looking for changelogs for older versions? You can find them in the [changelogs](./changelogs) directory._
+# __2.30.11__ __2025-01-31__
+## __AWS CodeBuild__
+ - ### Features
+ - Added support for CodeBuild self-hosted Buildkite runner builds
+
+## __AWS SDK for Java v2__
+ - ### Bugfixes
+ - Fixed an issue in SdkHttpUtils used in SdkHttpFullRequest where constructing with a query string consisting of a single "=" would throw an ArrayIndexOutOfBoundsException.
+
+## __Agents for Amazon Bedrock Runtime__
+ - ### Features
+ - This change is to deprecate the existing citation field under RetrieveAndGenerateStream API response in lieu of GeneratedResponsePart and RetrievedReferences
+
+## __Amazon Location Service Routes V2__
+ - ### Features
+ - The OptimizeWaypoints API now supports 50 waypoints per request (20 with constraints like AccessHours or AppointmentTime). It adds waypoint clustering via Clustering and ClusteringIndex for better optimization. Also, total distance validation is removed for greater flexibility.
+
+## __Amazon Prometheus Service__
+ - ### Features
+ - Add support for sending metrics to cross account and CMCK AMP workspaces through RoleConfiguration on Create/Update Scraper.
+
+## __Amazon Relational Database Service__
+ - ### Features
+ - Updates to Aurora MySQL and Aurora PostgreSQL API pages with instance log type in the create and modify DB Cluster.
+
+## __Amazon S3__
+ - ### Bugfixes
+ - Stopped populating SessionMode by default for the SDK-created S3 express sessions. This value already matched the service-side default, and was already not sent by most SDK languages.
+
+## __Amazon SageMaker Service__
+ - ### Features
+ - This release introduces a new valid value in InstanceType parameter: p5en.48xlarge, in ProductionVariant.
+
# __2.30.10__ __2025-01-30__
## __AWS MediaTailor__
- ### Features
diff --git a/README.md b/README.md
index 3e22de0e111..7d27f8496f5 100644
--- a/README.md
+++ b/README.md
@@ -51,7 +51,7 @@ To automatically manage module versions (currently all modules have the same ver
software.amazon.awssdk
bom
- 2.30.10
+ 2.30.11
pom
import
@@ -85,12 +85,12 @@ Alternatively you can add dependencies for the specific services you use only:
software.amazon.awssdk
ec2
- 2.30.10
+ 2.30.11
software.amazon.awssdk
s3
- 2.30.10
+ 2.30.11
```
@@ -102,7 +102,7 @@ You can import the whole SDK into your project (includes *ALL* services). Please
software.amazon.awssdk
aws-sdk-java
- 2.30.10
+ 2.30.11
```
diff --git a/archetypes/archetype-app-quickstart/pom.xml b/archetypes/archetype-app-quickstart/pom.xml
index 598b2aed838..d0f2a8a9817 100644
--- a/archetypes/archetype-app-quickstart/pom.xml
+++ b/archetypes/archetype-app-quickstart/pom.xml
@@ -20,7 +20,7 @@
archetypes
software.amazon.awssdk
- 2.30.11-SNAPSHOT
+ 2.30.11
4.0.0
diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml
index 2e9042585d3..588bd0178c0 100644
--- a/archetypes/archetype-lambda/pom.xml
+++ b/archetypes/archetype-lambda/pom.xml
@@ -20,7 +20,7 @@
archetypes
software.amazon.awssdk
- 2.30.11-SNAPSHOT
+ 2.30.11
4.0.0
archetype-lambda
diff --git a/archetypes/archetype-tools/pom.xml b/archetypes/archetype-tools/pom.xml
index ff3cad1d412..02e4d1f9b81 100644
--- a/archetypes/archetype-tools/pom.xml
+++ b/archetypes/archetype-tools/pom.xml
@@ -20,7 +20,7 @@
archetypes
software.amazon.awssdk
- 2.30.11-SNAPSHOT
+ 2.30.11
4.0.0
diff --git a/archetypes/pom.xml b/archetypes/pom.xml
index a35bea9a35c..9038531e4fe 100644
--- a/archetypes/pom.xml
+++ b/archetypes/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.30.11-SNAPSHOT
+ 2.30.11
4.0.0
archetypes
diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml
index 249e18e2bae..03386ff9aba 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.30.11-SNAPSHOT
+ 2.30.11
../pom.xml
aws-sdk-java
diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml
index e6eb0649501..2650d7f3eae 100644
--- a/bom-internal/pom.xml
+++ b/bom-internal/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.30.11-SNAPSHOT
+ 2.30.11
4.0.0
diff --git a/bom/pom.xml b/bom/pom.xml
index 1180c6422e3..9ada7a87be9 100644
--- a/bom/pom.xml
+++ b/bom/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.30.11-SNAPSHOT
+ 2.30.11
../pom.xml
bom
diff --git a/bundle-logging-bridge/pom.xml b/bundle-logging-bridge/pom.xml
index a772db2b533..052fcaafa1d 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.30.11-SNAPSHOT
+ 2.30.11
bundle-logging-bridge
jar
diff --git a/bundle-sdk/pom.xml b/bundle-sdk/pom.xml
index 5cd25ac0abe..14c7f919ef1 100644
--- a/bundle-sdk/pom.xml
+++ b/bundle-sdk/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.30.11-SNAPSHOT
+ 2.30.11
bundle-sdk
jar
diff --git a/bundle/pom.xml b/bundle/pom.xml
index af9d0750c70..3f57d48f9bb 100644
--- a/bundle/pom.xml
+++ b/bundle/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.30.11-SNAPSHOT
+ 2.30.11
bundle
jar
diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml
index 15dd299a2e1..54525a912da 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.30.11-SNAPSHOT
+ 2.30.11
../pom.xml
codegen-lite-maven-plugin
diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml
index 204ddaf708d..3bac7d01cf0 100644
--- a/codegen-lite/pom.xml
+++ b/codegen-lite/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.30.11-SNAPSHOT
+ 2.30.11
codegen-lite
AWS Java SDK :: Code Generator Lite
diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml
index 14c75a3585e..b99e3a879bd 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.30.11-SNAPSHOT
+ 2.30.11
../pom.xml
codegen-maven-plugin
diff --git a/codegen/pom.xml b/codegen/pom.xml
index f22ecedc8e7..1db9eafd370 100644
--- a/codegen/pom.xml
+++ b/codegen/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.30.11-SNAPSHOT
+ 2.30.11
codegen
AWS Java SDK :: Code Generator
diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml
index 1af23df8d9e..5e39a2325f4 100644
--- a/core/annotations/pom.xml
+++ b/core/annotations/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.30.11-SNAPSHOT
+ 2.30.11
4.0.0
diff --git a/core/arns/pom.xml b/core/arns/pom.xml
index b7aca2a0bab..828c717694c 100644
--- a/core/arns/pom.xml
+++ b/core/arns/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.30.11-SNAPSHOT
+ 2.30.11
4.0.0
diff --git a/core/auth-crt/pom.xml b/core/auth-crt/pom.xml
index 4475c7e8c37..9ff047f5d0a 100644
--- a/core/auth-crt/pom.xml
+++ b/core/auth-crt/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.30.11-SNAPSHOT
+ 2.30.11
auth-crt
diff --git a/core/auth/pom.xml b/core/auth/pom.xml
index e47fc6a1429..08965086f17 100644
--- a/core/auth/pom.xml
+++ b/core/auth/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.30.11-SNAPSHOT
+ 2.30.11
auth
diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml
index 59bde17e6a2..f8465f27347 100644
--- a/core/aws-core/pom.xml
+++ b/core/aws-core/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.30.11-SNAPSHOT
+ 2.30.11
aws-core
diff --git a/core/checksums-spi/pom.xml b/core/checksums-spi/pom.xml
index 221123bdc01..71490420c5a 100644
--- a/core/checksums-spi/pom.xml
+++ b/core/checksums-spi/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.30.11-SNAPSHOT
+ 2.30.11
checksums-spi
diff --git a/core/checksums/pom.xml b/core/checksums/pom.xml
index a2c759ee467..fa44c30bf8f 100644
--- a/core/checksums/pom.xml
+++ b/core/checksums/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.30.11-SNAPSHOT
+ 2.30.11
checksums
diff --git a/core/crt-core/pom.xml b/core/crt-core/pom.xml
index 4b85c8011ff..435611bebf4 100644
--- a/core/crt-core/pom.xml
+++ b/core/crt-core/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
core
- 2.30.11-SNAPSHOT
+ 2.30.11
crt-core
diff --git a/core/endpoints-spi/pom.xml b/core/endpoints-spi/pom.xml
index e98ca0b61ee..7fe8c1d54fe 100644
--- a/core/endpoints-spi/pom.xml
+++ b/core/endpoints-spi/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.30.11-SNAPSHOT
+ 2.30.11
4.0.0
diff --git a/core/http-auth-aws-crt/pom.xml b/core/http-auth-aws-crt/pom.xml
index ee22b905d43..b06e853b7cb 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.30.11-SNAPSHOT
+ 2.30.11
http-auth-aws-crt
diff --git a/core/http-auth-aws-eventstream/pom.xml b/core/http-auth-aws-eventstream/pom.xml
index eca31f633d1..3c9c896605b 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.30.11-SNAPSHOT
+ 2.30.11
http-auth-aws-eventstream
diff --git a/core/http-auth-aws/pom.xml b/core/http-auth-aws/pom.xml
index de06e1a8f27..c8d5d0ed9c0 100644
--- a/core/http-auth-aws/pom.xml
+++ b/core/http-auth-aws/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.30.11-SNAPSHOT
+ 2.30.11
http-auth-aws
diff --git a/core/http-auth-spi/pom.xml b/core/http-auth-spi/pom.xml
index 420ac591212..04ed0773db1 100644
--- a/core/http-auth-spi/pom.xml
+++ b/core/http-auth-spi/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.30.11-SNAPSHOT
+ 2.30.11
http-auth-spi
diff --git a/core/http-auth/pom.xml b/core/http-auth/pom.xml
index ac82989d522..98939cc1994 100644
--- a/core/http-auth/pom.xml
+++ b/core/http-auth/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.30.11-SNAPSHOT
+ 2.30.11
http-auth
diff --git a/core/identity-spi/pom.xml b/core/identity-spi/pom.xml
index 745f24f2a5e..84ddd6243e8 100644
--- a/core/identity-spi/pom.xml
+++ b/core/identity-spi/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.30.11-SNAPSHOT
+ 2.30.11
identity-spi
diff --git a/core/imds/pom.xml b/core/imds/pom.xml
index 786223b1b14..7a3f8fee44c 100644
--- a/core/imds/pom.xml
+++ b/core/imds/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.30.11-SNAPSHOT
+ 2.30.11
4.0.0
imds
diff --git a/core/json-utils/pom.xml b/core/json-utils/pom.xml
index 7acf7b3fee2..8ddcb4a7070 100644
--- a/core/json-utils/pom.xml
+++ b/core/json-utils/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.30.11-SNAPSHOT
+ 2.30.11
4.0.0
diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml
index da11be55653..5923e4f4e82 100644
--- a/core/metrics-spi/pom.xml
+++ b/core/metrics-spi/pom.xml
@@ -5,7 +5,7 @@
core
software.amazon.awssdk
- 2.30.11-SNAPSHOT
+ 2.30.11
4.0.0
diff --git a/core/pom.xml b/core/pom.xml
index cb90dc5ff02..814a30f5d29 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.30.11-SNAPSHOT
+ 2.30.11
core
diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml
index 202c20ac332..e8a960aa08e 100644
--- a/core/profiles/pom.xml
+++ b/core/profiles/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.30.11-SNAPSHOT
+ 2.30.11
profiles
diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml
index 7cdc63d9c32..053dc54eced 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.30.11-SNAPSHOT
+ 2.30.11
4.0.0
diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml
index 9bb3811a3e2..824b052a59e 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.30.11-SNAPSHOT
+ 2.30.11
4.0.0
diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml
index f42d054ac0a..f936cda18b8 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.30.11-SNAPSHOT
+ 2.30.11
4.0.0
diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml
index c700d7e6d8b..01fe81ff73b 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.30.11-SNAPSHOT
+ 2.30.11
4.0.0
diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml
index 3305ce0655c..6dca7ee6916 100644
--- a/core/protocols/pom.xml
+++ b/core/protocols/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.30.11-SNAPSHOT
+ 2.30.11
4.0.0
diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml
index d1bb393734f..0411baebe4e 100644
--- a/core/protocols/protocol-core/pom.xml
+++ b/core/protocols/protocol-core/pom.xml
@@ -20,7 +20,7 @@
protocols
software.amazon.awssdk
- 2.30.11-SNAPSHOT
+ 2.30.11
4.0.0
diff --git a/core/protocols/smithy-rpcv2-protocol/pom.xml b/core/protocols/smithy-rpcv2-protocol/pom.xml
index 9d98b0bb46e..fdfed12e333 100644
--- a/core/protocols/smithy-rpcv2-protocol/pom.xml
+++ b/core/protocols/smithy-rpcv2-protocol/pom.xml
@@ -20,7 +20,7 @@
protocols
software.amazon.awssdk
- 2.30.11-SNAPSHOT
+ 2.30.11
4.0.0
diff --git a/core/regions/pom.xml b/core/regions/pom.xml
index 24259ac1ed0..c2e2e7a4b4b 100644
--- a/core/regions/pom.xml
+++ b/core/regions/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.30.11-SNAPSHOT
+ 2.30.11
regions
diff --git a/core/retries-spi/pom.xml b/core/retries-spi/pom.xml
index 1dd0de6e747..16b998f579b 100644
--- a/core/retries-spi/pom.xml
+++ b/core/retries-spi/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.30.11-SNAPSHOT
+ 2.30.11
4.0.0
diff --git a/core/retries/pom.xml b/core/retries/pom.xml
index 54a2cce5163..94bbccb72b5 100644
--- a/core/retries/pom.xml
+++ b/core/retries/pom.xml
@@ -21,7 +21,7 @@
core
software.amazon.awssdk
- 2.30.11-SNAPSHOT
+ 2.30.11
4.0.0
diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml
index e3e5b5e6107..bccdc85962d 100644
--- a/core/sdk-core/pom.xml
+++ b/core/sdk-core/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
core
- 2.30.11-SNAPSHOT
+ 2.30.11
sdk-core
AWS Java SDK :: SDK Core
diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml
index 537e37850d3..24bbf1f0719 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.30.11-SNAPSHOT
+ 2.30.11
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 7243cea66ff..50db84f95cf 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.30.11-SNAPSHOT
+ 2.30.11
apache-client
diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml
index 350c3d0dd02..1cd6fc88639 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.30.11-SNAPSHOT
+ 2.30.11
4.0.0
diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml
index ca514dcfd4a..66fb1a6e06e 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.30.11-SNAPSHOT
+ 2.30.11
4.0.0
diff --git a/http-clients/pom.xml b/http-clients/pom.xml
index d764cc75ecf..00872b55e72 100644
--- a/http-clients/pom.xml
+++ b/http-clients/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.30.11-SNAPSHOT
+ 2.30.11
4.0.0
diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml
index bc93f7d61c1..bf9bee14b2e 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.30.11-SNAPSHOT
+ 2.30.11
4.0.0
diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml
index 10de2b60042..bb257093e64 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.30.11-SNAPSHOT
+ 2.30.11
cloudwatch-metric-publisher
diff --git a/metric-publishers/emf-metric-logging-publisher/pom.xml b/metric-publishers/emf-metric-logging-publisher/pom.xml
index e385f9d4024..4d7e73659df 100644
--- a/metric-publishers/emf-metric-logging-publisher/pom.xml
+++ b/metric-publishers/emf-metric-logging-publisher/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
metric-publishers
- 2.30.11-SNAPSHOT
+ 2.30.11
emf-metric-logging-publisher
diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml
index 52759bd35d5..1449033375a 100644
--- a/metric-publishers/pom.xml
+++ b/metric-publishers/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.30.11-SNAPSHOT
+ 2.30.11
metric-publishers
diff --git a/pom.xml b/pom.xml
index 3ae3adaee26..cd4ba78aef9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -20,7 +20,7 @@
4.0.0
software.amazon.awssdk
aws-sdk-java-pom
- 2.30.11-SNAPSHOT
+ 2.30.11
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 680d6a72ee2..051a8a7d238 100644
--- a/release-scripts/pom.xml
+++ b/release-scripts/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.30.11-SNAPSHOT
+ 2.30.11
../pom.xml
release-scripts
diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml
index 689dc6f1f1a..78e6481ce70 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.30.11-SNAPSHOT
+ 2.30.11
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 b816f2c6145..4004ab6cf2d 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.30.11-SNAPSHOT
+ 2.30.11
../../pom.xml
iam-policy-builder
diff --git a/services-custom/pom.xml b/services-custom/pom.xml
index 73e04476e86..6988b3a6e91 100644
--- a/services-custom/pom.xml
+++ b/services-custom/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.30.11-SNAPSHOT
+ 2.30.11
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 8c9058e3623..cf708370aa2 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.30.11-SNAPSHOT
+ 2.30.11
../../pom.xml
s3-event-notifications
diff --git a/services-custom/s3-transfer-manager/pom.xml b/services-custom/s3-transfer-manager/pom.xml
index 482e78582df..6e14bb9d452 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.30.11-SNAPSHOT
+ 2.30.11
../../pom.xml
s3-transfer-manager
diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml
index c8a502f489b..f69a6a1a91d 100644
--- a/services/accessanalyzer/pom.xml
+++ b/services/accessanalyzer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
accessanalyzer
AWS Java SDK :: Services :: AccessAnalyzer
diff --git a/services/account/pom.xml b/services/account/pom.xml
index fd64ff32b56..c8d160ea3c8 100644
--- a/services/account/pom.xml
+++ b/services/account/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
account
AWS Java SDK :: Services :: Account
diff --git a/services/acm/pom.xml b/services/acm/pom.xml
index 11ddb86f143..e12bd91858f 100644
--- a/services/acm/pom.xml
+++ b/services/acm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
acm
AWS Java SDK :: Services :: AWS Certificate Manager
diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml
index 64dd88c4878..fa19bf90e07 100644
--- a/services/acmpca/pom.xml
+++ b/services/acmpca/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
acmpca
AWS Java SDK :: Services :: ACM PCA
diff --git a/services/amp/pom.xml b/services/amp/pom.xml
index d449df2f53a..7c0b8d41e0a 100644
--- a/services/amp/pom.xml
+++ b/services/amp/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
amp
AWS Java SDK :: Services :: Amp
diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml
index f05f24b35d5..29b116780f5 100644
--- a/services/amplify/pom.xml
+++ b/services/amplify/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
amplify
AWS Java SDK :: Services :: Amplify
diff --git a/services/amplifybackend/pom.xml b/services/amplifybackend/pom.xml
index bc927723a4e..967d78231dc 100644
--- a/services/amplifybackend/pom.xml
+++ b/services/amplifybackend/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
amplifybackend
AWS Java SDK :: Services :: Amplify Backend
diff --git a/services/amplifyuibuilder/pom.xml b/services/amplifyuibuilder/pom.xml
index bce39aa66f1..b10e152a510 100644
--- a/services/amplifyuibuilder/pom.xml
+++ b/services/amplifyuibuilder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
amplifyuibuilder
AWS Java SDK :: Services :: Amplify UI Builder
diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml
index 5b383aa7e6e..84e2fd694d6 100644
--- a/services/apigateway/pom.xml
+++ b/services/apigateway/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
apigateway
AWS Java SDK :: Services :: Amazon API Gateway
diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml
index 18b4b7c18c0..4dfc2c005cd 100644
--- a/services/apigatewaymanagementapi/pom.xml
+++ b/services/apigatewaymanagementapi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
apigatewaymanagementapi
AWS Java SDK :: Services :: ApiGatewayManagementApi
diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml
index 0d46e9ac501..d19c81b21ab 100644
--- a/services/apigatewayv2/pom.xml
+++ b/services/apigatewayv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
apigatewayv2
AWS Java SDK :: Services :: ApiGatewayV2
diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml
index a4f13f90b74..54a38aa21ce 100644
--- a/services/appconfig/pom.xml
+++ b/services/appconfig/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
appconfig
AWS Java SDK :: Services :: AppConfig
diff --git a/services/appconfigdata/pom.xml b/services/appconfigdata/pom.xml
index d824f2d254c..77ad3b639a3 100644
--- a/services/appconfigdata/pom.xml
+++ b/services/appconfigdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
appconfigdata
AWS Java SDK :: Services :: App Config Data
diff --git a/services/appfabric/pom.xml b/services/appfabric/pom.xml
index def6d173bd2..553d3f0f7a7 100644
--- a/services/appfabric/pom.xml
+++ b/services/appfabric/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
appfabric
AWS Java SDK :: Services :: App Fabric
diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml
index 8e8552a60ad..66b4d819858 100644
--- a/services/appflow/pom.xml
+++ b/services/appflow/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
appflow
AWS Java SDK :: Services :: Appflow
diff --git a/services/appintegrations/pom.xml b/services/appintegrations/pom.xml
index 71323b950b5..46c3e3c4bb3 100644
--- a/services/appintegrations/pom.xml
+++ b/services/appintegrations/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
appintegrations
AWS Java SDK :: Services :: App Integrations
diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml
index 7b84b1811e3..373f0ead40b 100644
--- a/services/applicationautoscaling/pom.xml
+++ b/services/applicationautoscaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
applicationautoscaling
AWS Java SDK :: Services :: AWS Application Auto Scaling
diff --git a/services/applicationcostprofiler/pom.xml b/services/applicationcostprofiler/pom.xml
index 6b16982066c..80345fe1f15 100644
--- a/services/applicationcostprofiler/pom.xml
+++ b/services/applicationcostprofiler/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
applicationcostprofiler
AWS Java SDK :: Services :: Application Cost Profiler
diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml
index 79a23fee07e..e206c303955 100644
--- a/services/applicationdiscovery/pom.xml
+++ b/services/applicationdiscovery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
applicationdiscovery
AWS Java SDK :: Services :: AWS Application Discovery Service
diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml
index f2e18459687..34b643281f0 100644
--- a/services/applicationinsights/pom.xml
+++ b/services/applicationinsights/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
applicationinsights
AWS Java SDK :: Services :: Application Insights
diff --git a/services/applicationsignals/pom.xml b/services/applicationsignals/pom.xml
index 3f7861779ac..383563ed4cd 100644
--- a/services/applicationsignals/pom.xml
+++ b/services/applicationsignals/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
applicationsignals
AWS Java SDK :: Services :: Application Signals
diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml
index d02a6285cfa..2dad6341481 100644
--- a/services/appmesh/pom.xml
+++ b/services/appmesh/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
appmesh
AWS Java SDK :: Services :: App Mesh
diff --git a/services/apprunner/pom.xml b/services/apprunner/pom.xml
index e5dc67cda1e..fafca9fbd4d 100644
--- a/services/apprunner/pom.xml
+++ b/services/apprunner/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
apprunner
AWS Java SDK :: Services :: App Runner
diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml
index 8a8f08bc294..076d5edcf8a 100644
--- a/services/appstream/pom.xml
+++ b/services/appstream/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
appstream
AWS Java SDK :: Services :: Amazon AppStream
diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml
index 8aea74bc576..f138fd98a59 100644
--- a/services/appsync/pom.xml
+++ b/services/appsync/pom.xml
@@ -21,7 +21,7 @@
services
software.amazon.awssdk
- 2.30.11-SNAPSHOT
+ 2.30.11
appsync
diff --git a/services/apptest/pom.xml b/services/apptest/pom.xml
index 0b134fcf72b..04d6601164c 100644
--- a/services/apptest/pom.xml
+++ b/services/apptest/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
apptest
AWS Java SDK :: Services :: App Test
diff --git a/services/arczonalshift/pom.xml b/services/arczonalshift/pom.xml
index 71096325ff3..32d9864dad8 100644
--- a/services/arczonalshift/pom.xml
+++ b/services/arczonalshift/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
arczonalshift
AWS Java SDK :: Services :: ARC Zonal Shift
diff --git a/services/artifact/pom.xml b/services/artifact/pom.xml
index c819305b9ec..275f5eec5e1 100644
--- a/services/artifact/pom.xml
+++ b/services/artifact/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
artifact
AWS Java SDK :: Services :: Artifact
diff --git a/services/athena/pom.xml b/services/athena/pom.xml
index 623a6042741..5ed8032a4be 100644
--- a/services/athena/pom.xml
+++ b/services/athena/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
athena
AWS Java SDK :: Services :: Amazon Athena
diff --git a/services/auditmanager/pom.xml b/services/auditmanager/pom.xml
index c306d90cf67..740be3d225b 100644
--- a/services/auditmanager/pom.xml
+++ b/services/auditmanager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
auditmanager
AWS Java SDK :: Services :: Audit Manager
diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml
index 21afe3fd5f9..d615988318c 100644
--- a/services/autoscaling/pom.xml
+++ b/services/autoscaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
autoscaling
AWS Java SDK :: Services :: Auto Scaling
diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml
index 207135bdd96..e57d7157ca9 100644
--- a/services/autoscalingplans/pom.xml
+++ b/services/autoscalingplans/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
autoscalingplans
AWS Java SDK :: Services :: Auto Scaling Plans
diff --git a/services/b2bi/pom.xml b/services/b2bi/pom.xml
index ecc2df761e4..2db1d028aab 100644
--- a/services/b2bi/pom.xml
+++ b/services/b2bi/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
b2bi
AWS Java SDK :: Services :: B2 Bi
diff --git a/services/backup/pom.xml b/services/backup/pom.xml
index 0579071b4c7..623d639959d 100644
--- a/services/backup/pom.xml
+++ b/services/backup/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
backup
AWS Java SDK :: Services :: Backup
diff --git a/services/backupgateway/pom.xml b/services/backupgateway/pom.xml
index 57ca78e46a4..24c1ceb7373 100644
--- a/services/backupgateway/pom.xml
+++ b/services/backupgateway/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
backupgateway
AWS Java SDK :: Services :: Backup Gateway
diff --git a/services/backupsearch/pom.xml b/services/backupsearch/pom.xml
index bc4e14606ec..116f0f21629 100644
--- a/services/backupsearch/pom.xml
+++ b/services/backupsearch/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
backupsearch
AWS Java SDK :: Services :: Backup Search
diff --git a/services/batch/pom.xml b/services/batch/pom.xml
index d91baaf67de..92653eee468 100644
--- a/services/batch/pom.xml
+++ b/services/batch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
batch
AWS Java SDK :: Services :: AWS Batch
diff --git a/services/bcmdataexports/pom.xml b/services/bcmdataexports/pom.xml
index 89629896a3f..d5277a94462 100644
--- a/services/bcmdataexports/pom.xml
+++ b/services/bcmdataexports/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
bcmdataexports
AWS Java SDK :: Services :: BCM Data Exports
diff --git a/services/bcmpricingcalculator/pom.xml b/services/bcmpricingcalculator/pom.xml
index a790d1468ef..24ba6fba0ba 100644
--- a/services/bcmpricingcalculator/pom.xml
+++ b/services/bcmpricingcalculator/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
bcmpricingcalculator
AWS Java SDK :: Services :: BCM Pricing Calculator
diff --git a/services/bedrock/pom.xml b/services/bedrock/pom.xml
index 8692195e1db..f63cff123db 100644
--- a/services/bedrock/pom.xml
+++ b/services/bedrock/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
bedrock
AWS Java SDK :: Services :: Bedrock
diff --git a/services/bedrockagent/pom.xml b/services/bedrockagent/pom.xml
index 12048162bca..44199e1e46f 100644
--- a/services/bedrockagent/pom.xml
+++ b/services/bedrockagent/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
bedrockagent
AWS Java SDK :: Services :: Bedrock Agent
diff --git a/services/bedrockagentruntime/pom.xml b/services/bedrockagentruntime/pom.xml
index 89f920b29e8..7933fad9781 100644
--- a/services/bedrockagentruntime/pom.xml
+++ b/services/bedrockagentruntime/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
bedrockagentruntime
AWS Java SDK :: Services :: Bedrock Agent Runtime
diff --git a/services/bedrockdataautomation/pom.xml b/services/bedrockdataautomation/pom.xml
index ff7ad3a9623..e29069f6296 100644
--- a/services/bedrockdataautomation/pom.xml
+++ b/services/bedrockdataautomation/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
bedrockdataautomation
AWS Java SDK :: Services :: Bedrock Data Automation
diff --git a/services/bedrockdataautomationruntime/pom.xml b/services/bedrockdataautomationruntime/pom.xml
index 86a55311741..aa656cbeff0 100644
--- a/services/bedrockdataautomationruntime/pom.xml
+++ b/services/bedrockdataautomationruntime/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
bedrockdataautomationruntime
AWS Java SDK :: Services :: Bedrock Data Automation Runtime
diff --git a/services/bedrockruntime/pom.xml b/services/bedrockruntime/pom.xml
index 4cc048645a9..d620300acdb 100644
--- a/services/bedrockruntime/pom.xml
+++ b/services/bedrockruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
bedrockruntime
AWS Java SDK :: Services :: Bedrock Runtime
diff --git a/services/billing/pom.xml b/services/billing/pom.xml
index 78e2d7e9a5f..81eb3d32fdd 100644
--- a/services/billing/pom.xml
+++ b/services/billing/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
billing
AWS Java SDK :: Services :: Billing
diff --git a/services/billingconductor/pom.xml b/services/billingconductor/pom.xml
index 9429f7ffb10..d1718f464fd 100644
--- a/services/billingconductor/pom.xml
+++ b/services/billingconductor/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
billingconductor
AWS Java SDK :: Services :: Billingconductor
diff --git a/services/braket/pom.xml b/services/braket/pom.xml
index db0177ad4fa..a42e0717e7d 100644
--- a/services/braket/pom.xml
+++ b/services/braket/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
braket
AWS Java SDK :: Services :: Braket
diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml
index 16e593854f2..88e8db2bc32 100644
--- a/services/budgets/pom.xml
+++ b/services/budgets/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
budgets
AWS Java SDK :: Services :: AWS Budgets
diff --git a/services/chatbot/pom.xml b/services/chatbot/pom.xml
index 5570cb6e32a..85671c7060c 100644
--- a/services/chatbot/pom.xml
+++ b/services/chatbot/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
chatbot
AWS Java SDK :: Services :: Chatbot
diff --git a/services/chime/pom.xml b/services/chime/pom.xml
index c28574be070..93304a4942f 100644
--- a/services/chime/pom.xml
+++ b/services/chime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
chime
AWS Java SDK :: Services :: Chime
diff --git a/services/chimesdkidentity/pom.xml b/services/chimesdkidentity/pom.xml
index a8361df3488..c65a6ed97d8 100644
--- a/services/chimesdkidentity/pom.xml
+++ b/services/chimesdkidentity/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
chimesdkidentity
AWS Java SDK :: Services :: Chime SDK Identity
diff --git a/services/chimesdkmediapipelines/pom.xml b/services/chimesdkmediapipelines/pom.xml
index f0eba48cf5d..470956dbc42 100644
--- a/services/chimesdkmediapipelines/pom.xml
+++ b/services/chimesdkmediapipelines/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
chimesdkmediapipelines
AWS Java SDK :: Services :: Chime SDK Media Pipelines
diff --git a/services/chimesdkmeetings/pom.xml b/services/chimesdkmeetings/pom.xml
index 2ca89b791f7..e2d4da37b68 100644
--- a/services/chimesdkmeetings/pom.xml
+++ b/services/chimesdkmeetings/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
chimesdkmeetings
AWS Java SDK :: Services :: Chime SDK Meetings
diff --git a/services/chimesdkmessaging/pom.xml b/services/chimesdkmessaging/pom.xml
index ea2dbe1bc5d..649e7029daa 100644
--- a/services/chimesdkmessaging/pom.xml
+++ b/services/chimesdkmessaging/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
chimesdkmessaging
AWS Java SDK :: Services :: Chime SDK Messaging
diff --git a/services/chimesdkvoice/pom.xml b/services/chimesdkvoice/pom.xml
index 88484957d3c..566a36390ae 100644
--- a/services/chimesdkvoice/pom.xml
+++ b/services/chimesdkvoice/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
chimesdkvoice
AWS Java SDK :: Services :: Chime SDK Voice
diff --git a/services/cleanrooms/pom.xml b/services/cleanrooms/pom.xml
index 8cad01227db..4a3721347e4 100644
--- a/services/cleanrooms/pom.xml
+++ b/services/cleanrooms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
cleanrooms
AWS Java SDK :: Services :: Clean Rooms
diff --git a/services/cleanroomsml/pom.xml b/services/cleanroomsml/pom.xml
index 70b21cdf6a2..420950aba2f 100644
--- a/services/cleanroomsml/pom.xml
+++ b/services/cleanroomsml/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
cleanroomsml
AWS Java SDK :: Services :: Clean Rooms ML
diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml
index cb9d9b75486..596afd7ddca 100644
--- a/services/cloud9/pom.xml
+++ b/services/cloud9/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.30.11-SNAPSHOT
+ 2.30.11
4.0.0
cloud9
diff --git a/services/cloudcontrol/pom.xml b/services/cloudcontrol/pom.xml
index 8014eafcf53..81b94370036 100644
--- a/services/cloudcontrol/pom.xml
+++ b/services/cloudcontrol/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
cloudcontrol
AWS Java SDK :: Services :: Cloud Control
diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml
index e4448578c77..7def16b3bd5 100644
--- a/services/clouddirectory/pom.xml
+++ b/services/clouddirectory/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
clouddirectory
AWS Java SDK :: Services :: Amazon CloudDirectory
diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml
index 4ac52ff22de..c0d4dc6cf77 100644
--- a/services/cloudformation/pom.xml
+++ b/services/cloudformation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
cloudformation
AWS Java SDK :: Services :: AWS CloudFormation
diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml
index 74a9fd49370..d25942a5e08 100644
--- a/services/cloudfront/pom.xml
+++ b/services/cloudfront/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
cloudfront
AWS Java SDK :: Services :: Amazon CloudFront
diff --git a/services/cloudfrontkeyvaluestore/pom.xml b/services/cloudfrontkeyvaluestore/pom.xml
index 2b1cf10853d..ab8d6a9da78 100644
--- a/services/cloudfrontkeyvaluestore/pom.xml
+++ b/services/cloudfrontkeyvaluestore/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
cloudfrontkeyvaluestore
AWS Java SDK :: Services :: Cloud Front Key Value Store
diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml
index d0c244fbf90..834d3469ea5 100644
--- a/services/cloudhsm/pom.xml
+++ b/services/cloudhsm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
cloudhsm
AWS Java SDK :: Services :: AWS CloudHSM
diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml
index afdd4d759fc..479caaa657a 100644
--- a/services/cloudhsmv2/pom.xml
+++ b/services/cloudhsmv2/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.30.11-SNAPSHOT
+ 2.30.11
4.0.0
cloudhsmv2
diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml
index 5f29614e0b2..f6f39f41d09 100644
--- a/services/cloudsearch/pom.xml
+++ b/services/cloudsearch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
cloudsearch
AWS Java SDK :: Services :: Amazon CloudSearch
diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml
index d646b7e7021..f438c5654c2 100644
--- a/services/cloudsearchdomain/pom.xml
+++ b/services/cloudsearchdomain/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
cloudsearchdomain
AWS Java SDK :: Services :: Amazon CloudSearch Domain
diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml
index 88b128366e5..0d52ede638a 100644
--- a/services/cloudtrail/pom.xml
+++ b/services/cloudtrail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
cloudtrail
AWS Java SDK :: Services :: AWS CloudTrail
diff --git a/services/cloudtraildata/pom.xml b/services/cloudtraildata/pom.xml
index d5daf2b6426..7d96e10a8d2 100644
--- a/services/cloudtraildata/pom.xml
+++ b/services/cloudtraildata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
cloudtraildata
AWS Java SDK :: Services :: Cloud Trail Data
diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml
index 9045aeaef81..f302120286a 100644
--- a/services/cloudwatch/pom.xml
+++ b/services/cloudwatch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
cloudwatch
AWS Java SDK :: Services :: Amazon CloudWatch
diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml
index 1146a11ba94..a3858456276 100644
--- a/services/cloudwatchevents/pom.xml
+++ b/services/cloudwatchevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
cloudwatchevents
AWS Java SDK :: Services :: Amazon CloudWatch Events
diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml
index fa3b2c8b59c..6eac661591b 100644
--- a/services/cloudwatchlogs/pom.xml
+++ b/services/cloudwatchlogs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
cloudwatchlogs
AWS Java SDK :: Services :: Amazon CloudWatch Logs
diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml
index 8ef0ec8aa62..9182299bb6e 100644
--- a/services/codeartifact/pom.xml
+++ b/services/codeartifact/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
codeartifact
AWS Java SDK :: Services :: Codeartifact
diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml
index 243661d48be..7a6acea9f5c 100644
--- a/services/codebuild/pom.xml
+++ b/services/codebuild/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
codebuild
AWS Java SDK :: Services :: AWS Code Build
diff --git a/services/codecatalyst/pom.xml b/services/codecatalyst/pom.xml
index 25f417769ef..207b7cc9cd3 100644
--- a/services/codecatalyst/pom.xml
+++ b/services/codecatalyst/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
codecatalyst
AWS Java SDK :: Services :: Code Catalyst
diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml
index ab2745b73ff..77f6567037a 100644
--- a/services/codecommit/pom.xml
+++ b/services/codecommit/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
codecommit
AWS Java SDK :: Services :: AWS CodeCommit
diff --git a/services/codeconnections/pom.xml b/services/codeconnections/pom.xml
index 9fe61a433da..8c865a7eddf 100644
--- a/services/codeconnections/pom.xml
+++ b/services/codeconnections/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
codeconnections
AWS Java SDK :: Services :: Code Connections
diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml
index 9d51523c377..cc984039d1e 100644
--- a/services/codedeploy/pom.xml
+++ b/services/codedeploy/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
codedeploy
AWS Java SDK :: Services :: AWS CodeDeploy
diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml
index b375a0ed331..d271fac5bb6 100644
--- a/services/codeguruprofiler/pom.xml
+++ b/services/codeguruprofiler/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
codeguruprofiler
AWS Java SDK :: Services :: CodeGuruProfiler
diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml
index 5d8f4d3d1ff..12bf6d2c99b 100644
--- a/services/codegurureviewer/pom.xml
+++ b/services/codegurureviewer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
codegurureviewer
AWS Java SDK :: Services :: CodeGuru Reviewer
diff --git a/services/codegurusecurity/pom.xml b/services/codegurusecurity/pom.xml
index d12e637d120..3633891aae8 100644
--- a/services/codegurusecurity/pom.xml
+++ b/services/codegurusecurity/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
codegurusecurity
AWS Java SDK :: Services :: Code Guru Security
diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml
index cc9a1a6d82f..d1e2a27fed3 100644
--- a/services/codepipeline/pom.xml
+++ b/services/codepipeline/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
codepipeline
AWS Java SDK :: Services :: AWS CodePipeline
diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml
index 7479daf49f5..203b6ae6d41 100644
--- a/services/codestarconnections/pom.xml
+++ b/services/codestarconnections/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
codestarconnections
AWS Java SDK :: Services :: CodeStar connections
diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml
index 2b05ee606fa..829730dbd03 100644
--- a/services/codestarnotifications/pom.xml
+++ b/services/codestarnotifications/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
codestarnotifications
AWS Java SDK :: Services :: Codestar Notifications
diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml
index 28845cab54c..f5a3faef74b 100644
--- a/services/cognitoidentity/pom.xml
+++ b/services/cognitoidentity/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
cognitoidentity
AWS Java SDK :: Services :: Amazon Cognito Identity
diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml
index b969b8532b2..f7ac00ef85a 100644
--- a/services/cognitoidentityprovider/pom.xml
+++ b/services/cognitoidentityprovider/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
cognitoidentityprovider
AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service
diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml
index 59825039ee8..97775f5dfde 100644
--- a/services/cognitosync/pom.xml
+++ b/services/cognitosync/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
cognitosync
AWS Java SDK :: Services :: Amazon Cognito Sync
diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml
index 69c231f7cc8..f8a2ed7415e 100644
--- a/services/comprehend/pom.xml
+++ b/services/comprehend/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.30.11-SNAPSHOT
+ 2.30.11
4.0.0
comprehend
diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml
index 673fb08bfa5..1c1d9a97558 100644
--- a/services/comprehendmedical/pom.xml
+++ b/services/comprehendmedical/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
comprehendmedical
AWS Java SDK :: Services :: ComprehendMedical
diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml
index 462a3f56734..ea6cc2a9b62 100644
--- a/services/computeoptimizer/pom.xml
+++ b/services/computeoptimizer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
computeoptimizer
AWS Java SDK :: Services :: Compute Optimizer
diff --git a/services/config/pom.xml b/services/config/pom.xml
index 039a53a0171..4ff3a6164b1 100644
--- a/services/config/pom.xml
+++ b/services/config/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
config
AWS Java SDK :: Services :: AWS Config
diff --git a/services/connect/pom.xml b/services/connect/pom.xml
index 0598517408f..70cb8eecfaf 100644
--- a/services/connect/pom.xml
+++ b/services/connect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
connect
AWS Java SDK :: Services :: Connect
diff --git a/services/connectcampaigns/pom.xml b/services/connectcampaigns/pom.xml
index 9e951de89d3..a7afb786544 100644
--- a/services/connectcampaigns/pom.xml
+++ b/services/connectcampaigns/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
connectcampaigns
AWS Java SDK :: Services :: Connect Campaigns
diff --git a/services/connectcampaignsv2/pom.xml b/services/connectcampaignsv2/pom.xml
index f962914233f..6a090ab7bbb 100644
--- a/services/connectcampaignsv2/pom.xml
+++ b/services/connectcampaignsv2/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
connectcampaignsv2
AWS Java SDK :: Services :: Connect Campaigns V2
diff --git a/services/connectcases/pom.xml b/services/connectcases/pom.xml
index afc01a1a50b..02f64c94e03 100644
--- a/services/connectcases/pom.xml
+++ b/services/connectcases/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
connectcases
AWS Java SDK :: Services :: Connect Cases
diff --git a/services/connectcontactlens/pom.xml b/services/connectcontactlens/pom.xml
index bc77a309207..6e818fbd8fc 100644
--- a/services/connectcontactlens/pom.xml
+++ b/services/connectcontactlens/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
connectcontactlens
AWS Java SDK :: Services :: Connect Contact Lens
diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml
index bac70e5e24d..c416f7afa72 100644
--- a/services/connectparticipant/pom.xml
+++ b/services/connectparticipant/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
connectparticipant
AWS Java SDK :: Services :: ConnectParticipant
diff --git a/services/controlcatalog/pom.xml b/services/controlcatalog/pom.xml
index 43e55e4e88f..ca88a66b7e7 100644
--- a/services/controlcatalog/pom.xml
+++ b/services/controlcatalog/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
controlcatalog
AWS Java SDK :: Services :: Control Catalog
diff --git a/services/controltower/pom.xml b/services/controltower/pom.xml
index 6d1fffa91c7..8eab85da27a 100644
--- a/services/controltower/pom.xml
+++ b/services/controltower/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
controltower
AWS Java SDK :: Services :: Control Tower
diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml
index 9a634e39204..60cef0dd374 100644
--- a/services/costandusagereport/pom.xml
+++ b/services/costandusagereport/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
costandusagereport
AWS Java SDK :: Services :: AWS Cost and Usage Report
diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml
index 347ea6e73e4..4db38f03a2a 100644
--- a/services/costexplorer/pom.xml
+++ b/services/costexplorer/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.30.11-SNAPSHOT
+ 2.30.11
4.0.0
costexplorer
diff --git a/services/costoptimizationhub/pom.xml b/services/costoptimizationhub/pom.xml
index 3539ec6b98f..7bc4e9c82f3 100644
--- a/services/costoptimizationhub/pom.xml
+++ b/services/costoptimizationhub/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
costoptimizationhub
AWS Java SDK :: Services :: Cost Optimization Hub
diff --git a/services/customerprofiles/pom.xml b/services/customerprofiles/pom.xml
index 01570dda310..f64c408941d 100644
--- a/services/customerprofiles/pom.xml
+++ b/services/customerprofiles/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
customerprofiles
AWS Java SDK :: Services :: Customer Profiles
diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml
index 40ba42f8829..d1dbbba9f32 100644
--- a/services/databasemigration/pom.xml
+++ b/services/databasemigration/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
databasemigration
AWS Java SDK :: Services :: AWS Database Migration Service
diff --git a/services/databrew/pom.xml b/services/databrew/pom.xml
index f27cbe00cd5..62fc258bc87 100644
--- a/services/databrew/pom.xml
+++ b/services/databrew/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
databrew
AWS Java SDK :: Services :: Data Brew
diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml
index 80c5f7be3ac..0b5fc0203a8 100644
--- a/services/dataexchange/pom.xml
+++ b/services/dataexchange/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
dataexchange
AWS Java SDK :: Services :: DataExchange
diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml
index fde58a23d4e..c8dedfd86de 100644
--- a/services/datapipeline/pom.xml
+++ b/services/datapipeline/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
datapipeline
AWS Java SDK :: Services :: AWS Data Pipeline
diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml
index 331f35eff3a..120d3c0312b 100644
--- a/services/datasync/pom.xml
+++ b/services/datasync/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
datasync
AWS Java SDK :: Services :: DataSync
diff --git a/services/datazone/pom.xml b/services/datazone/pom.xml
index 6369af0c520..4654df70034 100644
--- a/services/datazone/pom.xml
+++ b/services/datazone/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
datazone
AWS Java SDK :: Services :: Data Zone
diff --git a/services/dax/pom.xml b/services/dax/pom.xml
index f45e288eef2..df935bfb6fe 100644
--- a/services/dax/pom.xml
+++ b/services/dax/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
dax
AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX)
diff --git a/services/deadline/pom.xml b/services/deadline/pom.xml
index aaa82cf0574..c6c93e065a1 100644
--- a/services/deadline/pom.xml
+++ b/services/deadline/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
deadline
AWS Java SDK :: Services :: Deadline
diff --git a/services/detective/pom.xml b/services/detective/pom.xml
index a2aee379071..4fb823fa87b 100644
--- a/services/detective/pom.xml
+++ b/services/detective/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
detective
AWS Java SDK :: Services :: Detective
diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml
index 1f9393cfb4b..6d3b9e744bf 100644
--- a/services/devicefarm/pom.xml
+++ b/services/devicefarm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
devicefarm
AWS Java SDK :: Services :: AWS Device Farm
diff --git a/services/devopsguru/pom.xml b/services/devopsguru/pom.xml
index dc4391cd380..754e11a551c 100644
--- a/services/devopsguru/pom.xml
+++ b/services/devopsguru/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
devopsguru
AWS Java SDK :: Services :: Dev Ops Guru
diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml
index ce38118daa0..865676fd88f 100644
--- a/services/directconnect/pom.xml
+++ b/services/directconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
directconnect
AWS Java SDK :: Services :: AWS Direct Connect
diff --git a/services/directory/pom.xml b/services/directory/pom.xml
index b481f450679..f35da8caab6 100644
--- a/services/directory/pom.xml
+++ b/services/directory/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
directory
AWS Java SDK :: Services :: AWS Directory Service
diff --git a/services/directoryservicedata/pom.xml b/services/directoryservicedata/pom.xml
index 3e53c40d91f..0fde3460fe3 100644
--- a/services/directoryservicedata/pom.xml
+++ b/services/directoryservicedata/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
directoryservicedata
AWS Java SDK :: Services :: Directory Service Data
diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml
index 36398c83298..fbd20b1b99b 100644
--- a/services/dlm/pom.xml
+++ b/services/dlm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
dlm
AWS Java SDK :: Services :: DLM
diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml
index 9054372c3c9..27d75ae9caf 100644
--- a/services/docdb/pom.xml
+++ b/services/docdb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
docdb
AWS Java SDK :: Services :: DocDB
diff --git a/services/docdbelastic/pom.xml b/services/docdbelastic/pom.xml
index daeed7b4253..b285febc81b 100644
--- a/services/docdbelastic/pom.xml
+++ b/services/docdbelastic/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
docdbelastic
AWS Java SDK :: Services :: Doc DB Elastic
diff --git a/services/drs/pom.xml b/services/drs/pom.xml
index 07008b049fe..a2fc042d6d3 100644
--- a/services/drs/pom.xml
+++ b/services/drs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
drs
AWS Java SDK :: Services :: Drs
diff --git a/services/dsql/pom.xml b/services/dsql/pom.xml
index ee9233f8ffe..6dc71681827 100644
--- a/services/dsql/pom.xml
+++ b/services/dsql/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
dsql
AWS Java SDK :: Services :: DSQL
diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml
index 5aab2cf21b6..245a402dd9d 100644
--- a/services/dynamodb/pom.xml
+++ b/services/dynamodb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
dynamodb
AWS Java SDK :: Services :: Amazon DynamoDB
diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml
index 68cf8d6cc2a..818eeae4eec 100644
--- a/services/ebs/pom.xml
+++ b/services/ebs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
ebs
AWS Java SDK :: Services :: EBS
diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml
index 501cfea8f9f..a15b23ed5b2 100644
--- a/services/ec2/pom.xml
+++ b/services/ec2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
ec2
AWS Java SDK :: Services :: Amazon EC2
diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml
index 1a59f31ca75..afc0bb42306 100644
--- a/services/ec2instanceconnect/pom.xml
+++ b/services/ec2instanceconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
ec2instanceconnect
AWS Java SDK :: Services :: EC2 Instance Connect
diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml
index 654ebedaaac..e8e90b9bb8a 100644
--- a/services/ecr/pom.xml
+++ b/services/ecr/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
ecr
AWS Java SDK :: Services :: Amazon EC2 Container Registry
diff --git a/services/ecrpublic/pom.xml b/services/ecrpublic/pom.xml
index 179c88768d5..81b253507d3 100644
--- a/services/ecrpublic/pom.xml
+++ b/services/ecrpublic/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
ecrpublic
AWS Java SDK :: Services :: ECR PUBLIC
diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml
index b692c8373ea..2c9fe3cef97 100644
--- a/services/ecs/pom.xml
+++ b/services/ecs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
ecs
AWS Java SDK :: Services :: Amazon EC2 Container Service
diff --git a/services/efs/pom.xml b/services/efs/pom.xml
index eda821005e1..93f7a05bc70 100644
--- a/services/efs/pom.xml
+++ b/services/efs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
efs
AWS Java SDK :: Services :: Amazon Elastic File System
diff --git a/services/eks/pom.xml b/services/eks/pom.xml
index d20e7b9f7cc..51655b4276e 100644
--- a/services/eks/pom.xml
+++ b/services/eks/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
eks
AWS Java SDK :: Services :: EKS
diff --git a/services/eksauth/pom.xml b/services/eksauth/pom.xml
index 72e9ab6e9c1..d9a59f2545a 100644
--- a/services/eksauth/pom.xml
+++ b/services/eksauth/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
eksauth
AWS Java SDK :: Services :: EKS Auth
diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml
index 85a9fb3d6e3..39d00ab2d94 100644
--- a/services/elasticache/pom.xml
+++ b/services/elasticache/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
elasticache
AWS Java SDK :: Services :: Amazon ElastiCache
diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml
index 79bd865d968..aecc5867d2b 100644
--- a/services/elasticbeanstalk/pom.xml
+++ b/services/elasticbeanstalk/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
elasticbeanstalk
AWS Java SDK :: Services :: AWS Elastic Beanstalk
diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml
index aa081a9e778..84c7090b600 100644
--- a/services/elasticinference/pom.xml
+++ b/services/elasticinference/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
elasticinference
AWS Java SDK :: Services :: Elastic Inference
diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml
index e58791382a8..b4964f5a689 100644
--- a/services/elasticloadbalancing/pom.xml
+++ b/services/elasticloadbalancing/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
elasticloadbalancing
AWS Java SDK :: Services :: Elastic Load Balancing
diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml
index 4909e9c6584..8a891dbd6e4 100644
--- a/services/elasticloadbalancingv2/pom.xml
+++ b/services/elasticloadbalancingv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
elasticloadbalancingv2
AWS Java SDK :: Services :: Elastic Load Balancing V2
diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml
index 9b4770b5a04..d906c77f202 100644
--- a/services/elasticsearch/pom.xml
+++ b/services/elasticsearch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
elasticsearch
AWS Java SDK :: Services :: Amazon Elasticsearch Service
diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml
index 0f8a934b3a2..063f58fbaf2 100644
--- a/services/elastictranscoder/pom.xml
+++ b/services/elastictranscoder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
elastictranscoder
AWS Java SDK :: Services :: Amazon Elastic Transcoder
diff --git a/services/emr/pom.xml b/services/emr/pom.xml
index f9989ba2fd2..57b7205c0d5 100644
--- a/services/emr/pom.xml
+++ b/services/emr/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
emr
AWS Java SDK :: Services :: Amazon EMR
diff --git a/services/emrcontainers/pom.xml b/services/emrcontainers/pom.xml
index b615ef93a91..a54df247afd 100644
--- a/services/emrcontainers/pom.xml
+++ b/services/emrcontainers/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
emrcontainers
AWS Java SDK :: Services :: EMR Containers
diff --git a/services/emrserverless/pom.xml b/services/emrserverless/pom.xml
index d55c3b30ea0..91ba59c2bb2 100644
--- a/services/emrserverless/pom.xml
+++ b/services/emrserverless/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
emrserverless
AWS Java SDK :: Services :: EMR Serverless
diff --git a/services/entityresolution/pom.xml b/services/entityresolution/pom.xml
index 113afed7042..29b09a54cfe 100644
--- a/services/entityresolution/pom.xml
+++ b/services/entityresolution/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
entityresolution
AWS Java SDK :: Services :: Entity Resolution
diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml
index 7c7a66289ff..210cebc2518 100644
--- a/services/eventbridge/pom.xml
+++ b/services/eventbridge/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
eventbridge
AWS Java SDK :: Services :: EventBridge
diff --git a/services/evidently/pom.xml b/services/evidently/pom.xml
index 9a028c43b9b..d69dc25f6ac 100644
--- a/services/evidently/pom.xml
+++ b/services/evidently/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
evidently
AWS Java SDK :: Services :: Evidently
diff --git a/services/finspace/pom.xml b/services/finspace/pom.xml
index b5be9ddb0b2..32ea2b71685 100644
--- a/services/finspace/pom.xml
+++ b/services/finspace/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
finspace
AWS Java SDK :: Services :: Finspace
diff --git a/services/finspacedata/pom.xml b/services/finspacedata/pom.xml
index 35de371e1a9..292052fbeb8 100644
--- a/services/finspacedata/pom.xml
+++ b/services/finspacedata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
finspacedata
AWS Java SDK :: Services :: Finspace Data
diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml
index a587c84ec88..dde94ad73a7 100644
--- a/services/firehose/pom.xml
+++ b/services/firehose/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
firehose
AWS Java SDK :: Services :: Amazon Kinesis Firehose
diff --git a/services/fis/pom.xml b/services/fis/pom.xml
index eeaf38a2175..a73fd0c2886 100644
--- a/services/fis/pom.xml
+++ b/services/fis/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
fis
AWS Java SDK :: Services :: Fis
diff --git a/services/fms/pom.xml b/services/fms/pom.xml
index 751112bf062..f173d620a2e 100644
--- a/services/fms/pom.xml
+++ b/services/fms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
fms
AWS Java SDK :: Services :: FMS
diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml
index 597fd3a33f0..ad7b4590cfa 100644
--- a/services/forecast/pom.xml
+++ b/services/forecast/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
forecast
AWS Java SDK :: Services :: Forecast
diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml
index 454c6217728..ce528f1e0c2 100644
--- a/services/forecastquery/pom.xml
+++ b/services/forecastquery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
forecastquery
AWS Java SDK :: Services :: Forecastquery
diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml
index 26c3b75d0f9..2b274f19640 100644
--- a/services/frauddetector/pom.xml
+++ b/services/frauddetector/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
frauddetector
AWS Java SDK :: Services :: FraudDetector
diff --git a/services/freetier/pom.xml b/services/freetier/pom.xml
index 2f147117ad0..19f51ec8d79 100644
--- a/services/freetier/pom.xml
+++ b/services/freetier/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
freetier
AWS Java SDK :: Services :: Free Tier
diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml
index 3c3400f681e..614496584c7 100644
--- a/services/fsx/pom.xml
+++ b/services/fsx/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
fsx
AWS Java SDK :: Services :: FSx
diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml
index 9b3e8345148..4b8c31c1a86 100644
--- a/services/gamelift/pom.xml
+++ b/services/gamelift/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
gamelift
AWS Java SDK :: Services :: AWS GameLift
diff --git a/services/geomaps/pom.xml b/services/geomaps/pom.xml
index 392b5efe7cc..5166155a806 100644
--- a/services/geomaps/pom.xml
+++ b/services/geomaps/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
geomaps
AWS Java SDK :: Services :: Geo Maps
diff --git a/services/geoplaces/pom.xml b/services/geoplaces/pom.xml
index 29013cba870..923ac504c0b 100644
--- a/services/geoplaces/pom.xml
+++ b/services/geoplaces/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
geoplaces
AWS Java SDK :: Services :: Geo Places
diff --git a/services/georoutes/pom.xml b/services/georoutes/pom.xml
index 8fe4910d7e2..9d829d0d1a9 100644
--- a/services/georoutes/pom.xml
+++ b/services/georoutes/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
georoutes
AWS Java SDK :: Services :: Geo Routes
diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml
index 021d53a6a52..7453a26afa1 100644
--- a/services/glacier/pom.xml
+++ b/services/glacier/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
glacier
AWS Java SDK :: Services :: Amazon Glacier
diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml
index 6e5762dd185..9f37275a667 100644
--- a/services/globalaccelerator/pom.xml
+++ b/services/globalaccelerator/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
globalaccelerator
AWS Java SDK :: Services :: Global Accelerator
diff --git a/services/glue/pom.xml b/services/glue/pom.xml
index c94bebd810f..585e3f4431b 100644
--- a/services/glue/pom.xml
+++ b/services/glue/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.30.11-SNAPSHOT
+ 2.30.11
4.0.0
glue
diff --git a/services/grafana/pom.xml b/services/grafana/pom.xml
index ffb1797ca25..c1d52061d7d 100644
--- a/services/grafana/pom.xml
+++ b/services/grafana/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
grafana
AWS Java SDK :: Services :: Grafana
diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml
index 757bb0cf691..006d9d2bbaa 100644
--- a/services/greengrass/pom.xml
+++ b/services/greengrass/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
greengrass
AWS Java SDK :: Services :: AWS Greengrass
diff --git a/services/greengrassv2/pom.xml b/services/greengrassv2/pom.xml
index 2a3a4070e7e..f7771bba75c 100644
--- a/services/greengrassv2/pom.xml
+++ b/services/greengrassv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
greengrassv2
AWS Java SDK :: Services :: Greengrass V2
diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml
index 017054a6d49..35fb99e016f 100644
--- a/services/groundstation/pom.xml
+++ b/services/groundstation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
groundstation
AWS Java SDK :: Services :: GroundStation
diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml
index 4f8694a77f1..188ea44a5e4 100644
--- a/services/guardduty/pom.xml
+++ b/services/guardduty/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.30.11-SNAPSHOT
+ 2.30.11
4.0.0
guardduty
diff --git a/services/health/pom.xml b/services/health/pom.xml
index 44ebbce9f9d..06b3f0acf2b 100644
--- a/services/health/pom.xml
+++ b/services/health/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
health
AWS Java SDK :: Services :: AWS Health APIs and Notifications
diff --git a/services/healthlake/pom.xml b/services/healthlake/pom.xml
index 4035d681771..5b8903f29ed 100644
--- a/services/healthlake/pom.xml
+++ b/services/healthlake/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
healthlake
AWS Java SDK :: Services :: Health Lake
diff --git a/services/iam/pom.xml b/services/iam/pom.xml
index af4e4a0912b..430175ae593 100644
--- a/services/iam/pom.xml
+++ b/services/iam/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
iam
AWS Java SDK :: Services :: AWS IAM
diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml
index 02f27901bc3..e38bf35883a 100644
--- a/services/identitystore/pom.xml
+++ b/services/identitystore/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
identitystore
AWS Java SDK :: Services :: Identitystore
diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml
index cee4deb2539..b4b09fcece5 100644
--- a/services/imagebuilder/pom.xml
+++ b/services/imagebuilder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
imagebuilder
AWS Java SDK :: Services :: Imagebuilder
diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml
index 054c7159d8b..f728e857e95 100644
--- a/services/inspector/pom.xml
+++ b/services/inspector/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
inspector
AWS Java SDK :: Services :: Amazon Inspector Service
diff --git a/services/inspector2/pom.xml b/services/inspector2/pom.xml
index 6d6e9216a53..71a73f4e1c4 100644
--- a/services/inspector2/pom.xml
+++ b/services/inspector2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
inspector2
AWS Java SDK :: Services :: Inspector2
diff --git a/services/inspectorscan/pom.xml b/services/inspectorscan/pom.xml
index 86d0a70dead..c1d874681f4 100644
--- a/services/inspectorscan/pom.xml
+++ b/services/inspectorscan/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
inspectorscan
AWS Java SDK :: Services :: Inspector Scan
diff --git a/services/internetmonitor/pom.xml b/services/internetmonitor/pom.xml
index 9c2894f49a0..477def960e6 100644
--- a/services/internetmonitor/pom.xml
+++ b/services/internetmonitor/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
internetmonitor
AWS Java SDK :: Services :: Internet Monitor
diff --git a/services/invoicing/pom.xml b/services/invoicing/pom.xml
index 20c75a9f4fc..43d9522b5dc 100644
--- a/services/invoicing/pom.xml
+++ b/services/invoicing/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
invoicing
AWS Java SDK :: Services :: Invoicing
diff --git a/services/iot/pom.xml b/services/iot/pom.xml
index ae063a153b5..d2c16beae74 100644
--- a/services/iot/pom.xml
+++ b/services/iot/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
iot
AWS Java SDK :: Services :: AWS IoT
diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml
index f98713790da..1f679122a42 100644
--- a/services/iotanalytics/pom.xml
+++ b/services/iotanalytics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
iotanalytics
AWS Java SDK :: Services :: IoTAnalytics
diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml
index 2f884e1a6aa..496b2767294 100644
--- a/services/iotdataplane/pom.xml
+++ b/services/iotdataplane/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
iotdataplane
AWS Java SDK :: Services :: AWS IoT Data Plane
diff --git a/services/iotdeviceadvisor/pom.xml b/services/iotdeviceadvisor/pom.xml
index ca4a24a9f86..fe008e8f150 100644
--- a/services/iotdeviceadvisor/pom.xml
+++ b/services/iotdeviceadvisor/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
iotdeviceadvisor
AWS Java SDK :: Services :: Iot Device Advisor
diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml
index 210336124a4..0a21fd40e28 100644
--- a/services/iotevents/pom.xml
+++ b/services/iotevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
iotevents
AWS Java SDK :: Services :: IoT Events
diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml
index 5cd6dfec4cd..c005a71c32d 100644
--- a/services/ioteventsdata/pom.xml
+++ b/services/ioteventsdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
ioteventsdata
AWS Java SDK :: Services :: IoT Events Data
diff --git a/services/iotfleethub/pom.xml b/services/iotfleethub/pom.xml
index f486613468b..15ce6cc7810 100644
--- a/services/iotfleethub/pom.xml
+++ b/services/iotfleethub/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
iotfleethub
AWS Java SDK :: Services :: Io T Fleet Hub
diff --git a/services/iotfleetwise/pom.xml b/services/iotfleetwise/pom.xml
index ba87299e47a..9c829973415 100644
--- a/services/iotfleetwise/pom.xml
+++ b/services/iotfleetwise/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
iotfleetwise
AWS Java SDK :: Services :: Io T Fleet Wise
diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml
index d37828dc3c3..a092ad6152b 100644
--- a/services/iotjobsdataplane/pom.xml
+++ b/services/iotjobsdataplane/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
iotjobsdataplane
AWS Java SDK :: Services :: IoT Jobs Data Plane
diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml
index d5c045fe7bc..7e18baee17a 100644
--- a/services/iotsecuretunneling/pom.xml
+++ b/services/iotsecuretunneling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
iotsecuretunneling
AWS Java SDK :: Services :: IoTSecureTunneling
diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml
index bcf70207906..59bfabdcad4 100644
--- a/services/iotsitewise/pom.xml
+++ b/services/iotsitewise/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
iotsitewise
AWS Java SDK :: Services :: Io T Site Wise
diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml
index 1ee61f164b1..2b728c6d32d 100644
--- a/services/iotthingsgraph/pom.xml
+++ b/services/iotthingsgraph/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
iotthingsgraph
AWS Java SDK :: Services :: IoTThingsGraph
diff --git a/services/iottwinmaker/pom.xml b/services/iottwinmaker/pom.xml
index f194260a5fc..99a873d3dbe 100644
--- a/services/iottwinmaker/pom.xml
+++ b/services/iottwinmaker/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
iottwinmaker
AWS Java SDK :: Services :: Io T Twin Maker
diff --git a/services/iotwireless/pom.xml b/services/iotwireless/pom.xml
index 34d8d671472..ba4228b09d5 100644
--- a/services/iotwireless/pom.xml
+++ b/services/iotwireless/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
iotwireless
AWS Java SDK :: Services :: IoT Wireless
diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml
index cbfe7cb1c7d..7fb04cad849 100644
--- a/services/ivs/pom.xml
+++ b/services/ivs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
ivs
AWS Java SDK :: Services :: Ivs
diff --git a/services/ivschat/pom.xml b/services/ivschat/pom.xml
index 305285f281f..d109807f599 100644
--- a/services/ivschat/pom.xml
+++ b/services/ivschat/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
ivschat
AWS Java SDK :: Services :: Ivschat
diff --git a/services/ivsrealtime/pom.xml b/services/ivsrealtime/pom.xml
index 3746b301b70..d7e4d221102 100644
--- a/services/ivsrealtime/pom.xml
+++ b/services/ivsrealtime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
ivsrealtime
AWS Java SDK :: Services :: IVS Real Time
diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml
index 0a07f349ffb..00a4fe89424 100644
--- a/services/kafka/pom.xml
+++ b/services/kafka/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
kafka
AWS Java SDK :: Services :: Kafka
diff --git a/services/kafkaconnect/pom.xml b/services/kafkaconnect/pom.xml
index 6f6767f6b64..ec350a17e4d 100644
--- a/services/kafkaconnect/pom.xml
+++ b/services/kafkaconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
kafkaconnect
AWS Java SDK :: Services :: Kafka Connect
diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml
index 6b44ece5c03..7c4c5b5b04c 100644
--- a/services/kendra/pom.xml
+++ b/services/kendra/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
kendra
AWS Java SDK :: Services :: Kendra
diff --git a/services/kendraranking/pom.xml b/services/kendraranking/pom.xml
index 2e8287f4a99..2742eec21ba 100644
--- a/services/kendraranking/pom.xml
+++ b/services/kendraranking/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
kendraranking
AWS Java SDK :: Services :: Kendra Ranking
diff --git a/services/keyspaces/pom.xml b/services/keyspaces/pom.xml
index 2283dfea091..3af5e4bec1d 100644
--- a/services/keyspaces/pom.xml
+++ b/services/keyspaces/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
keyspaces
AWS Java SDK :: Services :: Keyspaces
diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml
index 3a4206cf698..cf1e2217de6 100644
--- a/services/kinesis/pom.xml
+++ b/services/kinesis/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
kinesis
AWS Java SDK :: Services :: Amazon Kinesis
diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml
index c993fe87c8a..2b1203d7331 100644
--- a/services/kinesisanalytics/pom.xml
+++ b/services/kinesisanalytics/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
kinesisanalytics
AWS Java SDK :: Services :: Amazon Kinesis Analytics
diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml
index f19ee2d606d..a4037a4d190 100644
--- a/services/kinesisanalyticsv2/pom.xml
+++ b/services/kinesisanalyticsv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
kinesisanalyticsv2
AWS Java SDK :: Services :: Kinesis Analytics V2
diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml
index e2858b3b916..951396600d6 100644
--- a/services/kinesisvideo/pom.xml
+++ b/services/kinesisvideo/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.30.11-SNAPSHOT
+ 2.30.11
4.0.0
kinesisvideo
diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml
index e74eb2d721b..d0af4e3e945 100644
--- a/services/kinesisvideoarchivedmedia/pom.xml
+++ b/services/kinesisvideoarchivedmedia/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
kinesisvideoarchivedmedia
AWS Java SDK :: Services :: Kinesis Video Archived Media
diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml
index ad8468280ba..54befff97da 100644
--- a/services/kinesisvideomedia/pom.xml
+++ b/services/kinesisvideomedia/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
kinesisvideomedia
AWS Java SDK :: Services :: Kinesis Video Media
diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml
index bb8485d438f..6efbfba762b 100644
--- a/services/kinesisvideosignaling/pom.xml
+++ b/services/kinesisvideosignaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
kinesisvideosignaling
AWS Java SDK :: Services :: Kinesis Video Signaling
diff --git a/services/kinesisvideowebrtcstorage/pom.xml b/services/kinesisvideowebrtcstorage/pom.xml
index 4db28e98b65..363d9025031 100644
--- a/services/kinesisvideowebrtcstorage/pom.xml
+++ b/services/kinesisvideowebrtcstorage/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
kinesisvideowebrtcstorage
AWS Java SDK :: Services :: Kinesis Video Web RTC Storage
diff --git a/services/kms/pom.xml b/services/kms/pom.xml
index b29d603e654..da8de1d477c 100644
--- a/services/kms/pom.xml
+++ b/services/kms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
kms
AWS Java SDK :: Services :: AWS KMS
diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml
index 8e9c34174bd..7f9995f1816 100644
--- a/services/lakeformation/pom.xml
+++ b/services/lakeformation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
lakeformation
AWS Java SDK :: Services :: LakeFormation
diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml
index a464776c6c1..dc74842a778 100644
--- a/services/lambda/pom.xml
+++ b/services/lambda/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
lambda
AWS Java SDK :: Services :: AWS Lambda
diff --git a/services/launchwizard/pom.xml b/services/launchwizard/pom.xml
index 4f2cd6c904b..6959ff81f00 100644
--- a/services/launchwizard/pom.xml
+++ b/services/launchwizard/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
launchwizard
AWS Java SDK :: Services :: Launch Wizard
diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml
index 4d50aa16b8a..8a2575ae8b1 100644
--- a/services/lexmodelbuilding/pom.xml
+++ b/services/lexmodelbuilding/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
lexmodelbuilding
AWS Java SDK :: Services :: Amazon Lex Model Building
diff --git a/services/lexmodelsv2/pom.xml b/services/lexmodelsv2/pom.xml
index 33c6e30fe7d..d1da363d70d 100644
--- a/services/lexmodelsv2/pom.xml
+++ b/services/lexmodelsv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
lexmodelsv2
AWS Java SDK :: Services :: Lex Models V2
diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml
index 330d3d19b7b..c764a0de2b6 100644
--- a/services/lexruntime/pom.xml
+++ b/services/lexruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
lexruntime
AWS Java SDK :: Services :: Amazon Lex Runtime
diff --git a/services/lexruntimev2/pom.xml b/services/lexruntimev2/pom.xml
index 6910d600fa4..2f54ec08378 100644
--- a/services/lexruntimev2/pom.xml
+++ b/services/lexruntimev2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
lexruntimev2
AWS Java SDK :: Services :: Lex Runtime V2
diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml
index 48eb69ca937..9372b624243 100644
--- a/services/licensemanager/pom.xml
+++ b/services/licensemanager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
licensemanager
AWS Java SDK :: Services :: License Manager
diff --git a/services/licensemanagerlinuxsubscriptions/pom.xml b/services/licensemanagerlinuxsubscriptions/pom.xml
index 8323039a575..2dfbe38fc2d 100644
--- a/services/licensemanagerlinuxsubscriptions/pom.xml
+++ b/services/licensemanagerlinuxsubscriptions/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
licensemanagerlinuxsubscriptions
AWS Java SDK :: Services :: License Manager Linux Subscriptions
diff --git a/services/licensemanagerusersubscriptions/pom.xml b/services/licensemanagerusersubscriptions/pom.xml
index 8cfb89e4df4..d222614e560 100644
--- a/services/licensemanagerusersubscriptions/pom.xml
+++ b/services/licensemanagerusersubscriptions/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
licensemanagerusersubscriptions
AWS Java SDK :: Services :: License Manager User Subscriptions
diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml
index 9f2e03c3a24..0da700beb97 100644
--- a/services/lightsail/pom.xml
+++ b/services/lightsail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
lightsail
AWS Java SDK :: Services :: Amazon Lightsail
diff --git a/services/location/pom.xml b/services/location/pom.xml
index e79e7ac06d8..862674ea5df 100644
--- a/services/location/pom.xml
+++ b/services/location/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
location
AWS Java SDK :: Services :: Location
diff --git a/services/lookoutequipment/pom.xml b/services/lookoutequipment/pom.xml
index 4eb0723b135..a54885b5a8e 100644
--- a/services/lookoutequipment/pom.xml
+++ b/services/lookoutequipment/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
lookoutequipment
AWS Java SDK :: Services :: Lookout Equipment
diff --git a/services/lookoutmetrics/pom.xml b/services/lookoutmetrics/pom.xml
index 88a24d4032c..ae28433b235 100644
--- a/services/lookoutmetrics/pom.xml
+++ b/services/lookoutmetrics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
lookoutmetrics
AWS Java SDK :: Services :: Lookout Metrics
diff --git a/services/lookoutvision/pom.xml b/services/lookoutvision/pom.xml
index bee98ec00a8..8aed9633c57 100644
--- a/services/lookoutvision/pom.xml
+++ b/services/lookoutvision/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
lookoutvision
AWS Java SDK :: Services :: Lookout Vision
diff --git a/services/m2/pom.xml b/services/m2/pom.xml
index 4685a394da6..0ce3020d8b9 100644
--- a/services/m2/pom.xml
+++ b/services/m2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
m2
AWS Java SDK :: Services :: M2
diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml
index 7bb8833a332..b9e1d6cd8d1 100644
--- a/services/machinelearning/pom.xml
+++ b/services/machinelearning/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
machinelearning
AWS Java SDK :: Services :: Amazon Machine Learning
diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml
index 7e7d289ef6e..85e195b4cc3 100644
--- a/services/macie2/pom.xml
+++ b/services/macie2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
macie2
AWS Java SDK :: Services :: Macie2
diff --git a/services/mailmanager/pom.xml b/services/mailmanager/pom.xml
index a12c4af49a0..febc1e054a0 100644
--- a/services/mailmanager/pom.xml
+++ b/services/mailmanager/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
mailmanager
AWS Java SDK :: Services :: Mail Manager
diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml
index fbd58c66b46..fcd30a2dc87 100644
--- a/services/managedblockchain/pom.xml
+++ b/services/managedblockchain/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
managedblockchain
AWS Java SDK :: Services :: ManagedBlockchain
diff --git a/services/managedblockchainquery/pom.xml b/services/managedblockchainquery/pom.xml
index cf32ab1b729..e04fda6eb7a 100644
--- a/services/managedblockchainquery/pom.xml
+++ b/services/managedblockchainquery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
managedblockchainquery
AWS Java SDK :: Services :: Managed Blockchain Query
diff --git a/services/marketplaceagreement/pom.xml b/services/marketplaceagreement/pom.xml
index 56f2ab32977..57f038fe032 100644
--- a/services/marketplaceagreement/pom.xml
+++ b/services/marketplaceagreement/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
marketplaceagreement
AWS Java SDK :: Services :: Marketplace Agreement
diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml
index 91b61cb15fa..401c321b805 100644
--- a/services/marketplacecatalog/pom.xml
+++ b/services/marketplacecatalog/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
marketplacecatalog
AWS Java SDK :: Services :: Marketplace Catalog
diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml
index e71c84c95d5..eda1a11f5f6 100644
--- a/services/marketplacecommerceanalytics/pom.xml
+++ b/services/marketplacecommerceanalytics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
marketplacecommerceanalytics
AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics
diff --git a/services/marketplacedeployment/pom.xml b/services/marketplacedeployment/pom.xml
index 5c1ad0c18c7..7b2b5696581 100644
--- a/services/marketplacedeployment/pom.xml
+++ b/services/marketplacedeployment/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
marketplacedeployment
AWS Java SDK :: Services :: Marketplace Deployment
diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml
index 52d482a1415..40d85b25830 100644
--- a/services/marketplaceentitlement/pom.xml
+++ b/services/marketplaceentitlement/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
marketplaceentitlement
AWS Java SDK :: Services :: AWS Marketplace Entitlement
diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml
index 3a580853655..d5d95b34e03 100644
--- a/services/marketplacemetering/pom.xml
+++ b/services/marketplacemetering/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
marketplacemetering
AWS Java SDK :: Services :: AWS Marketplace Metering Service
diff --git a/services/marketplacereporting/pom.xml b/services/marketplacereporting/pom.xml
index 61521de46fc..bb947430ea2 100644
--- a/services/marketplacereporting/pom.xml
+++ b/services/marketplacereporting/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
marketplacereporting
AWS Java SDK :: Services :: Marketplace Reporting
diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml
index 36a88f028b0..653febcff4a 100644
--- a/services/mediaconnect/pom.xml
+++ b/services/mediaconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
mediaconnect
AWS Java SDK :: Services :: MediaConnect
diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml
index 148e871f697..26afd5cd78f 100644
--- a/services/mediaconvert/pom.xml
+++ b/services/mediaconvert/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.30.11-SNAPSHOT
+ 2.30.11
4.0.0
mediaconvert
diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml
index 531f9c83802..bb29444eb69 100644
--- a/services/medialive/pom.xml
+++ b/services/medialive/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.30.11-SNAPSHOT
+ 2.30.11
4.0.0
medialive
diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml
index fd99b88a146..a14ab9c3780 100644
--- a/services/mediapackage/pom.xml
+++ b/services/mediapackage/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.30.11-SNAPSHOT
+ 2.30.11
4.0.0
mediapackage
diff --git a/services/mediapackagev2/pom.xml b/services/mediapackagev2/pom.xml
index dcc71b9756c..e7c7abd68f5 100644
--- a/services/mediapackagev2/pom.xml
+++ b/services/mediapackagev2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
mediapackagev2
AWS Java SDK :: Services :: Media Package V2
diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml
index a11008b4b80..2a6c2ba8f62 100644
--- a/services/mediapackagevod/pom.xml
+++ b/services/mediapackagevod/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
mediapackagevod
AWS Java SDK :: Services :: MediaPackage Vod
diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml
index fcb3747b703..59e285683ce 100644
--- a/services/mediastore/pom.xml
+++ b/services/mediastore/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.30.11-SNAPSHOT
+ 2.30.11
4.0.0
mediastore
diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml
index b0c887d2ed9..60036f50f01 100644
--- a/services/mediastoredata/pom.xml
+++ b/services/mediastoredata/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.30.11-SNAPSHOT
+ 2.30.11
4.0.0
mediastoredata
diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml
index 25e062e0640..751cc297737 100644
--- a/services/mediatailor/pom.xml
+++ b/services/mediatailor/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
mediatailor
AWS Java SDK :: Services :: MediaTailor
diff --git a/services/medicalimaging/pom.xml b/services/medicalimaging/pom.xml
index d57b04403cd..437a83c8c2f 100644
--- a/services/medicalimaging/pom.xml
+++ b/services/medicalimaging/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
medicalimaging
AWS Java SDK :: Services :: Medical Imaging
diff --git a/services/memorydb/pom.xml b/services/memorydb/pom.xml
index e1035ffd73c..8fde51d3eb8 100644
--- a/services/memorydb/pom.xml
+++ b/services/memorydb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
memorydb
AWS Java SDK :: Services :: Memory DB
diff --git a/services/mgn/pom.xml b/services/mgn/pom.xml
index d09919e46c4..cd5b0027399 100644
--- a/services/mgn/pom.xml
+++ b/services/mgn/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
mgn
AWS Java SDK :: Services :: Mgn
diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml
index e6122608aa8..facc9de4d2c 100644
--- a/services/migrationhub/pom.xml
+++ b/services/migrationhub/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.30.11-SNAPSHOT
+ 2.30.11
4.0.0
migrationhub
diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml
index 39da9ef3ecc..c8c810cbb21 100644
--- a/services/migrationhubconfig/pom.xml
+++ b/services/migrationhubconfig/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
migrationhubconfig
AWS Java SDK :: Services :: MigrationHub Config
diff --git a/services/migrationhuborchestrator/pom.xml b/services/migrationhuborchestrator/pom.xml
index 289f81b5ac7..03bcb1e5865 100644
--- a/services/migrationhuborchestrator/pom.xml
+++ b/services/migrationhuborchestrator/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
migrationhuborchestrator
AWS Java SDK :: Services :: Migration Hub Orchestrator
diff --git a/services/migrationhubrefactorspaces/pom.xml b/services/migrationhubrefactorspaces/pom.xml
index 2311fcafb57..5f42a09aa3d 100644
--- a/services/migrationhubrefactorspaces/pom.xml
+++ b/services/migrationhubrefactorspaces/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
migrationhubrefactorspaces
AWS Java SDK :: Services :: Migration Hub Refactor Spaces
diff --git a/services/migrationhubstrategy/pom.xml b/services/migrationhubstrategy/pom.xml
index 6899ef0c662..6381090dec1 100644
--- a/services/migrationhubstrategy/pom.xml
+++ b/services/migrationhubstrategy/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
migrationhubstrategy
AWS Java SDK :: Services :: Migration Hub Strategy
diff --git a/services/mq/pom.xml b/services/mq/pom.xml
index 01bcf92da22..0b2be10b9e8 100644
--- a/services/mq/pom.xml
+++ b/services/mq/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.30.11-SNAPSHOT
+ 2.30.11
4.0.0
mq
diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml
index 462317b6497..5c6f8e32a99 100644
--- a/services/mturk/pom.xml
+++ b/services/mturk/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
mturk
AWS Java SDK :: Services :: Amazon Mechanical Turk Requester
diff --git a/services/mwaa/pom.xml b/services/mwaa/pom.xml
index 906d687bf48..7cd830eba0a 100644
--- a/services/mwaa/pom.xml
+++ b/services/mwaa/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
mwaa
AWS Java SDK :: Services :: MWAA
diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml
index cc1868400a7..9bbbd7aadc4 100644
--- a/services/neptune/pom.xml
+++ b/services/neptune/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
neptune
AWS Java SDK :: Services :: Neptune
diff --git a/services/neptunedata/pom.xml b/services/neptunedata/pom.xml
index 607047fae3a..20b143d35b6 100644
--- a/services/neptunedata/pom.xml
+++ b/services/neptunedata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
neptunedata
AWS Java SDK :: Services :: Neptunedata
diff --git a/services/neptunegraph/pom.xml b/services/neptunegraph/pom.xml
index f79e584bee7..3eba71b1bf5 100644
--- a/services/neptunegraph/pom.xml
+++ b/services/neptunegraph/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
neptunegraph
AWS Java SDK :: Services :: Neptune Graph
diff --git a/services/networkfirewall/pom.xml b/services/networkfirewall/pom.xml
index 211d6815727..bd14c6d4a3d 100644
--- a/services/networkfirewall/pom.xml
+++ b/services/networkfirewall/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
networkfirewall
AWS Java SDK :: Services :: Network Firewall
diff --git a/services/networkflowmonitor/pom.xml b/services/networkflowmonitor/pom.xml
index 92bc364cc0a..b69099effda 100644
--- a/services/networkflowmonitor/pom.xml
+++ b/services/networkflowmonitor/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
networkflowmonitor
AWS Java SDK :: Services :: Network Flow Monitor
diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml
index ce003c35217..954e9499dad 100644
--- a/services/networkmanager/pom.xml
+++ b/services/networkmanager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
networkmanager
AWS Java SDK :: Services :: NetworkManager
diff --git a/services/networkmonitor/pom.xml b/services/networkmonitor/pom.xml
index 23487019aaf..a82bd4cb521 100644
--- a/services/networkmonitor/pom.xml
+++ b/services/networkmonitor/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
networkmonitor
AWS Java SDK :: Services :: Network Monitor
diff --git a/services/notifications/pom.xml b/services/notifications/pom.xml
index dda888de601..fe8379f9b38 100644
--- a/services/notifications/pom.xml
+++ b/services/notifications/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
notifications
AWS Java SDK :: Services :: Notifications
diff --git a/services/notificationscontacts/pom.xml b/services/notificationscontacts/pom.xml
index 72d6d954d90..865a304772c 100644
--- a/services/notificationscontacts/pom.xml
+++ b/services/notificationscontacts/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
notificationscontacts
AWS Java SDK :: Services :: Notifications Contacts
diff --git a/services/oam/pom.xml b/services/oam/pom.xml
index f8318c3dd61..e2911cb1754 100644
--- a/services/oam/pom.xml
+++ b/services/oam/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
oam
AWS Java SDK :: Services :: OAM
diff --git a/services/observabilityadmin/pom.xml b/services/observabilityadmin/pom.xml
index b748cdf3d03..0e7eec8e163 100644
--- a/services/observabilityadmin/pom.xml
+++ b/services/observabilityadmin/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
observabilityadmin
AWS Java SDK :: Services :: Observability Admin
diff --git a/services/omics/pom.xml b/services/omics/pom.xml
index eff78c0adc0..8e8b60c782c 100644
--- a/services/omics/pom.xml
+++ b/services/omics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
omics
AWS Java SDK :: Services :: Omics
diff --git a/services/opensearch/pom.xml b/services/opensearch/pom.xml
index c9c10ba33e2..21164d74ec2 100644
--- a/services/opensearch/pom.xml
+++ b/services/opensearch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
opensearch
AWS Java SDK :: Services :: Open Search
diff --git a/services/opensearchserverless/pom.xml b/services/opensearchserverless/pom.xml
index 377ce633dfe..e58f9a51041 100644
--- a/services/opensearchserverless/pom.xml
+++ b/services/opensearchserverless/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
opensearchserverless
AWS Java SDK :: Services :: Open Search Serverless
diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml
index 8958467e676..c1dba3ea0c9 100644
--- a/services/opsworks/pom.xml
+++ b/services/opsworks/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
opsworks
AWS Java SDK :: Services :: AWS OpsWorks
diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml
index 34364153d0a..e168b180931 100644
--- a/services/opsworkscm/pom.xml
+++ b/services/opsworkscm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
opsworkscm
AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate
diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml
index d4809d453fc..3a037e4795c 100644
--- a/services/organizations/pom.xml
+++ b/services/organizations/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
organizations
AWS Java SDK :: Services :: AWS Organizations
diff --git a/services/osis/pom.xml b/services/osis/pom.xml
index d84a50855fb..57072402d16 100644
--- a/services/osis/pom.xml
+++ b/services/osis/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
osis
AWS Java SDK :: Services :: OSIS
diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml
index 5b1fd115046..856e02ba9f8 100644
--- a/services/outposts/pom.xml
+++ b/services/outposts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
outposts
AWS Java SDK :: Services :: Outposts
diff --git a/services/panorama/pom.xml b/services/panorama/pom.xml
index 32f5b84bf76..d7f51b8cd7b 100644
--- a/services/panorama/pom.xml
+++ b/services/panorama/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
panorama
AWS Java SDK :: Services :: Panorama
diff --git a/services/partnercentralselling/pom.xml b/services/partnercentralselling/pom.xml
index 7fab50d5817..1b091aacacc 100644
--- a/services/partnercentralselling/pom.xml
+++ b/services/partnercentralselling/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
partnercentralselling
AWS Java SDK :: Services :: Partner Central Selling
diff --git a/services/paymentcryptography/pom.xml b/services/paymentcryptography/pom.xml
index 0d752561d51..43442559591 100644
--- a/services/paymentcryptography/pom.xml
+++ b/services/paymentcryptography/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
paymentcryptography
AWS Java SDK :: Services :: Payment Cryptography
diff --git a/services/paymentcryptographydata/pom.xml b/services/paymentcryptographydata/pom.xml
index b0ab0a400c8..02e936f02c0 100644
--- a/services/paymentcryptographydata/pom.xml
+++ b/services/paymentcryptographydata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
paymentcryptographydata
AWS Java SDK :: Services :: Payment Cryptography Data
diff --git a/services/pcaconnectorad/pom.xml b/services/pcaconnectorad/pom.xml
index da48753a339..fc27382fe43 100644
--- a/services/pcaconnectorad/pom.xml
+++ b/services/pcaconnectorad/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
pcaconnectorad
AWS Java SDK :: Services :: Pca Connector Ad
diff --git a/services/pcaconnectorscep/pom.xml b/services/pcaconnectorscep/pom.xml
index 7fc9d117643..87e228c8121 100644
--- a/services/pcaconnectorscep/pom.xml
+++ b/services/pcaconnectorscep/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
pcaconnectorscep
AWS Java SDK :: Services :: Pca Connector Scep
diff --git a/services/pcs/pom.xml b/services/pcs/pom.xml
index d4e9f9224b2..ef73d174817 100644
--- a/services/pcs/pom.xml
+++ b/services/pcs/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
pcs
AWS Java SDK :: Services :: PCS
diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml
index 8dbfb1e50ca..052272b1812 100644
--- a/services/personalize/pom.xml
+++ b/services/personalize/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
personalize
AWS Java SDK :: Services :: Personalize
diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml
index fed55ea5ae1..31a4a2c9725 100644
--- a/services/personalizeevents/pom.xml
+++ b/services/personalizeevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
personalizeevents
AWS Java SDK :: Services :: Personalize Events
diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml
index 3a683137d56..2b9b42a46cc 100644
--- a/services/personalizeruntime/pom.xml
+++ b/services/personalizeruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
personalizeruntime
AWS Java SDK :: Services :: Personalize Runtime
diff --git a/services/pi/pom.xml b/services/pi/pom.xml
index 48983fabe7e..40dc72469b2 100644
--- a/services/pi/pom.xml
+++ b/services/pi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
pi
AWS Java SDK :: Services :: PI
diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml
index 9e83a5eac19..12c2ee05dc8 100644
--- a/services/pinpoint/pom.xml
+++ b/services/pinpoint/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
pinpoint
AWS Java SDK :: Services :: Amazon Pinpoint
diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml
index 7068f1c0ee7..e4b8444b880 100644
--- a/services/pinpointemail/pom.xml
+++ b/services/pinpointemail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
pinpointemail
AWS Java SDK :: Services :: Pinpoint Email
diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml
index 82dcbb50a16..776eab1f2bc 100644
--- a/services/pinpointsmsvoice/pom.xml
+++ b/services/pinpointsmsvoice/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
pinpointsmsvoice
AWS Java SDK :: Services :: Pinpoint SMS Voice
diff --git a/services/pinpointsmsvoicev2/pom.xml b/services/pinpointsmsvoicev2/pom.xml
index 12eae649f0f..375bd2dfd36 100644
--- a/services/pinpointsmsvoicev2/pom.xml
+++ b/services/pinpointsmsvoicev2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
pinpointsmsvoicev2
AWS Java SDK :: Services :: Pinpoint SMS Voice V2
diff --git a/services/pipes/pom.xml b/services/pipes/pom.xml
index 3e2974a6bff..4099deef298 100644
--- a/services/pipes/pom.xml
+++ b/services/pipes/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
pipes
AWS Java SDK :: Services :: Pipes
diff --git a/services/polly/pom.xml b/services/polly/pom.xml
index 83b8df7cc70..4a5fb0c1edf 100644
--- a/services/polly/pom.xml
+++ b/services/polly/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
polly
AWS Java SDK :: Services :: Amazon Polly
diff --git a/services/pom.xml b/services/pom.xml
index d98add30511..74f4eb1e752 100644
--- a/services/pom.xml
+++ b/services/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.30.11-SNAPSHOT
+ 2.30.11
services
AWS Java SDK :: Services
diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml
index ac0dd4a3ada..c5f81aca389 100644
--- a/services/pricing/pom.xml
+++ b/services/pricing/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.30.11-SNAPSHOT
+ 2.30.11
4.0.0
pricing
diff --git a/services/privatenetworks/pom.xml b/services/privatenetworks/pom.xml
index bd0a1f1847a..96069b1e2f5 100644
--- a/services/privatenetworks/pom.xml
+++ b/services/privatenetworks/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
privatenetworks
AWS Java SDK :: Services :: Private Networks
diff --git a/services/proton/pom.xml b/services/proton/pom.xml
index c5d5be9e25b..1d5ed276e98 100644
--- a/services/proton/pom.xml
+++ b/services/proton/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
proton
AWS Java SDK :: Services :: Proton
diff --git a/services/qapps/pom.xml b/services/qapps/pom.xml
index 6d91fefce99..9d720760b2b 100644
--- a/services/qapps/pom.xml
+++ b/services/qapps/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
qapps
AWS Java SDK :: Services :: Q Apps
diff --git a/services/qbusiness/pom.xml b/services/qbusiness/pom.xml
index b5052f55c18..e4c819f8d58 100644
--- a/services/qbusiness/pom.xml
+++ b/services/qbusiness/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
qbusiness
AWS Java SDK :: Services :: Q Business
diff --git a/services/qconnect/pom.xml b/services/qconnect/pom.xml
index 8683c8e6421..93e4cc5ee0d 100644
--- a/services/qconnect/pom.xml
+++ b/services/qconnect/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
qconnect
AWS Java SDK :: Services :: Q Connect
diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml
index bfd493c1eed..d2c0461f756 100644
--- a/services/qldb/pom.xml
+++ b/services/qldb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
qldb
AWS Java SDK :: Services :: QLDB
diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml
index 14fea663c5d..234382c6556 100644
--- a/services/qldbsession/pom.xml
+++ b/services/qldbsession/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
qldbsession
AWS Java SDK :: Services :: QLDB Session
diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml
index aea21cba7de..64ad6c12de7 100644
--- a/services/quicksight/pom.xml
+++ b/services/quicksight/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
quicksight
AWS Java SDK :: Services :: QuickSight
diff --git a/services/ram/pom.xml b/services/ram/pom.xml
index 7ebf95d3e30..c61bebba153 100644
--- a/services/ram/pom.xml
+++ b/services/ram/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
ram
AWS Java SDK :: Services :: RAM
diff --git a/services/rbin/pom.xml b/services/rbin/pom.xml
index 287e5358fad..7d57e5239e1 100644
--- a/services/rbin/pom.xml
+++ b/services/rbin/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
rbin
AWS Java SDK :: Services :: Rbin
diff --git a/services/rds/pom.xml b/services/rds/pom.xml
index 23a6ad18bb3..b43093d2f8c 100644
--- a/services/rds/pom.xml
+++ b/services/rds/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
rds
AWS Java SDK :: Services :: Amazon RDS
diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml
index a4828ac2bf9..1830b569607 100644
--- a/services/rdsdata/pom.xml
+++ b/services/rdsdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
rdsdata
AWS Java SDK :: Services :: RDS Data
diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml
index 1eb123687df..b7ff9041e78 100644
--- a/services/redshift/pom.xml
+++ b/services/redshift/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
redshift
AWS Java SDK :: Services :: Amazon Redshift
diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml
index 79d856e9e57..6114fca4df9 100644
--- a/services/redshiftdata/pom.xml
+++ b/services/redshiftdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
redshiftdata
AWS Java SDK :: Services :: Redshift Data
diff --git a/services/redshiftserverless/pom.xml b/services/redshiftserverless/pom.xml
index 1af915197b4..00e8cc09f5b 100644
--- a/services/redshiftserverless/pom.xml
+++ b/services/redshiftserverless/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
redshiftserverless
AWS Java SDK :: Services :: Redshift Serverless
diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml
index e1a9ad9ae85..ade8980bb8e 100644
--- a/services/rekognition/pom.xml
+++ b/services/rekognition/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
rekognition
AWS Java SDK :: Services :: Amazon Rekognition
diff --git a/services/repostspace/pom.xml b/services/repostspace/pom.xml
index 90b97350976..50a84da4b58 100644
--- a/services/repostspace/pom.xml
+++ b/services/repostspace/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
repostspace
AWS Java SDK :: Services :: Repostspace
diff --git a/services/resiliencehub/pom.xml b/services/resiliencehub/pom.xml
index ae51b72fb75..a4360aef96b 100644
--- a/services/resiliencehub/pom.xml
+++ b/services/resiliencehub/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
resiliencehub
AWS Java SDK :: Services :: Resiliencehub
diff --git a/services/resourceexplorer2/pom.xml b/services/resourceexplorer2/pom.xml
index 262afbfcb77..12963ec683b 100644
--- a/services/resourceexplorer2/pom.xml
+++ b/services/resourceexplorer2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
resourceexplorer2
AWS Java SDK :: Services :: Resource Explorer 2
diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml
index 7951427eda5..12643653f06 100644
--- a/services/resourcegroups/pom.xml
+++ b/services/resourcegroups/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.30.11-SNAPSHOT
+ 2.30.11
4.0.0
resourcegroups
diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml
index 913186d354b..90419304559 100644
--- a/services/resourcegroupstaggingapi/pom.xml
+++ b/services/resourcegroupstaggingapi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
resourcegroupstaggingapi
AWS Java SDK :: Services :: AWS Resource Groups Tagging API
diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml
index 4661c14b0f5..41e14bc85df 100644
--- a/services/robomaker/pom.xml
+++ b/services/robomaker/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
robomaker
AWS Java SDK :: Services :: RoboMaker
diff --git a/services/rolesanywhere/pom.xml b/services/rolesanywhere/pom.xml
index e8db08f7ae4..03303ec9dd6 100644
--- a/services/rolesanywhere/pom.xml
+++ b/services/rolesanywhere/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
rolesanywhere
AWS Java SDK :: Services :: Roles Anywhere
diff --git a/services/route53/pom.xml b/services/route53/pom.xml
index ad4dab45101..e87f32f6602 100644
--- a/services/route53/pom.xml
+++ b/services/route53/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
route53
AWS Java SDK :: Services :: Amazon Route53
diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml
index 86614d8b2f8..0d6c1708a36 100644
--- a/services/route53domains/pom.xml
+++ b/services/route53domains/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
route53domains
AWS Java SDK :: Services :: Amazon Route53 Domains
diff --git a/services/route53profiles/pom.xml b/services/route53profiles/pom.xml
index 1dd44fa9ca1..0b51cdf9d7d 100644
--- a/services/route53profiles/pom.xml
+++ b/services/route53profiles/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
route53profiles
AWS Java SDK :: Services :: Route53 Profiles
diff --git a/services/route53recoverycluster/pom.xml b/services/route53recoverycluster/pom.xml
index f9efa9d070c..3d9eeaae190 100644
--- a/services/route53recoverycluster/pom.xml
+++ b/services/route53recoverycluster/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
route53recoverycluster
AWS Java SDK :: Services :: Route53 Recovery Cluster
diff --git a/services/route53recoverycontrolconfig/pom.xml b/services/route53recoverycontrolconfig/pom.xml
index 2a5257af7d9..f2d52964540 100644
--- a/services/route53recoverycontrolconfig/pom.xml
+++ b/services/route53recoverycontrolconfig/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
route53recoverycontrolconfig
AWS Java SDK :: Services :: Route53 Recovery Control Config
diff --git a/services/route53recoveryreadiness/pom.xml b/services/route53recoveryreadiness/pom.xml
index 786fc7a824c..149c77021a3 100644
--- a/services/route53recoveryreadiness/pom.xml
+++ b/services/route53recoveryreadiness/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
route53recoveryreadiness
AWS Java SDK :: Services :: Route53 Recovery Readiness
diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml
index 33d88384fca..5408fbda98a 100644
--- a/services/route53resolver/pom.xml
+++ b/services/route53resolver/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
route53resolver
AWS Java SDK :: Services :: Route53Resolver
diff --git a/services/rum/pom.xml b/services/rum/pom.xml
index 28e5a3267ef..354b4ef410a 100644
--- a/services/rum/pom.xml
+++ b/services/rum/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
rum
AWS Java SDK :: Services :: RUM
diff --git a/services/s3/pom.xml b/services/s3/pom.xml
index a78b9af0fc8..3403c43127d 100644
--- a/services/s3/pom.xml
+++ b/services/s3/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
s3
AWS Java SDK :: Services :: Amazon S3
diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml
index ebca29ae947..e6494220f54 100644
--- a/services/s3control/pom.xml
+++ b/services/s3control/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
s3control
AWS Java SDK :: Services :: Amazon S3 Control
diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml
index 9001351bf36..41323046d9e 100644
--- a/services/s3outposts/pom.xml
+++ b/services/s3outposts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
s3outposts
AWS Java SDK :: Services :: S3 Outposts
diff --git a/services/s3tables/pom.xml b/services/s3tables/pom.xml
index c9f61795dc6..80408c0b8d7 100644
--- a/services/s3tables/pom.xml
+++ b/services/s3tables/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
s3tables
AWS Java SDK :: Services :: S3 Tables
diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml
index 0257454d8c9..e532d07d9e9 100644
--- a/services/sagemaker/pom.xml
+++ b/services/sagemaker/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.30.11-SNAPSHOT
+ 2.30.11
4.0.0
sagemaker
diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml
index e7af44097f1..aaf3b544799 100644
--- a/services/sagemakera2iruntime/pom.xml
+++ b/services/sagemakera2iruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
sagemakera2iruntime
AWS Java SDK :: Services :: SageMaker A2I Runtime
diff --git a/services/sagemakeredge/pom.xml b/services/sagemakeredge/pom.xml
index 5db72d1530c..a9c81d19cfe 100644
--- a/services/sagemakeredge/pom.xml
+++ b/services/sagemakeredge/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
sagemakeredge
AWS Java SDK :: Services :: Sagemaker Edge
diff --git a/services/sagemakerfeaturestoreruntime/pom.xml b/services/sagemakerfeaturestoreruntime/pom.xml
index c7fcb0eb7a3..595d8b2ff64 100644
--- a/services/sagemakerfeaturestoreruntime/pom.xml
+++ b/services/sagemakerfeaturestoreruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
sagemakerfeaturestoreruntime
AWS Java SDK :: Services :: Sage Maker Feature Store Runtime
diff --git a/services/sagemakergeospatial/pom.xml b/services/sagemakergeospatial/pom.xml
index e42144620d3..5040ff58af4 100644
--- a/services/sagemakergeospatial/pom.xml
+++ b/services/sagemakergeospatial/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
sagemakergeospatial
AWS Java SDK :: Services :: Sage Maker Geospatial
diff --git a/services/sagemakermetrics/pom.xml b/services/sagemakermetrics/pom.xml
index 4d9f20cbd07..7cb50901c48 100644
--- a/services/sagemakermetrics/pom.xml
+++ b/services/sagemakermetrics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
sagemakermetrics
AWS Java SDK :: Services :: Sage Maker Metrics
diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml
index 509e973f8c7..68882ed1140 100644
--- a/services/sagemakerruntime/pom.xml
+++ b/services/sagemakerruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
sagemakerruntime
AWS Java SDK :: Services :: SageMaker Runtime
diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml
index 48d9664a58f..7f7f0f8bf26 100644
--- a/services/savingsplans/pom.xml
+++ b/services/savingsplans/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
savingsplans
AWS Java SDK :: Services :: Savingsplans
diff --git a/services/scheduler/pom.xml b/services/scheduler/pom.xml
index 7324063249a..a8505afd7f8 100644
--- a/services/scheduler/pom.xml
+++ b/services/scheduler/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
scheduler
AWS Java SDK :: Services :: Scheduler
diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml
index bc45e4ed33e..5723a534d67 100644
--- a/services/schemas/pom.xml
+++ b/services/schemas/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
schemas
AWS Java SDK :: Services :: Schemas
diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml
index 8530f0e9d03..095b21cab6f 100644
--- a/services/secretsmanager/pom.xml
+++ b/services/secretsmanager/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
secretsmanager
AWS Java SDK :: Services :: AWS Secrets Manager
diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml
index 0947379c6b2..5592c61f4b5 100644
--- a/services/securityhub/pom.xml
+++ b/services/securityhub/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
securityhub
AWS Java SDK :: Services :: SecurityHub
diff --git a/services/securityir/pom.xml b/services/securityir/pom.xml
index b1255185d06..28b4f3b3ff7 100644
--- a/services/securityir/pom.xml
+++ b/services/securityir/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
securityir
AWS Java SDK :: Services :: Security IR
diff --git a/services/securitylake/pom.xml b/services/securitylake/pom.xml
index 4b167d31f69..c79bd30c5aa 100644
--- a/services/securitylake/pom.xml
+++ b/services/securitylake/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
securitylake
AWS Java SDK :: Services :: Security Lake
diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml
index 1b7c229b9df..490cfb545f1 100644
--- a/services/serverlessapplicationrepository/pom.xml
+++ b/services/serverlessapplicationrepository/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.30.11-SNAPSHOT
+ 2.30.11
4.0.0
serverlessapplicationrepository
diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml
index fb41c671249..b595b92d3f5 100644
--- a/services/servicecatalog/pom.xml
+++ b/services/servicecatalog/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
servicecatalog
AWS Java SDK :: Services :: AWS Service Catalog
diff --git a/services/servicecatalogappregistry/pom.xml b/services/servicecatalogappregistry/pom.xml
index be4e8509c30..dd85ab18a7a 100644
--- a/services/servicecatalogappregistry/pom.xml
+++ b/services/servicecatalogappregistry/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
servicecatalogappregistry
AWS Java SDK :: Services :: Service Catalog App Registry
diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml
index 7619c60de27..65ebad2f423 100644
--- a/services/servicediscovery/pom.xml
+++ b/services/servicediscovery/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.30.11-SNAPSHOT
+ 2.30.11
4.0.0
servicediscovery
diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml
index 07342c5b905..fc52a5daa6d 100644
--- a/services/servicequotas/pom.xml
+++ b/services/servicequotas/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
servicequotas
AWS Java SDK :: Services :: Service Quotas
diff --git a/services/ses/pom.xml b/services/ses/pom.xml
index 1e6874a8b8f..744b40c6a79 100644
--- a/services/ses/pom.xml
+++ b/services/ses/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
ses
AWS Java SDK :: Services :: Amazon SES
diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml
index 63e651d4d21..1128ad9d75a 100644
--- a/services/sesv2/pom.xml
+++ b/services/sesv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
sesv2
AWS Java SDK :: Services :: SESv2
diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml
index 9c4e6644d1c..460001837e5 100644
--- a/services/sfn/pom.xml
+++ b/services/sfn/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
sfn
AWS Java SDK :: Services :: AWS Step Functions
diff --git a/services/shield/pom.xml b/services/shield/pom.xml
index b4d361af400..55f4a9bbf73 100644
--- a/services/shield/pom.xml
+++ b/services/shield/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
shield
AWS Java SDK :: Services :: AWS Shield
diff --git a/services/signer/pom.xml b/services/signer/pom.xml
index 405ef248a89..da432b3de76 100644
--- a/services/signer/pom.xml
+++ b/services/signer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
signer
AWS Java SDK :: Services :: Signer
diff --git a/services/simspaceweaver/pom.xml b/services/simspaceweaver/pom.xml
index b1fe450153a..8fcb161697a 100644
--- a/services/simspaceweaver/pom.xml
+++ b/services/simspaceweaver/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
simspaceweaver
AWS Java SDK :: Services :: Sim Space Weaver
diff --git a/services/sms/pom.xml b/services/sms/pom.xml
index 3516a3f47e1..42f59fddb5b 100644
--- a/services/sms/pom.xml
+++ b/services/sms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
sms
AWS Java SDK :: Services :: AWS Server Migration
diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml
index 1b16a031f66..d59d42ae659 100644
--- a/services/snowball/pom.xml
+++ b/services/snowball/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
snowball
AWS Java SDK :: Services :: Amazon Snowball
diff --git a/services/snowdevicemanagement/pom.xml b/services/snowdevicemanagement/pom.xml
index 7bb4414e2f8..62b039fa6ef 100644
--- a/services/snowdevicemanagement/pom.xml
+++ b/services/snowdevicemanagement/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
snowdevicemanagement
AWS Java SDK :: Services :: Snow Device Management
diff --git a/services/sns/pom.xml b/services/sns/pom.xml
index a3d035b06f6..54ff06947b6 100644
--- a/services/sns/pom.xml
+++ b/services/sns/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
sns
AWS Java SDK :: Services :: Amazon SNS
diff --git a/services/socialmessaging/pom.xml b/services/socialmessaging/pom.xml
index 2ce6ff18713..5de19c612d0 100644
--- a/services/socialmessaging/pom.xml
+++ b/services/socialmessaging/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
socialmessaging
AWS Java SDK :: Services :: Social Messaging
diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml
index 71a6817de2c..cda9470a354 100644
--- a/services/sqs/pom.xml
+++ b/services/sqs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
sqs
AWS Java SDK :: Services :: Amazon SQS
diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml
index 8f60afa77fb..7ddff9e5e87 100644
--- a/services/ssm/pom.xml
+++ b/services/ssm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
ssm
AWS Java SDK :: Services :: AWS Simple Systems Management (SSM)
diff --git a/services/ssmcontacts/pom.xml b/services/ssmcontacts/pom.xml
index b7b5605a2be..e4dd5c18fe3 100644
--- a/services/ssmcontacts/pom.xml
+++ b/services/ssmcontacts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
ssmcontacts
AWS Java SDK :: Services :: SSM Contacts
diff --git a/services/ssmincidents/pom.xml b/services/ssmincidents/pom.xml
index 7fb0037b009..a94959433eb 100644
--- a/services/ssmincidents/pom.xml
+++ b/services/ssmincidents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
ssmincidents
AWS Java SDK :: Services :: SSM Incidents
diff --git a/services/ssmquicksetup/pom.xml b/services/ssmquicksetup/pom.xml
index 69b2f049906..2d140472f6f 100644
--- a/services/ssmquicksetup/pom.xml
+++ b/services/ssmquicksetup/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
ssmquicksetup
AWS Java SDK :: Services :: SSM Quick Setup
diff --git a/services/ssmsap/pom.xml b/services/ssmsap/pom.xml
index f541266446e..217cb721a71 100644
--- a/services/ssmsap/pom.xml
+++ b/services/ssmsap/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
ssmsap
AWS Java SDK :: Services :: Ssm Sap
diff --git a/services/sso/pom.xml b/services/sso/pom.xml
index 4ae33197a09..3babc7c4390 100644
--- a/services/sso/pom.xml
+++ b/services/sso/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
sso
AWS Java SDK :: Services :: SSO
diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml
index 4051bab9ca7..984dd5055aa 100644
--- a/services/ssoadmin/pom.xml
+++ b/services/ssoadmin/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
ssoadmin
AWS Java SDK :: Services :: SSO Admin
diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml
index 2d172f9f751..ad0b1854eb1 100644
--- a/services/ssooidc/pom.xml
+++ b/services/ssooidc/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
ssooidc
AWS Java SDK :: Services :: SSO OIDC
diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml
index 9de920b02a4..936c363e40f 100644
--- a/services/storagegateway/pom.xml
+++ b/services/storagegateway/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
storagegateway
AWS Java SDK :: Services :: AWS Storage Gateway
diff --git a/services/sts/pom.xml b/services/sts/pom.xml
index 18e401fcba8..a48f9b0ccda 100644
--- a/services/sts/pom.xml
+++ b/services/sts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
sts
AWS Java SDK :: Services :: AWS STS
diff --git a/services/supplychain/pom.xml b/services/supplychain/pom.xml
index d7309337520..a3d6cb56060 100644
--- a/services/supplychain/pom.xml
+++ b/services/supplychain/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
supplychain
AWS Java SDK :: Services :: Supply Chain
diff --git a/services/support/pom.xml b/services/support/pom.xml
index 3917ce92183..9b02b7c99ee 100644
--- a/services/support/pom.xml
+++ b/services/support/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
support
AWS Java SDK :: Services :: AWS Support
diff --git a/services/supportapp/pom.xml b/services/supportapp/pom.xml
index 166b2dbb2c6..5c04e036f25 100644
--- a/services/supportapp/pom.xml
+++ b/services/supportapp/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
supportapp
AWS Java SDK :: Services :: Support App
diff --git a/services/swf/pom.xml b/services/swf/pom.xml
index 5471608a835..224ddfb32dc 100644
--- a/services/swf/pom.xml
+++ b/services/swf/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
swf
AWS Java SDK :: Services :: Amazon SWF
diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml
index 6f16d38effb..f8c54ade113 100644
--- a/services/synthetics/pom.xml
+++ b/services/synthetics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
synthetics
AWS Java SDK :: Services :: Synthetics
diff --git a/services/taxsettings/pom.xml b/services/taxsettings/pom.xml
index ff6132b5def..9df4225911f 100644
--- a/services/taxsettings/pom.xml
+++ b/services/taxsettings/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
taxsettings
AWS Java SDK :: Services :: Tax Settings
diff --git a/services/textract/pom.xml b/services/textract/pom.xml
index 54a8ae1632f..1b28a28d877 100644
--- a/services/textract/pom.xml
+++ b/services/textract/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
textract
AWS Java SDK :: Services :: Textract
diff --git a/services/timestreaminfluxdb/pom.xml b/services/timestreaminfluxdb/pom.xml
index 7b0d8386436..e14c2adf128 100644
--- a/services/timestreaminfluxdb/pom.xml
+++ b/services/timestreaminfluxdb/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
timestreaminfluxdb
AWS Java SDK :: Services :: Timestream Influx DB
diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml
index f8b5c03c40d..170f964f41a 100644
--- a/services/timestreamquery/pom.xml
+++ b/services/timestreamquery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
timestreamquery
AWS Java SDK :: Services :: Timestream Query
diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml
index 508c950d724..08a2d9bc62d 100644
--- a/services/timestreamwrite/pom.xml
+++ b/services/timestreamwrite/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
timestreamwrite
AWS Java SDK :: Services :: Timestream Write
diff --git a/services/tnb/pom.xml b/services/tnb/pom.xml
index 80c625ab708..1e9831d7ab7 100644
--- a/services/tnb/pom.xml
+++ b/services/tnb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
tnb
AWS Java SDK :: Services :: Tnb
diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml
index 22277ead68f..f5497bc5b74 100644
--- a/services/transcribe/pom.xml
+++ b/services/transcribe/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
transcribe
AWS Java SDK :: Services :: Transcribe
diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml
index c2f47c0090e..748170b26ca 100644
--- a/services/transcribestreaming/pom.xml
+++ b/services/transcribestreaming/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
transcribestreaming
AWS Java SDK :: Services :: AWS Transcribe Streaming
diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml
index bc24b380293..395b2ac3d15 100644
--- a/services/transfer/pom.xml
+++ b/services/transfer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
transfer
AWS Java SDK :: Services :: Transfer
diff --git a/services/translate/pom.xml b/services/translate/pom.xml
index 82abbda7cae..3d4486df087 100644
--- a/services/translate/pom.xml
+++ b/services/translate/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.30.11-SNAPSHOT
+ 2.30.11
4.0.0
translate
diff --git a/services/trustedadvisor/pom.xml b/services/trustedadvisor/pom.xml
index c02850e0092..f71d9ce3901 100644
--- a/services/trustedadvisor/pom.xml
+++ b/services/trustedadvisor/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
trustedadvisor
AWS Java SDK :: Services :: Trusted Advisor
diff --git a/services/verifiedpermissions/pom.xml b/services/verifiedpermissions/pom.xml
index d353b280ba0..62680dbea5c 100644
--- a/services/verifiedpermissions/pom.xml
+++ b/services/verifiedpermissions/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
verifiedpermissions
AWS Java SDK :: Services :: Verified Permissions
diff --git a/services/voiceid/pom.xml b/services/voiceid/pom.xml
index 0fef6941a6d..c926ba3e844 100644
--- a/services/voiceid/pom.xml
+++ b/services/voiceid/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
voiceid
AWS Java SDK :: Services :: Voice ID
diff --git a/services/vpclattice/pom.xml b/services/vpclattice/pom.xml
index b2866e3d160..90f38641006 100644
--- a/services/vpclattice/pom.xml
+++ b/services/vpclattice/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
vpclattice
AWS Java SDK :: Services :: VPC Lattice
diff --git a/services/waf/pom.xml b/services/waf/pom.xml
index 3d688796ffa..3fc71168bc9 100644
--- a/services/waf/pom.xml
+++ b/services/waf/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
waf
AWS Java SDK :: Services :: AWS WAF
diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml
index 0ffb04c68c3..27e229f420c 100644
--- a/services/wafv2/pom.xml
+++ b/services/wafv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
wafv2
AWS Java SDK :: Services :: WAFV2
diff --git a/services/wellarchitected/pom.xml b/services/wellarchitected/pom.xml
index 671bd5e4019..e89b90cd9d1 100644
--- a/services/wellarchitected/pom.xml
+++ b/services/wellarchitected/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
wellarchitected
AWS Java SDK :: Services :: Well Architected
diff --git a/services/wisdom/pom.xml b/services/wisdom/pom.xml
index 282998e86a6..9bf6186693c 100644
--- a/services/wisdom/pom.xml
+++ b/services/wisdom/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
wisdom
AWS Java SDK :: Services :: Wisdom
diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml
index ec4192e82d3..7aa371fca00 100644
--- a/services/workdocs/pom.xml
+++ b/services/workdocs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
workdocs
AWS Java SDK :: Services :: Amazon WorkDocs
diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml
index 1193d2a4cf8..2dec4d3a822 100644
--- a/services/workmail/pom.xml
+++ b/services/workmail/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.30.11-SNAPSHOT
+ 2.30.11
4.0.0
workmail
diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml
index c1bcb82c2be..0e6c8be4551 100644
--- a/services/workmailmessageflow/pom.xml
+++ b/services/workmailmessageflow/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
workmailmessageflow
AWS Java SDK :: Services :: WorkMailMessageFlow
diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml
index 51f669200a5..d810ccf88da 100644
--- a/services/workspaces/pom.xml
+++ b/services/workspaces/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
workspaces
AWS Java SDK :: Services :: Amazon WorkSpaces
diff --git a/services/workspacesthinclient/pom.xml b/services/workspacesthinclient/pom.xml
index ae9dcbe1d24..d962b9d4046 100644
--- a/services/workspacesthinclient/pom.xml
+++ b/services/workspacesthinclient/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
workspacesthinclient
AWS Java SDK :: Services :: Work Spaces Thin Client
diff --git a/services/workspacesweb/pom.xml b/services/workspacesweb/pom.xml
index fdb5f7a097d..78c28a6c4c0 100644
--- a/services/workspacesweb/pom.xml
+++ b/services/workspacesweb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
workspacesweb
AWS Java SDK :: Services :: Work Spaces Web
diff --git a/services/xray/pom.xml b/services/xray/pom.xml
index efa7dcebe7f..f48c52c79b0 100644
--- a/services/xray/pom.xml
+++ b/services/xray/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.30.11-SNAPSHOT
+ 2.30.11
xray
AWS Java SDK :: Services :: AWS X-Ray
diff --git a/test/architecture-tests/pom.xml b/test/architecture-tests/pom.xml
index ac47a75e347..5dedf7ffd8c 100644
--- a/test/architecture-tests/pom.xml
+++ b/test/architecture-tests/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.30.11-SNAPSHOT
+ 2.30.11
../../pom.xml
diff --git a/test/auth-tests/pom.xml b/test/auth-tests/pom.xml
index d16d635d561..c6a21ec8585 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.30.11-SNAPSHOT
+ 2.30.11
../../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 7f1b1cd53ee..23cbb0965e6 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.30.11-SNAPSHOT
+ 2.30.11
../../pom.xml
4.0.0
diff --git a/test/bundle-shading-tests/pom.xml b/test/bundle-shading-tests/pom.xml
index c5f80f06542..d3d6964512f 100644
--- a/test/bundle-shading-tests/pom.xml
+++ b/test/bundle-shading-tests/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.30.11-SNAPSHOT
+ 2.30.11
../../pom.xml
4.0.0
diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml
index 04edc1a0bad..f787d08c1fc 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.30.11-SNAPSHOT
+ 2.30.11
../../pom.xml
diff --git a/test/crt-unavailable-tests/pom.xml b/test/crt-unavailable-tests/pom.xml
index 1bd975b20ee..64b69f71f7c 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.30.11-SNAPSHOT
+ 2.30.11
../../pom.xml
4.0.0
diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml
index 0096cee28e5..d0aa9302562 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.30.11-SNAPSHOT
+ 2.30.11
../../pom.xml
http-client-tests
diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml
index 80989ca81a0..02d3f9aa0d7 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.30.11-SNAPSHOT
+ 2.30.11
../../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 61d3b1c1116..e8155c6229d 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.30.11-SNAPSHOT
+ 2.30.11
../../pom.xml
diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml
index 138a8166c8a..2f99aecd5bf 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.30.11-SNAPSHOT
+ 2.30.11
../../pom.xml
4.0.0
diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml
index e16b162f872..275e6f40bec 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.30.11-SNAPSHOT
+ 2.30.11
../../pom.xml
4.0.0
diff --git a/test/region-testing/pom.xml b/test/region-testing/pom.xml
index 6b4494f5857..c6a1647d1c1 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.30.11-SNAPSHOT
+ 2.30.11
../../pom.xml
4.0.0
diff --git a/test/ruleset-testing-core/pom.xml b/test/ruleset-testing-core/pom.xml
index 82427d1f83b..11031d19e59 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.30.11-SNAPSHOT
+ 2.30.11
../../pom.xml
4.0.0
diff --git a/test/s3-benchmarks/pom.xml b/test/s3-benchmarks/pom.xml
index 669bd29b6e4..c3b9e6a0a72 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.30.11-SNAPSHOT
+ 2.30.11
../../pom.xml
4.0.0
diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml
index fdcebc5cd70..e30a5cace2c 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.30.11-SNAPSHOT
+ 2.30.11
../../pom.xml
diff --git a/test/sdk-native-image-test/pom.xml b/test/sdk-native-image-test/pom.xml
index 827ae0c0cfe..c115f8ac49f 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.30.11-SNAPSHOT
+ 2.30.11
../../pom.xml
4.0.0
diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml
index 27ba4b02b31..ecf7a2abe71 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.30.11-SNAPSHOT
+ 2.30.11
../../pom.xml
service-test-utils
diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml
index 14ab24de3f8..912d8bb23d5 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.30.11-SNAPSHOT
+ 2.30.11
../../pom.xml
4.0.0
diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml
index 80478fdcbfc..bcc31f059a9 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.30.11-SNAPSHOT
+ 2.30.11
../../pom.xml
test-utils
diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml
index a31baebc461..d03f69218b0 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.30.11-SNAPSHOT
+ 2.30.11
../../pom.xml
4.0.0
diff --git a/test/v2-migration-tests/pom.xml b/test/v2-migration-tests/pom.xml
index 634e52b756f..f2ca85740fa 100644
--- a/test/v2-migration-tests/pom.xml
+++ b/test/v2-migration-tests/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.30.11-SNAPSHOT
+ 2.30.11
../..
diff --git a/third-party/pom.xml b/third-party/pom.xml
index 00c12d4907e..fb27068a5b6 100644
--- a/third-party/pom.xml
+++ b/third-party/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.30.11-SNAPSHOT
+ 2.30.11
third-party
diff --git a/third-party/third-party-jackson-core/pom.xml b/third-party/third-party-jackson-core/pom.xml
index ddf3d8c7a84..6f29d381c41 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.30.11-SNAPSHOT
+ 2.30.11
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 b13f23e76a5..ee930724e9d 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.30.11-SNAPSHOT
+ 2.30.11
4.0.0
diff --git a/third-party/third-party-slf4j-api/pom.xml b/third-party/third-party-slf4j-api/pom.xml
index 6c66547f4b3..55f1493205c 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.30.11-SNAPSHOT
+ 2.30.11
4.0.0
diff --git a/utils/pom.xml b/utils/pom.xml
index 147a57de430..6ad03910622 100644
--- a/utils/pom.xml
+++ b/utils/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.30.11-SNAPSHOT
+ 2.30.11
4.0.0
diff --git a/v2-migration/pom.xml b/v2-migration/pom.xml
index 9629be49ad9..c17013c140e 100644
--- a/v2-migration/pom.xml
+++ b/v2-migration/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.30.11-SNAPSHOT
+ 2.30.11
../pom.xml